Python is a general-purpose programming language that can be used for many scientific, statistical, and analytical tasks. Python has an elegant structure, clean and intuitive syntax, and is (relative to other programming languages) easy to learn.


In [1]:
# This is a code cell. In this cell, any line prefaced with a # is not executed
# the canonical first program

print('Hello World!')


Hello World!

'Hello World!' is a data structure called a string.


In [ ]:


In [5]:
type('Hello World')


  File "<ipython-input-5-625e78b996bb>", line 1
    type('Hell'o World')
               ^
SyntaxError: invalid syntax

In [11]:
4+5


Out[11]:
9

In [8]:
type(9.)


Out[8]:
float

In [10]:
4 * 5
4**5  # exponentiation


Out[10]:
1024

In [12]:
# naming things and storing them in memory for later use
x = 2**10

In [13]:
print(x)


1024

In [14]:
whos


Variable   Type    Data/Info
----------------------------
x          int     1024

In [16]:
# with explanation
print('The value of x is {:,}.'.format(x))  # you can change the formatting of x inside the brackets


The value of x is 1,024.

In [17]:
type(3.14159)


Out[17]:
float

In [18]:
print('The value of pi is approximately {0:.2f}.'.format(3.14159))  # 0 is the argument, .2 means two past .


The value of pi is approximately 3.14.

Lists

Lists are a commonly used python data structure.


In [19]:
x = [1, 2, 3]

In [20]:
type(x)


Out[20]:
list

In [21]:
whos


Variable   Type    Data/Info
----------------------------
x          list    n=3

In [22]:
x.append(4)

In [23]:
x


Out[23]:
[1, 2, 3, 4]

In [24]:
# throws an error
x.prepend(0)


---------------------------------------------------------------------------
AttributeError                            Traceback (most recent call last)
<ipython-input-24-4d399d6f0d9e> in <module>()
      1 # throws an error
----> 2 x.prepend(0)

AttributeError: 'list' object has no attribute 'prepend'

In [25]:
y = [0]
x+y


Out[25]:
[1, 2, 3, 4, 0]

In [26]:
y+x


Out[26]:
[0, 1, 2, 3, 4]

In [27]:
whos


Variable   Type    Data/Info
----------------------------
x          list    n=4
y          list    n=1

In [28]:
# didn't save it - let's do it again
y = y+x

In [29]:
y


Out[29]:
[0, 1, 2, 3, 4]

In [ ]:
# Exercise: there is a more efficient way - find the reference in the docs for the insert command.
# insert the value 2.5 into the list into the appropriate spot
# your code here:

In [33]:
y.insert(3, 2.5)
print(y)


[0, 1, 2, 2.5, 3, 4]

In [34]:
# a bigger list - list is a function too
z = list(range(100))  # range is a special type in Python
print(z)


[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99]

In [35]:
# getting help
?range

In [ ]:
# try shift+tab when calling unfamiliar function for quick access to docstring
range()

In [ ]:
# Exercise: get the docstring for the 'open' function
# your code here:
open()

In [ ]:
# Exercise: get the docstring for the 'list' function
# your code here:
list()

In [36]:
# often we need to get extract elements from a list. Python uses zero-based indexing
print(z[0])
print(z[5])


0
5

In [37]:
# ranges/slices
print(z[4:5]) # 4 is included
print(z[4:])  # 4 is included
print(z[:4])  # 4 is not included


[4]
[4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99]
[0, 1, 2, 3]

In [38]:
z[2:4] + z[7:9]


Out[38]:
[2, 3, 7, 8]

In [ ]:
# Exercise: write a list consisting of the entries in z whose first digit is a prime number
# your code here:

In [39]:
# from the end of the list
z[-10:]


Out[39]:
[90, 91, 92, 93, 94, 95, 96, 97, 98, 99]

In [40]:
# by step size other than 1
z[10:20:2]  # start:stop:step


Out[40]:
[10, 12, 14, 16, 18]

In [41]:
# when you're going all the way to the end
z[10::2]  # stop omitted


Out[41]:
[10,
 12,
 14,
 16,
 18,
 20,
 22,
 24,
 26,
 28,
 30,
 32,
 34,
 36,
 38,
 40,
 42,
 44,
 46,
 48,
 50,
 52,
 54,
 56,
 58,
 60,
 62,
 64,
 66,
 68,
 70,
 72,
 74,
 76,
 78,
 80,
 82,
 84,
 86,
 88,
 90,
 92,
 94,
 96,
 98]

In [42]:
# exercise: can you write a single operation to return z in reversed order?
# your code here:
z[::-1]


Out[42]:
[99,
 98,
 97,
 96,
 95,
 94,
 93,
 92,
 91,
 90,
 89,
 88,
 87,
 86,
 85,
 84,
 83,
 82,
 81,
 80,
 79,
 78,
 77,
 76,
 75,
 74,
 73,
 72,
 71,
 70,
 69,
 68,
 67,
 66,
 65,
 64,
 63,
 62,
 61,
 60,
 59,
 58,
 57,
 56,
 55,
 54,
 53,
 52,
 51,
 50,
 49,
 48,
 47,
 46,
 45,
 44,
 43,
 42,
 41,
 40,
 39,
 38,
 37,
 36,
 35,
 34,
 33,
 32,
 31,
 30,
 29,
 28,
 27,
 26,
 25,
 24,
 23,
 22,
 21,
 20,
 19,
 18,
 17,
 16,
 15,
 14,
 13,
 12,
 11,
 10,
 9,
 8,
 7,
 6,
 5,
 4,
 3,
 2,
 1,
 0]

In [43]:
# removing values
z.remove(2)

print(z[:10])


[0, 1, 3, 4, 5, 6, 7, 8, 9, 10]

In [44]:
# strings are a lot like lists
string = 'This is A poOrly cAPitAlized string.'
string[:4]


Out[44]:
'This'

In [45]:
type(string[:4])


Out[45]:
str

In [46]:
string[::2]


Out[46]:
'Ti sApOl AiAie tig'

In [47]:
string[-1]


Out[47]:
'.'

In [48]:
print(string.lower())
print(string.upper())
print(string.split('A'))


this is a poorly capitalized string.
THIS IS A POORLY CAPITALIZED STRING.
['This is ', ' poOrly c', 'Pit', 'lized string.']

In [49]:
type(string.split('A'))


Out[49]:
list

In [50]:
address = 'http://www.wikiart.org/en/jan-van-eyck/the-birth-of-john-the-baptist-1422'
artist, painting = address.split('/')[4:]
print(artist)
print(painting)


jan-van-eyck
the-birth-of-john-the-baptist-1422

In [51]:
# digression - unicode
ord('.')  # encoding


Out[51]:
46

In [53]:
chr(97)


Out[53]:
'a'

In [ ]:
# homework reading: http://www.joelonsoftware.com/articles/Unicode.html

In [54]:
# string arithmetic
x = 'Hello '
y = 'World'
print(x+y)


Hello World

In [55]:
x[:5] + '_' + y


Out[55]:
'Hello_World'

In [56]:
x.replace(' ', '_')


Out[56]:
'Hello_'

In [57]:
x.append('_')


---------------------------------------------------------------------------
AttributeError                            Traceback (most recent call last)
<ipython-input-57-14140491f019> in <module>()
----> 1 x.append('_')

AttributeError: 'str' object has no attribute 'append'

In [58]:
x


Out[58]:
'Hello '

In [ ]:
x.replace(' ', '_') + y

In [ ]:
# strings are not exactly lists!
x*5 + y.append(' ')*3

Exercise: take a few minutes to read the docs for text strings here: https://docs.python.org/3/library/stdtypes.html#textseq

Immutable means 'can't be changed' So if you want to change a string, you need to make a copy of some sort.


In [ ]:
x * 5 + (y + str(' ')) * 3

Tuples

Exercise: Find the doc page for the tuples datatype. What is the difference between a tuple and a list?


In [ ]:
# Exercise: write a tuple consisting of the first five letters of the alphabet (lower-case) in reversed order
# your code here

In [ ]:
tup = ('z', 'y', 'x', 'w', 'v')

In [ ]:
type(tup)

In [ ]:
tup[3]

Dicts

The dictionary data structure consists of key-value pairs. This shows up a lot; for instance, when reading JSON files (http://www.json.org/)


In [59]:
x = ['Bob', 'Amy', 'Fred']
y = [32, 27, 19]

z = dict(zip(x, y))

In [60]:
type(z)


Out[60]:
dict

In [61]:
z


Out[61]:
{'Amy': 27, 'Bob': 32, 'Fred': 19}

In [62]:
z[1]


---------------------------------------------------------------------------
KeyError                                  Traceback (most recent call last)
<ipython-input-62-e7abb66cbb1e> in <module>()
----> 1 z[1]

KeyError: 1

In [63]:
z['Bob']


Out[63]:
32

In [64]:
z.keys()


Out[64]:
dict_keys(['Fred', 'Bob', 'Amy'])

In [65]:
z.values()


Out[65]:
dict_values([19, 32, 27])

In [66]:
detailed ={'amy': {'age': 32, 'school': 'UNH', 'GPA':4.0}, 'bob': {'age': 27, 'school': 'UNC', 'GPA':3.4}}

In [68]:
detailed['amy']['school']


Out[68]:
'UNH'

In [69]:
# less trivial example
# library imports; ignore for now

from urllib.request import urlopen
import json

url = 'http://www.wikiart.org/en/App/Painting/' + \
      'PaintingsByArtist?artistUrl=' + \
      'pablo-picasso' + '&json=2'

raw = urlopen(url).read().decode('utf8')

In [70]:
d = json.loads(raw)

In [71]:
type(d)


Out[71]:
list

In [72]:
d


Out[72]:
[{'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1890,
  'contentId': 224582,
  'height': 1716,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/the-picador-1890.jpg!Large.jpg',
  'title': 'The picador',
  'width': 1315,
  'yearAsString': '1890'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1893,
  'contentId': 224033,
  'height': 718,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/house-in-the-field-1893.jpg!Large.jpg',
  'title': 'House in the field',
  'width': 1088,
  'yearAsString': '1893'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1893,
  'contentId': 224251,
  'height': 1867,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/plaster-male-torso-1893.jpg!Large.jpg',
  'title': 'Plaster male torso',
  'width': 1180,
  'yearAsString': '1893'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1895,
  'contentId': 223700,
  'height': 2025,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/academical-study.jpg!Large.jpg',
  'title': 'Academical study',
  'width': 1479,
  'yearAsString': '1895'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1895,
  'contentId': 223803,
  'height': 1088,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/bust-of-young-man.jpg!Large.jpg',
  'title': 'Bust of young man',
  'width': 944,
  'yearAsString': '1895'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1895,
  'contentId': 223904,
  'height': 1088,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/female-nude-from-back-1895.jpg!Large.jpg',
  'title': 'Female nude from back',
  'width': 660,
  'yearAsString': '1895'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1895,
  'contentId': 224528,
  'height': 2454,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/the-barefoot-girl-1895.jpg!Large.jpg',
  'title': 'The barefoot girl',
  'width': 1573,
  'yearAsString': '1895'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1895,
  'contentId': 224579,
  'height': 1088,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/the-old-fisherman-1895.jpg!Large.jpg',
  'title': 'The old fisherman',
  'width': 827,
  'yearAsString': '1895'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1896,
  'contentId': 223718,
  'height': 1088,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/artist-s-mother-1896.jpg!Large.jpg',
  'title': "Artist's mother",
  'width': 716,
  'yearAsString': '1896'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1896,
  'contentId': 223920,
  'height': 1088,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/first-communion-1896.jpg!Large.jpg',
  'title': 'First Communion',
  'width': 757,
  'yearAsString': '1896'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1896,
  'contentId': 224000,
  'height': 1088,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/head-of-a-child-1896.jpg!Large.jpg',
  'title': 'Head of a child',
  'width': 955,
  'yearAsString': '1896'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1896,
  'contentId': 224259,
  'height': 1088,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/portrait-of-aunt-pepa-1896.jpg!Large.jpg',
  'title': 'Portrait of aunt Pepa',
  'width': 952,
  'yearAsString': '1896'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1896,
  'contentId': 224320,
  'height': 1780,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/portrait-of-the-artist-s-mother-1896.jpg!Large.jpg',
  'title': "Portrait of the Artist's Mother",
  'width': 1315,
  'yearAsString': '1896'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1896,
  'contentId': 224333,
  'height': 819,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/quarries-1896.jpg!Large.jpg',
  'title': 'Quarries',
  'width': 1088,
  'yearAsString': '1896'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1896,
  'contentId': 224417,
  'height': 2162,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/self-portrait-1896.jpg!Large.jpg',
  'title': 'Self-Portrait',
  'width': 1422,
  'yearAsString': '1896'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1896,
  'contentId': 224525,
  'height': 1088,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/the-altarboy-1896.jpg!Large.jpg',
  'title': 'The altarboy',
  'width': 719,
  'yearAsString': '1896'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1897,
  'contentId': 223705,
  'height': 1175,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/advertisement-for-tavern-four-cats-1897.jpg!Large.jpg',
  'title': 'Advertisement for tavern "Four cats"',
  'width': 1782,
  'yearAsString': '1897'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1897,
  'contentId': 224356,
  'height': 1411,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/science-and-charity-1897.jpg!Large.jpg',
  'title': 'Science and Charity',
  'width': 1804,
  'yearAsString': '1897'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1899,
  'contentId': 224009,
  'height': 1606,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/head-of-a-man-in-el-greco-style-1899.jpg!Large.jpg',
  'title': 'Head of a Man in El Greco style',
  'width': 1433,
  'yearAsString': '1899'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1899,
  'contentId': 224049,
  'height': 2758,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/la-chata-1899.jpg!Large.jpg',
  'title': 'La chata',
  'width': 638,
  'yearAsString': '1899'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1899,
  'contentId': 224066,
  'height': 2128,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/lola-1899.jpg!Large.jpg',
  'title': 'Lola',
  'width': 1426,
  'yearAsString': '1899'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1899,
  'contentId': 224262,
  'height': 1976,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/portrait-of-casagemas.jpg!Large.jpg',
  'title': 'Portrait of Casagemas',
  'width': 1491,
  'yearAsString': '1899'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1899,
  'contentId': 224283,
  'height': 2330,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/portrait-of-josep-cardona-1899.jpg!Large.jpg',
  'title': 'Portrait of Josep Cardona',
  'width': 1436,
  'yearAsString': '1899'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1900,
  'contentId': 223697,
  'height': 1441,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/a-spanish-couple-in-front-of-inn-1900.jpg!Large.jpg',
  'title': 'A spanish couple in front of inn',
  'width': 1789,
  'yearAsString': '1900'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1900,
  'contentId': 223783,
  'height': 667,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/bullfighters-and-bull-waiting-for-the-next-move-1900.jpg!Large.jpg',
  'title': 'Bullfighters and bull waiting for the next move',
  'width': 1280,
  'yearAsString': '1900'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1900,
  'contentId': 223881,
  'height': 1764,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/embrace-1900.jpg!Large.jpg',
  'title': 'Embrace',
  'width': 1793,
  'yearAsString': '1900'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1900,
  'contentId': 223884,
  'height': 1046,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/fairground-1900.jpg!Large.jpg',
  'title': 'Fairground',
  'width': 1280,
  'yearAsString': '1900'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1900,
  'contentId': 223977,
  'height': 805,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/gypsy-in-front-of-musca-1900.jpg!Large.jpg',
  'title': 'Gypsy in front of Musca',
  'width': 1088,
  'yearAsString': '1900'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1900,
  'contentId': 224072,
  'height': 1280,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/lovers-of-the-street-1900.jpg!Large.jpg',
  'title': 'Lovers of the street',
  'width': 771,
  'yearAsString': '1900'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1900,
  'contentId': 224158,
  'height': 1386,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/moulin-de-la-galette-1900.jpg!Large.jpg',
  'title': 'Moulin de la Galette',
  'width': 1800,
  'yearAsString': '1900'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1900,
  'contentId': 224238,
  'height': 1280,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/picador-1900.jpg!Large.jpg',
  'title': 'Picador',
  'width': 810,
  'yearAsString': '1900'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1900,
  'contentId': 224243,
  'height': 1042,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/pierrot-and-colombina-1900.jpg!Large.jpg',
  'title': 'Pierrot and Colombina',
  'width': 1280,
  'yearAsString': '1900'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1900,
  'contentId': 224426,
  'height': 1088,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/self-portrait.jpg!Large.jpg',
  'title': 'Self-Portrait',
  'width': 771,
  'yearAsString': '1900'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1900,
  'contentId': 224440,
  'height': 1018,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/snackbar-in-the-open-air-1900.jpg!Large.jpg',
  'title': 'Snackbar in the  open air',
  'width': 1280,
  'yearAsString': '1900'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1900,
  'contentId': 224511,
  'height': 1055,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/stuffed-shirts-1900.jpg!Large.jpg',
  'title': 'Stuffed shirts',
  'width': 1774,
  'yearAsString': '1900'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1900,
  'contentId': 224533,
  'height': 1280,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/the-brutal-embrace-1900.jpg!Large.jpg',
  'title': 'The brutal embrace',
  'width': 1042,
  'yearAsString': '1900'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1900,
  'contentId': 224539,
  'height': 966,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/the-cries-of-virgins-1900.jpg!Large.jpg',
  'title': 'The cries of virgins',
  'width': 643,
  'yearAsString': '1900'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1900,
  'contentId': 224714,
  'height': 1088,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/view-of-riera-de-sant-joan-from-the-window-1900.jpg!Large.jpg',
  'title': 'View of Riera de Sant Joan from the window',
  'width': 642,
  'yearAsString': '1900'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1900,
  'contentId': 224780,
  'height': 783,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/woman-with-cat-1900.jpg!Large.jpg',
  'title': 'Woman with Cat',
  'width': 901,
  'yearAsString': '1900'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 223674,
  'height': 1482,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/a-blue-room-a-tub-1901.jpg!Large.jpg',
  'title': 'A blue room (A tub)',
  'width': 1793,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 223692,
  'height': 1088,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/a-red-skirt-1901.jpg!Large.jpg',
  'title': 'A red skirt',
  'width': 907,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 223781,
  'height': 965,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/bullfight-scene-1901.jpg!Large.jpg',
  'title': 'Bullfight scene',
  'width': 1280,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 223817,
  'height': 1970,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/child-with-dove-1901.jpg!Large.jpg',
  'title': 'Child with dove',
  'width': 1419,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 223840,
  'height': 653,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/couple-walking-1901.jpg!Large.jpg',
  'title': 'Couple walking',
  'width': 419,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 223841,
  'height': 1000,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/courtesan-with-necklace-of-gems-1901.jpg!Large.jpg',
  'title': 'Courtesan with necklace of gems',
  'width': 837,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 223844,
  'height': 1352,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/crossind-seine-on-the-upper-deck-1901.jpg!Large.jpg',
  'title': 'Crossind Seine on the upper deck',
  'width': 1800,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 223882,
  'height': 2051,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/evocation-the-burial-of-casagemas-1901.jpg!Large.jpg',
  'title': 'Evocation (The Burial of Casagemas)',
  'width': 1228,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 223924,
  'height': 585,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/flower-seller-1901.jpg!Large.jpg',
  'title': 'Flower seller',
  'width': 900,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 223982,
  'height': 1088,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/harlequin-leaning-1901.jpg!Large.jpg',
  'title': 'Harlequin leaning',
  'width': 793,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224022,
  'height': 1088,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/head-of-woman-1901.jpg!Large.jpg',
  'title': 'Head of woman',
  'width': 714,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224044,
  'height': 986,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/jeanne-reclining-nude-1901.jpg!Large.jpg',
  'title': 'Jeanne (Reclining nude)',
  'width': 1280,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224067,
  'height': 600,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/longchamp-1901.jpg!Large.jpg',
  'title': 'Longchamp',
  'width': 800,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224091,
  'height': 1088,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/madrilenian-head-of-young-woman-1901.jpg!Large.jpg',
  'title': 'Madrilenian (Head of young woman)',
  'width': 707,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224151,
  'height': 812,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/mother-and-child-behind-the-bouquet-of-flowers-1901.jpg!Large.jpg',
  'title': 'Mother and child behind the bouquet of flowers',
  'width': 1088,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224156,
  'height': 1008,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/motherhood-1901.jpg!Large.jpg',
  'title': 'Motherhood',
  'width': 725,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224157,
  'height': 911,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/motherhood-1901-1.jpg!Large.jpg',
  'title': 'Motherhood',
  'width': 596,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224174,
  'height': 2308,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/nana-1901.jpg!Large.jpg',
  'title': 'Nana',
  'width': 1315,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224219,
  'height': 1484,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/pablo-picasso-and-sebastìa-junyer-vidal-arrives-to-paris-1901.jpg!Large.jpg',
  'title': 'Pablo Picasso and Sebastìa Junyer-Vidal arrives to Paris',
  'width': 1795,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224220,
  'height': 1400,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/pablo-picasso-and-sebastìa-junyer-vidal-arrives-to-paris-1901-1.jpg!Large.jpg',
  'title': 'Pablo Picasso and Sebastìa Junyer-Vidal arrives to Paris',
  'width': 1073,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224241,
  'height': 865,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/picasso-with-partner-1901.jpg!Large.jpg',
  'title': 'Picasso with partner',
  'width': 644,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224242,
  'height': 1088,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/pierreuse-with-her-hand-on-her-shoulder-1901.jpg!Large.jpg',
  'title': 'Pierreuse with her hand on her shoulder',
  'width': 842,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224261,
  'height': 1088,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/portrait-of-bibi-la-purée-1901.jpg!Large.jpg',
  'title': 'Portrait of Bibi la Purée',
  'width': 857,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224274,
  'height': 1280,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/portrait-of-gustave-coquiot-1901.jpg!Large.jpg',
  'title': 'Portrait of Gustave Coquiot',
  'width': 1024,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224275,
  'height': 1660,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/portrait-of-gustave-coquiot-1901-1.jpg!Large.jpg',
  'title': 'Portrait of Gustave Coquiot',
  'width': 1315,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224279,
  'height': 1000,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/portrait-of-jaime-sabartes-1901.jpg!Large.jpg',
  'title': 'Portrait of Jaime Sabartes',
  'width': 797,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224281,
  'height': 1781,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/portrait-of-jaime-sabartes-the-bock-1901.jpg!Large.jpg',
  'title': 'Portrait of Jaime Sabartes (The bock)',
  'width': 1433,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224296,
  'height': 1088,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/portrait-of-mateu-fernandez-de-soto-1901.jpg!Large.jpg',
  'title': 'Portrait of Mateu Fernandez de Soto',
  'width': 808,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224307,
  'height': 2033,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/portrait-of-petrus-manach-1901.jpg!Large.jpg',
  'title': 'Portrait of Petrus Manach',
  'width': 1345,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224329,
  'height': 1000,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/profile-of-a-young-girl-girl-with-red-flower-in-her-hair-1901.jpg!Large.jpg',
  'title': 'Profile of a young girl (Girl with red flower in her hair)',
  'width': 634,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224331,
  'height': 604,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/public-garden-1901.jpg!Large.jpg',
  'title': 'Public Garden',
  'width': 934,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224351,
  'height': 1000,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/sada-yacco-1901.jpg!Large.jpg',
  'title': 'Sada Yacco',
  'width': 775,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224403,
  'height': 1000,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/seated-woman-in-green-1901.jpg!Large.jpg',
  'title': 'Seated woman in green',
  'width': 629,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224418,
  'height': 2051,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/self-portrait-1901.jpg!Large.jpg',
  'title': 'Self-Portrait',
  'width': 1465,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224419,
  'height': 1088,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/self-portrait-1901-1.jpg!Large.jpg',
  'title': 'Self-Portrait',
  'width': 888,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224420,
  'height': 2048,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/self-portrait-1901-2.jpg!Large.jpg',
  'title': 'Self-Portrait',
  'width': 1197,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224421,
  'height': 952,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/self-portrait-1901-3.jpg!Large.jpg',
  'title': 'Self-Portrait',
  'width': 780,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224463,
  'height': 1355,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/still-life-the-dessert-1901.jpg!Large.jpg',
  'title': 'Still life (The dessert)',
  'width': 1817,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224521,
  'height': 2031,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/the-absinthe-drinker-1901.jpg!Large.jpg',
  'title': 'The Absinthe Drinker',
  'width': 1497,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224522,
  'height': 1888,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/the-absinthe-drinker-1901-1.jpg!Large.jpg',
  'title': 'The absinthe drinker',
  'width': 1446,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224538,
  'height': 1045,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/the-corrida-1901.jpg!Large.jpg',
  'title': 'The corrida',
  'width': 1280,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224541,
  'height': 834,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/the-death-of-casagemas-1901.jpg!Large.jpg',
  'title': 'The death of Casagemas',
  'width': 1088,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224542,
  'height': 1088,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/the-death-of-casagemas-1901-1.jpg!Large.jpg',
  'title': 'The death of Casagemas',
  'width': 1002,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224544,
  'height': 722,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/the-divan-japonais-1901.jpg!Large.jpg',
  'title': "The 'Divan Japonais'",
  'width': 1000,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224552,
  'height': 1000,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/the-fortune-1901.jpg!Large.jpg',
  'title': 'The Fortune',
  'width': 626,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224553,
  'height': 1390,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/the-fourteenth-of-july-1901.jpg!Large.jpg',
  'title': 'The Fourteenth of July',
  'width': 1803,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224559,
  'height': 1956,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/the-greedy-1901.jpg!Large.jpg',
  'title': 'The Greedy',
  'width': 1422,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224577,
  'height': 2124,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/the-mother-leading-two-children-1901.jpg!Large.jpg',
  'title': 'The mother leading two children',
  'width': 1436,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224584,
  'height': 300,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/the-pool-of-tuileries-1901.jpg!Large.jpg',
  'title': 'The pool of Tuileries',
  'width': 370,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224601,
  'height': 1000,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/the-suicide-casagemas-1901.jpg!Large.jpg',
  'title': 'The suicide (Casagemas)',
  'width': 640,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224602,
  'height': 882,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/the-sun-king-1901.jpg!Large.jpg',
  'title': 'The Sun King',
  'width': 561,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224630,
  'height': 1673,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/two-acrobats-harlequin-and-his-companion-1901.jpg!Large.jpg',
  'title': 'Two acrobats (Harlequin and his companion)',
  'width': 1311,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224723,
  'height': 1050,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/woman-at-a-fountain-1901.jpg!Large.jpg',
  'title': 'Woman at a Fountain',
  'width': 855,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224727,
  'height': 2045,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/woman-dressed-in-blue-1901.jpg!Large.jpg',
  'title': 'Woman dressed in blue',
  'width': 1502,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224743,
  'height': 1000,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/woman-leaving-the-bath-1901.jpg!Large.jpg',
  'title': 'Woman leaving the bath',
  'width': 702,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224746,
  'height': 653,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/woman-on-the-street-1901.jpg!Large.jpg',
  'title': 'Woman on the street',
  'width': 334,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224773,
  'height': 1088,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/woman-with-blue-hat-1901.jpg!Large.jpg',
  'title': 'Woman with blue hat',
  'width': 893,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224778,
  'height': 1280,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/woman-with-cap-1901.jpg!Large.jpg',
  'title': 'Woman with cap',
  'width': 1027,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224781,
  'height': 808,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/woman-with-chignon-1901.jpg!Large.jpg',
  'title': 'Woman with chignon',
  'width': 589,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224788,
  'height': 1088,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/woman-with-feathered-hat-1901.jpg!Large.jpg',
  'title': 'Woman with feathered hat',
  'width': 862,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224794,
  'height': 953,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/woman-with-hat-1901.jpg!Large.jpg',
  'title': 'Woman with hat',
  'width': 648,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224800,
  'height': 1088,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/woman-with-jewelery-1901.jpg!Large.jpg',
  'title': 'Woman with jewelery',
  'width': 808,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224803,
  'height': 1280,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/woman-with-necklace-of-gems-1901.jpg!Large.jpg',
  'title': 'Woman with necklace of gems',
  'width': 1062,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1901,
  'contentId': 224818,
  'height': 1088,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/women-in-the-loge-1901.jpg!Large.jpg',
  'title': 'Women in the loge',
  'width': 760,
  'yearAsString': '1901'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1902,
  'contentId': 223690,
  'height': 657,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/a-parody-of-manet-s-olympia-with-junyer-and-picasso.jpg!Large.jpg',
  'title': "A parody of Manet's Olympia with Junyer and Picasso",
  'width': 952,
  'yearAsString': '1902'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1902,
  'contentId': 223704,
  'height': 243,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/advertisement-for-lecitina-agell-1902.jpg!Large.jpg',
  'title': "Advertisement for 'Lecitina Agell'",
  'width': 391,
  'yearAsString': '1902'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1902,
  'contentId': 223845,
  'height': 601,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/crouching-beggar-1902.jpg!Large.jpg',
  'title': 'Crouching beggar',
  'width': 396,
  'yearAsString': '1902'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1902,
  'contentId': 223849,
  'height': 1776,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/crouching-woman-1902.jpg!Large.jpg',
  'title': 'Crouching woman',
  'width': 1302,
  'yearAsString': '1902'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1902,
  'contentId': 223873,
  'height': 814,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/drunk-woman-is-tired-1902.jpg!Large.jpg',
  'title': 'Drunk woman is tired',
  'width': 579,
  'yearAsString': '1902'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1902,
  'contentId': 223900,
  'height': 1088,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/female-head.jpg!Large.jpg',
  'title': 'Female Head',
  'width': 802,
  'yearAsString': '1902'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1902,
  'contentId': 224017,
  'height': 757,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/head-of-dead-woman-1902.jpg!Large.jpg',
  'title': 'Head of dead woman',
  'width': 571,
  'yearAsString': '1902'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1902,
  'contentId': 224095,
  'height': 401,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/man-and-woman-1902.jpg!Large.jpg',
  'title': 'Man and Woman',
  'width': 582,
  'yearAsString': '1902'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1902,
  'contentId': 224102,
  'height': 1088,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/man-in-blue.jpg!Large.jpg',
  'title': 'Man in blue',
  'width': 929,
  'yearAsString': '1902'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1902,
  'contentId': 224125,
  'height': 2447,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/melancholy-woman.jpg!Large.jpg',
  'title': 'Melancholy woman',
  'width': 1662,
  'yearAsString': '1902'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1902,
  'contentId': 224141,
  'height': 2104,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/mother-and-child-1902.jpg!Large.jpg',
  'title': 'Mother and child',
  'width': 1796,
  'yearAsString': '1902'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1902,
  'contentId': 224152,
  'height': 2478,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/mother-and-child-on-the-beach-1902.jpg!Large.jpg',
  'title': 'Mother and child on the beach',
  'width': 1758,
  'yearAsString': '1902'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1902,
  'contentId': 224153,
  'height': 827,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/mother-and-child-on-the-beach-1902-1.jpg!Large.jpg',
  'title': 'Mother and child on the beach',
  'width': 394,
  'yearAsString': '1902'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1902,
  'contentId': 224154,
  'height': 1088,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/mother-and-son-on-the-shore-1902.jpg!Large.jpg',
  'title': 'Mother and son on the shore',
  'width': 879,
  'yearAsString': '1902'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1902,
  'contentId': 224173,
  'height': 604,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/naked-woman-with-dripping-hair-1902.jpg!Large.jpg',
  'title': 'Naked woman with dripping hair',
  'width': 338,
  'yearAsString': '1902'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1902,
  'contentId': 224264,
  'height': 682,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/portrait-of-corina-romeu-1902.jpg!Large.jpg',
  'title': 'Portrait of Corina Romeu',
  'width': 577,
  'yearAsString': '1902'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1902,
  'contentId': 224284,
  'height': 699,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/portrait-of-juli-gonzalez-1902.jpg!Large.jpg',
  'title': 'Portrait of Juli Gonzalez',
  'width': 576,
  'yearAsString': '1902'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1902,
  'contentId': 224310,
  'height': 1761,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/portrait-of-sebastia-junyer-vidal.jpg!Large.jpg',
  'title': 'Portrait of Sebastia Junyer-Vidal',
  'width': 1436,
  'yearAsString': '1902'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1902,
  'contentId': 224354,
  'height': 727,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/scene-in-a-cabaret-1902.jpg!Large.jpg',
  'title': 'Scene in a cabaret',
  'width': 942,
  'yearAsString': '1902'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1902,
  'contentId': 224385,
  'height': 1000,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/seated-woman-1902.jpg!Large.jpg',
  'title': 'Seated woman',
  'width': 735,
  'yearAsString': '1902'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1902,
  'contentId': 224427,
  'height': 2087,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/seller-of-gul.jpg!Large.jpg',
  'title': 'Seller of gul',
  'width': 1426,
  'yearAsString': '1902'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1902,
  'contentId': 224510,
  'height': 1584,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/study-to-two-sisters-1902.jpg!Large.jpg',
  'title': 'Study to "Two sisters"',
  'width': 1191,
  'yearAsString': '1902'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1902,
  'contentId': 224512,
  'height': 730,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/summer-landscape-1902.jpg!Large.jpg',
  'title': 'Summer landscape',
  'width': 942,
  'yearAsString': '1902'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1902,
  'contentId': 224610,
  'height': 1088,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/the-visit-the-two-sisters-1902.jpg!Large.jpg',
  'title': 'The Visit  (The two sisters)',
  'width': 700,
  'yearAsString': '1902'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1902,
  'contentId': 224611,
  'height': 399,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/the-woman-with-the-edge-1902.jpg!Large.jpg',
  'title': 'The woman with the edge',
  'width': 341,
  'yearAsString': '1902'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1902,
  'contentId': 224654,
  'height': 1575,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/two-women-sitting-at-a-bar-1902.jpg!Large.jpg',
  'title': 'Two women sitting at a bar',
  'width': 1793,
  'yearAsString': '1902'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1902,
  'contentId': 224728,
  'height': 1088,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/woman-in-a-shawl-1902.jpg!Large.jpg',
  'title': 'Woman in a shawl',
  'width': 907,
  'yearAsString': '1902'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1902,
  'contentId': 224734,
  'height': 1088,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/woman-in-blue-1902-1.jpg!Large.jpg',
  'title': 'Woman in blue',
  'width': 825,
  'yearAsString': '1902'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1902,
  'contentId': 224790,
  'height': 872,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/woman-with-green-stockings-1902.jpg!Large.jpg',
  'title': 'Woman with green stockings',
  'width': 391,
  'yearAsString': '1902'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1903,
  'contentId': 223675,
  'height': 1088,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/a-blue-vase-1903.jpg!Large.jpg',
  'title': 'A blue vase',
  'width': 451,
  'yearAsString': '1903'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1903,
  'contentId': 223712,
  'height': 991,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/angel-fernandez-de-soto-and-his-friend-1903.jpg!Large.jpg',
  'title': 'Angel Fernandez de Soto and his Friend',
  'width': 622,
  'yearAsString': '1903'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1903,
  'contentId': 223713,
  'height': 1088,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/angel-fernandez-de-soto-with-woman.jpg!Large.jpg',
  'title': 'Angel Fernandez de Soto with woman',
  'width': 784,
  'yearAsString': '1903'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1903,
  'contentId': 223722,
  'height': 1604,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/ascet-1903.jpg!Large.jpg',
  'title': 'Ascet',
  'width': 1071,
  'yearAsString': '1903'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1903,
  'contentId': 223764,
  'height': 1791,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/breakfast-of-a-blind-man-1903.jpg!Large.jpg',
  'title': 'Breakfast of a Blind Man',
  'width': 1806,
  'yearAsString': '1903'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1903,
  'contentId': 223863,
  'height': 894,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/dawn-at-riera-de-sant-joan-1903.jpg!Large.jpg',
  'title': 'Dawn at Riera de Sant Joan',
  'width': 657,
  'yearAsString': '1903'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1903,
  'contentId': 223867,
  'height': 1000,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/dinner-time-evocation-of-horta-d-ebre-1903.jpg!Large.jpg',
  'title': "Dinner time (Evocation of Horta d'Ebre)",
  'width': 1382,
  'yearAsString': '1903'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1903,
  'contentId': 223955,
  'height': 831,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/group-of-poor-people-1903.jpg!Large.jpg',
  'title': 'Group of poor people',
  'width': 505,
  'yearAsString': '1903'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1903,
  'contentId': 224065,
  'height': 2716,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/life-1903.jpg!Large.jpg',
  'title': 'Life',
  'width': 1786,
  'yearAsString': '1903'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1903,
  'contentId': 224097,
  'height': 1088,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/man-and-woman-in-café-1903.jpg!Large.jpg',
  'title': 'Man and woman in café',
  'width': 881,
  'yearAsString': '1903'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1903,
  'contentId': 224098,
  'height': 639,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/man-and-woman-in-café-study-1903.jpg!Large.jpg',
  'title': 'Man and woman in café (study)',
  'width': 448,
  'yearAsString': '1903'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1903,
  'contentId': 224100,
  'height': 1088,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/man-and-woman-with-child-in-café-1903.jpg!Large.jpg',
  'title': 'Man and woman with child in café',
  'width': 743,
  'yearAsString': '1903'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1903,
  'contentId': 224155,
  'height': 1088,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/mother-and-son-with-handkerchief-1903.jpg!Large.jpg',
  'title': 'Mother and son with handkerchief',
  'width': 989,
  'yearAsString': '1903'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1903,
  'contentId': 224198,
  'height': 865,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/nude-with-picasso-by-her-feet.jpg!Large.jpg',
  'title': 'Nude with Picasso by her feet',
  'width': 1052,
  'yearAsString': '1903'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1903,
  'contentId': 224211,
  'height': 1088,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/old-blind-man-with-boy-1903.jpg!Large.jpg',
  'title': 'Old blind man with boy',
  'width': 793,
  'yearAsString': '1903'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1903,
  'contentId': 224228,
  'height': 1088,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/palace-of-arts-barcelona-1903.jpg!Large.jpg',
  'title': 'Palace of Arts, Barcelona',
  'width': 657,
  'yearAsString': '1903'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1903,
  'contentId': 224255,
  'height': 575,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/portrait-of-a-tailor-soler-1903.jpg!Large.jpg',
  'title': 'Portrait of a tailor Soler',
  'width': 404,
  'yearAsString': '1903'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1903,
  'contentId': 224312,
  'height': 2227,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/portrait-of-seniora-soler-girl-in-a-chemise-1903.jpg!Large.jpg',
  'title': 'Portrait of seniora Soler (Girl in a chemise)',
  'width': 1796,
  'yearAsString': '1903'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1903,
  'contentId': 224319,
  'height': 959,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/portrait-of-the-artist-1903.jpg!Large.jpg',
  'title': 'Portrait of the Artist',
  'width': 660,
  'yearAsString': '1903'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1903,
  'contentId': 224349,
  'height': 1088,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/s-junyer-vidal-with-woman-beside-him-1903.jpg!Large.jpg',
  'title': 'S. Junyer-Vidal with woman beside him',
  'width': 774,
  'yearAsString': '1903'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1903,
  'contentId': 224362,
  'height': 1088,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/seated-female-nude-1903.jpg!Large.jpg',
  'title': 'Seated female nude',
  'width': 852,
  'yearAsString': '1903'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1903,
  'contentId': 224404,
  'height': 540,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/seated-woman-on-a-striped-floor-1903.jpg!Large.jpg',
  'title': 'Seated woman on a striped floor',
  'width': 350,
  'yearAsString': '1903'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1903,
  'contentId': 224412,
  'height': 856,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/sebastia-junyer-vidal-as-matador-1903.jpg!Large.jpg',
  'title': 'Sebastia Junyer-Vidal as matador',
  'width': 602,
  'yearAsString': '1903'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1903,
  'contentId': 224413,
  'height': 1000,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/sebastia-junyer-vidal-as-rhapsode-1903.jpg!Large.jpg',
  'title': 'Sebastia Junyer-Vidal as rhapsode',
  'width': 702,
  'yearAsString': '1903'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1903,
  'contentId': 224441,
  'height': 785,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/soler-family-1903.jpg!Large.jpg',
  'title': 'Soler family',
  'width': 1088,
  'yearAsString': '1903'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1903,
  'contentId': 224523,
  'height': 1000,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/the-absinthe-drinker-portrait-of-angel-fernandez-de-soto-1903.jpg!Large.jpg',
  'title': 'The Absinthe Drinker (Portrait of Angel Fernandez de Soto)',
  'width': 780,
  'yearAsString': '1903'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1903,
  'contentId': 224546,
  'height': 2312,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/the-embrace-1903.jpg!Large.jpg',
  'title': 'The Embrace',
  'width': 1332,
  'yearAsString': '1903'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1903,
  'contentId': 224548,
  'height': 1000,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/the-family-of-blind-man-1903.jpg!Large.jpg',
  'title': 'The family of blind man',
  'width': 711,
  'yearAsString': '1903'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1903,
  'contentId': 224571,
  'height': 1088,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/the-mackerel-1903.jpg!Large.jpg',
  'title': 'The Mackerel',
  'width': 745,
  'yearAsString': '1903'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1903,
  'contentId': 224578,
  'height': 1604,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/the-old-blind-guitarist-1903.jpg!Large.jpg',
  'title': 'The old blind guitarist',
  'width': 1045,
  'yearAsString': '1903'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1903,
  'contentId': 224587,
  'height': 685,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/the-roofs-of-barcelona-1903.jpg!Large.jpg',
  'title': 'The roofs of Barcelona',
  'width': 1088,
  'yearAsString': '1903'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1903,
  'contentId': 224588,
  'height': 894,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/the-roofs-of-barcelona-in-the-moonlight-1903.jpg!Large.jpg',
  'title': 'The roofs of Barcelona in the moonlight',
  'width': 957,
  'yearAsString': '1903'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1903,
  'contentId': 224598,
  'height': 1510,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/the-soup-1903.jpg!Large.jpg',
  'title': 'The soup',
  'width': 1803,
  'yearAsString': '1903'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1903,
  'contentId': 224609,
  'height': 2731,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/the-tragedy-1903.jpg!Large.jpg',
  'title': 'The Tragedy',
  'width': 1778,
  'yearAsString': '1903'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1903,
  'contentId': 224648,
  'height': 739,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/two-nudes-and-a-cat-1903.jpg!Large.jpg',
  'title': 'Two nudes and a cat',
  'width': 1088,
  'yearAsString': '1903'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1903,
  'contentId': 224784,
  'height': 1045,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/woman-with-cigarette-1903.jpg!Large.jpg',
  'title': 'Woman with cigarette',
  'width': 715,
  'yearAsString': '1903'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1904,
  'contentId': 223695,
  'height': 1088,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/a-simple-meal-1904.jpg!Large.jpg',
  'title': 'A simple meal',
  'width': 884,
  'yearAsString': '1904'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1904,
  'contentId': 223696,
  'height': 1000,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/a-simple-meal-1904-1.jpg!Large.jpg',
  'title': 'A simple meal',
  'width': 1337,
  'yearAsString': '1904'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1904,
  'contentId': 223709,
  'height': 1000,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/an-actor-1904.jpg!Large.jpg',
  'title': 'An actor',
  'width': 577,
  'yearAsString': '1904'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1904,
  'contentId': 223745,
  'height': 1000,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/blind-man-and-girl-1904.jpg!Large.jpg',
  'title': 'Blind man and girl',
  'width': 663,
  'yearAsString': '1904'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1904,
  'contentId': 223814,
  'height': 903,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/celestina-1904.jpg!Large.jpg',
  'title': 'Celestina',
  'width': 653,
  'yearAsString': '1904'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1904,
  'contentId': 223815,
  'height': 1000,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/celestina-1904-1.jpg!Large.jpg',
  'title': 'Celestina',
  'width': 762,
  'yearAsString': '1904'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1904,
  'contentId': 224068,
  'height': 1670,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/lovers-1904.jpg!Large.jpg',
  'title': 'Lovers',
  'width': 1200,
  'yearAsString': '1904'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1904,
  'contentId': 224089,
  'height': 1266,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/madeleine-1904.jpg!Large.jpg',
  'title': 'Madeleine',
  'width': 962,
  'yearAsString': '1904'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1904,
  'contentId': 224090,
  'height': 960,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/madonna-with-garland-1904.jpg!Large.jpg',
  'title': 'Madonna with Garland',
  'width': 727,
  'yearAsString': '1904'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1904,
  'contentId': 224150,
  'height': 1088,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/mother-and-child-study-1904.jpg!Large.jpg',
  'title': 'Mother and child (study)',
  'width': 774,
  'yearAsString': '1904'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1904,
  'contentId': 224240,
  'height': 501,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/picasso-and-s-junier-vidal-sitting-near-celestina-1904.jpg!Large.jpg',
  'title': 'Picasso and S. Junier-Vidal sitting near Celestina',
  'width': 653,
  'yearAsString': '1904'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1904,
  'contentId': 224280,
  'height': 1000,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/portrait-of-jaime-sabartes-1904.jpg!Large.jpg',
  'title': 'Portrait of Jaime Sabartes',
  'width': 761,
  'yearAsString': '1904'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1904,
  'contentId': 224300,
  'height': 1088,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/portrait-of-nude-casagemas-1904.jpg!Large.jpg',
  'title': 'Portrait of nude Casagemas',
  'width': 734,
  'yearAsString': '1904'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1904,
  'contentId': 224309,
  'height': 1088,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/portrait-of-sebastià-junyent-sans-1904.jpg!Large.jpg',
  'title': 'Portrait of Sebastià Junyent Sans',
  'width': 886,
  'yearAsString': '1904'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1904,
  'contentId': 224313,
  'height': 1604,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/portrait-of-suzanne-bloch-1904.jpg!Large.jpg',
  'title': 'Portrait of Suzanne Bloch',
  'width': 1307,
  'yearAsString': '1904'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1904,
  'contentId': 224437,
  'height': 2045,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/sleeping-nude-1904.jpg!Large.jpg',
  'title': 'Sleeping nude',
  'width': 1443,
  'yearAsString': '1904'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1904,
  'contentId': 224438,
  'height': 1984,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/sleeping-woman-meditation-1904.jpg!Large.jpg',
  'title': 'Sleeping woman (Meditation)',
  'width': 1443,
  'yearAsString': '1904'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1904,
  'contentId': 224455,
  'height': 1088,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/standing-young-nude-1904.jpg!Large.jpg',
  'title': 'Standing young nude',
  'width': 677,
  'yearAsString': '1904'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1904,
  'contentId': 224536,
  'height': 1991,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/the-catalan-sculptor-manolo-manuel-hugué-1904.jpg!Large.jpg',
  'title': 'The Catalan Sculptor Manolo (Manuel Hugué)',
  'width': 1422,
  'yearAsString': '1904'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1904,
  'contentId': 224550,
  'height': 1088,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/the-fool-1904.jpg!Large.jpg',
  'title': 'The fool',
  'width': 427,
  'yearAsString': '1904'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1904,
  'contentId': 224551,
  'height': 1000,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/the-fool-1904-1.jpg!Large.jpg',
  'title': 'The fool',
  'width': 719,
  'yearAsString': '1904'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1904,
  'contentId': 224565,
  'height': 2454,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/the-ironer-1904.jpg!Large.jpg',
  'title': 'The ironer',
  'width': 1522,
  'yearAsString': '1904'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1904,
  'contentId': 224589,
  'height': 463,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/the-room-of-the-ironer-1904.jpg!Large.jpg',
  'title': 'The room of the ironer',
  'width': 653,
  'yearAsString': '1904'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1904,
  'contentId': 224637,
  'height': 2275,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/two-figures-1904.jpg!Large.jpg',
  'title': 'Two figures',
  'width': 1772,
  'yearAsString': '1904'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1904,
  'contentId': 224638,
  'height': 1088,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/two-friends-1904.jpg!Large.jpg',
  'title': 'Two friends',
  'width': 750,
  'yearAsString': '1904'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1904,
  'contentId': 224639,
  'height': 1000,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/two-friends-1904-1.jpg!Large.jpg',
  'title': 'Two friends',
  'width': 1356,
  'yearAsString': '1904'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1904,
  'contentId': 224742,
  'height': 1000,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/woman-leaning-ahead-1904.jpg!Large.jpg',
  'title': 'Woman leaning ahead',
  'width': 1407,
  'yearAsString': '1904'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1904,
  'contentId': 224799,
  'height': 1484,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/woman-with-her-hair-in-a-small-bun-1904.jpg!Large.jpg',
  'title': 'Woman with her \u200b\u200bhair in a small bun',
  'width': 1028,
  'yearAsString': '1904'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1904,
  'contentId': 224804,
  'height': 1000,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/woman-with-raven-1904.jpg!Large.jpg',
  'title': 'Woman with raven',
  'width': 728,
  'yearAsString': '1904'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1904,
  'contentId': 224805,
  'height': 1088,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/woman-with-raven-1904-1.jpg!Large.jpg',
  'title': 'Woman with raven',
  'width': 796,
  'yearAsString': '1904'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 223671,
  'height': 476,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/a-bank-of-canal-1905.jpg!Large.jpg',
  'title': 'A bank of canal',
  'width': 648,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 223676,
  'height': 440,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/a-boat-on-the-canal-1905.jpg!Large.jpg',
  'title': 'A boat on the canal',
  'width': 660,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 223677,
  'height': 2495,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/a-boy-with-pipe-1905.jpg!Large.jpg',
  'title': 'A boy with pipe',
  'width': 1998,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 223687,
  'height': 718,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/a-horsewoman-1905.jpg!Large.jpg',
  'title': 'A horsewoman',
  'width': 974,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 223703,
  'height': 1230,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/acrobat-and-young-harlequin-1905.jpg!Large.jpg',
  'title': 'Acrobat and young harlequin',
  'width': 684,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 223723,
  'height': 1088,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/at-lapin-agile-harlequin-with-glass-1905.jpg!Large.jpg',
  'title': 'At "Lapin Agile" (Harlequin with Glass)',
  'width': 1079,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 223758,
  'height': 1984,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/boy-with-a-dog-1905.jpg!Large.jpg',
  'title': 'Boy with a Dog',
  'width': 1412,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 223760,
  'height': 770,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/boy-with-bouquet-of-flowers-in-his-hand-1905.jpg!Large.jpg',
  'title': 'Boy with bouquet of flowers in his hand',
  'width': 653,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 223874,
  'height': 1822,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/dutch-girl-1905.jpg!Large.jpg',
  'title': 'Dutch girl',
  'width': 1530,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 223875,
  'height': 383,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/dutch-landscape-with-windmills-1905.jpg!Large.jpg',
  'title': 'Dutch landscape with windmills',
  'width': 553,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 223876,
  'height': 756,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/dutchwoman-beside-the-canal-1905.jpg!Large.jpg',
  'title': 'Dutchwoman beside the canal',
  'width': 552,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 223887,
  'height': 594,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/family-of-acrobats-1905.jpg!Large.jpg',
  'title': 'Family of acrobats',
  'width': 966,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 223888,
  'height': 1894,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/family-of-acrobats-jugglers-1905.jpg!Large.jpg',
  'title': 'Family of acrobats (Jugglers)',
  'width': 1960,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 223889,
  'height': 1194,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/family-of-acrobats-study-1905.jpg!Large.jpg',
  'title': 'Family of acrobats (study)',
  'width': 1422,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 223890,
  'height': 2468,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/family-of-acrobats-with-monkey-1905.jpg!Large.jpg',
  'title': 'Family of Acrobats with Monkey',
  'width': 1741,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 223891,
  'height': 1385,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/family-of-jugglers-1905.jpg!Large.jpg',
  'title': 'Family of jugglers',
  'width': 1787,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 223940,
  'height': 2447,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/girl-on-the-ball-1905.jpg!Large.jpg',
  'title': 'Girl on the ball',
  'width': 1535,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 223984,
  'height': 1088,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/harlequin-on-the-horseback-1905.jpg!Large.jpg',
  'title': 'Harlequin on the horseback',
  'width': 753,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 223992,
  'height': 1088,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/harlequin-s-family-1905.jpg!Large.jpg',
  'title': "Harlequin's family",
  'width': 785,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 223993,
  'height': 565,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/harlequin-s-family-1905-1.jpg!Large.jpg',
  'title': "Harlequin's family",
  'width': 400,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 223994,
  'height': 986,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/harlequin-s-head-1905.jpg!Large.jpg',
  'title': "Harlequin's Head",
  'width': 754,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 224019,
  'height': 810,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/head-of-hurdy-gurdy-1905.jpg!Large.jpg',
  'title': 'Head of hurdy-gurdy',
  'width': 564,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 224031,
  'height': 756,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/head-of-young-man-1905.jpg!Large.jpg',
  'title': 'Head of young man',
  'width': 561,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 224036,
  'height': 2475,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/hurdy-gurdy-1905.jpg!Large.jpg',
  'title': 'Hurdy-gurdy',
  'width': 1669,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 224088,
  'height': 1088,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/madame-soler-1905.jpg!Large.jpg',
  'title': 'Madame Soler',
  'width': 759,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 224092,
  'height': 868,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/mallorcan-1905.jpg!Large.jpg',
  'title': 'Mallorcan',
  'width': 652,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 224142,
  'height': 1088,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/mother-and-child-1905.jpg!Large.jpg',
  'title': 'Mother and Child',
  'width': 768,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 224148,
  'height': 1088,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/mother-and-child-baladins-1905.jpg!Large.jpg',
  'title': 'Mother and child (Baladins)',
  'width': 808,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 224209,
  'height': 845,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/nudes-interlaces-1905.jpg!Large.jpg',
  'title': 'Nudes interlaces',
  'width': 657,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 224288,
  'height': 1088,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/portrait-of-madame-canals-1905.jpg!Large.jpg',
  'title': 'Portrait of Madame Canals',
  'width': 832,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 224330,
  'height': 477,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/profile-of-young-dutchwoman-1905.jpg!Large.jpg',
  'title': 'Profile of young dutchwoman',
  'width': 648,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 224348,
  'height': 978,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/right-profile-of-clown-1905.jpg!Large.jpg',
  'title': 'Right profile of clown',
  'width': 657,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 224352,
  'height': 1088,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/salome-1905.jpg!Large.jpg',
  'title': 'Salome',
  'width': 941,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 224360,
  'height': 1199,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/seated-fat-clown-1905.jpg!Large.jpg',
  'title': 'Seated fat clown',
  'width': 657,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 224363,
  'height': 1088,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/seated-female-nude-1905.jpg!Large.jpg',
  'title': 'Seated female nude',
  'width': 736,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 224375,
  'height': 1088,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/seated-monkey-1905.jpg!Large.jpg',
  'title': 'Seated monkey',
  'width': 685,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 224532,
  'height': 1088,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/the-bread-carrier-1905.jpg!Large.jpg',
  'title': 'The bread carrier',
  'width': 737,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 224607,
  'height': 2131,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/the-three-dutchwoman-1905.jpg!Large.jpg',
  'title': 'The three dutchwoman',
  'width': 1796,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 224631,
  'height': 1892,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/two-acrobats-with-a-dog-1905.jpg!Large.jpg',
  'title': 'Two acrobats with a dog',
  'width': 1298,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 224649,
  'height': 484,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/two-roosters-1905.jpg!Large.jpg',
  'title': 'Two roosters',
  'width': 648,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 224713,
  'height': 902,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/venus-and-cupid-1905.jpg!Large.jpg',
  'title': 'Venus and Cupid',
  'width': 542,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 224767,
  'height': 2299,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/woman-with-a-fan-1905.jpg!Large.jpg',
  'title': 'Woman with a Fan',
  'width': 1789,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 224816,
  'height': 1579,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/woman-s-profile-1905.jpg!Large.jpg',
  'title': "Woman's profile",
  'width': 1294,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 224823,
  'height': 2069,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/young-acrobat-and-clown-1905.jpg!Large.jpg',
  'title': 'Young acrobat and clown',
  'width': 1446,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1905,
  'contentId': 224826,
  'height': 3080,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/young-naked-girl-with-flower-basket-1905.jpg!Large.jpg',
  'title': 'Young naked girl with flower basket',
  'width': 1277,
  'yearAsString': '1905'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 223742,
  'height': 824,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/bed-with-mosquito-nets-1906.jpg!Large.jpg',
  'title': 'Bed with mosquito nets',
  'width': 548,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 223757,
  'height': 2461,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/boy-leading-a-horse-1906.jpg!Large.jpg',
  'title': 'Boy leading a horse',
  'width': 1433,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 223791,
  'height': 2275,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/bust-of-nude-woman-1906.jpg!Large.jpg',
  'title': 'Bust of nude woman',
  'width': 1793,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 223792,
  'height': 1000,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/bust-of-woman-1906.jpg!Large.jpg',
  'title': 'Bust of woman',
  'width': 648,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 223796,
  'height': 400,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/bust-of-woman-1906-1.jpg!Large.jpg',
  'title': 'Bust of woman',
  'width': 319,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 223829,
  'height': 1181,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/composition-peasants-1906.jpg!Large.jpg',
  'title': 'Composition  "Peasants"',
  'width': 692,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 223879,
  'height': 831,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/el-tinen-1906.jpg!Large.jpg',
  'title': 'El Tinen',
  'width': 540,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 223905,
  'height': 1088,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/female-nude-in-profile-1906.jpg!Large.jpg',
  'title': 'Female nude in profile',
  'width': 501,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 223913,
  'height': 702,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/fernande-with-shawl-1906.jpg!Large.jpg',
  'title': 'Fernande with shawl',
  'width': 557,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 223914,
  'height': 972,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/fernande-s-head-1906.jpg!Large.jpg',
  'title': "Fernande's Head",
  'width': 873,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 223935,
  'height': 1469,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/girl-and-goat-1906.jpg!Large.jpg',
  'title': 'Girl and goat',
  'width': 1038,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 223978,
  'height': 2457,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/hairdressing-1906.jpg!Large.jpg',
  'title': 'Hairdressing',
  'width': 1409,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 223990,
  'height': 1276,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/harlequin-s-death-1906.jpg!Large.jpg',
  'title': "Harlequin's death",
  'width': 1793,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 224030,
  'height': 927,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/head-of-young-man-1906.jpg!Large.jpg',
  'title': 'Head of young man',
  'width': 652,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 224197,
  'height': 1850,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/nude-with-her-hands-pressed-to-each-other-1906.jpg!Large.jpg',
  'title': 'Nude with her hands pressed to each other',
  'width': 1429,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 224202,
  'height': 1088,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/nude-woman-naked-face-and-nude-woman-profile-1906.jpg!Large.jpg',
  'title': 'Nude woman naked face and nude woman profile',
  'width': 785,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 224204,
  'height': 782,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/nude-youth-1906.jpg!Large.jpg',
  'title': 'Nude Youth',
  'width': 573,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 224205,
  'height': 1000,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/nude-study-to-harem-1906.jpg!Large.jpg',
  'title': 'Nude, study to "Harem"',
  'width': 753,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 224234,
  'height': 810,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/peasants-1906.jpg!Large.jpg',
  'title': 'Peasants',
  'width': 644,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 224256,
  'height': 831,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/portrait-of-allan-stein-1906.jpg!Large.jpg',
  'title': 'Portrait of Allan Stein',
  'width': 657,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 224272,
  'height': 1088,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/portrait-of-fernande-olivier-in-headscarves-1906.jpg!Large.jpg',
  'title': 'Portrait of Fernande Olivier in headscarves',
  'width': 802,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 224273,
  'height': 2258,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/portrait-of-gertrude-stein-1906.jpg!Large.jpg',
  'title': 'Portrait of Gertrude Stein',
  'width': 1806,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 224340,
  'height': 1376,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/reclining-nude-fernande-1906.jpg!Large.jpg',
  'title': 'Reclining Nude (Fernande)',
  'width': 1800,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 224376,
  'height': 1919,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/seated-nude-1906.jpg!Large.jpg',
  'title': 'Seated nude',
  'width': 1179,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 224378,
  'height': 380,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/seated-nude-and-standing-nude-1906.jpg!Large.jpg',
  'title': 'Seated nude and standing nude',
  'width': 306,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 224379,
  'height': 1088,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/seated-nude-and-standing-nude-1906-1.jpg!Large.jpg',
  'title': 'Seated nude and standing nude',
  'width': 777,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 224410,
  'height': 2454,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/seated-woman-with-her-legs-crossed-1906.jpg!Large.jpg',
  'title': 'Seated woman with her legs crossed',
  'width': 1546,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 224414,
  'height': 2348,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/self-portrait-1906.jpg!Large.jpg',
  'title': 'Self-Portrait',
  'width': 1810,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 224415,
  'height': 1000,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/self-portrait-1906-1.jpg!Large.jpg',
  'title': 'Self-Portrait',
  'width': 710,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 224422,
  'height': 1088,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/self-portrait-1906-2.jpg!Large.jpg',
  'title': 'Self-Portrait',
  'width': 793,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 224423,
  'height': 2051,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/self-portrait-1906-3.jpg!Large.jpg',
  'title': 'Self-Portrait',
  'width': 1660,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 224443,
  'height': 1088,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/spaniard-1906.jpg!Large.jpg',
  'title': 'Spaniard',
  'width': 835,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 224448,
  'height': 1925,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/standing-female-nude-1906.jpg!Large.jpg',
  'title': 'Standing female nude',
  'width': 1174,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 224492,
  'height': 819,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/still-life-with-table-1906.jpg!Large.jpg',
  'title': 'Still life with Table',
  'width': 1000,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 224495,
  'height': 575,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/still-life-with-vases-1906.jpg!Large.jpg',
  'title': 'Still life with vases',
  'width': 836,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 224509,
  'height': 361,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/study-to-girls-from-avignon-1906.jpg!Large.jpg',
  'title': 'Study to "Girls from Avignon"',
  'width': 500,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 224515,
  'height': 1452,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/teenagers-1906.jpg!Large.jpg',
  'title': 'Teenagers',
  'width': 1038,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 224516,
  'height': 1000,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/teenagers-1906-1.jpg!Large.jpg',
  'title': 'Teenagers',
  'width': 609,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 224563,
  'height': 2464,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/the-harem-1906.jpg!Large.jpg',
  'title': 'The Harem',
  'width': 1734,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 224616,
  'height': 1850,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/three-nudes-1906.jpg!Large.jpg',
  'title': 'Three nudes',
  'width': 1436,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 224626,
  'height': 986,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/toilette-1906.jpg!Large.jpg',
  'title': 'Toilette',
  'width': 564,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 224627,
  'height': 2183,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/toilette-1906-1.jpg!Large.jpg',
  'title': 'Toilette',
  'width': 1429,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 224628,
  'height': 793,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/toilette-1906-2.jpg!Large.jpg',
  'title': 'Toilette',
  'width': 611,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 224634,
  'height': 1088,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/two-brothers-1906.jpg!Large.jpg',
  'title': 'Two brothers',
  'width': 801,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 224641,
  'height': 1088,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/two-naked-women-1906.jpg!Large.jpg',
  'title': 'Two naked women',
  'width': 723,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 224642,
  'height': 1088,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/two-nude-women-1906.jpg!Large.jpg',
  'title': 'Two nude women',
  'width': 698,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 224643,
  'height': 2454,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/two-nude-women-1906-1.jpg!Large.jpg',
  'title': 'Two nude women',
  'width': 1477,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 224644,
  'height': 943,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/two-nude-women-1906-2.jpg!Large.jpg',
  'title': 'Two nude women',
  'width': 561,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 224744,
  'height': 1088,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/woman-on-a-donkey-1906.jpg!Large.jpg',
  'title': 'Woman on a donkey',
  'width': 705,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1906,
  'contentId': 224786,
  'height': 2508,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/woman-with-comb-1906.jpg!Large.jpg',
  'title': 'Woman with comb',
  'width': 995,
  'yearAsString': '1906'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1907,
  'contentId': 223683,
  'height': 1088,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/a-girl-from-avignon-1907.jpg!Large.jpg',
  'title': 'A girl from Avignon',
  'width': 838,
  'yearAsString': '1907'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1907,
  'contentId': 223793,
  'height': 856,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/bust-of-woman-1907.jpg!Large.jpg',
  'title': 'Bust of woman',
  'width': 657,
  'yearAsString': '1907'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1907,
  'contentId': 223804,
  'height': 728,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/bust-of-young-woman-from-avignon-1907.jpg!Large.jpg',
  'title': 'Bust of young woman from Avignon',
  'width': 653,
  'yearAsString': '1907'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1907,
  'contentId': 223831,
  'height': 1088,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/composition-with-skull-study.jpg!Large.jpg',
  'title': 'Composition with skull (study)',
  'width': 839,
  'yearAsString': '1907'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1907,
  'contentId': 223860,
  'height': 1088,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/dance-of-the-veils-1907.jpg!Large.jpg',
  'title': 'Dance of the Veils',
  'width': 700,
  'yearAsString': '1907'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1907,
  'contentId': 223883,
  'height': 1088,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/exotic-flowers-1907.jpg!Large.jpg',
  'title': 'Exotic Flowers',
  'width': 745,
  'yearAsString': '1907'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1907,
  'contentId': 223898,
  'height': 1088,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/female-bust.jpg!Large.jpg',
  'title': 'Female bust',
  'width': 853,
  'yearAsString': '1907'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1907,
  'contentId': 223903,
  'height': 644,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/female-nude-study-1907.jpg!Large.jpg',
  'title': 'Female nude (study)',
  'width': 456,
  'yearAsString': '1907'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1907,
  'contentId': 223911,
  'height': 544,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/female-nude-with-her-arms-raised.jpg!Large.jpg',
  'title': 'Female nude with her arms raised',
  'width': 337,
  'yearAsString': '1907'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1907,
  'contentId': 223926,
  'height': 1088,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/flowers-on-the-table-1907.jpg!Large.jpg',
  'title': 'Flowers on the table',
  'width': 854,
  'yearAsString': '1907'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1907,
  'contentId': 224007,
  'height': 1000,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/head-of-a-man.jpg!Large.jpg',
  'title': 'Head of a man',
  'width': 803,
  'yearAsString': '1907'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1907,
  'contentId': 224029,
  'height': 480,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/head-of-woman.jpg!Large.jpg',
  'title': 'Head of woman',
  'width': 356,
  'yearAsString': '1907'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1907,
  'contentId': 224120,
  'height': 380,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/marin-and-student-1907.jpg!Large.jpg',
  'title': 'Marin and student',
  'width': 311,
  'yearAsString': '1907'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1907,
  'contentId': 224193,
  'height': 815,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/nude-bust-1907.jpg!Large.jpg',
  'title': 'Nude (Bust)',
  'width': 657,
  'yearAsString': '1907'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1907,
  'contentId': 224196,
  'height': 901,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/nude-with-drapery-study-for-the-great-dancer-1907.jpg!Large.jpg',
  'title': 'Nude with Drapery (Study for "The great dancer")',
  'width': 632,
  'yearAsString': '1907'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1907,
  'contentId': 224199,
  'height': 961,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/nude-with-raised-arms-1907.jpg!Large.jpg',
  'title': 'Nude with raised arms',
  'width': 734,
  'yearAsString': '1907'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1907,
  'contentId': 224200,
  'height': 1088,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/nude-with-raised-arms-the-avignon-dancer-1907.jpg!Large.jpg',
  'title': 'Nude with raised arms (The Avignon dancer)',
  'width': 698,
  'yearAsString': '1907'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1907,
  'contentId': 224201,
  'height': 777,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/nude-with-towel-1907.jpg!Large.jpg',
  'title': 'Nude with towel',
  'width': 585,
  'yearAsString': '1907'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1907,
  'contentId': 224361,
  'height': 380,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/seated-female-nude-1907.jpg!Large.jpg',
  'title': 'Seated female nude',
  'width': 321,
  'yearAsString': '1907'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1907,
  'contentId': 224416,
  'height': 1022,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/self-portrait-1907.jpg!Large.jpg',
  'title': 'Self-Portrait',
  'width': 804,
  'yearAsString': '1907'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1907,
  'contentId': 224487,
  'height': 1039,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/still-life-with-lemons-1907.jpg!Large.jpg',
  'title': 'Still life with lemons',
  'width': 826,
  'yearAsString': '1907'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1907,
  'contentId': 224554,
  'height': 1088,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/the-girls-of-avignon-1907.jpg!Large.jpg',
  'title': 'The girls of Avignon',
  'width': 981,
  'yearAsString': '1907'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1907,
  'contentId': 224555,
  'height': 403,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/the-girls-of-avignon-study-1907.jpg!Large.jpg',
  'title': 'The girls of Avignon (study)',
  'width': 500,
  'yearAsString': '1907'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1907,
  'contentId': 224556,
  'height': 380,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/the-girls-of-avignon-study-1907-1.jpg!Large.jpg',
  'title': 'The girls of Avignon (study)',
  'width': 521,
  'yearAsString': '1907'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1907,
  'contentId': 224558,
  'height': 617,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/the-great-odalisque-after-ingres-1907.jpg!Large.jpg',
  'title': 'The Great Odalisque (after Ingres)',
  'width': 785,
  'yearAsString': '1907'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1907,
  'contentId': 224768,
  'height': 1251,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/woman-with-a-fan-1907.jpg!Large.jpg',
  'title': 'Woman with a Fan',
  'width': 805,
  'yearAsString': '1907'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1907,
  'contentId': 224811,
  'height': 1088,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/woman-with-yellow-shirt-1907.jpg!Large.jpg',
  'title': 'Woman with yellow shirt',
  'width': 778,
  'yearAsString': '1907'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1908,
  'contentId': 223682,
  'height': 1088,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/a-driade-nude-in-the-forest-1908.jpg!Large.jpg',
  'title': 'A driade (Nude in the forest)',
  'width': 612,
  'yearAsString': '1908'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1908,
  'contentId': 223728,
  'height': 1088,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/bather-1908.jpg!Large.jpg',
  'title': 'Bather',
  'width': 809,
  'yearAsString': '1908'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1908,
  'contentId': 223737,
  'height': 380,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/bathers-in-the-forest-1908.jpg!Large.jpg',
  'title': 'Bathers in the forest',
  'width': 466,
  'yearAsString': '1908'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1908,
  'contentId': 223739,
  'height': 550,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/bathing-1908.jpg!Large.jpg',
  'title': 'Bathing',
  'width': 912,
  'yearAsString': '1908'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1908,
  'contentId': 223830,
  'height': 1072,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/composition-with-skull-1908.jpg!Large.jpg',
  'title': 'Composition with skull',
  'width': 790,
  'yearAsString': '1908'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1908,
  'contentId': 223892,
  'height': 1088,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/farm-woman-1908.jpg!Large.jpg',
  'title': 'Farm woman',
  'width': 864,
  'yearAsString': '1908'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1908,
  'contentId': 223893,
  'height': 575,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/farm-woman-1908-1.jpg!Large.jpg',
  'title': 'Farm woman',
  'width': 459,
  'yearAsString': '1908'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1908,
  'contentId': 223902,
  'height': 1088,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/female-nude.jpg!Large.jpg',
  'title': 'Female nude',
  'width': 846,
  'yearAsString': '1908'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1908,
  'contentId': 223925,
  'height': 575,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/flowers-in-a-grey-jar-1908.jpg!Large.jpg',
  'title': 'Flowers in a Grey Jar',
  'width': 462,
  'yearAsString': '1908'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1908,
  'contentId': 223928,
  'height': 1088,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/friendship-1908.jpg!Large.jpg',
  'title': 'Friendship',
  'width': 710,
  'yearAsString': '1908'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1908,
  'contentId': 223946,
  'height': 748,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/glass-and-fruits-1908.jpg!Large.jpg',
  'title': 'Glass and fruits',
  'width': 581,
  'yearAsString': '1908'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1908,
  'contentId': 223954,
  'height': 1088,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/green-pan-and-black-bottle-1908.jpg!Large.jpg',
  'title': 'Green Pan and Black Bottle',
  'width': 870,
  'yearAsString': '1908'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1908,
  'contentId': 223991,
  'height': 735,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/harlequin-s-family-1908.jpg!Large.jpg',
  'title': "Harlequin's family",
  'width': 582,
  'yearAsString': '1908'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1908,
  'contentId': 223998,
  'height': 1000,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/head.jpg!Large.jpg',
  'title': 'Head',
  'width': 783,
  'yearAsString': '1908'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1908,
  'contentId': 224003,
  'height': 1000,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/head-of-a-man-1908.jpg!Large.jpg',
  'title': 'Head of a man',
  'width': 789,
  'yearAsString': '1908'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1908,
  'contentId': 224004,
  'height': 1000,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/head-of-a-man-1908-1.jpg!Large.jpg',
  'title': 'Head of a man',
  'width': 795,
  'yearAsString': '1908'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1908,
  'contentId': 224005,
  'height': 883,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/head-of-a-man-1908-2.jpg!Large.jpg',
  'title': 'Head of a man',
  'width': 1000,
  'yearAsString': '1908'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1908,
  'contentId': 224021,
  'height': 1000,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/head-of-woman-1908.jpg!Large.jpg',
  'title': 'Head of woman',
  'width': 779,
  'yearAsString': '1908'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1908,
  'contentId': 224032,
  'height': 575,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/house-in-a-garden-1908.jpg!Large.jpg',
  'title': 'House in a Garden',
  'width': 470,
  'yearAsString': '1908'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1908,
  'contentId': 224034,
  'height': 1044,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/house-in-the-garden-1908.jpg!Large.jpg',
  'title': 'House in the garden',
  'width': 800,
  'yearAsString': '1908'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1908,
  'contentId': 224045,
  'height': 380,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/jug-and-fruit-dish-1908.jpg!Large.jpg',
  'title': 'Jug and fruit dish',
  'width': 307,
  'yearAsString': '1908'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1908,
  'contentId': 224249,
  'height': 575,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/pitcher-and-bowls-1908.jpg!Large.jpg',
  'title': 'Pitcher and Bowls',
  'width': 435,
  'yearAsString': '1908'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1908,
  'contentId': 224328,
  'height': 1088,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/pot-glass-and-book-1908.jpg!Large.jpg',
  'title': 'Pot, Glass and Book',
  'width': 891,
  'yearAsString': '1908'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1908,
  'contentId': 224334,
  'height': 1088,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/queen-isabella-1908.jpg!Large.jpg',
  'title': 'Queen Isabella',
  'width': 854,
  'yearAsString': '1908'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1908,
  'contentId': 224338,
  'height': 1000,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/reclining-nude-1908.jpg!Large.jpg',
  'title': 'Reclining Nude',
  'width': 792,
  'yearAsString': '1908'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1908,
  'contentId': 224339,
  'height': 772,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/reclining-nude-1908-1.jpg!Large.jpg',
  'title': 'Reclining Nude',
  'width': 1000,
  'yearAsString': '1908'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1908,
  'contentId': 224377,
  'height': 1088,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/seated-nude.jpg!Large.jpg',
  'title': 'Seated nude',
  'width': 859,
  'yearAsString': '1908'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1908,
  'contentId': 224386,
  'height': 1088,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/seated-woman-1908.jpg!Large.jpg',
  'title': 'Seated woman',
  'width': 719,
  'yearAsString': '1908'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1908,
  'contentId': 224449,
  'height': 1088,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/standing-female-nude-1908.jpg!Large.jpg',
  'title': 'Standing female nude',
  'width': 823,
  'yearAsString': '1908'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1908,
  'contentId': 224452,
  'height': 1088,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/standing-nude-1908.jpg!Large.jpg',
  'title': 'Standing nude',
  'width': 848,
  'yearAsString': '1908'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1908,
  'contentId': 224462,
  'height': 1088,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/still-life.jpg!Large.jpg',
  'title': 'Still life',
  'width': 839,
  'yearAsString': '1908'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1908,
  'contentId': 224617,
  'height': 1088,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/three-women-1908.jpg!Large.jpg',
  'title': 'Three women',
  'width': 961,
  'yearAsString': '1908'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1908,
  'contentId': 224618,
  'height': 380,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/three-women-rhythmical-version-1908.jpg!Large.jpg',
  'title': 'Three women (Rhythmical version)',
  'width': 374,
  'yearAsString': '1908'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1909,
  'contentId': 223736,
  'height': 1000,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/bathers-drying-themselves-1909.jpg!Large.jpg',
  'title': 'Bathers Drying Themselves',
  'width': 792,
  'yearAsString': '1909'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1909,
  'contentId': 223762,
  'height': 1038,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/bread-and-dish-with-fruits-on-the-table.jpg!Large.jpg',
  'title': 'Bread and dish with fruits on the table',
  'width': 805,
  'yearAsString': '1909'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1909,
  'contentId': 223801,
  'height': 1088,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/bust-of-woman-with-flowers.jpg!Large.jpg',
  'title': 'Bust of woman with flowers',
  'width': 723,
  'yearAsString': '1909'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1909,
  'contentId': 223810,
  'height': 380,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/carnival-at-the-bistro-1909.jpg!Large.jpg',
  'title': 'Carnival at the bistro',
  'width': 425,
  'yearAsString': '1909'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1909,
  'contentId': 223932,
  'height': 1088,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/fruit-in-a-vase-1909.jpg!Large.jpg',
  'title': 'Fruit in a Vase',
  'width': 854,
  'yearAsString': '1909'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1909,
  'contentId': 223983,
  'height': 544,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/harlequin-leaning-1909.jpg!Large.jpg',
  'title': 'Harlequin leaning',
  'width': 447,
  'yearAsString': '1909'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1909,
  'contentId': 224035,
  'height': 777,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/houses-on-the-hill-1909.jpg!Large.jpg',
  'title': 'Houses on the hill',
  'width': 976,
  'yearAsString': '1909'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1909,
  'contentId': 224191,
  'height': 575,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/nude-1909.jpg!Large.jpg',
  'title': 'Nude',
  'width': 467,
  'yearAsString': '1909'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1909,
  'contentId': 224290,
  'height': 1088,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/portrait-of-manuel-pallares-1909.jpg!Large.jpg',
  'title': 'Portrait of Manuel Pallares',
  'width': 780,
  'yearAsString': '1909'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1909,
  'contentId': 224387,
  'height': 1041,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/seated-woman-1909.jpg!Large.jpg',
  'title': 'Seated woman',
  'width': 844,
  'yearAsString': '1909'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1909,
  'contentId': 224471,
  'height': 1088,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/still-life-with-bottle-of-anis-del-mono-1909.jpg!Large.jpg',
  'title': 'Still life with bottle of  Anis del Mono',
  'width': 859,
  'yearAsString': '1909'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1909,
  'contentId': 224722,
  'height': 1088,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/woman-and-pears-fernande-1909.jpg!Large.jpg',
  'title': 'Woman and pears (Fernande)',
  'width': 859,
  'yearAsString': '1909'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1909,
  'contentId': 224769,
  'height': 1088,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/woman-with-a-mandolin-1909.jpg!Large.jpg',
  'title': 'Woman with a Mandolin',
  'width': 859,
  'yearAsString': '1909'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1909,
  'contentId': 224801,
  'height': 1088,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/woman-with-mandolin-1909.jpg!Large.jpg',
  'title': 'Woman with mandolin',
  'width': 866,
  'yearAsString': '1909'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1910,
  'contentId': 223941,
  'height': 1088,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/girl-with-mandolin-fanny-tellier-1910.jpg!Large.jpg',
  'title': 'Girl with mandolin (Fanny Tellier)',
  'width': 793,
  'yearAsString': '1910'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1910,
  'contentId': 223970,
  'height': 1097,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/guitar-player-1910.jpg!Large.jpg',
  'title': 'Guitar player',
  'width': 786,
  'yearAsString': '1910'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1910,
  'contentId': 224194,
  'height': 1088,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/nude-figure.jpg!Large.jpg',
  'title': 'Nude figure',
  'width': 841,
  'yearAsString': '1910'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1910,
  'contentId': 224258,
  'height': 1088,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/portrait-of-ambroise-vollard-1910.jpg!Large.jpg',
  'title': 'Portrait of Ambroise Vollard',
  'width': 746,
  'yearAsString': '1910'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1910,
  'contentId': 224266,
  'height': 1088,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/portrait-of-daniel-henry-kahnweiler-1910.jpg!Large.jpg',
  'title': 'Portrait of Daniel-Henry Kahnweiler',
  'width': 780,
  'yearAsString': '1910'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1910,
  'contentId': 224365,
  'height': 1088,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/seated-female-nude-1910.jpg!Large.jpg',
  'title': 'Seated female nude',
  'width': 852,
  'yearAsString': '1910'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1910,
  'contentId': 224557,
  'height': 990,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/the-good-derain-1910.jpg!Large.jpg',
  'title': 'The good Derain',
  'width': 832,
  'yearAsString': '1910'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1910,
  'contentId': 224720,
  'height': 1088,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/william-uhde-1910.jpg!Large.jpg',
  'title': 'William Uhde',
  'width': 782,
  'yearAsString': '1910'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1911,
  'contentId': 223684,
  'height': 1287,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/a-glass-1911.jpg!Large.jpg',
  'title': 'A glass',
  'width': 660,
  'yearAsString': '1911'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1911,
  'contentId': 223813,
  'height': 943,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/catalan-woman-1911.jpg!Large.jpg',
  'title': 'Catalan Woman',
  'width': 696,
  'yearAsString': '1911'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1911,
  'contentId': 223819,
  'height': 1088,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/clarinet-1911.jpg!Large.jpg',
  'title': 'Clarinet',
  'width': 880,
  'yearAsString': '1911'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1911,
  'contentId': 223822,
  'height': 1088,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/clarinetist.jpg!Large.jpg',
  'title': 'Clarinetist',
  'width': 710,
  'yearAsString': '1911'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1911,
  'contentId': 224104,
  'height': 1088,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/man-with-a-guitar-1911-1.jpg!Large.jpg',
  'title': 'Man with a guitar',
  'width': 529,
  'yearAsString': '1911'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1911,
  'contentId': 224237,
  'height': 380,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/pedestal-glasses-cups-mandolin-1911.jpg!Large.jpg',
  'title': 'Pedestal, glasses, cups, mandolin',
  'width': 311,
  'yearAsString': '1911'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1911,
  'contentId': 224254,
  'height': 1224,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/poet-1911.jpg!Large.jpg',
  'title': 'Poet',
  'width': 829,
  'yearAsString': '1911'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1911,
  'contentId': 224468,
  'height': 403,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/still-life-on-the-piano-cort-1911.jpg!Large.jpg',
  'title': "Still life on the piano ('CORT')",
  'width': 1074,
  'yearAsString': '1911'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1911,
  'contentId': 224472,
  'height': 1088,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/still-life-with-bottle-of-rum-1911.jpg!Large.jpg',
  'title': 'Still life with bottle of rum',
  'width': 881,
  'yearAsString': '1911'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1911,
  'contentId': 224537,
  'height': 380,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/the-chess-1911.jpg!Large.jpg',
  'title': 'The chess',
  'width': 474,
  'yearAsString': '1911'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1911,
  'contentId': 224573,
  'height': 1088,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/the-mandolinist-1911.jpg!Large.jpg',
  'title': 'The Mandolinist',
  'width': 744,
  'yearAsString': '1911'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1911,
  'contentId': 224581,
  'height': 1088,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/the-piano-accordionist-1911.jpg!Large.jpg',
  'title': 'The Piano Accordionist',
  'width': 744,
  'yearAsString': '1911'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1911,
  'contentId': 224792,
  'height': 1088,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/woman-with-guitar.jpg!Large.jpg',
  'title': 'Woman with guitar',
  'width': 879,
  'yearAsString': '1911'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1911,
  'contentId': 224793,
  'height': 1088,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/woman-with-guitar-and-piano-1911.jpg!Large.jpg',
  'title': 'Woman with guitar and piano',
  'width': 780,
  'yearAsString': '1911'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1912,
  'contentId': 223755,
  'height': 825,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/bottle-glass-violin-1912.jpg!Large.jpg',
  'title': 'Bottle, glass, violin',
  'width': 1088,
  'yearAsString': '1912'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1912,
  'contentId': 223930,
  'height': 1115,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/fruit-dish-1912.jpg!Large.jpg',
  'title': 'Fruit dish',
  'width': 759,
  'yearAsString': '1912'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1912,
  'contentId': 223945,
  'height': 1070,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/glass-and-bottle-of-suze-1912.jpg!Large.jpg',
  'title': 'Glass and bottle of Suze',
  'width': 815,
  'yearAsString': '1912'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1912,
  'contentId': 223958,
  'height': 1131,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/guitar-1912.jpg!Large.jpg',
  'title': 'Guitar',
  'width': 625,
  'yearAsString': '1912'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1912,
  'contentId': 223962,
  'height': 1088,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/guitar-i-love-eva-1912.jpg!Large.jpg',
  'title': 'Guitar (I love Eva)',
  'width': 830,
  'yearAsString': '1912'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1912,
  'contentId': 223965,
  'height': 380,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/guitar-and-sheet-of-music-1912.jpg!Large.jpg',
  'title': 'Guitar and sheet of music',
  'width': 441,
  'yearAsString': '1912'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1912,
  'contentId': 223966,
  'height': 575,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/guitar-and-violin.jpg!Large.jpg',
  'title': 'Guitar and Violin',
  'width': 476,
  'yearAsString': '1912'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1912,
  'contentId': 223973,
  'height': 921,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/guitar-glass-and-bottle-of-vieux-marc-1912.jpg!Large.jpg',
  'title': 'Guitar, Glass and Bottle of Vieux Marc',
  'width': 657,
  'yearAsString': '1912'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1912,
  'contentId': 223975,
  'height': 1087,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/guitar-sheet-music-and-wine-glass-1912.jpg!Large.jpg',
  'title': 'Guitar, Sheet music and Wine glass',
  'width': 790,
  'yearAsString': '1912'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1912,
  'contentId': 224010,
  'height': 894,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/head-of-a-man-with-hat-1912.jpg!Large.jpg',
  'title': 'Head of a man with hat',
  'width': 666,
  'yearAsString': '1912'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1912,
  'contentId': 224052,
  'height': 380,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/landscape-with-posters-1912.jpg!Large.jpg',
  'title': 'Landscape with Posters',
  'width': 517,
  'yearAsString': '1912'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1912,
  'contentId': 224106,
  'height': 993,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/man-with-guitar-1912.jpg!Large.jpg',
  'title': 'Man with guitar',
  'width': 705,
  'yearAsString': '1912'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1912,
  'contentId': 224161,
  'height': 575,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/musical-instruments-1912.jpg!Large.jpg',
  'title': 'Musical instruments',
  'width': 468,
  'yearAsString': '1912'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1912,
  'contentId': 224166,
  'height': 1258,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/my-beautiful-woman-with-guitar-1912.jpg!Large.jpg',
  'title': 'My beautiful (Woman with guitar)',
  'width': 809,
  'yearAsString': '1912'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1912,
  'contentId': 224217,
  'height': 300,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/our-futures-is-in-the-air-1912.jpg!Large.jpg',
  'title': 'Our Futures is in the Air',
  'width': 500,
  'yearAsString': '1912'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1912,
  'contentId': 224442,
  'height': 1142,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/souvenir-from-havre-1912.jpg!Large.jpg',
  'title': 'Souvenir from Havre',
  'width': 775,
  'yearAsString': '1912'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1912,
  'contentId': 224444,
  'height': 1097,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/spanish-still-life-1912.jpg!Large.jpg',
  'title': 'Spanish Still life',
  'width': 770,
  'yearAsString': '1912'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1912,
  'contentId': 224493,
  'height': 796,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/still-life-with-the-caned-chair-1912.jpg!Large.jpg',
  'title': 'Still life with the caned chair',
  'width': 1043,
  'yearAsString': '1912'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1912,
  'contentId': 224496,
  'height': 1087,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/still-life-with-violin-and-fruits-1912.jpg!Large.jpg',
  'title': 'Still life with violin and fruits',
  'width': 814,
  'yearAsString': '1912'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1912,
  'contentId': 224513,
  'height': 1088,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/table-in-a-cafe-bottle-of-pernod-1912.jpg!Large.jpg',
  'title': 'Table in a Cafe (Bottle of Pernod)',
  'width': 766,
  'yearAsString': '1912'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1912,
  'contentId': 224524,
  'height': 1088,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/the-aficionado-the-torero-1912.jpg!Large.jpg',
  'title': 'The aficionado (The torero)',
  'width': 649,
  'yearAsString': '1912'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1912,
  'contentId': 224583,
  'height': 1088,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/the-pigeon-pea-1912.jpg!Large.jpg',
  'title': 'The pigeon pea',
  'width': 872,
  'yearAsString': '1912'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1912,
  'contentId': 224596,
  'height': 776,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/the-shell-saint-jacques-our-future-is-in-the-air-1912.jpg!Large.jpg',
  'title': 'The shell Saint Jacques (Our future is in the air)',
  'width': 1096,
  'yearAsString': '1912'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1912,
  'contentId': 224717,
  'height': 856,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/violin.jpg!Large.jpg',
  'title': 'Violin',
  'width': 650,
  'yearAsString': '1912'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1912,
  'contentId': 224718,
  'height': 1061,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/violin-1.jpg!Large.jpg',
  'title': 'Violin',
  'width': 791,
  'yearAsString': '1912'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1912,
  'contentId': 224719,
  'height': 1127,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/violin-glass-pipe-and-inkwell-1912.jpg!Large.jpg',
  'title': 'Violin, glass, pipe and inkwell',
  'width': 760,
  'yearAsString': '1912'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1912,
  'contentId': 224761,
  'height': 1088,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/woman-sitting-in-an-armchair.jpg!Large.jpg',
  'title': 'Woman sitting in an armchair',
  'width': 859,
  'yearAsString': '1912'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1913,
  'contentId': 223724,
  'height': 586,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/au-bon-marche-1913.jpg!Large.jpg',
  'title': 'Au bon marche',
  'width': 888,
  'yearAsString': '1913'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1913,
  'contentId': 223752,
  'height': 304,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/bottle-of-black-rum-vive-la-france-1913.jpg!Large.jpg',
  'title': 'Bottle of black rum (Vive la France)',
  'width': 380,
  'yearAsString': '1913'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1913,
  'contentId': 223753,
  'height': 1088,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/bottle-of-vieux-marc-glass-and-newspaper-1913.jpg!Large.jpg',
  'title': 'Bottle of Vieux Marc, Glass and Newspaper',
  'width': 830,
  'yearAsString': '1913'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1913,
  'contentId': 223754,
  'height': 814,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/bottle-of-vieux-marc-glass-guitar-and-newspaper-1913.jpg!Large.jpg',
  'title': 'Bottle of Vieux Marc, Glass, Guitar and Newspaper',
  'width': 1036,
  'yearAsString': '1913'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1913,
  'contentId': 223820,
  'height': 575,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/clarinet-and-violin-1913.jpg!Large.jpg',
  'title': 'Clarinet and Violin',
  'width': 348,
  'yearAsString': '1913'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1913,
  'contentId': 223821,
  'height': 1088,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/clarinet-bottle-of-bass-newspaper-ace-of-clubs-1913.jpg!Large.jpg',
  'title': 'Clarinet, bottle of bass, newspaper, ace of clubs',
  'width': 995,
  'yearAsString': '1913'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1913,
  'contentId': 223934,
  'height': 1088,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/geometrical-composition-the-guitar-1913.jpg!Large.jpg',
  'title': 'Geometrical Composition: The Guitar',
  'width': 587,
  'yearAsString': '1913'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1913,
  'contentId': 223963,
  'height': 1088,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/guitar-and-bottle-1913.jpg!Large.jpg',
  'title': 'Guitar and bottle',
  'width': 950,
  'yearAsString': '1913'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1913,
  'contentId': 223989,
  'height': 1170,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/harlequinesque-personage-1913.jpg!Large.jpg',
  'title': 'Harlequinesque personage',
  'width': 606,
  'yearAsString': '1913'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1913,
  'contentId': 223995,
  'height': 765,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/head-1913.jpg!Large.jpg',
  'title': 'Head',
  'width': 581,
  'yearAsString': '1913'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1913,
  'contentId': 224006,
  'height': 878,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/head-of-a-man-1913.jpg!Large.jpg',
  'title': 'Head of a man',
  'width': 650,
  'yearAsString': '1913'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1913,
  'contentId': 224008,
  'height': 1088,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/head-of-a-man-1.jpg!Large.jpg',
  'title': 'Head of a man',
  'width': 750,
  'yearAsString': '1913'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1913,
  'contentId': 224107,
  'height': 1203,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/man-with-guitar-1913.jpg!Large.jpg',
  'title': 'Man with guitar',
  'width': 807,
  'yearAsString': '1913'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1913,
  'contentId': 224498,
  'height': 920,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/student-with-newspaper-1913.jpg!Large.jpg',
  'title': 'Student with newspaper',
  'width': 734,
  'yearAsString': '1913'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1913,
  'contentId': 224560,
  'height': 1088,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/the-guitar-1913.jpg!Large.jpg',
  'title': 'The guitar',
  'width': 797,
  'yearAsString': '1913'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1913,
  'contentId': 224716,
  'height': 1115,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/violin-1913.jpg!Large.jpg',
  'title': 'Violin',
  'width': 643,
  'yearAsString': '1913'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1913,
  'contentId': 224770,
  'height': 1088,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/woman-with-a-shirt-sitting-in-a-chair-1913.jpg!Large.jpg',
  'title': 'Woman with a shirt sitting in a chair',
  'width': 694,
  'yearAsString': '1913'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1913,
  'contentId': 224791,
  'height': 1053,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/woman-with-guitar-1913.jpg!Large.jpg',
  'title': 'Woman with guitar',
  'width': 440,
  'yearAsString': '1913'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1914,
  'contentId': 223685,
  'height': 1142,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/a-glass-of-absinthe-1914.jpg!Large.jpg',
  'title': 'A glass of absinthe',
  'width': 750,
  'yearAsString': '1914'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1914,
  'contentId': 223715,
  'height': 380,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/apple-1914.jpg!Large.jpg',
  'title': 'Apple',
  'width': 518,
  'yearAsString': '1914'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1914,
  'contentId': 223751,
  'height': 548,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/bottle-of-bass-glass-and-package-of-tobacco-1914.jpg!Large.jpg',
  'title': 'Bottle of bass, glass and package of tobacco',
  'width': 686,
  'yearAsString': '1914'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1914,
  'contentId': 223933,
  'height': 1088,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/fruit-vase-and-bunch-of-grapes-1914.jpg!Large.jpg',
  'title': 'Fruit vase and bunch of grapes',
  'width': 812,
  'yearAsString': '1914'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1914,
  'contentId': 223942,
  'height': 380,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/glass-1914.jpg!Large.jpg',
  'title': 'Glass',
  'width': 306,
  'yearAsString': '1914'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1914,
  'contentId': 223943,
  'height': 881,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/glass-and-bottle-of-bass-1914.jpg!Large.jpg',
  'title': 'Glass and bottle of  Bass',
  'width': 1152,
  'yearAsString': '1914'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1914,
  'contentId': 223944,
  'height': 943,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/glass-and-bottle-of-straw-rum-1914.jpg!Large.jpg',
  'title': 'Glass and bottle of straw rum',
  'width': 1000,
  'yearAsString': '1914'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1914,
  'contentId': 223947,
  'height': 703,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/glass-and-newspaper-1914.jpg!Large.jpg',
  'title': 'Glass and newspaper',
  'width': 616,
  'yearAsString': '1914'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1914,
  'contentId': 223949,
  'height': 998,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/glass-on-a-table-1914.jpg!Large.jpg',
  'title': 'Glass on a Table',
  'width': 1000,
  'yearAsString': '1914'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1914,
  'contentId': 224112,
  'height': 824,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/man-with-pipe-1914.jpg!Large.jpg',
  'title': 'Man with pipe',
  'width': 393,
  'yearAsString': '1914'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1914,
  'contentId': 224115,
  'height': 1195,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/mandolin-1914.jpg!Large.jpg',
  'title': 'Mandolin',
  'width': 807,
  'yearAsString': '1914'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1914,
  'contentId': 224235,
  'height': 1203,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/pedestal-1914.jpg!Large.jpg',
  'title': 'Pedestal',
  'width': 807,
  'yearAsString': '1914'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1914,
  'contentId': 224248,
  'height': 380,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/pipe-and-card-1914.jpg!Large.jpg',
  'title': 'Pipe and card',
  'width': 537,
  'yearAsString': '1914'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1914,
  'contentId': 224253,
  'height': 422,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/playing-card-and-glass-1914.jpg!Large.jpg',
  'title': 'Playing Card and Glass',
  'width': 956,
  'yearAsString': '1914'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1914,
  'contentId': 224326,
  'height': 1088,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/portrait-of-young-girl-1914.jpg!Large.jpg',
  'title': 'Portrait of young girl',
  'width': 804,
  'yearAsString': '1914'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1914,
  'contentId': 224456,
  'height': 703,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/still-life-1914.jpg!Large.jpg',
  'title': 'Still life',
  'width': 1199,
  'yearAsString': '1914'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1914,
  'contentId': 224478,
  'height': 894,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/still-life-with-class-and-an-apple-1914.jpg!Large.jpg',
  'title': 'Still life with Class and an Apple',
  'width': 744,
  'yearAsString': '1914'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1914,
  'contentId': 224480,
  'height': 901,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/still-life-with-gobleet-1914.jpg!Large.jpg',
  'title': 'Still life with Gobleet',
  'width': 660,
  'yearAsString': '1914'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1914,
  'contentId': 224481,
  'height': 911,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/still-life-with-guitar-1914.jpg!Large.jpg',
  'title': 'Still life with Guitar',
  'width': 715,
  'yearAsString': '1914'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1914,
  'contentId': 224499,
  'height': 823,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/student-with-pipe.jpg!Large.jpg',
  'title': 'Student with pipe',
  'width': 660,
  'yearAsString': '1914'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1914,
  'contentId': 224606,
  'height': 575,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/the-tavern-1914.jpg!Large.jpg',
  'title': 'The Tavern',
  'width': 741,
  'yearAsString': '1914'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1915,
  'contentId': 223839,
  'height': 1000,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/couple-of-dancers-1915.jpg!Large.jpg',
  'title': 'Couple of dancers',
  'width': 782,
  'yearAsString': '1915'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1915,
  'contentId': 223979,
  'height': 1088,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/harlequin-1915.jpg!Large.jpg',
  'title': 'Harlequin',
  'width': 609,
  'yearAsString': '1915'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1915,
  'contentId': 224374,
  'height': 728,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/seated-man-with-his-arms-crossed-1915.jpg!Large.jpg',
  'title': 'Seated man with his arms crossed',
  'width': 402,
  'yearAsString': '1915'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1916,
  'contentId': 223720,
  'height': 1000,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/artist-s-studio-1916.jpg!Large.jpg',
  'title': "Artist's studio",
  'width': 731,
  'yearAsString': '1916'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1916,
  'contentId': 223985,
  'height': 500,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/harlequin-with-guitar-1916.jpg!Large.jpg',
  'title': 'Harlequin with guitar',
  'width': 363,
  'yearAsString': '1916'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1916,
  'contentId': 224561,
  'height': 896,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/the-guitar-1916.jpg!Large.jpg',
  'title': 'The guitar',
  'width': 1088,
  'yearAsString': '1916'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1917,
  'contentId': 223727,
  'height': 1280,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/barselona-harlequin-1917.jpg!Large.jpg',
  'title': 'Barselona harlequin',
  'width': 962,
  'yearAsString': '1917'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1917,
  'contentId': 223833,
  'height': 1280,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/costume-design-for-ballet-tricorne-1917.jpg!Large.jpg',
  'title': 'Costume design for ballet "Tricorne"',
  'width': 987,
  'yearAsString': '1917'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1917,
  'contentId': 223834,
  'height': 1280,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/costume-design-for-ballet-tricorne-1917-1.jpg!Large.jpg',
  'title': 'Costume design for ballet "Tricorne"',
  'width': 970,
  'yearAsString': '1917'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1917,
  'contentId': 223835,
  'height': 1280,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/costume-design-for-ballet-tricorne-1917-2.jpg!Large.jpg',
  'title': 'Costume design for ballet "Tricorne"',
  'width': 862,
  'yearAsString': '1917'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1917,
  'contentId': 223836,
  'height': 1280,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/costume-design-for-ballet-tricorne-1917-3.jpg!Large.jpg',
  'title': 'Costume design for ballet "Tricorne"',
  'width': 910,
  'yearAsString': '1917'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1917,
  'contentId': 223837,
  'height': 1280,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/costume-design-for-ballet-tricorne-1917-4.jpg!Large.jpg',
  'title': 'Costume design for ballet "Tricorne"',
  'width': 944,
  'yearAsString': '1917'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1917,
  'contentId': 223838,
  'height': 1280,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/costume-design-for-ballet-tricorne-1917-5.jpg!Large.jpg',
  'title': 'Costume design for ballet "Tricorne"',
  'width': 976,
  'yearAsString': '1917'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1917,
  'contentId': 223856,
  'height': 1088,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/cubist-person-1917.jpg!Large.jpg',
  'title': 'Cubist Person',
  'width': 767,
  'yearAsString': '1917'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1917,
  'contentId': 223857,
  'height': 835,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/curtain-for-the-ballet-parade-1917.jpg!Large.jpg',
  'title': 'Curtain for the ballet "Parade"',
  'width': 1260,
  'yearAsString': '1917'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1917,
  'contentId': 223878,
  'height': 984,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/el-paseo-de-colon-1917.jpg!Large.jpg',
  'title': 'El Paseo de Colon',
  'width': 777,
  'yearAsString': '1917'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1917,
  'contentId': 223931,
  'height': 1088,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/fruit-dish-1917.jpg!Large.jpg',
  'title': 'Fruit dish',
  'width': 733,
  'yearAsString': '1917'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1917,
  'contentId': 223976,
  'height': 864,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/gutted-horse-1917.jpg!Large.jpg',
  'title': 'Gutted horse',
  'width': 1088,
  'yearAsString': '1917'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1917,
  'contentId': 223981,
  'height': 1088,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/harlequin-and-woman-with-necklace-1917.jpg!Large.jpg',
  'title': 'Harlequin and woman with necklace',
  'width': 1086,
  'yearAsString': '1917'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1917,
  'contentId': 224215,
  'height': 1280,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/olga-in-a-mantilla-1917.jpg!Large.jpg',
  'title': 'Olga in a Mantilla',
  'width': 1069,
  'yearAsString': '1917'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1917,
  'contentId': 224230,
  'height': 657,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/partition-bottle-of-port-guitar-playing-cards-1917.jpg!Large.jpg',
  'title': 'Partition, bottle of port, guitar, playing cards',
  'width': 794,
  'yearAsString': '1917'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1917,
  'contentId': 224267,
  'height': 806,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/portrait-of-diaghilev-and-seligsberg-1917.jpg!Large.jpg',
  'title': 'Portrait of Diaghilev and Seligsberg',
  'width': 606,
  'yearAsString': '1917'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1917,
  'contentId': 224424,
  'height': 423,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/self-portrait-1917.jpg!Large.jpg',
  'title': 'Self-Portrait',
  'width': 325,
  'yearAsString': '1917'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1917,
  'contentId': 224425,
  'height': 1280,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/self-portrait-1917-1.jpg!Large.jpg',
  'title': 'Self-Portrait',
  'width': 938,
  'yearAsString': '1917'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1917,
  'contentId': 224562,
  'height': 1088,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/the-happy-family.jpg!Large.jpg',
  'title': 'The happy family',
  'width': 778,
  'yearAsString': '1917'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1917,
  'contentId': 224807,
  'height': 1280,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/woman-with-spanish-dress-1917.jpg!Large.jpg',
  'title': 'Woman with spanish dress',
  'width': 1030,
  'yearAsString': '1917'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1918,
  'contentId': 223734,
  'height': 1280,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/bathers-1918.jpg!Large.jpg',
  'title': 'Bathers',
  'width': 1021,
  'yearAsString': '1918'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1918,
  'contentId': 223929,
  'height': 708,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/fruit-bowl-with-fruit-1918.jpg!Large.jpg',
  'title': 'Fruit Bowl with Fruit',
  'width': 907,
  'yearAsString': '1918'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1918,
  'contentId': 223964,
  'height': 699,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/guitar-and-jug-on-a-table-1918.jpg!Large.jpg',
  'title': 'Guitar and jug on a table',
  'width': 1000,
  'yearAsString': '1918'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1918,
  'contentId': 223980,
  'height': 1088,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/harlequin-1918.jpg!Large.jpg',
  'title': 'Harlequin',
  'width': 848,
  'yearAsString': '1918'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1918,
  'contentId': 223986,
  'height': 1280,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/harlequin-with-guitar-1918.jpg!Large.jpg',
  'title': 'Harlequin with guitar',
  'width': 938,
  'yearAsString': '1918'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1918,
  'contentId': 224246,
  'height': 1280,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/pierrot-with-a-mask-1918.jpg!Large.jpg',
  'title': 'Pierrot with a mask',
  'width': 1000,
  'yearAsString': '1918'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1918,
  'contentId': 224289,
  'height': 1039,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/portrait-of-madame-patri-1918.jpg!Large.jpg',
  'title': 'Portrait of Madame Patri',
  'width': 763,
  'yearAsString': '1918'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1919,
  'contentId': 223670,
  'height': 1000,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/tricorne-study-1919.jpg!Large.jpg',
  'title': '"Tricorne" (study)',
  'width': 970,
  'yearAsString': '1919'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1919,
  'contentId': 223861,
  'height': 450,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/dancer-1919.jpg!Large.jpg',
  'title': 'Dancer',
  'width': 313,
  'yearAsString': '1919'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1919,
  'contentId': 223972,
  'height': 1088,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/guitar-bottle-fruit-dish-and-glass-on-the-table-1919.jpg!Large.jpg',
  'title': 'Guitar, bottle, fruit dish and glass on the table',
  'width': 876,
  'yearAsString': '1919'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1919,
  'contentId': 224069,
  'height': 1088,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/lovers-1919.jpg!Large.jpg',
  'title': 'Lovers',
  'width': 825,
  'yearAsString': '1919'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1919,
  'contentId': 224287,
  'height': 1280,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/portrait-of-léonide-massine-1919.jpg!Large.jpg',
  'title': 'Portrait of Léonide Massine',
  'width': 928,
  'yearAsString': '1919'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1919,
  'contentId': 224308,
  'height': 680,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/portrait-of-pierre-auguste-renoir-1919.jpg!Large.jpg',
  'title': 'Portrait of Pierre Auguste Renoir',
  'width': 544,
  'yearAsString': '1919'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1919,
  'contentId': 224428,
  'height': 894,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/seven-ballerinas-1919.jpg!Large.jpg',
  'title': 'Seven ballerinas',
  'width': 1280,
  'yearAsString': '1919'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1919,
  'contentId': 224429,
  'height': 1280,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/seven-ballerinas-1919-1.jpg!Large.jpg',
  'title': 'Seven ballerinas',
  'width': 1014,
  'yearAsString': '1919'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1919,
  'contentId': 224445,
  'height': 731,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/spouses-sisley-after-the-the-betrothed-by-auguste-renoir-1919.jpg!Large.jpg',
  'title': "Spouses Sisley after the 'The Betrothed' by Auguste Renoir",
  'width': 553,
  'yearAsString': '1919'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1919,
  'contentId': 224464,
  'height': 1000,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/still-life-in-front-of-a-window-at-saint-raphael-1919.jpg!Large.jpg',
  'title': 'Still life in front of a window at Saint-Raphael',
  'width': 710,
  'yearAsString': '1919'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1919,
  'contentId': 224465,
  'height': 979,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/still-life-in-front-of-a-window-overlooking-the-eglise-st-augustin-1919.jpg!Large.jpg',
  'title': 'Still life in front of a Window overlooking the Eglise St. Augustin',
  'width': 529,
  'yearAsString': '1919'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1919,
  'contentId': 224488,
  'height': 1280,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/still-life-with-pitcher-and-apples-1919.jpg!Large.jpg',
  'title': 'Still life with pitcher and apples',
  'width': 835,
  'yearAsString': '1919'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1919,
  'contentId': 224514,
  'height': 1088,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/table-in-front-of-window-1919.jpg!Large.jpg',
  'title': 'Table in front of window',
  'width': 757,
  'yearAsString': '1919'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1919,
  'contentId': 224599,
  'height': 1088,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/the-student-1919.jpg!Large.jpg',
  'title': 'The student',
  'width': 814,
  'yearAsString': '1919'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1919,
  'contentId': 224605,
  'height': 807,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/the-table-1919.jpg!Large.jpg',
  'title': 'The table',
  'width': 503,
  'yearAsString': '1919'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1919,
  'contentId': 224615,
  'height': 1000,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/three-dancers-1919.jpg!Large.jpg',
  'title': 'Three dancers',
  'width': 885,
  'yearAsString': '1919'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1919,
  'contentId': 224691,
  'height': 1000,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/untitled-1919.jpg!Large.jpg',
  'title': 'Untitled',
  'width': 699,
  'yearAsString': '1919'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 223698,
  'height': 766,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/abduction-nessus-and-deianeira-1920.jpg!Large.jpg',
  'title': 'Abduction (Nessus and Deianeira)',
  'width': 1073,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 223699,
  'height': 835,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/abduction-nessus-and-deianeira-1920-1.jpg!Large.jpg',
  'title': 'Abduction (Nessus and Deianeira)',
  'width': 1093,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 223721,
  'height': 833,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/artist-s-studio-on-street-la-boetie-1920.jpg!Large.jpg',
  'title': "Artist's studio on street La Boetie",
  'width': 637,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 223735,
  'height': 1000,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/bathers-1920.jpg!Large.jpg',
  'title': 'Bathers',
  'width': 1286,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 223744,
  'height': 1022,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/birds-of-a-feather-1920.jpg!Large.jpg',
  'title': 'Birds of a Feather',
  'width': 776,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 223756,
  'height': 1088,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/bowl-of-fruit-and-guitar-1920.jpg!Large.jpg',
  'title': 'Bowl of Fruit and Guitar',
  'width': 854,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 223864,
  'height': 736,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/design-of-costume-for-pulcinella-1920.jpg!Large.jpg',
  'title': 'Design of costume for "Pulcinella"',
  'width': 514,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 223865,
  'height': 822,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/design-of-costume-for-pulcinella-1920-1.jpg!Large.jpg',
  'title': 'Design of costume for "Pulcinella"',
  'width': 573,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 223923,
  'height': 353,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/five-bathers-1920.jpg!Large.jpg',
  'title': 'Five bathers',
  'width': 462,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 223936,
  'height': 1055,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/girl-in-a-hat-with-her-arms-crossed.jpg!Large.jpg',
  'title': 'Girl in a hat with her arms crossed',
  'width': 746,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 223959,
  'height': 642,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/guitar-1920.jpg!Large.jpg',
  'title': 'Guitar',
  'width': 498,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 223960,
  'height': 1000,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/guitar-1920-1.jpg!Large.jpg',
  'title': 'Guitar',
  'width': 1408,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 223967,
  'height': 880,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/guitar-on-pedestal-1920.jpg!Large.jpg',
  'title': 'Guitar on pedestal',
  'width': 561,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 223968,
  'height': 914,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/guitar-on-pedestal-1920-1.jpg!Large.jpg',
  'title': 'Guitar on pedestal',
  'width': 676,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 223969,
  'height': 1029,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/guitar-on-pedestal-1920-2.jpg!Large.jpg',
  'title': 'Guitar on pedestal',
  'width': 633,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 224051,
  'height': 546,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/landscape-of-juan-les-pins-1920.jpg!Large.jpg',
  'title': 'Landscape of Juan-les-Pins',
  'width': 765,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 224110,
  'height': 641,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/man-with-mandolin-1920.jpg!Large.jpg',
  'title': 'Man with mandolin',
  'width': 493,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 224111,
  'height': 1000,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/man-with-mandolin-1920-1.jpg!Large.jpg',
  'title': 'Man with mandolin',
  'width': 774,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 224208,
  'height': 728,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/nudes-in-reverie-1920.jpg!Large.jpg',
  'title': 'Nudes in Reverie',
  'width': 1162,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 224214,
  'height': 878,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/olga-in-a-hat-with-feather-1920.jpg!Large.jpg',
  'title': 'Olga in a hat with feather',
  'width': 632,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 224236,
  'height': 1088,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/pedestal-1920.jpg!Large.jpg',
  'title': 'Pedestal',
  'width': 848,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 224244,
  'height': 971,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/pierrot-and-harlequin-1920.jpg!Large.jpg',
  'title': 'Pierrot and harlequin',
  'width': 763,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 224245,
  'height': 888,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/pierrot-and-harlequin-on-the-terrace-of-café-1920.jpg!Large.jpg',
  'title': 'Pierrot and harlequin on the terrace of café',
  'width': 1125,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 224260,
  'height': 846,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/portrait-of-bearded-man-leaning-on-cradle-1920.jpg!Large.jpg',
  'title': 'Portrait of bearded man leaning on cradle',
  'width': 643,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 224271,
  'height': 1080,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/portrait-of-erik-satie-1920.jpg!Large.jpg',
  'title': 'Portrait of Erik Satie',
  'width': 758,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 224276,
  'height': 1061,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/portrait-of-igor-stravinsky-1920.jpg!Large.jpg',
  'title': 'Portrait of Igor Stravinsky',
  'width': 845,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 224303,
  'height': 1048,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/portrait-of-olga-1920.jpg!Large.jpg',
  'title': 'Portrait of Olga',
  'width': 778,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 224332,
  'height': 1088,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/punchinello-with-guitar-1920.jpg!Large.jpg',
  'title': 'Punchinello with guitar',
  'width': 717,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 224346,
  'height': 744,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/reclining-woman-at-the-seashore-1920.jpg!Large.jpg',
  'title': 'Reclining woman at the seashore',
  'width': 1135,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 224353,
  'height': 675,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/scene-design-for-pulcinella-1920.jpg!Large.jpg',
  'title': 'Scene design for "Pulcinella"',
  'width': 838,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 224388,
  'height': 840,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/seated-woman-1920.jpg!Large.jpg',
  'title': 'Seated woman',
  'width': 613,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 224399,
  'height': 533,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/seated-woman-olga-1920.jpg!Large.jpg',
  'title': 'Seated woman (Olga)',
  'width': 415,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 224400,
  'height': 878,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/seated-woman-olga-1920-1.jpg!Large.jpg',
  'title': 'Seated woman (Olga)',
  'width': 704,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 224453,
  'height': 1280,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/standing-nude.jpg!Large.jpg',
  'title': 'Standing nude',
  'width': 850,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 224500,
  'height': 1088,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/studio-1920.jpg!Large.jpg',
  'title': 'Studio',
  'width': 888,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 224517,
  'height': 292,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/the-abduction-1920.jpg!Large.jpg',
  'title': 'The Abduction',
  'width': 400,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 224632,
  'height': 1245,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/two-bathers-1920.jpg!Large.jpg',
  'title': 'Two bathers',
  'width': 859,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 224645,
  'height': 675,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/two-nude-women-1920.jpg!Large.jpg',
  'title': 'Two nude women',
  'width': 499,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 224646,
  'height': 773,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/two-nude-women-1920-1.jpg!Large.jpg',
  'title': 'Two nude women',
  'width': 582,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 224692,
  'height': 730,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/untitled-1920.jpg!Large.jpg',
  'title': 'Untitled',
  'width': 560,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 224693,
  'height': 610,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/untitled-1920-1.jpg!Large.jpg',
  'title': 'Untitled',
  'width': 905,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 224694,
  'height': 1004,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/untitled-1920-2.jpg!Large.jpg',
  'title': 'Untitled',
  'width': 693,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 224721,
  'height': 1311,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/window-opened-to-the-street-penthieure-1920.jpg!Large.jpg',
  'title': 'Window opened to the street Penthieure',
  'width': 870,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 224749,
  'height': 817,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/woman-reading-olga-1920.jpg!Large.jpg',
  'title': 'Woman reading (Olga)',
  'width': 606,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 224750,
  'height': 1046,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/woman-reading-olga-1920-1.jpg!Large.jpg',
  'title': 'Woman reading (Olga)',
  'width': 637,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1920,
  'contentId': 224754,
  'height': 1098,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/woman-sitting-in-an-armchair-1920.jpg!Large.jpg',
  'title': 'Woman sitting in an armchair',
  'width': 750,
  'yearAsString': '1920'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1921,
  'contentId': 223971,
  'height': 400,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/guitar-bottle-and-fruit-bowl-1921.jpg!Large.jpg',
  'title': 'Guitar, Bottle and Fruit Bowl',
  'width': 354,
  'yearAsString': '1921'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1921,
  'contentId': 224023,
  'height': 1000,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/head-of-woman-1921.jpg!Large.jpg',
  'title': 'Head of woman',
  'width': 769,
  'yearAsString': '1921'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1921,
  'contentId': 224024,
  'height': 834,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/head-of-woman-1921-1.jpg!Large.jpg',
  'title': 'Head of woman',
  'width': 652,
  'yearAsString': '1921'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1921,
  'contentId': 224025,
  'height': 991,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/head-of-woman-1921-2.jpg!Large.jpg',
  'title': 'Head of woman',
  'width': 708,
  'yearAsString': '1921'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1921,
  'contentId': 224063,
  'height': 940,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/leaning-woman-with-bonnet-1921.jpg!Large.jpg',
  'title': 'Leaning woman with bonnet',
  'width': 733,
  'yearAsString': '1921'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1921,
  'contentId': 224143,
  'height': 499,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/mother-and-child-1921.jpg!Large.jpg',
  'title': 'Mother and child',
  'width': 400,
  'yearAsString': '1921'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1921,
  'contentId': 224144,
  'height': 499,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/mother-and-child-1921-1.jpg!Large.jpg',
  'title': 'Mother and child',
  'width': 364,
  'yearAsString': '1921'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1921,
  'contentId': 224162,
  'height': 995,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/musicians-with-masks-1921.jpg!Large.jpg',
  'title': 'Musicians with masks',
  'width': 1088,
  'yearAsString': '1921'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1921,
  'contentId': 224163,
  'height': 1088,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/musicians-with-masks-1921-1.jpg!Large.jpg',
  'title': 'Musicians with masks',
  'width': 1002,
  'yearAsString': '1921'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1921,
  'contentId': 224335,
  'height': 1000,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/reading-1921.jpg!Large.jpg',
  'title': 'Reading',
  'width': 727,
  'yearAsString': '1921'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1921,
  'contentId': 224380,
  'height': 1280,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/seated-nude-drying-her-feet-1921.jpg!Large.jpg',
  'title': 'Seated Nude drying her feet',
  'width': 930,
  'yearAsString': '1921'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1921,
  'contentId': 224389,
  'height': 1280,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/seated-woman-1921.jpg!Large.jpg',
  'title': 'Seated woman',
  'width': 792,
  'yearAsString': '1921'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1921,
  'contentId': 224457,
  'height': 470,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/still-life-1921.jpg!Large.jpg',
  'title': 'Still life',
  'width': 957,
  'yearAsString': '1921'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1921,
  'contentId': 224483,
  'height': 992,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/still-life-with-jug-and-bread-1921.jpg!Large.jpg',
  'title': 'Still life with jug and bread',
  'width': 1280,
  'yearAsString': '1921'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1921,
  'contentId': 224549,
  'height': 309,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/the-fighters-1921.jpg!Large.jpg',
  'title': 'The fighters',
  'width': 378,
  'yearAsString': '1921'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1921,
  'contentId': 224619,
  'height': 1000,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/three-women-at-a-fountain-1921.jpg!Large.jpg',
  'title': 'Three women at a fountain',
  'width': 861,
  'yearAsString': '1921'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1921,
  'contentId': 224620,
  'height': 461,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/three-women-at-a-fountain-1921-1.jpg!Large.jpg',
  'title': 'Three women at a fountain',
  'width': 588,
  'yearAsString': '1921'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1921,
  'contentId': 224621,
  'height': 1000,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/three-women-at-a-fountain-1921-2.jpg!Large.jpg',
  'title': 'Three women at a fountain',
  'width': 780,
  'yearAsString': '1921'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1921,
  'contentId': 224622,
  'height': 1000,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/three-women-at-a-fountain-study-1921.jpg!Large.jpg',
  'title': 'Three women at a fountain (study)',
  'width': 759,
  'yearAsString': '1921'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1921,
  'contentId': 224623,
  'height': 1000,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/three-women-at-a-fountain-study-1921-1.jpg!Large.jpg',
  'title': 'Three women at a fountain (study)',
  'width': 774,
  'yearAsString': '1921'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1921,
  'contentId': 224624,
  'height': 625,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/three-women-at-a-fountain-study-1921-2.jpg!Large.jpg',
  'title': 'Three women at a fountain (study)',
  'width': 962,
  'yearAsString': '1921'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1921,
  'contentId': 224625,
  'height': 731,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/three-women-at-a-fountain-study-1921-3.jpg!Large.jpg',
  'title': 'Three women at a fountain (study)',
  'width': 772,
  'yearAsString': '1921'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1921,
  'contentId': 224633,
  'height': 912,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/two-bathers-1921.jpg!Large.jpg',
  'title': 'Two bathers',
  'width': 1145,
  'yearAsString': '1921'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1921,
  'contentId': 224783,
  'height': 1120,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/woman-with-child-on-the-seashore-1921.jpg!Large.jpg',
  'title': 'Woman with child on the seashore',
  'width': 1280,
  'yearAsString': '1921'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1921,
  'contentId': 224814,
  'height': 1019,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/woman-s-head-and-hand-1921.jpg!Large.jpg',
  'title': "Woman's head and hand",
  'width': 862,
  'yearAsString': '1921'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1921,
  'contentId': 224822,
  'height': 1000,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/wounded-bird.jpg!Large.jpg',
  'title': 'Wounded bird',
  'width': 738,
  'yearAsString': '1921'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1921,
  'contentId': 280682,
  'height': 486,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/reading-the-letter-1921.jpg!Large.jpg',
  'title': 'Reading The Letter',
  'width': 329,
  'yearAsString': '1921'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1922,
  'contentId': 223701,
  'height': 1280,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/acrobat-1922.jpg!Large.jpg',
  'title': 'Acrobat',
  'width': 909,
  'yearAsString': '1922'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1922,
  'contentId': 223790,
  'height': 1280,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/bust-of-a-woman-arms-raised-1922.jpg!Large.jpg',
  'title': 'Bust of a woman, arms raised',
  'width': 1054,
  'yearAsString': '1922'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1922,
  'contentId': 223886,
  'height': 1117,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/family-at-the-seashore-1922.jpg!Large.jpg',
  'title': 'Family at the seashore',
  'width': 1280,
  'yearAsString': '1922'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1922,
  'contentId': 223950,
  'height': 1000,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/glass-bottle-packet-of-tobacco-1922.jpg!Large.jpg',
  'title': 'Glass, bottle, packet of tobacco',
  'width': 1234,
  'yearAsString': '1922'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1922,
  'contentId': 224140,
  'height': 1088,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/mother-and-child-1922.jpg!Large.jpg',
  'title': 'Mother and child',
  'width': 881,
  'yearAsString': '1922'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1922,
  'contentId': 224145,
  'height': 1018,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/mother-and-child-1922-1.jpg!Large.jpg',
  'title': 'Mother and child',
  'width': 832,
  'yearAsString': '1922'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1922,
  'contentId': 224146,
  'height': 801,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/mother-and-child-1922-2.jpg!Large.jpg',
  'title': 'Mother and child',
  'width': 568,
  'yearAsString': '1922'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1922,
  'contentId': 224458,
  'height': 323,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/still-life-1922.jpg!Large.jpg',
  'title': 'Still life',
  'width': 400,
  'yearAsString': '1922'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1922,
  'contentId': 224653,
  'height': 1027,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/two-women-running-on-the-beach-the-race-1922.jpg!Large.jpg',
  'title': 'Two women running on the beach (The race)',
  'width': 1280,
  'yearAsString': '1922'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1923,
  'contentId': 223987,
  'height': 1000,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/harlequin-with-his-hands-crossed-jacinto-salvado-1923.jpg!Large.jpg',
  'title': 'Harlequin with his hands crossed (Jacinto Salvado)',
  'width': 737,
  'yearAsString': '1923'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1923,
  'contentId': 224012,
  'height': 1280,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/head-of-a-woman-1923.jpg!Large.jpg',
  'title': 'Head of a woman',
  'width': 1034,
  'yearAsString': '1923'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1923,
  'contentId': 224027,
  'height': 639,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/head-of-woman-1923.jpg!Large.jpg',
  'title': 'Head of woman',
  'width': 550,
  'yearAsString': '1923'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1923,
  'contentId': 224048,
  'height': 393,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/kallan-1923.jpg!Large.jpg',
  'title': 'Kallan',
  'width': 548,
  'yearAsString': '1923'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1923,
  'contentId': 224071,
  'height': 1020,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/lovers-1923-1.jpg!Large.jpg',
  'title': 'Lovers',
  'width': 774,
  'yearAsString': '1923'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1923,
  'contentId': 224213,
  'height': 1280,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/olga-1923.jpg!Large.jpg',
  'title': 'Olga',
  'width': 963,
  'yearAsString': '1923'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1923,
  'contentId': 224229,
  'height': 1020,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/pan-s-flute-1923.jpg!Large.jpg',
  'title': "Pan's flute",
  'width': 827,
  'yearAsString': '1923'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1923,
  'contentId': 224233,
  'height': 1000,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/paul-the-artist-s-son-ten-years-old-1923.jpg!Large.jpg',
  'title': "Paul, the artist's son, ten years old",
  'width': 826,
  'yearAsString': '1923'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1923,
  'contentId': 224306,
  'height': 924,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/portrait-of-paulo-artist-s-son-1923.jpg!Large.jpg',
  'title': "Portrait of Paulo, artist's son",
  'width': 736,
  'yearAsString': '1923'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1923,
  'contentId': 224371,
  'height': 794,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/seated-harlequin-jacinto-salvado-1923.jpg!Large.jpg',
  'title': 'Seated harlequin (Jacinto Salvado)',
  'width': 590,
  'yearAsString': '1923'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1923,
  'contentId': 224390,
  'height': 1280,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/seated-woman-1923.jpg!Large.jpg',
  'title': 'Seated woman',
  'width': 1019,
  'yearAsString': '1923'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1923,
  'contentId': 224391,
  'height': 1280,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/seated-woman-1923-1.jpg!Large.jpg',
  'title': 'Seated woman',
  'width': 995,
  'yearAsString': '1923'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1923,
  'contentId': 224409,
  'height': 923,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/seated-woman-with-her-arms-folded-sarah-murphy-1923.jpg!Large.jpg',
  'title': 'Seated woman with her arms folded (Sarah Murphy)',
  'width': 737,
  'yearAsString': '1923'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1923,
  'contentId': 224450,
  'height': 1000,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/standing-female-nude-1923.jpg!Large.jpg',
  'title': 'Standing female nude',
  'width': 733,
  'yearAsString': '1923'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1923,
  'contentId': 224671,
  'height': 1000,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/untitled-1937-8.jpg!Large.jpg',
  'title': 'Portrait of woman in d`hermine pass (Olga)',
  'width': 827,
  'yearAsString': '1923'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1923,
  'contentId': 224741,
  'height': 1088,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/woman-in-white-1923.jpg!Large.jpg',
  'title': 'Woman in white',
  'width': 872,
  'yearAsString': '1923'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1924,
  'contentId': 223953,
  'height': 1280,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/greek-woman-1924.jpg!Large.jpg',
  'title': 'Greek woman',
  'width': 486,
  'yearAsString': '1924'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1924,
  'contentId': 223974,
  'height': 631,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/guitar-glass-and-fruit-dish-with-fruit-1924.jpg!Large.jpg',
  'title': 'Guitar, Glass and Fruit Dish with Fruit',
  'width': 803,
  'yearAsString': '1924'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1924,
  'contentId': 224232,
  'height': 1088,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/paul-as-harlequin-1924.jpg!Large.jpg',
  'title': 'Paul as harlequin',
  'width': 787,
  'yearAsString': '1924'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1924,
  'contentId': 224491,
  'height': 576,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/still-life-with-stone-1924.jpg!Large.jpg',
  'title': 'Still life with stone',
  'width': 774,
  'yearAsString': '1924'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1924,
  'contentId': 224494,
  'height': 664,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/still-life-with-the-mandolin-1924.jpg!Large.jpg',
  'title': 'Still life with the mandolin',
  'width': 802,
  'yearAsString': '1924'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1925,
  'contentId': 223719,
  'height': 1000,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/artist-s-son-1925.jpg!Large.jpg',
  'title': "Artist's son",
  'width': 680,
  'yearAsString': '1925'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1925,
  'contentId': 224250,
  'height': 798,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/plaster-head-and-arm-1925.jpg!Large.jpg',
  'title': 'Plaster head and arm',
  'width': 1088,
  'yearAsString': '1925'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1925,
  'contentId': 224285,
  'height': 1039,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/portrait-of-la-scala-master-of-ballet-1925.jpg!Large.jpg',
  'title': 'Portrait of La Scala master of ballet',
  'width': 729,
  'yearAsString': '1925'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1925,
  'contentId': 224470,
  'height': 807,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/still-life-with-antique-bust-1925.jpg!Large.jpg',
  'title': 'Still life with antique bust',
  'width': 1088,
  'yearAsString': '1925'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1925,
  'contentId': 224479,
  'height': 1140,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/still-life-with-fishing-net-1925.jpg!Large.jpg',
  'title': 'Still life with fishing net',
  'width': 795,
  'yearAsString': '1925'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1925,
  'contentId': 224540,
  'height': 1088,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/the-dance-1925.jpg!Large.jpg',
  'title': 'The dance',
  'width': 714,
  'yearAsString': '1925'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1925,
  'contentId': 224566,
  'height': 1088,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/the-kiss-1925.jpg!Large.jpg',
  'title': 'The Kiss',
  'width': 801,
  'yearAsString': '1925'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1925,
  'contentId': 224593,
  'height': 1088,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/the-sculpture-1925.jpg!Large.jpg',
  'title': 'The sculpture',
  'width': 778,
  'yearAsString': '1925'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1925,
  'contentId': 224802,
  'height': 1088,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/woman-with-mandolin-1925.jpg!Large.jpg',
  'title': 'Woman with mandolin',
  'width': 775,
  'yearAsString': '1925'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1926,
  'contentId': 223717,
  'height': 734,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/artist-and-his-model-1926.jpg!Large.jpg',
  'title': 'Artist and his model',
  'width': 1088,
  'yearAsString': '1926'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1926,
  'contentId': 223805,
  'height': 861,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/buste-of-young-woman-marie-therese-walter-1926.jpg!Large.jpg',
  'title': 'Buste of young woman (Marie-Therese Walter)',
  'width': 702,
  'yearAsString': '1926'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1926,
  'contentId': 223957,
  'height': 1079,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/guitar-1926.jpg!Large.jpg',
  'title': 'Guitar',
  'width': 770,
  'yearAsString': '1926'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1926,
  'contentId': 224038,
  'height': 1000,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/interior-with-easel-1926.jpg!Large.jpg',
  'title': 'Interior with easel',
  'width': 758,
  'yearAsString': '1926'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1926,
  'contentId': 224126,
  'height': 745,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/milliners-workshop-of-the-milliner-1926.jpg!Large.jpg',
  'title': 'Milliners (Workshop of the milliner)',
  'width': 1088,
  'yearAsString': '1926'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1927,
  'contentId': 223916,
  'height': 1000,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/figure-1927.jpg!Large.jpg',
  'title': 'Figure',
  'width': 762,
  'yearAsString': '1927'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1927,
  'contentId': 224096,
  'height': 909,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/man-and-woman-1927.jpg!Large.jpg',
  'title': 'Man and woman',
  'width': 1280,
  'yearAsString': '1927'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1927,
  'contentId': 224223,
  'height': 953,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/painter-and-his-model-1927.jpg!Large.jpg',
  'title': 'Painter and his model',
  'width': 803,
  'yearAsString': '1927'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1927,
  'contentId': 224392,
  'height': 1088,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/seated-woman-1927.jpg!Large.jpg',
  'title': 'Seated woman',
  'width': 796,
  'yearAsString': '1927'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1927,
  'contentId': 224501,
  'height': 687,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/studio.jpg!Large.jpg',
  'title': 'Studio',
  'width': 1088,
  'yearAsString': '1927'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1927,
  'contentId': 224508,
  'height': 420,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/study-of-cannes-1927.jpg!Large.jpg',
  'title': 'Study of Cannes',
  'width': 318,
  'yearAsString': '1927'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1928,
  'contentId': 223726,
  'height': 748,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/ballplayers-on-the-beach-1928.jpg!Large.jpg',
  'title': 'Ballplayers on the beach',
  'width': 1088,
  'yearAsString': '1928'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1928,
  'contentId': 223729,
  'height': 751,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/bather-1928.jpg!Large.jpg',
  'title': 'Bather',
  'width': 1088,
  'yearAsString': '1928'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1928,
  'contentId': 223732,
  'height': 1088,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/bather-opening-a-cabin-1928.jpg!Large.jpg',
  'title': 'Bather opening a cabin',
  'width': 726,
  'yearAsString': '1928'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1928,
  'contentId': 223738,
  'height': 575,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/bathers-on-the-beach-1928.jpg!Large.jpg',
  'title': 'Bathers on the beach',
  'width': 1088,
  'yearAsString': '1928'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1928,
  'contentId': 224050,
  'height': 687,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/landscape-1928.jpg!Large.jpg',
  'title': 'Landscape',
  'width': 1000,
  'yearAsString': '1928'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1928,
  'contentId': 224216,
  'height': 405,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/on-the-beach-dinard-1928.jpg!Large.jpg',
  'title': 'On the beach, Dinard',
  'width': 774,
  'yearAsString': '1928'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1928,
  'contentId': 224224,
  'height': 868,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/painter-and-his-model-1928.jpg!Large.jpg',
  'title': 'Painter and his model',
  'width': 1088,
  'yearAsString': '1928'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1928,
  'contentId': 224600,
  'height': 1088,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/the-studio-1928.jpg!Large.jpg',
  'title': 'The Studio',
  'width': 850,
  'yearAsString': '1928'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1928,
  'contentId': 224821,
  'height': 640,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/working-painter-observed-by-a-nude-model.jpg!Large.jpg',
  'title': 'Working painter observed by a nude model',
  'width': 807,
  'yearAsString': '1928'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1929,
  'contentId': 223672,
  'height': 1088,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/a-blue-acrobat-1929.jpg!Large.jpg',
  'title': 'A blue acrobat',
  'width': 870,
  'yearAsString': '1929'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1929,
  'contentId': 223730,
  'height': 1088,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/bather-1929.jpg!Large.jpg',
  'title': 'Bather',
  'width': 692,
  'yearAsString': '1929'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1929,
  'contentId': 223996,
  'height': 1088,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/head-1929.jpg!Large.jpg',
  'title': 'Head',
  'width': 880,
  'yearAsString': '1929'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1929,
  'contentId': 224053,
  'height': 1088,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/large-nude-in-red-armchair-1929.jpg!Large.jpg',
  'title': 'Large nude in red armchair',
  'width': 723,
  'yearAsString': '1929'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1929,
  'contentId': 224305,
  'height': 1000,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/portrait-of-paulo-as-pierrot-1929.jpg!Large.jpg',
  'title': 'Portrait of Paulo as Pierrot',
  'width': 746,
  'yearAsString': '1929'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1929,
  'contentId': 224342,
  'height': 831,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/reclining-woman-1929.jpg!Large.jpg',
  'title': 'Reclining Woman',
  'width': 1088,
  'yearAsString': '1929'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1929,
  'contentId': 224358,
  'height': 1088,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/seated-bather-on-the-beach-1929.jpg!Large.jpg',
  'title': 'Seated bather on the beach',
  'width': 862,
  'yearAsString': '1929'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1929,
  'contentId': 224604,
  'height': 879,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/the-swimmer-1929.jpg!Large.jpg',
  'title': 'The Swimmer',
  'width': 1088,
  'yearAsString': '1929'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1929,
  'contentId': 224695,
  'height': 1000,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/untitled-1929.jpg!Large.jpg',
  'title': 'Untitled',
  'width': 1350,
  'yearAsString': '1929'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1929,
  'contentId': 224738,
  'height': 422,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/woman-in-the-garden-1929.jpg!Large.jpg',
  'title': 'Woman in the garden',
  'width': 302,
  'yearAsString': '1929'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1930,
  'contentId': 223702,
  'height': 1088,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/acrobat-1930.jpg!Large.jpg',
  'title': 'Acrobat',
  'width': 865,
  'yearAsString': '1930'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1930,
  'contentId': 223850,
  'height': 843,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/crucifixion-1930.jpg!Large.jpg',
  'title': 'Crucifixion',
  'width': 1088,
  'yearAsString': '1930'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1930,
  'contentId': 223851,
  'height': 350,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/crucifixion-study-1930.jpg!Large.jpg',
  'title': 'Crucifixion (study)',
  'width': 561,
  'yearAsString': '1930'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1930,
  'contentId': 224357,
  'height': 1088,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/seated-bather-1930.jpg!Large.jpg',
  'title': 'Seated bather',
  'width': 694,
  'yearAsString': '1930'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1930,
  'contentId': 224393,
  'height': 1088,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/seated-woman-1930.jpg!Large.jpg',
  'title': 'Seated Woman',
  'width': 801,
  'yearAsString': '1930'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1931,
  'contentId': 223688,
  'height': 940,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/a-lamp-1931.jpg!Large.jpg',
  'title': 'A lamp',
  'width': 756,
  'yearAsString': '1931'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1931,
  'contentId': 223731,
  'height': 440,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/bather-1931.jpg!Large.jpg',
  'title': 'Bather',
  'width': 344,
  'yearAsString': '1931'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1931,
  'contentId': 223797,
  'height': 400,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/bust-of-woman-1931.jpg!Large.jpg',
  'title': 'Bust of woman',
  'width': 300,
  'yearAsString': '1931'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1931,
  'contentId': 223919,
  'height': 723,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/figures-at-the-seaside-1931.jpg!Large.jpg',
  'title': 'Figures at the seaside',
  'width': 1088,
  'yearAsString': '1931'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1931,
  'contentId': 223952,
  'height': 1088,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/great-still-life-on-pedestal-1931.jpg!Large.jpg',
  'title': 'Great Still life on pedestal',
  'width': 717,
  'yearAsString': '1931'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1931,
  'contentId': 224401,
  'height': 1088,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/seated-woman-in-a-red-armchair-1931.jpg!Large.jpg',
  'title': 'Seated Woman in a Red Armchair',
  'width': 804,
  'yearAsString': '1931'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1931,
  'contentId': 224459,
  'height': 597,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/still-life-1931.jpg!Large.jpg',
  'title': 'Still life',
  'width': 802,
  'yearAsString': '1931'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1931,
  'contentId': 224591,
  'height': 1088,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/the-sculptor-1931.jpg!Large.jpg',
  'title': 'The sculptor',
  'width': 830,
  'yearAsString': '1931'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1931,
  'contentId': 224809,
  'height': 1088,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/woman-with-yellow-hair-1931.jpg!Large.jpg',
  'title': 'Woman with yellow hair',
  'width': 870,
  'yearAsString': '1931'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1931,
  'contentId': 224825,
  'height': 723,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/young-girl-throwing-a-rock-1931.jpg!Large.jpg',
  'title': 'Young girl throwing a rock',
  'width': 1088,
  'yearAsString': '1931'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1932,
  'contentId': 223681,
  'height': 1088,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/a-dream-1932.jpg!Large.jpg',
  'title': 'A dream',
  'width': 807,
  'yearAsString': '1932'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1932,
  'contentId': 223733,
  'height': 1088,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/bather-with-beach-ball-1932.jpg!Large.jpg',
  'title': 'Bather with beach ball',
  'width': 836,
  'yearAsString': '1932'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1932,
  'contentId': 223740,
  'height': 801,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/beach-game-and-rescue-1932.jpg!Large.jpg',
  'title': 'Beach game and rescue',
  'width': 1088,
  'yearAsString': '1932'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1932,
  'contentId': 223909,
  'height': 1088,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/female-nude-sitting-in-red-armchair-1932.jpg!Large.jpg',
  'title': 'Female nude sitting in red armchair',
  'width': 787,
  'yearAsString': '1932'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1932,
  'contentId': 223938,
  'height': 1088,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/girl-in-front-of-mirror-1932.jpg!Large.jpg',
  'title': 'Girl in front of mirror',
  'width': 866,
  'yearAsString': '1932'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1932,
  'contentId': 223939,
  'height': 400,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/girl-in-front-of-mirror-1932-1.jpg!Large.jpg',
  'title': 'Girl in front of mirror',
  'width': 300,
  'yearAsString': '1932'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1932,
  'contentId': 224075,
  'height': 793,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/lying-female-nude-1932.jpg!Large.jpg',
  'title': 'Lying female nude',
  'width': 1000,
  'yearAsString': '1932'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1932,
  'contentId': 224079,
  'height': 873,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/lying-female-nude-1932-1.jpg!Large.jpg',
  'title': 'Lying female nude',
  'width': 1088,
  'yearAsString': '1932'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1932,
  'contentId': 224080,
  'height': 760,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/lying-female-nude-1932-2.jpg!Large.jpg',
  'title': 'Lying female nude',
  'width': 1000,
  'yearAsString': '1932'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1932,
  'contentId': 224169,
  'height': 318,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/naked-woman-1932.jpg!Large.jpg',
  'title': 'Naked woman',
  'width': 400,
  'yearAsString': '1932'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1932,
  'contentId': 224336,
  'height': 1088,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/reading-1932.jpg!Large.jpg',
  'title': 'Reading',
  'width': 828,
  'yearAsString': '1932'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1932,
  'contentId': 224337,
  'height': 750,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/reclining-nude-1932.jpg!Large.jpg',
  'title': 'Reclining nude',
  'width': 1088,
  'yearAsString': '1932'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1932,
  'contentId': 224344,
  'height': 884,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/reclining-woman-1932.jpg!Large.jpg',
  'title': 'Reclining woman',
  'width': 1088,
  'yearAsString': '1932'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1932,
  'contentId': 224345,
  'height': 1088,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/reclining-woman-1932-1.jpg!Large.jpg',
  'title': 'Reclining woman',
  'width': 1001,
  'yearAsString': '1932'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1932,
  'contentId': 224366,
  'height': 480,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/seated-female-nude-1932.jpg!Large.jpg',
  'title': 'Seated female nude',
  'width': 368,
  'yearAsString': '1932'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1932,
  'contentId': 224433,
  'height': 1088,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/sleep-1932.jpg!Large.jpg',
  'title': 'Sleep',
  'width': 796,
  'yearAsString': '1932'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1932,
  'contentId': 224576,
  'height': 1088,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/the-mirror-1932.jpg!Large.jpg',
  'title': 'The mirror',
  'width': 794,
  'yearAsString': '1932'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1932,
  'contentId': 224586,
  'height': 1088,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/the-rescue-1932.jpg!Large.jpg',
  'title': 'The rescue',
  'width': 813,
  'yearAsString': '1932'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1932,
  'contentId': 224736,
  'height': 1088,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/woman-in-red-armchair-1932.jpg!Large.jpg',
  'title': 'Woman in red armchair',
  'width': 802,
  'yearAsString': '1932'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1932,
  'contentId': 224745,
  'height': 838,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/woman-on-the-beach-1932.jpg!Large.jpg',
  'title': 'Woman on the beach',
  'width': 1088,
  'yearAsString': '1932'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1932,
  'contentId': 224774,
  'height': 1088,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/woman-with-book-1932.jpg!Large.jpg',
  'title': 'Woman with book',
  'width': 812,
  'yearAsString': '1932'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1932,
  'contentId': 224789,
  'height': 1020,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/woman-with-flower-1932.jpg!Large.jpg',
  'title': 'Woman with flower',
  'width': 797,
  'yearAsString': '1932'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1933,
  'contentId': 223725,
  'height': 367,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/bacchic-scene-with-minotaur-1933.jpg!Large.jpg',
  'title': 'Bacchic scene with minotaur',
  'width': 436,
  'yearAsString': '1933'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1933,
  'contentId': 223894,
  'height': 1088,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/farmer-s-wife-on-a-stepladder-1933.jpg!Large.jpg',
  'title': "Farmer's wife on a stepladder",
  'width': 943,
  'yearAsString': '1933'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1933,
  'contentId': 224118,
  'height': 296,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/marie-therese-as-vestal-ensuring-the-minotaur-asleep-1933.jpg!Large.jpg',
  'title': 'Marie-Therese as vestal, ensuring the Minotaur asleep',
  'width': 410,
  'yearAsString': '1933'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1933,
  'contentId': 224131,
  'height': 307,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/minotaur-is-dying-1933.jpg!Large.jpg',
  'title': 'Minotaur is dying',
  'width': 400,
  'yearAsString': '1933'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1933,
  'contentId': 224132,
  'height': 303,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/minotaur-is-wounded-1933.jpg!Large.jpg',
  'title': 'Minotaur is wounded',
  'width': 400,
  'yearAsString': '1933'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1933,
  'contentId': 224133,
  'height': 296,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/minotaur-is-wounded-1933-1.jpg!Large.jpg',
  'title': 'Minotaur is wounded',
  'width': 400,
  'yearAsString': '1933'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1933,
  'contentId': 224207,
  'height': 480,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/nudes-and-bust-1933.jpg!Large.jpg',
  'title': 'Nudes and bust',
  'width': 634,
  'yearAsString': '1933'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1933,
  'contentId': 224430,
  'height': 827,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/silenus-dancing-in-company-1933.jpg!Large.jpg',
  'title': 'Silenus dancing in company',
  'width': 1088,
  'yearAsString': '1933'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1933,
  'contentId': 224592,
  'height': 839,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/the-sculptor-and-his-statue-1933.jpg!Large.jpg',
  'title': 'The Sculptor and His Statue',
  'width': 1088,
  'yearAsString': '1933'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1933,
  'contentId': 224635,
  'height': 1088,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/two-dressed-models-1933.jpg!Large.jpg',
  'title': 'Two dressed models',
  'width': 791,
  'yearAsString': '1933'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1933,
  'contentId': 224828,
  'height': 1088,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/model-for-the-cover-of-minotaur-1933.jpg!Large.jpg',
  'title': 'Model for the cover of "Minotaur"',
  'width': 861,
  'yearAsString': '1933'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1934,
  'contentId': 223678,
  'height': 576,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/a-bullfight-1934.jpg!Large.jpg',
  'title': 'A bullfight',
  'width': 769,
  'yearAsString': '1934'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1934,
  'contentId': 223679,
  'height': 854,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/a-bullfight-1934-1.jpg!Large.jpg',
  'title': 'A bullfight',
  'width': 1000,
  'yearAsString': '1934'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1934,
  'contentId': 223746,
  'height': 307,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/blind-minotaur-is-guided-by-girl-1934.jpg!Large.jpg',
  'title': 'Blind Minotaur is guided by girl',
  'width': 400,
  'yearAsString': '1934'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1934,
  'contentId': 223747,
  'height': 317,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/blind-minotaur-is-guided-by-girl-1934-1.jpg!Large.jpg',
  'title': 'Blind Minotaur is guided by girl',
  'width': 400,
  'yearAsString': '1934'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1934,
  'contentId': 223748,
  'height': 336,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/blind-minotaur-is-guided-by-girl-1934-2.jpg!Large.jpg',
  'title': 'Blind Minotaur is guided by girl',
  'width': 400,
  'yearAsString': '1934'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1934,
  'contentId': 223749,
  'height': 291,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/blind-minotaur-is-guided-by-girl-through-the-night-1934.jpg!Large.jpg',
  'title': 'Blind Minotaur is guided by girl through the night',
  'width': 400,
  'yearAsString': '1934'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1934,
  'contentId': 223778,
  'height': 807,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/bullfight-1934.jpg!Large.jpg',
  'title': 'Bullfight',
  'width': 1088,
  'yearAsString': '1934'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1934,
  'contentId': 223877,
  'height': 660,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/dying-bull-1934.jpg!Large.jpg',
  'title': 'Dying bull',
  'width': 1088,
  'yearAsString': '1934'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1934,
  'contentId': 223907,
  'height': 1088,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/female-nude-in-the-garden-1934.jpg!Large.jpg',
  'title': 'Female nude in the garden',
  'width': 857,
  'yearAsString': '1934'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1934,
  'contentId': 224206,
  'height': 318,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/nudes-1934.jpg!Large.jpg',
  'title': 'Nudes',
  'width': 400,
  'yearAsString': '1934'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1934,
  'contentId': 224636,
  'height': 1114,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/two-figures-1934.jpg!Large.jpg',
  'title': 'Two figures',
  'width': 888,
  'yearAsString': '1934'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1934,
  'contentId': 224765,
  'height': 1088,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/woman-turned-right-1934.jpg!Large.jpg',
  'title': 'Woman turned right',
  'width': 643,
  'yearAsString': '1934'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1934,
  'contentId': 224779,
  'height': 1088,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/woman-with-cap-1934.jpg!Large.jpg',
  'title': 'Woman with cap',
  'width': 729,
  'yearAsString': '1934'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1934,
  'contentId': 224806,
  'height': 769,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/woman-with-red-hat-1934.jpg!Large.jpg',
  'title': 'Woman with red hat',
  'width': 594,
  'yearAsString': '1934'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1934,
  'contentId': 224812,
  'height': 1088,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/woman-writing-1934.jpg!Large.jpg',
  'title': 'Woman writing',
  'width': 868,
  'yearAsString': '1934'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1934,
  'contentId': 259424,
  'height': 769,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/woman-s-head-1934.jpg!Large.jpg',
  'title': 'Woman’s Head',
  'width': 600,
  'yearAsString': '1934'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1935,
  'contentId': 223689,
  'height': 873,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/a-muse-1935.jpg!Large.jpg',
  'title': 'A muse',
  'width': 1088,
  'yearAsString': '1935'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1935,
  'contentId': 223787,
  'height': 1088,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/bust-of-a-woman-1935.jpg!Large.jpg',
  'title': 'Bust of a woman',
  'width': 899,
  'yearAsString': '1935'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1935,
  'contentId': 224014,
  'height': 1088,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/head-of-a-woman-olga-picasso-1935.jpg!Large.jpg',
  'title': 'Head of a woman (Olga Picasso)',
  'width': 900,
  'yearAsString': '1935'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1935,
  'contentId': 224575,
  'height': 416,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/the-minotauromachie-1935.jpg!Large.jpg',
  'title': 'The minotauromachie',
  'width': 584,
  'yearAsString': '1935'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1935,
  'contentId': 224747,
  'height': 1088,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/woman-reading-1935.jpg!Large.jpg',
  'title': 'Woman reading',
  'width': 848,
  'yearAsString': '1935'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1935,
  'contentId': 224798,
  'height': 990,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/woman-with-hat-olga-1935.jpg!Large.jpg',
  'title': 'Woman with hat (Olga)',
  'width': 795,
  'yearAsString': '1935'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1936,
  'contentId': 223691,
  'height': 870,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/a-reclining-female-nude-1936.jpg!Large.jpg',
  'title': 'A reclining female nude',
  'width': 1088,
  'yearAsString': '1936'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1936,
  'contentId': 223798,
  'height': 1088,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/bust-of-woman-1936.jpg!Large.jpg',
  'title': 'Bust of woman',
  'width': 887,
  'yearAsString': '1936'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1936,
  'contentId': 223895,
  'height': 828,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/faun-unveiling-a-sleeping-girl-jupiter-and-antiope-after-rembrandt-1936.jpg!Large.jpg',
  'title': 'Faun unveiling a sleeping girl (Jupiter and Antiope, after Rembrandt)',
  'width': 1088,
  'yearAsString': '1936'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1936,
  'contentId': 223896,
  'height': 877,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/faun-horse-and-bird-1936.jpg!Large.jpg',
  'title': 'Faun, horse and bird',
  'width': 1088,
  'yearAsString': '1936'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1936,
  'contentId': 223997,
  'height': 1000,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/head-1936.jpg!Large.jpg',
  'title': 'Head',
  'width': 824,
  'yearAsString': '1936'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1936,
  'contentId': 224135,
  'height': 831,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/minotaur-is-wounded-horse-and-personages-1936.jpg!Large.jpg',
  'title': 'Minotaur is wounded, horse and personages',
  'width': 1088,
  'yearAsString': '1936'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1936,
  'contentId': 224137,
  'height': 827,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/minotaur-with-dead-horse-in-front-of-a-cave-facing-a-girl-in-veil-1936.jpg!Large.jpg',
  'title': 'Minotaur with dead horse in front of a cave facing a girl in veil',
  'width': 1088,
  'yearAsString': '1936'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1936,
  'contentId': 224321,
  'height': 1088,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/portrait-of-woman-1936.jpg!Large.jpg',
  'title': 'Portrait of woman',
  'width': 888,
  'yearAsString': '1936'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1936,
  'contentId': 224322,
  'height': 1088,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/portrait-of-woman-1936-1.jpg!Large.jpg',
  'title': 'Portrait of woman',
  'width': 898,
  'yearAsString': '1936'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1936,
  'contentId': 224323,
  'height': 1088,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/portrait-of-woman-1936-2.jpg!Large.jpg',
  'title': 'Portrait of woman',
  'width': 893,
  'yearAsString': '1936'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1936,
  'contentId': 224327,
  'height': 1000,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/portrait-of-young-girl-1936.jpg!Large.jpg',
  'title': 'Portrait of young girl',
  'width': 839,
  'yearAsString': '1936'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1936,
  'contentId': 224434,
  'height': 840,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/sleeper-near-the-shutters-1936.jpg!Large.jpg',
  'title': 'Sleeper near the shutters',
  'width': 1000,
  'yearAsString': '1936'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1936,
  'contentId': 224485,
  'height': 593,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/still-life-with-lemon-and-jug-1936.jpg!Large.jpg',
  'title': 'Still life with lemon and jug',
  'width': 884,
  'yearAsString': '1936'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1936,
  'contentId': 224486,
  'height': 672,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/still-life-with-lemon-and-oranges-1936.jpg!Large.jpg',
  'title': 'Still life with lemon and oranges',
  'width': 807,
  'yearAsString': '1936'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1936,
  'contentId': 224497,
  'height': 262,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/still-life-school-of-paris-1936.jpg!Large.jpg',
  'title': 'Still life, school of Paris',
  'width': 342,
  'yearAsString': '1936'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1936,
  'contentId': 224585,
  'height': 728,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/the-remains-of-minotaur-in-a-harlequin-costume-1936.jpg!Large.jpg',
  'title': 'The Remains of Minotaur in a harlequin costume',
  'width': 1088,
  'yearAsString': '1936'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1936,
  'contentId': 224656,
  'height': 1000,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/untitled-1936.jpg!Large.jpg',
  'title': 'Untitled',
  'width': 834,
  'yearAsString': '1936'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1936,
  'contentId': 224657,
  'height': 1000,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/untitled-1936-1.jpg!Large.jpg',
  'title': 'Untitled',
  'width': 828,
  'yearAsString': '1936'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1936,
  'contentId': 224658,
  'height': 1000,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/untitled-1936-2.jpg!Large.jpg',
  'title': 'Untitled',
  'width': 832,
  'yearAsString': '1936'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1936,
  'contentId': 224659,
  'height': 1000,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/untitled-1936-3.jpg!Large.jpg',
  'title': 'Untitled',
  'width': 831,
  'yearAsString': '1936'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1936,
  'contentId': 224660,
  'height': 1000,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/untitled-1936-4.jpg!Large.jpg',
  'title': 'Untitled',
  'width': 843,
  'yearAsString': '1936'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1936,
  'contentId': 224661,
  'height': 1000,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/untitled-1936-5.jpg!Large.jpg',
  'title': 'Untitled',
  'width': 825,
  'yearAsString': '1936'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1936,
  'contentId': 224662,
  'height': 1000,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/untitled-1936-6.jpg!Large.jpg',
  'title': 'Untitled',
  'width': 826,
  'yearAsString': '1936'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1936,
  'contentId': 224696,
  'height': 652,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/untitled-1936-7.jpg!Large.jpg',
  'title': 'Untitled',
  'width': 1000,
  'yearAsString': '1936'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1936,
  'contentId': 224697,
  'height': 1000,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/untitled-1936-8.jpg!Large.jpg',
  'title': 'Untitled',
  'width': 837,
  'yearAsString': '1936'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1936,
  'contentId': 224698,
  'height': 1000,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/untitled-1936-9.jpg!Large.jpg',
  'title': 'Untitled',
  'width': 834,
  'yearAsString': '1936'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1936,
  'contentId': 224724,
  'height': 1088,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/woman-by-the-dresser-1936.jpg!Large.jpg',
  'title': 'Woman by the dresser',
  'width': 898,
  'yearAsString': '1936'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1936,
  'contentId': 224725,
  'height': 1000,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/woman-by-the-dresser-1936-1.jpg!Large.jpg',
  'title': 'Woman by the dresser',
  'width': 832,
  'yearAsString': '1936'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1936,
  'contentId': 224726,
  'height': 1000,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/woman-by-the-window-1936.jpg!Large.jpg',
  'title': 'Woman by the window',
  'width': 841,
  'yearAsString': '1936'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1936,
  'contentId': 224729,
  'height': 1000,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/woman-in-a-straw-hat-1936.jpg!Large.jpg',
  'title': 'Woman in a Straw Hat',
  'width': 826,
  'yearAsString': '1936'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1936,
  'contentId': 224739,
  'height': 1000,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/woman-in-the-interior-1936.jpg!Large.jpg',
  'title': 'Woman in the interior',
  'width': 818,
  'yearAsString': '1936'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1936,
  'contentId': 224775,
  'height': 1088,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/woman-with-bouquet-1936.jpg!Large.jpg',
  'title': 'Woman with bouquet',
  'width': 881,
  'yearAsString': '1936'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1937,
  'contentId': 223852,
  'height': 1088,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/crying-woman-1937.jpg!Large.jpg',
  'title': 'Crying woman',
  'width': 914,
  'yearAsString': '1937'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1937,
  'contentId': 223853,
  'height': 1088,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/crying-woman-1937-1.jpg!Large.jpg',
  'title': 'Crying woman',
  'width': 862,
  'yearAsString': '1937'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1937,
  'contentId': 223854,
  'height': 350,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/crying-woman-1937-2.jpg!Large.jpg',
  'title': 'Crying woman',
  'width': 444,
  'yearAsString': '1937'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1937,
  'contentId': 223855,
  'height': 400,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/crying-woman-1937-3.jpg!Large.jpg',
  'title': 'Crying woman',
  'width': 315,
  'yearAsString': '1937'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1937,
  'contentId': 223871,
  'height': 758,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/dream-and-lie-of-franco-1937.jpg!Large.jpg',
  'title': 'Dream and Lie of Franco',
  'width': 927,
  'yearAsString': '1937'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1937,
  'contentId': 223872,
  'height': 807,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/dream-and-lie-of-franco-1937-1.jpg!Large.jpg',
  'title': 'Dream and Lie of Franco',
  'width': 1088,
  'yearAsString': '1937'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1937,
  'contentId': 223951,
  'height': 1088,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/great-bather-reading-1937.jpg!Large.jpg',
  'title': 'Great bather reading',
  'width': 828,
  'yearAsString': '1937'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1937,
  'contentId': 223956,
  'height': 473,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/guernica-1937.jpg!Large.jpg',
  'title': 'Guernica',
  'width': 1088,
  'yearAsString': '1937'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1937,
  'contentId': 224062,
  'height': 1107,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/leaning-woman-1937.jpg!Large.jpg',
  'title': 'Leaning woman',
  'width': 807,
  'yearAsString': '1937'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1937,
  'contentId': 224134,
  'height': 832,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/minotaur-is-wounded-1937.jpg!Large.jpg',
  'title': 'Minotaur is wounded',
  'width': 1000,
  'yearAsString': '1937'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1937,
  'contentId': 224268,
  'height': 1088,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/portrait-of-dora-maar-1937.jpg!Large.jpg',
  'title': 'Portrait of Dora Maar',
  'width': 900,
  'yearAsString': '1937'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1937,
  'contentId': 224269,
  'height': 1088,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/portrait-of-dora-maar-1937-1.jpg!Large.jpg',
  'title': 'Portrait of Dora Maar',
  'width': 755,
  'yearAsString': '1937'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1937,
  'contentId': 224270,
  'height': 1088,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/portrait-of-dora-maar-1937-2.jpg!Large.jpg',
  'title': 'Portrait of Dora Maar',
  'width': 899,
  'yearAsString': '1937'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1937,
  'contentId': 224286,
  'height': 1000,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/portrait-of-lee-miller-as-arlesienne-1937.jpg!Large.jpg',
  'title': 'Portrait of Lee Miller as Arlesienne',
  'width': 771,
  'yearAsString': '1937'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1937,
  'contentId': 224291,
  'height': 1000,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/portrait-of-marie-therese-1937.jpg!Large.jpg',
  'title': 'Portrait of Marie-Therese',
  'width': 731,
  'yearAsString': '1937'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1937,
  'contentId': 224292,
  'height': 1088,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/portrait-of-marie-thérèse-walter-1937.jpg!Large.jpg',
  'title': 'Portrait of Marie-Thérèse Walter',
  'width': 888,
  'yearAsString': '1937'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1937,
  'contentId': 224293,
  'height': 1088,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/portrait-of-marie-thérèse-walter-1937-1.jpg!Large.jpg',
  'title': 'Portrait of Marie-Thérèse Walter',
  'width': 870,
  'yearAsString': '1937'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1937,
  'contentId': 224295,
  'height': 1088,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/portrait-of-marie-thérèse-walter-with-garland-1937.jpg!Large.jpg',
  'title': 'Portrait of Marie-Thérèse Walter with garland',
  'width': 818,
  'yearAsString': '1937'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1937,
  'contentId': 224301,
  'height': 1000,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/portrait-of-nusch-éluard-1937.jpg!Large.jpg',
  'title': 'Portrait of Nusch Éluard',
  'width': 735,
  'yearAsString': '1937'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1937,
  'contentId': 224304,
  'height': 699,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/portrait-of-paul-éluard-1937.jpg!Large.jpg',
  'title': 'Portrait of Paul Éluard',
  'width': 552,
  'yearAsString': '1937'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1937,
  'contentId': 224383,
  'height': 1000,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/seated-portrait-of-marie-therese-walter-1937.jpg!Large.jpg',
  'title': 'Seated Portrait of Marie-Therese Walter',
  'width': 751,
  'yearAsString': '1937'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1937,
  'contentId': 224475,
  'height': 352,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/still-life-with-candle-1937.jpg!Large.jpg',
  'title': 'Still life with candle',
  'width': 429,
  'yearAsString': '1937'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1937,
  'contentId': 224476,
  'height': 1088,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/still-life-with-candlestick-1937.jpg!Large.jpg',
  'title': 'Still life with candlestick',
  'width': 903,
  'yearAsString': '1937'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1937,
  'contentId': 224564,
  'height': 1088,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/the-imploring-1937.jpg!Large.jpg',
  'title': 'The Imploring',
  'width': 825,
  'yearAsString': '1937'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1937,
  'contentId': 224663,
  'height': 779,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/untitled-1937.jpg!Large.jpg',
  'title': 'Untitled',
  'width': 1000,
  'yearAsString': '1937'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1937,
  'contentId': 224664,
  'height': 748,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/untitled-1937-1.jpg!Large.jpg',
  'title': 'Untitled',
  'width': 1000,
  'yearAsString': '1937'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1937,
  'contentId': 224665,
  'height': 731,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/untitled-1937-2.jpg!Large.jpg',
  'title': 'Untitled',
  'width': 1000,
  'yearAsString': '1937'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1937,
  'contentId': 224666,
  'height': 1000,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/untitled-1937-3.jpg!Large.jpg',
  'title': 'Untitled',
  'width': 823,
  'yearAsString': '1937'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1937,
  'contentId': 224667,
  'height': 752,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/untitled-1937-4.jpg!Large.jpg',
  'title': 'Untitled',
  'width': 1000,
  'yearAsString': '1937'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1937,
  'contentId': 224668,
  'height': 1000,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/untitled-1937-5.jpg!Large.jpg',
  'title': 'Untitled',
  'width': 759,
  'yearAsString': '1937'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1937,
  'contentId': 224669,
  'height': 1000,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/untitled-1937-6.jpg!Large.jpg',
  'title': 'Untitled',
  'width': 831,
  'yearAsString': '1937'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1937,
  'contentId': 224670,
  'height': 1000,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/untitled-1937-7.jpg!Large.jpg',
  'title': 'Untitled',
  'width': 828,
  'yearAsString': '1937'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1937,
  'contentId': 224672,
  'height': 1000,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/untitled-1937-9.jpg!Large.jpg',
  'title': 'Untitled',
  'width': 843,
  'yearAsString': '1937'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1937,
  'contentId': 224673,
  'height': 1000,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/untitled-1937-10.jpg!Large.jpg',
  'title': 'Untitled',
  'width': 712,
  'yearAsString': '1937'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1937,
  'contentId': 224699,
  'height': 1000,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/untitled-1937-11.jpg!Large.jpg',
  'title': 'Untitled',
  'width': 822,
  'yearAsString': '1937'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1937,
  'contentId': 224732,
  'height': 1088,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/woman-in-beret-and-checked-dress-1937.jpg!Large.jpg',
  'title': 'Woman in beret and checked dress',
  'width': 888,
  'yearAsString': '1937'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1938,
  'contentId': 223693,
  'height': 1000,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/a-rooster-1938.jpg!Large.jpg',
  'title': 'A rooster',
  'width': 822,
  'yearAsString': '1938'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1938,
  'contentId': 223694,
  'height': 1088,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/a-rooster-1938-1.jpg!Large.jpg',
  'title': 'A rooster',
  'width': 775,
  'yearAsString': '1938'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1938,
  'contentId': 223808,
  'height': 812,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/candle-palette-head-of-red-bull-1938.jpg!Large.jpg',
  'title': 'Candle, palette, head of red bull',
  'width': 1088,
  'yearAsString': '1938'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1938,
  'contentId': 223809,
  'height': 854,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/candle-palette-head-of-red-bull-1938-1.jpg!Large.jpg',
  'title': 'Candle, palette, head of red bull',
  'width': 1088,
  'yearAsString': '1938'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1938,
  'contentId': 223897,
  'height': 1088,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/faun-s-head-1938.jpg!Large.jpg',
  'title': "Faun's head",
  'width': 891,
  'yearAsString': '1938'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1938,
  'contentId': 223999,
  'height': 1088,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/head-1.jpg!Large.jpg',
  'title': 'Head',
  'width': 809,
  'yearAsString': '1938'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1938,
  'contentId': 224105,
  'height': 1088,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/man-with-a-straw-hat-and-an-ice-cream-1938.jpg!Large.jpg',
  'title': 'Man with a straw hat and an ice-cream',
  'width': 813,
  'yearAsString': '1938'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1938,
  'contentId': 224108,
  'height': 1088,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/man-with-ice-cream-cone-1938.jpg!Large.jpg',
  'title': 'Man with ice-cream cone',
  'width': 814,
  'yearAsString': '1938'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1938,
  'contentId': 224114,
  'height': 1088,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/man-with-straw-hat-1938.jpg!Large.jpg',
  'title': 'Man with straw hat',
  'width': 893,
  'yearAsString': '1938'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1938,
  'contentId': 224123,
  'height': 1088,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/maya-with-boat-1938.jpg!Large.jpg',
  'title': 'Maya with boat',
  'width': 797,
  'yearAsString': '1938'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1938,
  'contentId': 224149,
  'height': 1000,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/mother-and-child-marie-therese-and-maya-1938.jpg!Large.jpg',
  'title': 'Mother and child (Marie-Therese and Maya)',
  'width': 844,
  'yearAsString': '1938'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1938,
  'contentId': 224297,
  'height': 1000,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/portrait-of-maya-1938.jpg!Large.jpg',
  'title': 'Portrait of Maya',
  'width': 796,
  'yearAsString': '1938'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1938,
  'contentId': 224298,
  'height': 1088,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/portrait-of-maya-with-her-doll-1938.jpg!Large.jpg',
  'title': 'Portrait of Maya with her doll',
  'width': 884,
  'yearAsString': '1938'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1938,
  'contentId': 224402,
  'height': 1088,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/seated-woman-in-garden-1938.jpg!Large.jpg',
  'title': 'Seated woman in garden',
  'width': 805,
  'yearAsString': '1938'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1938,
  'contentId': 224469,
  'height': 811,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/still-life-with-a-bull-s-head-book-and-candle-range-1938.jpg!Large.jpg',
  'title': "Still life with a bull's head, book and candle range",
  'width': 1088,
  'yearAsString': '1938'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1938,
  'contentId': 224590,
  'height': 1088,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/the-sailor-1938.jpg!Large.jpg',
  'title': 'The sailor',
  'width': 889,
  'yearAsString': '1938'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1938,
  'contentId': 224674,
  'height': 835,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/untitled-1938.jpg!Large.jpg',
  'title': 'Untitled',
  'width': 1000,
  'yearAsString': '1938'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1938,
  'contentId': 224675,
  'height': 835,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/untitled-1938-1.jpg!Large.jpg',
  'title': 'Untitled',
  'width': 1000,
  'yearAsString': '1938'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1938,
  'contentId': 224676,
  'height': 810,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/untitled-1938-2.jpg!Large.jpg',
  'title': 'Untitled',
  'width': 1000,
  'yearAsString': '1938'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1938,
  'contentId': 224677,
  'height': 1000,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/untitled-1938-3.jpg!Large.jpg',
  'title': 'Untitled',
  'width': 856,
  'yearAsString': '1938'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1938,
  'contentId': 224678,
  'height': 1000,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/untitled-1938-4.jpg!Large.jpg',
  'title': 'Untitled',
  'width': 831,
  'yearAsString': '1938'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1938,
  'contentId': 224751,
  'height': 1000,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/woman-sitting-in-an-armchair-1938.jpg!Large.jpg',
  'title': 'Woman sitting in an armchair',
  'width': 703,
  'yearAsString': '1938'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1938,
  'contentId': 224785,
  'height': 1088,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/woman-with-cockerel-1938.jpg!Large.jpg',
  'title': 'Woman with cockerel',
  'width': 888,
  'yearAsString': '1938'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1938,
  'contentId': 224808,
  'height': 1088,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/woman-with-straw-hat-on-flowery-background-1938.jpg!Large.jpg',
  'title': 'Woman with straw hat on flowery background',
  'width': 895,
  'yearAsString': '1938'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1938,
  'contentId': 224817,
  'height': 737,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/women-at-their-toilette-1938.jpg!Large.jpg',
  'title': 'Women at their toilette',
  'width': 1088,
  'yearAsString': '1938'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1939,
  'contentId': 223799,
  'height': 1088,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/bust-of-woman-1939.jpg!Large.jpg',
  'title': 'Bust of woman',
  'width': 714,
  'yearAsString': '1939'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1939,
  'contentId': 223811,
  'height': 573,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/cat-catching-a-bird-1939.jpg!Large.jpg',
  'title': 'Cat catching a bird',
  'width': 723,
  'yearAsString': '1939'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1939,
  'contentId': 223812,
  'height': 808,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/cat-eating-a-bird-1939.jpg!Large.jpg',
  'title': 'Cat eating a bird',
  'width': 1088,
  'yearAsString': '1939'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1939,
  'contentId': 223832,
  'height': 480,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/contemplating-people-1939.jpg!Large.jpg',
  'title': 'Contemplating people',
  'width': 365,
  'yearAsString': '1939'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1939,
  'contentId': 223868,
  'height': 1088,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/dora-maar-1939.jpg!Large.jpg',
  'title': 'Dora Maar',
  'width': 893,
  'yearAsString': '1939'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1939,
  'contentId': 224013,
  'height': 1088,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/head-of-a-woman-1939.jpg!Large.jpg',
  'title': 'Head of a woman',
  'width': 736,
  'yearAsString': '1939'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1939,
  'contentId': 224119,
  'height': 1088,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/marie-therese-leaning-1939.jpg!Large.jpg',
  'title': 'Marie-Therese leaning',
  'width': 751,
  'yearAsString': '1939'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1939,
  'contentId': 224175,
  'height': 648,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/night-fishing-at-antibes-1939.jpg!Large.jpg',
  'title': 'Night fishing at Antibes',
  'width': 1088,
  'yearAsString': '1939'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1939,
  'contentId': 224282,
  'height': 1088,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/portrait-of-jaime-sabartes-as-grandee-1939.jpg!Large.jpg',
  'title': 'Portrait of Jaime Sabartes as Grandee',
  'width': 879,
  'yearAsString': '1939'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1939,
  'contentId': 224367,
  'height': 658,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/seated-female-nude-1939.jpg!Large.jpg',
  'title': 'Seated female nude',
  'width': 496,
  'yearAsString': '1939'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1939,
  'contentId': 224384,
  'height': 1088,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/seated-woman-1939.jpg!Large.jpg',
  'title': 'Seated woman',
  'width': 857,
  'yearAsString': '1939'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1939,
  'contentId': 224406,
  'height': 1000,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/seated-woman-with-blue-and-red-hat-1939.jpg!Large.jpg',
  'title': 'Seated woman with blue and red hat',
  'width': 783,
  'yearAsString': '1939'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1939,
  'contentId': 224473,
  'height': 703,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/still-life-with-bull-s-skull-1939.jpg!Large.jpg',
  'title': "Still life with bull's skull",
  'width': 1088,
  'yearAsString': '1939'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1939,
  'contentId': 224613,
  'height': 1088,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/the-yellow-shirt-dora-maar-1939.jpg!Large.jpg',
  'title': 'The yellow shirt (Dora Maar)',
  'width': 864,
  'yearAsString': '1939'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1939,
  'contentId': 224679,
  'height': 1000,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/untitled-1939.jpg!Large.jpg',
  'title': 'Untitled',
  'width': 683,
  'yearAsString': '1939'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1939,
  'contentId': 224680,
  'height': 788,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/untitled-1939-1.jpg!Large.jpg',
  'title': 'Untitled',
  'width': 1000,
  'yearAsString': '1939'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1939,
  'contentId': 224681,
  'height': 1000,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/untitled-1939-2.jpg!Large.jpg',
  'title': 'Untitled',
  'width': 809,
  'yearAsString': '1939'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1939,
  'contentId': 224682,
  'height': 1000,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/untitled-1939-3.jpg!Large.jpg',
  'title': 'Untitled',
  'width': 771,
  'yearAsString': '1939'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1939,
  'contentId': 224683,
  'height': 1000,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/untitled-1939-4.jpg!Large.jpg',
  'title': 'Untitled',
  'width': 823,
  'yearAsString': '1939'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1939,
  'contentId': 224684,
  'height': 653,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/untitled-1939-5.jpg!Large.jpg',
  'title': 'Untitled',
  'width': 1000,
  'yearAsString': '1939'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1939,
  'contentId': 224685,
  'height': 1000,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/untitled-1939-6.jpg!Large.jpg',
  'title': 'Untitled',
  'width': 623,
  'yearAsString': '1939'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1939,
  'contentId': 224686,
  'height': 1000,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/untitled-1939-7.jpg!Large.jpg',
  'title': 'Untitled',
  'width': 750,
  'yearAsString': '1939'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1939,
  'contentId': 224687,
  'height': 1000,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/untitled-1939-8.jpg!Large.jpg',
  'title': 'Untitled',
  'width': 625,
  'yearAsString': '1939'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1939,
  'contentId': 224755,
  'height': 1088,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/woman-sitting-in-an-armchair-1939.jpg!Large.jpg',
  'title': 'Woman sitting in an armchair',
  'width': 861,
  'yearAsString': '1939'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1939,
  'contentId': 224763,
  'height': 1000,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/woman-sitting-in-red-armchair-1939.jpg!Large.jpg',
  'title': 'Woman sitting in red armchair',
  'width': 820,
  'yearAsString': '1939'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1939,
  'contentId': 224813,
  'height': 1088,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/woman-s-head-1939.jpg!Large.jpg',
  'title': "Woman's head",
  'width': 906,
  'yearAsString': '1939'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1940,
  'contentId': 223686,
  'height': 815,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/a-hat-with-flowers-1940.jpg!Large.jpg',
  'title': 'A hat with flowers',
  'width': 657,
  'yearAsString': '1940'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1940,
  'contentId': 223806,
  'height': 872,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/café-in-royan-1940.jpg!Large.jpg',
  'title': 'Café in Royan',
  'width': 1088,
  'yearAsString': '1940'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1940,
  'contentId': 223807,
  'height': 672,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/café-royan-1940.jpg!Large.jpg',
  'title': "Café 'Royan'",
  'width': 816,
  'yearAsString': '1940'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1940,
  'contentId': 224764,
  'height': 1088,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/woman-styling-her-hair-1940.jpg!Large.jpg',
  'title': 'Woman styling her hair',
  'width': 791,
  'yearAsString': '1940'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1941,
  'contentId': 223759,
  'height': 1088,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/boy-with-a-langosta-1941.jpg!Large.jpg',
  'title': 'Boy with a langosta',
  'width': 802,
  'yearAsString': '1941'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1941,
  'contentId': 223899,
  'height': 420,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/female-bust-portrait-de-dora-maar-1941.jpg!Large.jpg',
  'title': 'Female bust (Portrait de Dora Maar)',
  'width': 332,
  'yearAsString': '1941'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1941,
  'contentId': 223901,
  'height': 1088,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/female-nude-1941.jpg!Large.jpg',
  'title': 'Female nude',
  'width': 768,
  'yearAsString': '1941'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1941,
  'contentId': 224302,
  'height': 852,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/portrait-of-nusch-éluard-1941.jpg!Large.jpg',
  'title': 'Portrait of Nusch Éluard',
  'width': 700,
  'yearAsString': '1941'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1941,
  'contentId': 224359,
  'height': 1088,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/seated-dora-maar-1941.jpg!Large.jpg',
  'title': 'Seated Dora Maar',
  'width': 877,
  'yearAsString': '1941'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1941,
  'contentId': 224394,
  'height': 400,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/seated-woman-1941.jpg!Large.jpg',
  'title': 'Seated woman',
  'width': 314,
  'yearAsString': '1941'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1941,
  'contentId': 224405,
  'height': 1088,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/seated-woman-on-wooden-chair-1941.jpg!Large.jpg',
  'title': 'Seated woman on wooden chair',
  'width': 789,
  'yearAsString': '1941'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1941,
  'contentId': 224411,
  'height': 1000,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/seated-woman-with-spelling-book-1941.jpg!Large.jpg',
  'title': 'Seated woman with spelling book',
  'width': 774,
  'yearAsString': '1941'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1941,
  'contentId': 224730,
  'height': 1088,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/woman-in-an-armchair-1941.jpg!Large.jpg',
  'title': 'Woman in an armchair',
  'width': 736,
  'yearAsString': '1941'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1941,
  'contentId': 224737,
  'height': 1088,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/woman-in-striped-armchair-1941.jpg!Large.jpg',
  'title': 'Woman in striped armchair',
  'width': 802,
  'yearAsString': '1941'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1941,
  'contentId': 224752,
  'height': 1088,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/woman-sitting-in-an-armchair-1941.jpg!Large.jpg',
  'title': 'Woman sitting in an armchair',
  'width': 875,
  'yearAsString': '1941'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1941,
  'contentId': 224756,
  'height': 1088,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/woman-sitting-in-an-armchair-1941-1.jpg!Large.jpg',
  'title': 'Woman sitting in an armchair',
  'width': 804,
  'yearAsString': '1941'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1941,
  'contentId': 224757,
  'height': 400,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/woman-sitting-in-an-armchair-1941-2.jpg!Large.jpg',
  'title': 'Woman sitting in an armchair',
  'width': 312,
  'yearAsString': '1941'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1941,
  'contentId': 366365,
  'height': 1440,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/woman-in-an-armchair-1941-1.jpg!Large.jpg',
  'title': 'Woman in an Armchair',
  'width': 1136,
  'yearAsString': '1941'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1942,
  'contentId': 223786,
  'height': 773,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/bull-s-head-on-the-table-1942.jpg!Large.jpg',
  'title': "Bull's head on the table",
  'width': 590,
  'yearAsString': '1942'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1942,
  'contentId': 223788,
  'height': 1088,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/bust-of-a-woman-1942.jpg!Large.jpg',
  'title': 'Bust of a woman',
  'width': 881,
  'yearAsString': '1942'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1942,
  'contentId': 224325,
  'height': 1088,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/portrait-of-woman-dora-maar-1942.jpg!Large.jpg',
  'title': 'Portrait of woman (Dora Maar)',
  'width': 882,
  'yearAsString': '1942'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1942,
  'contentId': 224407,
  'height': 1088,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/seated-woman-with-fish-1942.jpg!Large.jpg',
  'title': 'Seated Woman with Fish',
  'width': 875,
  'yearAsString': '1942'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1942,
  'contentId': 224482,
  'height': 1088,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/still-life-with-guitar-1942.jpg!Large.jpg',
  'title': 'Still life with Guitar',
  'width': 882,
  'yearAsString': '1942'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1942,
  'contentId': 224489,
  'height': 1088,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/still-life-with-skull-of-ox-1942.jpg!Large.jpg',
  'title': 'Still life with skull of ox',
  'width': 808,
  'yearAsString': '1942'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1942,
  'contentId': 224594,
  'height': 789,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/the-serenade-1942.jpg!Large.jpg',
  'title': 'The serenade',
  'width': 1088,
  'yearAsString': '1942'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1943,
  'contentId': 223680,
  'height': 1088,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/a-child-with-pigeons-1943.jpg!Large.jpg',
  'title': 'A child with pigeons',
  'width': 866,
  'yearAsString': '1943'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1943,
  'contentId': 223800,
  'height': 400,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/bust-of-woman-1943.jpg!Large.jpg',
  'title': 'Bust of woman',
  'width': 317,
  'yearAsString': '1943'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1943,
  'contentId': 223921,
  'height': 544,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/firsts-steps-1943.jpg!Large.jpg',
  'title': 'Firsts steps',
  'width': 408,
  'yearAsString': '1943'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1943,
  'contentId': 224028,
  'height': 983,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/head-of-woman-1943.jpg!Large.jpg',
  'title': 'Head of woman',
  'width': 689,
  'yearAsString': '1943'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1943,
  'contentId': 224265,
  'height': 782,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/portrait-of-d-m-1943.jpg!Large.jpg',
  'title': 'Portrait of D. M.',
  'width': 585,
  'yearAsString': '1943'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1943,
  'contentId': 224432,
  'height': 877,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/skull-urchins-and-lamp-on-a-table-1943.jpg!Large.jpg',
  'title': 'Skull, urchins and lamp on a table',
  'width': 1088,
  'yearAsString': '1943'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1943,
  'contentId': 224447,
  'height': 576,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/square-du-vert-galant-1943.jpg!Large.jpg',
  'title': 'Square du Vert-Galant',
  'width': 791,
  'yearAsString': '1943'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1943,
  'contentId': 224534,
  'height': 326,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/the-buffet-catalan-1943.jpg!Large.jpg',
  'title': "The Buffet 'Catalan'",
  'width': 400,
  'yearAsString': '1943'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1943,
  'contentId': 224535,
  'height': 880,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/the-buffet-of-catalan-1943.jpg!Large.jpg',
  'title': "The buffet of 'Catalan'",
  'width': 1088,
  'yearAsString': '1943'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1943,
  'contentId': 224711,
  'height': 1000,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/vase-with-flowers-1943.jpg!Large.jpg',
  'title': 'Vase with flowers',
  'width': 763,
  'yearAsString': '1943'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1943,
  'contentId': 224712,
  'height': 326,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/vase-with-flowers-1943-1.jpg!Large.jpg',
  'title': 'Vase with flowers',
  'width': 400,
  'yearAsString': '1943'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1943,
  'contentId': 224735,
  'height': 1088,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/woman-in-green-1943.jpg!Large.jpg',
  'title': 'Woman in green',
  'width': 789,
  'yearAsString': '1943'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1943,
  'contentId': 224795,
  'height': 1088,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/woman-with-hat-1943.jpg!Large.jpg',
  'title': 'Woman with hat',
  'width': 848,
  'yearAsString': '1943'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1944,
  'contentId': 223948,
  'height': 861,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/glass-and-pitcher-1944.jpg!Large.jpg',
  'title': 'Glass and pitcher',
  'width': 1088,
  'yearAsString': '1944'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1944,
  'contentId': 224484,
  'height': 848,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/still-life-with-lamp-1944.jpg!Large.jpg',
  'title': 'Still life with lamp',
  'width': 1088,
  'yearAsString': '1944'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1944,
  'contentId': 224629,
  'height': 1088,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/tomato-plant-1944.jpg!Large.jpg',
  'title': 'Tomato plant',
  'width': 870,
  'yearAsString': '1944'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1944,
  'contentId': 224766,
  'height': 1088,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/woman-washing-her-feet-1944.jpg!Large.jpg',
  'title': 'Woman washing her feet',
  'width': 850,
  'yearAsString': '1944'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1944,
  'contentId': 224777,
  'height': 794,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/woman-with-brooch-1944.jpg!Large.jpg',
  'title': 'Woman with brooch',
  'width': 585,
  'yearAsString': '1944'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1945,
  'contentId': 223766,
  'height': 757,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/bull-plate-i-1945.jpg!Large.jpg',
  'title': 'Bull (plate I)',
  'width': 1088,
  'yearAsString': '1945'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1945,
  'contentId': 223767,
  'height': 380,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/bull-plate-ii-1945.jpg!Large.jpg',
  'title': 'Bull (plate II)',
  'width': 520,
  'yearAsString': '1945'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1945,
  'contentId': 223768,
  'height': 385,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/bull-plate-iii-1945.jpg!Large.jpg',
  'title': 'Bull (plate III)',
  'width': 500,
  'yearAsString': '1945'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1945,
  'contentId': 223769,
  'height': 757,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/bull-plate-iv-1945.jpg!Large.jpg',
  'title': 'Bull (plate IV)',
  'width': 1088,
  'yearAsString': '1945'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1945,
  'contentId': 223771,
  'height': 729,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/bull-plate-v-1945.jpg!Large.jpg',
  'title': 'Bull (plate V)',
  'width': 1088,
  'yearAsString': '1945'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1945,
  'contentId': 223772,
  'height': 809,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/bull-plate-vi-1945.jpg!Large.jpg',
  'title': 'Bull (plate VI)',
  'width': 1088,
  'yearAsString': '1945'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1945,
  'contentId': 223773,
  'height': 757,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/bull-plate-vii-1945.jpg!Large.jpg',
  'title': 'Bull (plate VII)',
  'width': 1088,
  'yearAsString': '1945'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1945,
  'contentId': 223818,
  'height': 1088,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/child-with-flower-1945.jpg!Large.jpg',
  'title': 'Child with flower',
  'width': 672,
  'yearAsString': '1945'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1945,
  'contentId': 223842,
  'height': 707,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/crane-and-pitcher-1945.jpg!Large.jpg',
  'title': 'Crane and pitcher',
  'width': 892,
  'yearAsString': '1945'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1945,
  'contentId': 223915,
  'height': 1000,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/figure-1945.jpg!Large.jpg',
  'title': 'Figure',
  'width': 754,
  'yearAsString': '1945'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1945,
  'contentId': 224047,
  'height': 830,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/jug-candle-and-enamel-pan-1945.jpg!Large.jpg',
  'title': 'Jug, candle and enamel pan',
  'width': 1088,
  'yearAsString': '1945'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1945,
  'contentId': 224064,
  'height': 764,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/leeks-fish-head-skull-and-pitcher-1945.jpg!Large.jpg',
  'title': 'Leeks, fish head, skull and pitcher',
  'width': 1088,
  'yearAsString': '1945'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1945,
  'contentId': 224355,
  'height': 872,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/scenes-of-bullfighting-1945.jpg!Large.jpg',
  'title': 'Scenes of bullfighting',
  'width': 1088,
  'yearAsString': '1945'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1945,
  'contentId': 224408,
  'height': 1000,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/seated-woman-with-flat-hat-1945.jpg!Large.jpg',
  'title': 'Seated woman with flat hat',
  'width': 687,
  'yearAsString': '1945'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1945,
  'contentId': 224431,
  'height': 611,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/skull-and-leeks-1945.jpg!Large.jpg',
  'title': 'Skull and leeks',
  'width': 807,
  'yearAsString': '1945'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1945,
  'contentId': 224574,
  'height': 859,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/the-mass-grave.jpg!Large.jpg',
  'title': 'The mass grave',
  'width': 1088,
  'yearAsString': '1945'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1946,
  'contentId': 223770,
  'height': 346,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/bull-plate-ix-1946.jpg!Large.jpg',
  'title': 'Bull (plate IX)',
  'width': 475,
  'yearAsString': '1946'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1946,
  'contentId': 223774,
  'height': 310,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/bull-plate-viii-1946.jpg!Large.jpg',
  'title': 'Bull (plate VIII)',
  'width': 500,
  'yearAsString': '1946'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1946,
  'contentId': 223775,
  'height': 757,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/bull-plate-x-1946.jpg!Large.jpg',
  'title': 'Bull (plate X)',
  'width': 1088,
  'yearAsString': '1946'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1946,
  'contentId': 223776,
  'height': 367,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/bull-plate-xi-1946.jpg!Large.jpg',
  'title': 'Bull (plate XI)',
  'width': 500,
  'yearAsString': '1946'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1946,
  'contentId': 223777,
  'height': 664,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/bull-study-1946.jpg!Large.jpg',
  'title': 'Bull (study)',
  'width': 1088,
  'yearAsString': '1946'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1946,
  'contentId': 223828,
  'height': 1000,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/composition-1946.jpg!Large.jpg',
  'title': 'Composition',
  'width': 699,
  'yearAsString': '1946'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1946,
  'contentId': 223843,
  'height': 907,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/crane-book-and-oil-lamp-1946.jpg!Large.jpg',
  'title': 'Crane, book and oil lamp',
  'width': 1088,
  'yearAsString': '1946'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1946,
  'contentId': 224015,
  'height': 1088,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/head-of-a-woman-with-green-curls-1946.jpg!Large.jpg',
  'title': 'Head of a woman with green curls',
  'width': 832,
  'yearAsString': '1946'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1946,
  'contentId': 224074,
  'height': 503,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/lust-for-life-pastorale-1946.jpg!Large.jpg',
  'title': 'Lust for life (Pastorale)',
  'width': 1088,
  'yearAsString': '1946'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1946,
  'contentId': 224218,
  'height': 611,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/owl-on-a-chair-and-sea-urchins-1946.jpg!Large.jpg',
  'title': 'Owl on a chair and sea urchins',
  'width': 585,
  'yearAsString': '1946'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1946,
  'contentId': 224454,
  'height': 1000,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/standing-woman-1946.jpg!Large.jpg',
  'title': 'Standing woman',
  'width': 624,
  'yearAsString': '1946'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1946,
  'contentId': 224490,
  'height': 1000,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/still-life-with-skull-on-an-armchair-1946.jpg!Large.jpg',
  'title': 'Still life with skull on an armchair',
  'width': 762,
  'yearAsString': '1946'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1946,
  'contentId': 224647,
  'height': 640,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/two-nude-women-1946.jpg!Large.jpg',
  'title': 'Two nude women',
  'width': 867,
  'yearAsString': '1946'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1946,
  'contentId': 224655,
  'height': 1170,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/ulysses-and-sirens-1946.jpg!Large.jpg',
  'title': 'Ulysses and sirens',
  'width': 774,
  'yearAsString': '1946'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1947,
  'contentId': 223827,
  'height': 693,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/cock-and-knife-1947.jpg!Large.jpg',
  'title': 'Cock and knife',
  'width': 795,
  'yearAsString': '1947'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1947,
  'contentId': 224001,
  'height': 640,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/head-of-a-girl-1947.jpg!Large.jpg',
  'title': 'Head of a Girl',
  'width': 459,
  'yearAsString': '1947'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1947,
  'contentId': 224247,
  'height': 573,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/pigeon-1947.jpg!Large.jpg',
  'title': 'Pigeon',
  'width': 695,
  'yearAsString': '1947'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1947,
  'contentId': 224461,
  'height': 886,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/still-life-1947-1.jpg!Large.jpg',
  'title': 'Still life',
  'width': 1088,
  'yearAsString': '1947'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1947,
  'contentId': 224466,
  'height': 1088,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/still-life-on-a-table-1947.jpg!Large.jpg',
  'title': 'Still life on a table',
  'width': 870,
  'yearAsString': '1947'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1948,
  'contentId': 223824,
  'height': 1088,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/claude-in-the-arms-of-his-mother-1948.jpg!Large.jpg',
  'title': 'Claude in the arms of his mother',
  'width': 886,
  'yearAsString': '1948'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1948,
  'contentId': 223825,
  'height': 1088,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/claude-with-a-ball-1948.jpg!Large.jpg',
  'title': 'Claude with a ball',
  'width': 866,
  'yearAsString': '1948'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1948,
  'contentId': 224567,
  'height': 517,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/the-kitchen-1948.jpg!Large.jpg',
  'title': 'The kitchen',
  'width': 765,
  'yearAsString': '1948'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1948,
  'contentId': 224568,
  'height': 741,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/the-kitchen-1948-1.jpg!Large.jpg',
  'title': 'The kitchen',
  'width': 1088,
  'yearAsString': '1948'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1948,
  'contentId': 224758,
  'height': 1088,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/woman-sitting-in-an-armchair-1948.jpg!Large.jpg',
  'title': 'Woman sitting in an armchair',
  'width': 864,
  'yearAsString': '1948'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1949,
  'contentId': 223826,
  'height': 789,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/claude-two-years-old-and-his-hobby-horse-1949.jpg!Large.jpg',
  'title': 'Claude, two years old, and his hobby horse',
  'width': 585,
  'yearAsString': '1949'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1949,
  'contentId': 224018,
  'height': 554,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/head-of-faun-1949.jpg!Large.jpg',
  'title': 'Head of Faun',
  'width': 375,
  'yearAsString': '1949'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1949,
  'contentId': 224369,
  'height': 1000,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/seated-francoise-with-blue-dress-1949.jpg!Large.jpg',
  'title': 'Seated Francoise with blue dress',
  'width': 766,
  'yearAsString': '1949'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1949,
  'contentId': 224753,
  'height': 1000,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/woman-sitting-in-an-armchair-1949.jpg!Large.jpg',
  'title': 'Woman sitting in an armchair',
  'width': 788,
  'yearAsString': '1949'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1950,
  'contentId': 223823,
  'height': 355,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/claude-and-paloma-playing-1950.jpg!Large.jpg',
  'title': 'Claude and Paloma playing',
  'width': 438,
  'yearAsString': '1950'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1950,
  'contentId': 223870,
  'height': 1000,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/drawing-woman-surrounded-by-her-children-1950.jpg!Large.jpg',
  'title': 'Drawing woman surrounded by her children',
  'width': 650,
  'yearAsString': '1950'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1950,
  'contentId': 224002,
  'height': 379,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/head-of-a-girl-1950.jpg!Large.jpg',
  'title': 'Head of a Girl',
  'width': 310,
  'yearAsString': '1950'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1951,
  'contentId': 223927,
  'height': 344,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/francoise-gilot-with-paloma-and-claude-1951.jpg!Large.jpg',
  'title': 'Francoise Gilot with Paloma and Claude',
  'width': 439,
  'yearAsString': '1951'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1951,
  'contentId': 224239,
  'height': 591,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/picador-on-the-horseback-on-arena-1951.jpg!Large.jpg',
  'title': 'Picador on the horseback on arena',
  'width': 729,
  'yearAsString': '1951'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1951,
  'contentId': 224263,
  'height': 1039,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/portrait-of-child-1951.jpg!Large.jpg',
  'title': 'Portrait of child',
  'width': 729,
  'yearAsString': '1951'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1951,
  'contentId': 224439,
  'height': 573,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/smoke-over-vallauris-1951.jpg!Large.jpg',
  'title': 'Smoke over Vallauris',
  'width': 723,
  'yearAsString': '1951'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1952,
  'contentId': 223937,
  'height': 1088,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/girl-in-chair-1952.jpg!Large.jpg',
  'title': 'Girl in chair',
  'width': 791,
  'yearAsString': '1952'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1952,
  'contentId': 224124,
  'height': 485,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/mediterranean-landscape-1952.jpg!Large.jpg',
  'title': 'Mediterranean Landscape',
  'width': 774,
  'yearAsString': '1952'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1953,
  'contentId': 223763,
  'height': 601,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/breakfast-1953.jpg!Large.jpg',
  'title': 'Breakfast',
  'width': 807,
  'yearAsString': '1953'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1953,
  'contentId': 223816,
  'height': 1000,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/child-playing-in-camomilles-1953.jpg!Large.jpg',
  'title': 'Child playing in camomilles',
  'width': 757,
  'yearAsString': '1953'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1953,
  'contentId': 224147,
  'height': 1166,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/mother-and-child-1953.jpg!Large.jpg',
  'title': 'Mother and child',
  'width': 795,
  'yearAsString': '1953'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1953,
  'contentId': 224252,
  'height': 930,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/plat-ovale-1953.jpg!Large.jpg',
  'title': 'Plat ovale',
  'width': 763,
  'yearAsString': '1953'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1953,
  'contentId': 224395,
  'height': 798,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/seated-woman-1953.jpg!Large.jpg',
  'title': 'Seated woman',
  'width': 590,
  'yearAsString': '1953'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1953,
  'contentId': 224595,
  'height': 1000,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/the-shadow-1953.jpg!Large.jpg',
  'title': 'The shadow',
  'width': 751,
  'yearAsString': '1953'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1953,
  'contentId': 224748,
  'height': 795,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/woman-reading-1953.jpg!Large.jpg',
  'title': 'Woman reading',
  'width': 1196,
  'yearAsString': '1953'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1953,
  'contentId': 224759,
  'height': 1058,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/woman-sitting-in-an-armchair-1953.jpg!Large.jpg',
  'title': 'Woman sitting in an armchair',
  'width': 795,
  'yearAsString': '1953'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1954,
  'contentId': 223862,
  'height': 1173,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/dancer-1954.jpg!Large.jpg',
  'title': 'Dancer',
  'width': 839,
  'yearAsString': '1954'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1954,
  'contentId': 224043,
  'height': 1088,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/jacqueline-with-flowers-1954.jpg!Large.jpg',
  'title': 'Jacqueline with flowers',
  'width': 884,
  'yearAsString': '1954'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1954,
  'contentId': 224046,
  'height': 1000,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/jug-with-handle-1954.jpg!Large.jpg',
  'title': 'Jug with handle',
  'width': 647,
  'yearAsString': '1954'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1954,
  'contentId': 224278,
  'height': 1088,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/portrait-of-jacqueline-roque-with-her-hands-crossed-1954.jpg!Large.jpg',
  'title': 'Portrait of Jacqueline Roque with her hands crossed',
  'width': 825,
  'yearAsString': '1954'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1954,
  'contentId': 224314,
  'height': 1088,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/portrait-of-sylvette-david-1954.jpg!Large.jpg',
  'title': 'Portrait of Sylvette David',
  'width': 789,
  'yearAsString': '1954'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1954,
  'contentId': 224315,
  'height': 1088,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/portrait-of-sylvette-david-1954-1.jpg!Large.jpg',
  'title': 'Portrait of Sylvette David',
  'width': 859,
  'yearAsString': '1954'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1954,
  'contentId': 224316,
  'height': 1088,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/portrait-of-sylvette-david-1954-2.jpg!Large.jpg',
  'title': 'Portrait of Sylvette David',
  'width': 843,
  'yearAsString': '1954'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1954,
  'contentId': 224317,
  'height': 1088,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/portrait-of-sylvette-david.jpg!Large.jpg',
  'title': 'Portrait of Sylvette David',
  'width': 859,
  'yearAsString': '1954'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1954,
  'contentId': 224318,
  'height': 1088,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/portrait-of-sylvette-david-in-green-chair-1954.jpg!Large.jpg',
  'title': 'Portrait of Sylvette David in green chair',
  'width': 873,
  'yearAsString': '1954'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1954,
  'contentId': 224343,
  'height': 799,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/reclining-woman-1954.jpg!Large.jpg',
  'title': 'Reclining woman',
  'width': 1000,
  'yearAsString': '1954'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1954,
  'contentId': 224688,
  'height': 1000,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/untitled-1954.jpg!Large.jpg',
  'title': 'Untitled',
  'width': 828,
  'yearAsString': '1954'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1955,
  'contentId': 223706,
  'height': 544,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/algerian-women-1955.jpg!Large.jpg',
  'title': 'Algerian women',
  'width': 362,
  'yearAsString': '1955'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1955,
  'contentId': 223707,
  'height': 847,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/algerian-women-delacroix-1955.jpg!Large.jpg',
  'title': 'Algerian women (Delacroix)',
  'width': 1088,
  'yearAsString': '1955'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1955,
  'contentId': 223784,
  'height': 451,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/bullfighting-scene-the-picador-raised-1955.jpg!Large.jpg',
  'title': 'Bullfighting Scene (The picador raised)',
  'width': 1113,
  'yearAsString': '1955'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1955,
  'contentId': 223785,
  'height': 443,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/bullfighting-scene-the-torero-is-raised-1955.jpg!Large.jpg',
  'title': 'Bullfighting Scene (The torero is raised)',
  'width': 1113,
  'yearAsString': '1955'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1955,
  'contentId': 224041,
  'height': 1000,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/jacqueline-in-turkish-costume-1955.jpg!Large.jpg',
  'title': 'Jacqueline in turkish costume',
  'width': 792,
  'yearAsString': '1955'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1955,
  'contentId': 224085,
  'height': 453,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/lying-naked-woman-1955.jpg!Large.jpg',
  'title': 'Lying naked woman',
  'width': 1113,
  'yearAsString': '1955'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1955,
  'contentId': 224086,
  'height': 456,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/lying-naked-woman-1955-1.jpg!Large.jpg',
  'title': 'Lying naked woman',
  'width': 1113,
  'yearAsString': '1955'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1955,
  'contentId': 224087,
  'height': 453,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/lying-naked-woman-the-voyeurs-1955.jpg!Large.jpg',
  'title': 'Lying naked woman (The Voyeurs)',
  'width': 1114,
  'yearAsString': '1955'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1955,
  'contentId': 224203,
  'height': 1000,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/nude-woman-with-turkish-bonnet-1955.jpg!Large.jpg',
  'title': 'Nude woman with turkish bonnet',
  'width': 752,
  'yearAsString': '1955'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1955,
  'contentId': 224467,
  'height': 452,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/still-life-on-the-dresser-1955.jpg!Large.jpg',
  'title': 'Still life on the dresser',
  'width': 1111,
  'yearAsString': '1955'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1955,
  'contentId': 224529,
  'height': 451,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/the-beach-in-garoupe-1955.jpg!Large.jpg',
  'title': 'The beach in Garoupe',
  'width': 1111,
  'yearAsString': '1955'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1955,
  'contentId': 224530,
  'height': 461,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/the-beach-in-garoupe-1955-1.jpg!Large.jpg',
  'title': 'The beach in Garoupe',
  'width': 1113,
  'yearAsString': '1955'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1955,
  'contentId': 224689,
  'height': 1000,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/untitled-1955.jpg!Large.jpg',
  'title': 'Untitled',
  'width': 807,
  'yearAsString': '1955'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1955,
  'contentId': 224819,
  'height': 431,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/women-of-algiers-1955.jpg!Large.jpg',
  'title': 'Women of Algiers',
  'width': 544,
  'yearAsString': '1955'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1955,
  'contentId': 256467,
  'height': 601,
  'image': 'http://uploads1.wikiart.org/images/pablo-picasso/don-quixote-1955.jpg!Large.jpg',
  'title': 'Don Quixote',
  'width': 507,
  'yearAsString': '1955'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1956,
  'contentId': 223716,
  'height': 752,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/armchair-california-1956.jpg!Large.jpg',
  'title': "Armchair 'California'",
  'width': 992,
  'yearAsString': '1956'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1956,
  'contentId': 223847,
  'height': 1000,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/crouching-female-nude-1956.jpg!Large.jpg',
  'title': 'Crouching female nude',
  'width': 747,
  'yearAsString': '1956'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1956,
  'contentId': 223908,
  'height': 576,
  'image': 'http://uploads8.wikiart.org/images/pablo-picasso/female-nude-near-the-garden-1956.jpg!Large.jpg',
  'title': 'Female nude near the garden',
  'width': 718,
  'yearAsString': '1956'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1956,
  'contentId': 224039,
  'height': 732,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/interior-with-girl-drawing-1956.jpg!Large.jpg',
  'title': 'Interior with girl drawing',
  'width': 1088,
  'yearAsString': '1956'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1956,
  'contentId': 224040,
  'height': 786,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/jacqueline-at-the-studio-1956.jpg!Large.jpg',
  'title': 'Jacqueline at the studio',
  'width': 1020,
  'yearAsString': '1956'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1956,
  'contentId': 224099,
  'height': 573,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/man-and-woman-on-the-beach-1956.jpg!Large.jpg',
  'title': 'Man and woman on the beach',
  'width': 786,
  'yearAsString': '1956'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1956,
  'contentId': 224171,
  'height': 1015,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/naked-woman-in-rocking-chair-1956.jpg!Large.jpg',
  'title': 'Naked woman in rocking chair',
  'width': 660,
  'yearAsString': '1956'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1956,
  'contentId': 224446,
  'height': 634,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/spring-1956.jpg!Large.jpg',
  'title': 'Spring',
  'width': 921,
  'yearAsString': '1956'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1956,
  'contentId': 224507,
  'height': 770,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/studio-of-california-in-cannes-1956.jpg!Large.jpg',
  'title': 'Studio of \'California" in Cannes',
  'width': 1000,
  'yearAsString': '1956'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1956,
  'contentId': 224651,
  'height': 575,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/two-women-on-the-beach-1956.jpg!Large.jpg',
  'title': 'Two women on the beach',
  'width': 782,
  'yearAsString': '1956'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1956,
  'contentId': 224740,
  'height': 569,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/woman-in-the-studio-1956.jpg!Large.jpg',
  'title': 'Woman in the studio',
  'width': 722,
  'yearAsString': '1956'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1956,
  'contentId': 289396,
  'height': 569,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/seated-woman-with-red-hat-1956.jpg!Large.jpg',
  'title': 'Seated Woman with Red Hat',
  'width': 450,
  'yearAsString': '1956'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1957,
  'contentId': 223859,
  'height': 448,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/dance-of-fauns-1957.jpg!Large.jpg',
  'title': 'Dance of Fauns',
  'width': 615,
  'yearAsString': '1957'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1957,
  'contentId': 224054,
  'height': 1088,
  'image': 'http://uploads2.wikiart.org/images/pablo-picasso/las-meninas-velazquez-1957.jpg!Large.jpg',
  'title': 'Las Meninas (Velazquez)',
  'width': 842,
  'yearAsString': '1957'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1957,
  'contentId': 224055,
  'height': 805,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/las-meninas-velazquez-1957-1.jpg!Large.jpg',
  'title': 'Las Meninas (Velazquez)',
  'width': 1000,
  'yearAsString': '1957'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1957,
  'contentId': 224056,
  'height': 1088,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/las-meninas-velazquez-1957-2.jpg!Large.jpg',
  'title': 'Las Meninas (Velazquez)',
  'width': 832,
  'yearAsString': '1957'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1957,
  'contentId': 224057,
  'height': 1088,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/las-meninas-velazquez-1957-3.jpg!Large.jpg',
  'title': 'Las Meninas (Velazquez)',
  'width': 813,
  'yearAsString': '1957'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1957,
  'contentId': 224058,
  'height': 789,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/las-meninas-velazquez-1957-4.jpg!Large.jpg',
  'title': 'Las Meninas (Velazquez)',
  'width': 1067,
  'yearAsString': '1957'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1957,
  'contentId': 224059,
  'height': 797,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/las-meninas-velazquez-1957-5.jpg!Large.jpg',
  'title': 'Las Meninas (Velazquez)',
  'width': 1000,
  'yearAsString': '1957'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1957,
  'contentId': 224060,
  'height': 1088,
  'image': 'http://uploads4.wikiart.org/images/pablo-picasso/las-meninas-velazquez-1957-6.jpg!Large.jpg',
  'title': 'Las Meninas (Velazquez)',
  'width': 882,
  'yearAsString': '1957'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1957,
  'contentId': 224117,
  'height': 1000,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/maria-agustina-sarmiento-velazquez-1957.jpg!Large.jpg',
  'title': 'Maria Agustina Sarmiento (Velazquez)',
  'width': 829,
  'yearAsString': '1957'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1957,
  'contentId': 224277,
  'height': 990,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/portrait-of-jacqueline-1957.jpg!Large.jpg',
  'title': 'Portrait of Jacqueline',
  'width': 756,
  'yearAsString': '1957'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1957,
  'contentId': 224503,
  'height': 1000,
  'image': 'http://uploads5.wikiart.org/images/pablo-picasso/studio-pigeons-velazquez-1957.jpg!Large.jpg',
  'title': 'Studio (Pigeons) (Velazquez)',
  'width': 779,
  'yearAsString': '1957'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1957,
  'contentId': 224504,
  'height': 1000,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/studio-pigeons-velazquez-1957-1.jpg!Large.jpg',
  'title': 'Studio (Pigeons) (Velazquez)',
  'width': 780,
  'yearAsString': '1957'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1957,
  'contentId': 224505,
  'height': 1019,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/studio-pigeons-velazquez-1957-2.jpg!Large.jpg',
  'title': 'Studio (Pigeons) (Velazquez)',
  'width': 828,
  'yearAsString': '1957'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1957,
  'contentId': 224506,
  'height': 1000,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/studio-pigeons-velazquez-1957-3.jpg!Large.jpg',
  'title': 'Studio (Pigeons) (Velazquez)',
  'width': 802,
  'yearAsString': '1957'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1957,
  'contentId': 224580,
  'height': 1000,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/the-piano-velazquez-1957.jpg!Large.jpg',
  'title': 'The piano  (Velazquez)',
  'width': 732,
  'yearAsString': '1957'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1958,
  'contentId': 224093,
  'height': 1000,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/man-and-woman-1958.jpg!Large.jpg',
  'title': 'Man and Woman',
  'width': 962,
  'yearAsString': '1958'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1958,
  'contentId': 224195,
  'height': 1000,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/nude-gathering-flowers-1958.jpg!Large.jpg',
  'title': 'Nude gathering flowers',
  'width': 985,
  'yearAsString': '1958'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1958,
  'contentId': 224650,
  'height': 300,
  'image': 'http://uploads6.wikiart.org/images/pablo-picasso/two-seated-women-1958.jpg!Large.jpg',
  'title': 'Two seated women',
  'width': 400,
  'yearAsString': '1958'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1958,
  'contentId': 224690,
  'height': 850,
  'image': 'http://uploads7.wikiart.org/images/pablo-picasso/untitled-1958.jpg!Large.jpg',
  'title': 'Untitled',
  'width': 1000,
  'yearAsString': '1958'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1958,
  'contentId': 224700,
  'height': 849,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/untitled-1958-1.jpg!Large.jpg',
  'title': 'Untitled',
  'width': 1000,
  'yearAsString': '1958'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1959,
  'contentId': 223750,
  'height': 484,
  'image': 'http://uploads3.wikiart.org/images/pablo-picasso/bobo-velazquez-murillo-1959.jpg!Large.jpg',
  'title': 'Bobo (Velazquez-Murillo)',
  'width': 381,
  'yearAsString': '1959'},
 {'artistContentId': 223667,
  'artistName': 'Pablo Picasso',
  'completitionYear': 1959,
  'contentId': 223765,
  'height': 1000,
  'image': 'http://uploads0.wikiart.org/images/pablo-picasso/buffet-henry-ii-and-armchair-with-dog-1959.jpg!Large.jpg',
  'title': 'Buffet Henry II and armchair with dog',
  'width': 802,
  'yearAsString': '1959'},
 ...]

In [73]:
type(d[0])


Out[73]:
dict

In [74]:
d[0].keys()


Out[74]:
dict_keys(['artistName', 'yearAsString', 'width', 'title', 'artistContentId', 'image', 'contentId', 'height', 'completitionYear'])

Control structures: the 'for' loop


In [75]:
# indents matter in Python

for i in range(20):
    print('%s: %s' % (d[i]['title'], d[i]['completitionYear']))


The picador: 1890
House in the field: 1893
Plaster male torso: 1893
Academical study: 1895
Bust of young man: 1895
Female nude from back: 1895
The barefoot girl: 1895
The old fisherman: 1895
Artist's mother: 1896
First Communion: 1896
Head of a child: 1896
Portrait of aunt Pepa: 1896
Portrait of the Artist's Mother: 1896
Quarries: 1896
Self-Portrait: 1896
The altarboy: 1896
Advertisement for tavern "Four cats": 1897
Science and Charity: 1897
Head of a Man in El Greco style: 1899
La chata: 1899

In [ ]:
# exercises: print the sizes and titles of the last ten paintings in this list. 
# The statement should print as 'title: width pixels x height pixels'
# your code here:

The 'if-then' statement


In [76]:
data = [1.2, 2.4, 23.3, 4.5]
new_data = []
for i in range(len(data)):
    if round(data[i]) % 2 == 0:  # modular arithmetic, remainder of 0
        new_data.append(round(data[i]))
    else:
        new_data.append(0)

print(new_data)


[0, 2, 0, 4]

Digression - list comprehensions

Rather than a for loop, in a situation like that above, Python has a method called a list comprehension for creating lists. Sometimes this is more efficient. It's often nicer syntactically, as long as the number of conditions is not too large (<= 2 is a good guideline).


In [77]:
print(data)
new_new_data = [round(i) if round(i) % 2 == 0 else 0 for i in data]
print(new_new_data)


[1.2, 2.4, 23.3, 4.5]
[0, 2, 0, 4]

In [78]:
data = list(range(20))
for i in data:
    if i % 2 == 0:
        print(i)
    elif i >= 10:
        print('wow, that\'s a big odd number - still no fun')
    else:
        print('odd num no fun')


0
odd num no fun
2
odd num no fun
4
odd num no fun
6
odd num no fun
8
odd num no fun
10
wow, that's a big odd number - still no fun
12
wow, that's a big odd number - still no fun
14
wow, that's a big odd number - still no fun
16
wow, that's a big odd number - still no fun
18
wow, that's a big odd number - still no fun

The 'while' loop


In [79]:
# beware loops that don't terminate
counter = 0
tmp = 2
while counter < 10:
    tmp = tmp**2
    counter += 1
print('{:,}'.format(tmp))
print('tmp is %d digits long, that\'s huge!' % len(str(tmp)))


179,769,313,486,231,590,772,930,519,078,902,473,361,797,697,894,230,657,273,430,081,157,732,675,805,500,963,132,708,477,322,407,536,021,120,113,879,871,393,357,658,789,768,814,416,622,492,847,430,639,474,124,377,767,893,424,865,485,276,302,219,601,246,094,119,453,082,952,085,005,768,838,150,682,342,462,881,473,913,110,540,827,237,163,350,510,684,586,298,239,947,245,938,479,716,304,835,356,329,624,224,137,216
tmp is 309 digits long, that's huge!

In [80]:
# the 'pass' command
for i in range(10):
    if i % 2 == 0:
        print(i)
    else:
        pass


0
2
4
6
8

In [81]:
# the continue command
for letter in 'Python':
    if letter == 'h':
        continue
    print('Current Letter :', letter)


Current Letter : P
Current Letter : y
Current Letter : t
Current Letter : o
Current Letter : n

In [82]:
# the pass command
for letter in 'Python':
    if letter == 'h':
        pass
    print('Current Letter :', letter)


Current Letter : P
Current Letter : y
Current Letter : t
Current Letter : h
Current Letter : o
Current Letter : n

In [83]:
# the break command
for letter in 'Python':
    if letter == 'h':
        break
    print('Current Letter :', letter)


Current Letter : P
Current Letter : y
Current Letter : t

Functions

Functions take in inputs and produce outputs.


In [84]:
def square(x):
    '''input: a numerical value x
       output: the square of x
    '''
    return x**2

In [85]:
square(3.14)


Out[85]:
9.8596

In [ ]:
# Exercise: write a function called 'reverse' to take in a string and reverse it
# your code here:

In [ ]:
# test 
reverse('Hi, my name is Joan Jett')

In [86]:
def raise_to_power(x, n=2):  # 2 is the default for n
    return x**n

In [87]:
raise_to_power(3)


Out[87]:
9

In [88]:
raise_to_power(3,4)


Out[88]:
81

In [89]:
def write_to_file(filepath, string):
    '''make sure the file doesn\'t exist; this will overwrite'''
    with open(filepath, 'w+') as f:
        f.writelines(string)

In [93]:
write_to_file('test.txt', 'fred was here')

In [94]:
! cat test.txt


fred was here

In [95]:
with open('test.txt') as f:
    content = f.read()
    
print(content)


fred was here

In [ ]:
write_to_file('test.txt', 'goodbye for now\n')  # \n is the newline character

! cat test.txt

In [ ]:
# Exercise: what are the modes for editing a file?

Don't repeat yourself!

Use functions to avoid rewriting the same code over and over.

Homework

-Read the blog about unicode: http://www.joelonsoftware.com/articles/Unicode.html

-Read the docs! (not all of them at once, of course) https://docs.python.org/3/index.html

-Download the homework assignment notebook, complete it, and email the results to me BEFORE next Wednedsay, 9:00AM. Anything submitted after that time will be penalized 1 point per day (that's one full letter grade per day).