-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpainters.js
More file actions
6115 lines (6115 loc) · 317 KB
/
Copy pathpainters.js
File metadata and controls
6115 lines (6115 loc) · 317 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
var paint = {
"ph": {
"\/en\/pablo_picasso": {
"id": "\/en\/pablo_picasso",
"guid": "9202a8c04000641f80000000000303e7",
"img_guid": "9202a8c04000641f8000000004a7be9e",
"name": "Pablo Picasso",
"abstract": "Pablo Diego Jos\u00e9 Francisco de Paula Juan Nepomuceno Mar\u00eda\nde los Remedios Cipriano de la Sant\u00edsima Trinidad Ruiz y\nPicasso known as Pablo Ruiz Picasso (Spanish\npronunciation:\u00a0[\u02c8pa\u03b2lo \u02c8rwi\u03b8 pi\u02c8kaso]; 25 October\n1881\u00a0\u2013 8 April 1973) was a Spanish painter, draughtsman,\nand sculptor who lived most of his adult life in France. He\nis best known for co-founding the Cubist movement, and for\nthe wide variety of styles that he helped develop and worked\nin. Among his most famous works are the...",
"birthyear": "1881",
"name_short": "PICASSO",
"ints": {
"\/en\/analytic_cubism": 1,
"\/en\/artist": 1,
"\/en\/atheism": 1,
"\/en\/ceramics": 1,
"\/en\/cubism": 1,
"\/en\/drawing": 1,
"\/en\/italian_modern_and_contemporary_art": 1,
"\/en\/painter": 1,
"\/en\/painting": 1,
"\/en\/printmaking": 1,
"\/en\/sculpture": 1,
"\/en\/spain": 1,
"\/en\/synthetic_cubism": 1,
"\/m\/0b7b55p": 1
},
"to": {
"\/en\/ben_shahn": 1,
"\/en\/david_smith_1906": 1,
"\/en\/diego_rivera": 1,
"\/en\/francis_picabia": 1,
"\/en\/georges_braque": 1,
"\/en\/jackson_pollock": 1,
"\/en\/jan_matulka": 1,
"\/en\/joan_miro": 1,
"\/en\/karel_appel": 1,
"\/en\/piet_mondrian": 1,
"\/en\/salvador_dali": 1,
"\/en\/wassily_kandinsky": 1
},
"fr": {
"\/en\/diego_velazquez": 1,
"\/en\/edouard_manet": 1,
"\/en\/eugene_delacroix": 1,
"\/en\/francisco_goya": 1,
"\/en\/henri_rousseau": 1
},
"fr_count": 5,
"to_count": 12,
"d1": 0.869362253233,
"d2": 0.165801788673
},
"\/en\/henri_matisse": {
"id": "\/en\/henri_matisse",
"guid": "9202a8c04000641f8000000000072f3f",
"img_guid": "9202a8c04000641f8000000004ab136d",
"name": "Henri Matisse",
"abstract": "Henri Matisse (French pronunciation:\u00a0[\u0251\u0303\u0281i matis]; 31\nDecember 1869 \u2013 3 November 1954) was a French artist,\nknown for his use of colour and his fluid and original\ndraughtsmanship. He was a draughtsman, printmaker, and\nsculptor, but is known primarily as a painter. Matisse is\ncommonly regarded, along with Picasso and Marcel Duchamp, as\none of the three artists who helped to define the\nrevolutionary developments in the plastic arts in the\nopening decades of the 20th century, responsible for...",
"birthyear": "1869",
"name_short": "MATISSE",
"ints": {
"\/en\/collage": 1,
"\/en\/drawing": 1,
"\/en\/fauvism": 1,
"\/en\/france": 1,
"\/en\/modernism": 1,
"\/en\/neo-impressionism": 1,
"\/en\/painting": 1,
"\/en\/printmaking": 1,
"\/en\/sculpture": 1
},
"to": {
"\/en\/ben_shahn": 1,
"\/en\/david_hockney": 1,
"\/en\/francis_picabia": 1,
"\/en\/georges_braque": 1,
"\/en\/hans_hofmann": 1,
"\/en\/karel_appel": 1,
"\/en\/milton_avery": 1,
"\/en\/richard_diebenkorn": 1,
"\/en\/wassily_kandinsky": 1
},
"fr": {
"\/en\/paul_cezanne": 1,
"\/en\/paul_gauguin": 1,
"\/en\/paul_signac": 1,
"\/en\/vincent_van_gogh": 1
},
"fr_count": 4,
"to_count": 9,
"d1": 0.812057464637,
"d2": 0.23927959769
},
"\/en\/caravaggio": {
"id": "\/en\/caravaggio",
"guid": "9202a8c04000641f800000000001014e",
"img_guid": "9202a8c04000641f8000000004a5f8e5",
"name": "Caravaggio",
"abstract": "Michelangelo Merisi da Caravaggio (29 September 1571 \u2013 18\nJuly 1610) was an Italian artist active in Rome, Naples,\nMalta, and Sicily between 1593 and 1610. His paintings,\nwhich combine a realistic observation of the human state,\nboth physical and emotional, with a dramatic use of\nlighting, had a formative influence on the Baroque school of\npainting.\nCaravaggio trained as a painter in Milan under a master who\nhad himself trained under Titian. In his early twenties\nCaravaggio moved to Rome...",
"birthyear": "1571",
"name_short": "CARAVAGGIO",
"ints": {
"\/en\/baroque": 1,
"\/en\/catholicism": 1,
"\/en\/italian_people": 1,
"\/en\/italy": 1,
"\/en\/painting": 1,
"\/en\/renaissance": 1
},
"to": {
"\/en\/adam_elsheimer": 1,
"\/en\/dirck_van_baburen": 1,
"\/en\/frank_stella": 1,
"\/en\/hendrick_ter_brugghen": 1,
"\/en\/odd_nerdrum": 1,
"\/en\/peter_paul_rubens": 1,
"\/en\/simon_vouet": 1
},
"fr": [],
"fr_count": 0,
"to_count": 7,
"d1": 0.197098968162,
"d2": 0.311578304526
},
"\/en\/marcel_duchamp": {
"id": "\/en\/marcel_duchamp",
"guid": "9202a8c04000641f800000000005596f",
"img_guid": "9202a8c04000641f80000000072faac8",
"name": "Marcel Duchamp",
"abstract": "Marcel Duchamp (28 July 1887 \u2013 2 October 1968; French\npronunciation:\u00a0[ma\u0281s\u025bl dy\u02c8\u0283\u0251\u0303]) was a French artist\nwhose work is most often associated with the Dadaist and\nSurrealist movements. Duchamp's output influenced the\ndevelopment of post-World War I Western art. He advised\nmodern art collectors, such as Peggy Guggenheim and other\nprominent figures, thereby helping to shape the tastes of\nWestern art during this period.\nA playful man, Duchamp challenged conventional thought\nabout artistic...",
"birthyear": "1887",
"name_short": "DUCHAMP",
"ints": {
"\/en\/artist": 1,
"\/en\/conceptual_art": 1,
"\/en\/dada": 1,
"\/en\/france": 1,
"\/en\/librarian": 1,
"\/en\/painting": 1,
"\/en\/sculpture": 1,
"\/en\/section_dor": 1,
"\/en\/surrealism": 1,
"\/en\/united_states": 1
},
"to": {
"\/en\/andy_warhol": 1,
"\/en\/banksy": 1,
"\/en\/damien_hirst": 1,
"\/en\/francis_picabia": 1,
"\/en\/jasper_johns": 1,
"\/en\/michael_craig-martin": 1,
"\/en\/robert_rauschenberg": 1
},
"fr": {
"\/en\/joseph_cornell": 1
},
"fr_count": 1,
"to_count": 7,
"d1": 0.607329757156,
"d2": 0.450685368166
},
"\/en\/eugene_delacroix": {
"id": "\/en\/eugene_delacroix",
"guid": "9202a8c04000641f8000000000136003",
"img_guid": "9202a8c04000641f8000000004b0c16b",
"name": "Eug\u00e8ne Delacroix",
"abstract": "Ferdinand Victor Eug\u00e8ne Delacroix (26 April 1798 \u2013 13\nAugust 1863) was a French Romantic artist regarded from the\noutset of his career as the leader of the French Romantic\nschool. Delacroix's use of expressive brushstrokes and his\nstudy of the optical effects of colour profoundly shaped the\nwork of the Impressionists, while his passion for the exotic\ninspired the artists of the Symbolist movement. A fine\nlithographer, Delacroix illustrated various works of William\nShakespeare, the Scottish...",
"birthyear": "1798",
"name_short": "DELACROIX",
"ints": {
"\/en\/france": 1,
"\/en\/painting": 1,
"\/en\/romanticism": 1
},
"to": {
"\/en\/claude_monet": 1,
"\/en\/edgar_degas": 1,
"\/en\/edouard_manet": 1,
"\/en\/pablo_picasso": 1,
"\/en\/paul_cezanne": 1,
"\/en\/pierre-auguste_renoir": 1
},
"fr": {
"\/en\/peter_paul_rubens": 1
},
"fr_count": 1,
"to_count": 6,
"d1": 0.222994375847,
"d2": 0.383089774135
},
"\/en\/paul_cezanne": {
"id": "\/en\/paul_cezanne",
"guid": "9202a8c04000641f8000000000030e7c",
"img_guid": "9202a8c04000641f8000000004a7caf6",
"name": "Paul C\u00e9zanne",
"abstract": "Paul C\u00e9zanne (French pronunciation:\u00a0[p\u0254l se\u02c8zan]; 19\nJanuary 1839 \u2013 22 October 1906) was a French artist and\nPost-Impressionist painter whose work laid the foundations\nof the transition from the 19th century conception of\nartistic endeavour to a new and radically different world of\nart in the 20th century. C\u00e9zanne can be said to form the\nbridge between late 19th century Impressionism and the early\n20th century's new line of artistic enquiry, Cubism. The\nline attributed to both Matisse and...",
"birthyear": "1839",
"name_short": "C\u00e9ZANNE",
"ints": {
"\/en\/artist": 1,
"\/en\/catholicism": 1,
"\/en\/cubism": 1,
"\/en\/drawing": 1,
"\/en\/france": 1,
"\/en\/impressionism": 1,
"\/en\/painter": 1,
"\/en\/painting": 1,
"\/en\/post-impressionism": 1
},
"to": {
"\/en\/andre_derain": 1,
"\/en\/diego_rivera": 1,
"\/en\/georges_braque": 1,
"\/en\/henri_matisse": 1,
"\/en\/joan_mitchell": 1,
"\/en\/vincent_van_gogh": 1
},
"fr": {
"\/en\/camille_pissarro": 1,
"\/en\/charles-francois_daubigny": 1,
"\/en\/edouard_manet": 1,
"\/en\/eugene_delacroix": 1,
"\/en\/gustave_courbet": 1,
"\/en\/nicolas_poussin": 1
},
"fr_count": 6,
"to_count": 6,
"d1": 0.382127159979,
"d2": 0.13056757621
},
"\/en\/gustave_courbet": {
"id": "\/en\/gustave_courbet",
"guid": "9202a8c04000641f8000000000165b21",
"img_guid": "9202a8c04000641f8000000004b2f545",
"name": "Gustave Courbet",
"abstract": "Jean D\u00e9sir\u00e9 Gustave Courbet (10 June 1819\u201331 December\n1877) was a French painter who led the Realist movement in\n19th-century French painting. The Realist movement bridged\nthe Romantic movement (characterized by the paintings of\nTh\u00e9odore G\u00e9ricault and Eug\u00e8ne Delacroix), with the\nBarbizon School and the Impressionists. Courbet occupies an\nimportant place in 19th century French painting as an\ninnovator and as an artist willing to make bold social\ncommentary in his work.\nCourbet painted...",
"birthyear": "1819",
"name_short": "COURBET",
"ints": {
"\/en\/france": 1,
"\/en\/painting": 1,
"\/en\/realism": 1,
"\/en\/sculpture": 1
},
"to": {
"\/en\/charles-francois_daubigny": 1,
"\/en\/claude_monet": 1,
"\/en\/edward_hopper": 1,
"\/en\/james_mcneill_whistler": 1,
"\/en\/paul_cezanne": 1
},
"fr": [],
"fr_count": 0,
"to_count": 5,
"d1": 0.374911037694,
"d2": 0.346195388212
},
"\/en\/diego_velazquez": {
"id": "\/en\/diego_velazquez",
"guid": "9202a8c04000641f800000000008a45d",
"img_guid": "9202a8c04000641f8000000007934142",
"name": "Diego Vel\u00e1zquez",
"abstract": "Diego Rodr\u00edguez de Silva y Vel\u00e1zquez (Spanish\npronunciation:\u00a0[\u02c8dje\u0263o ro\u02c8\u00f0ri\u0263e\u03b8 \u00f0e \u02c8sil\u03b2a i\n\u03b2e\u02c8la\u03b8ke\u03b8]; June 6, 1599 \u2013 August 6, 1660) was a\nSpanish painter who was the leading artist in the court of\nKing Philip IV. He was an individualistic artist of the\ncontemporary Baroque period, important as a portrait artist.\nIn addition to numerous renditions of scenes of historical\nand cultural significance, he painted scores of portraits of\nthe Spanish royal family, other notable European figures,...",
"birthyear": "1599",
"name_short": "VEL\u00e1ZQUEZ",
"ints": {
"\/en\/baroque": 1,
"\/en\/jew": 1,
"\/en\/painting": 1,
"\/en\/spain": 1
},
"to": {
"\/en\/edouard_manet": 1,
"\/en\/francis_bacon_1909": 1,
"\/en\/john_singer_sargent": 1,
"\/en\/pablo_picasso": 1,
"\/en\/salvador_dali": 1
},
"fr": {
"\/en\/peter_paul_rubens": 1
},
"fr_count": 1,
"to_count": 5,
"d1": 0.220137001027,
"d2": 0.390224962511
},
"\/en\/rembrandt": {
"id": "\/en\/rembrandt",
"guid": "9202a8c04000641f8000000000ac4742",
"img_guid": "9202a8c04000641f8000000004a9d0fc",
"name": "Rembrandt",
"abstract": "Rembrandt Harmenszoon van Rijn (Dutch\npronunciation:\u00a0[\u02c8r\u025bmbr\u0251nt \u02c8\u0266\u0251rm\u0259(n)so\u02d0n v\u0251n\n\u02c8r\u025bin], 15 July 1606\u00a0\u2013 4 October 1669) was a Dutch\npainter and etcher. He is generally considered one of the\ngreatest painters and printmakers in European art history\nand the most important in Dutch history. His contributions\nto art came in a period that historians call the Dutch\nGolden Age.\nHaving achieved youthful success as a portrait painter, his\nlater years were marked by personal tragedy and financial...",
"birthyear": "1606",
"name_short": "REMBRANDT",
"ints": {
"\/en\/artist": 1,
"\/en\/baroque": 1,
"\/en\/drawing": 1,
"\/en\/dutch_golden_age": 1,
"\/en\/dutch_people": 1,
"\/en\/netherlands": 1,
"\/en\/painter": 1,
"\/en\/painting": 1,
"\/en\/printmaking": 1,
"\/en\/realism": 1
},
"to": {
"\/en\/bartholomeus_van_der_helst": 1,
"\/en\/carel_fabritius": 1,
"\/en\/gerard_dou": 1,
"\/en\/john_lekay": 1,
"\/en\/odd_nerdrum": 1
},
"fr": {
"\/en\/hendrick_ter_brugghen": 1,
"\/en\/hercules_seghers": 1,
"\/en\/titian": 1
},
"fr_count": 3,
"to_count": 5,
"d1": 0.282199218158,
"d2": 0.10679489897
},
"\/en\/titian": {
"id": "\/en\/titian",
"guid": "9202a8c04000641f800000000012127a",
"img_guid": "9202a8c04000641f8000000004afc943",
"name": "Titian",
"abstract": "Tiziano Vecelli or Tiziano Vecellio (c. 1488\/1490 \u2013 27\nAugust 1576 better known as Titian ( \/\u02c8t\u026a\u0283\u0259n\/) was an\nItalian painter, the most important member of the\n16th-century Venetian school. He was born in Pieve di\nCadore, near Belluno (in Veneto), in the Republic of Venice.\nDuring his lifetime he was often called da Cadore, taken\nfrom the place of his birth.\nRecognized by his contemporaries as \"The Sun Amidst Small\nStars\" (recalling the famous final line of Dante's\nParadiso), Titian was one...",
"birthyear": "1485",
"name_short": "TITIAN",
"ints": {
"\/en\/artist": 1,
"\/en\/catholicism": 1,
"\/en\/high_renaissance": 1,
"\/en\/italian_renaissance": 1,
"\/en\/italy": 1,
"\/en\/painter": 1,
"\/en\/painting": 1,
"\/en\/renaissance": 1
},
"to": {
"\/en\/alonso_sanchez_coello": 1,
"\/en\/peter_paul_rubens": 1,
"\/en\/pietro_da_cortona": 1,
"\/en\/rembrandt": 1
},
"fr": [],
"fr_count": 0,
"to_count": 4,
"d1": 0.264097658106,
"d2": 0.263810569728
},
"\/en\/james_mcneill_whistler": {
"id": "\/en\/james_mcneill_whistler",
"guid": "9202a8c04000641f800000000008643f",
"img_guid": "9202a8c04000641f8000000004abfb79",
"name": "James McNeill Whistler",
"abstract": "James Abbott McNeill Whistler (July 10, 1834 \u2013 July 17,\n1903) was an American-born, British-based artist. Averse to\nsentimentality and moral allusion in painting, he was a\nleading proponent of the credo \"art for art's sake\". His\nfamous signature for his paintings was in the shape of a\nstylized butterfly possessing a long stinger for a tail. The\nsymbol was apt, for it combined both aspects of his\npersonality\u2014his art was characterized by a subtle\ndelicacy, while his public persona was...",
"birthyear": "1834",
"name_short": "WHISTLER",
"ints": {
"\/en\/aestheticism": 1,
"\/en\/artist": 1,
"\/en\/grand_manner": 1,
"\/en\/painter": 1,
"\/en\/painting": 1,
"\/en\/united_states": 1
},
"to": {
"\/en\/james_wilson_morrice": 1,
"\/en\/john_singer_sargent": 1,
"\/en\/walter_sickert": 1,
"\/en\/william_merritt_chase": 1
},
"fr": {
"\/en\/gustave_courbet": 1,
"\/en\/robert_walter_weir": 1
},
"fr_count": 2,
"to_count": 4,
"d1": 0.137775554007,
"d2": 0.431721180581
},
"\/en\/arnold_bocklin": {
"id": "\/en\/arnold_bocklin",
"guid": "9202a8c04000641f800000000037d915",
"img_guid": "9202a8c04000641f8000000004c72316",
"name": "Arnold B\u00f6cklin",
"abstract": "Arnold B\u00f6cklin (16 October 1827\u00a0\u2013 16 January 1901) was a\nSwiss symbolist painter.\nHe studied at D\u00fcsseldorf where he became a friend of\nLudwig Andreas Feuerbach. Originally a landscape painter,\nhis travels through Brussels, Zurich, Geneva and Rome,\nexposed him to classical and Renaissance art, and the\nMediterranean landscape. These new influences brought\nallegorical and mythological figures into his compositions.\nIn 1866 he resided at Basel, in 1871 in Munich, in 1885 in\nHottingen...",
"birthyear": "1827",
"name_short": "B\u00f6CKLIN",
"ints": {
"\/en\/painting": 1,
"\/en\/switzerland": 1,
"\/en\/vienna_secession": 1,
"\/m\/0nk1p": 1
},
"to": {
"\/en\/edvard_munch": 1,
"\/en\/giorgio_de_chirico": 1,
"\/en\/max_ernst": 1,
"\/en\/salvador_dali": 1
},
"fr": [],
"fr_count": 0,
"to_count": 4,
"d1": 0.167908185701,
"d2": 0.324007400833
},
"\/en\/jasper_johns": {
"id": "\/en\/jasper_johns",
"guid": "9202a8c04000641f8000000000072e0d",
"img_guid": "9202a8c04000641f8000000007929761",
"name": "Jasper Johns",
"abstract": "Jasper Johns, Jr. (born May 15, 1930) is an American\ncontemporary artist who works primarily in painting and\nprintmaking.\nBorn in Augusta, Georgia, Jasper Johns spent his early life\nin Allendale, South Carolina with his paternal grandparents\nafter his parents' marriage failed. He then spent a year\nliving with his mother in Columbia, South Carolina and\nthereafter he spent several years living with his aunt\nGladys in Lake Murray, South Carolina, twenty-two miles from\nColumbia. He completed...",
"birthyear": "1930",
"name_short": "JOHNS",
"ints": {
"\/en\/abstract_expressionism": 1,
"\/en\/artist": 1,
"\/en\/neo-dada": 1,
"\/en\/painter": 1,
"\/en\/painting": 1,
"\/en\/pop_art": 1,
"\/en\/printmaking": 1,
"\/en\/united_states": 1
},
"to": {
"\/en\/andy_warhol": 1,
"\/en\/brice_marden": 1,
"\/en\/frank_stella": 1,
"\/en\/roy_lichtenstein": 1
},
"fr": {
"\/en\/marcel_duchamp": 1
},
"fr_count": 1,
"to_count": 4,
"d1": 0.4920107945,
"d2": 0.600153748959
},
"\/en\/peter_paul_rubens": {
"id": "\/en\/peter_paul_rubens",
"guid": "9202a8c04000641f80000000000aee8f",
"img_guid": "9202a8c04000641f80000000076d2d9c",
"name": "Peter Paul Rubens",
"abstract": "Sir Peter Paul Rubens (Dutch pronunciation:\u00a0[\u02c8ryb\u0259(n)s];\n28 June 1577 \u2013 30 May 1640) was a prolific\nseventeenth-century Flemish Baroque painter, and a proponent\nof an extravagant Baroque style that emphasized movement,\ncolor, and sensuality. He is well-known for his\nCounter-Reformation altarpieces, portraits, landscapes, and\nhistory paintings of mythological and allegorical subjects.\nIn addition to running a large studio in Antwerp that\nproduced paintings popular with nobility and art...",
"birthyear": "1577",
"name_short": "RUBENS",
"ints": {
"\/en\/antwerp_school": 1,
"\/en\/artist": 1,
"\/en\/baroque": 1,
"\/en\/catholicism": 1,
"\/en\/drawing": 1,
"\/en\/painting": 1
},
"to": {
"\/en\/diego_velazquez": 1,
"\/en\/eugene_delacroix": 1,
"\/en\/jean-antoine_watteau": 1,
"\/en\/vincent_van_gogh": 1
},
"fr": {
"\/en\/caravaggio": 1,
"\/en\/leonardo_da_vinci": 1,
"\/en\/michelangelo": 1,
"\/en\/pieter_brueghel_the_elder": 1,
"\/en\/titian": 1
},
"fr_count": 5,
"to_count": 4,
"d1": 0.229920789997,
"d2": 0.249981651381
},
"\/en\/camille_pissarro": {
"id": "\/en\/camille_pissarro",
"guid": "9202a8c04000641f8000000000010c7b",
"img_guid": "9202a8c04000641f8000000004a602aa",
"name": "Camille Pissarro",
"abstract": "Camille Pissarro (10 July 1830 \u2013 13 November 1903) was a\nFrench Impressionist and Neo-Impressionist painter born in\nthe Virgin Islands, where his father was of Portuguese\nJewish descent and his mother was native Creole. He studied\nin Paris and London, becoming a permanent resident of\nFrance. His importance resides in his contributions to both\nImpressionism and Post-Impressionism, as he was the only\nartist to exhibit in both forms. Pissarro studied from great\nforerunners, including Courbet...",
"birthyear": "1830",
"name_short": "PISSARRO",
"ints": {
"\/en\/artist": 1,
"\/en\/draftsman": 1,
"\/en\/france": 1,
"\/en\/impressionism": 1,
"\/en\/judaism": 1,
"\/en\/neo-impressionism": 1,
"\/en\/painter": 1,
"\/en\/painting": 1,
"\/en\/post-impressionism": 1,
"\/en\/printmaker": 1
},
"to": {
"\/en\/edgar_degas": 1,
"\/en\/paul_cezanne": 1,
"\/en\/paul_gauguin": 1
},
"fr": {
"\/en\/henri_lehmann": 1
},
"fr_count": 1,
"to_count": 3,
"d1": 0.199751745717,
"d2": 0.20502045291
},
"\/en\/edgar_degas": {
"id": "\/en\/edgar_degas",
"guid": "9202a8c04000641f8000000000077e5e",
"img_guid": "9202a8c04000641f8000000004ab4f6a",
"name": "Edgar Degas",
"abstract": "Edgar Degas (19 July 1834 \u2013 27 September 1917), born\nHilaire-Germain-Edgar De Gas (French pronunciation:\u00a0[il\u025b\u0281\n\u0292\u025b\u0281m\u025bn\u025bd\u0261\u0251\u0281 d\u0259\u02c8\u0261\u0251]), was a French artist famous\nfor his work in painting, sculpture, printmaking and\ndrawing. He is regarded as one of the founders of\nImpressionism although he rejected the term, and preferred\nto be called a realist. A superb draughtsman, he is\nespecially identified with the subject of the dance, and\nover half his works depict dancers. These display his\nmastery in...",
"birthyear": "1834",
"name_short": "DEGAS",
"ints": {
"\/en\/artist": 1,
"\/en\/drawing": 1,
"\/en\/france": 1,
"\/en\/impressionism": 1,
"\/en\/painting": 1,
"\/en\/realism": 1,
"\/en\/sculpture": 1
},
"to": {
"\/en\/henri_de_toulouse-lautrec": 1,
"\/en\/stefan_luchian": 1,
"\/en\/walter_sickert": 1
},
"fr": {
"\/en\/camille_pissarro": 1,
"\/en\/claude_monet": 1,
"\/en\/eugene_delacroix": 1
},
"fr_count": 3,
"to_count": 3,
"d1": 0.448966607519,
"d2": 0.205873354758
},
"\/en\/joan_miro": {
"id": "\/en\/joan_miro",
"guid": "9202a8c04000641f8000000000077cd1",
"img_guid": "9202a8c04000641f8000000004ab4d6b",
"name": "Joan Mir\u00f3",
"abstract": "Joan Mir\u00f3 i Ferr\u00e0 (April 20, 1893\u00a0\u2013 December 25, 1983;\nCatalan pronunciation:\u00a0[\u0292u\u02c8an mi\u02c8\u027eo]) was a Spanish\nCatalan painter, sculptor, and ceramicist born in Barcelona.\nEarning international acclaim, his work has been\ninterpreted as Surrealism, a sandbox for the subconscious\nmind, a re-creation of the childlike, and a manifestation of\nCatalan pride. In numerous interviews dating from the 1930s\nonwards, Mir\u00f3 expressed contempt for conventional painting\nmethods as a way of supporting bourgeois...",
"birthyear": "1893",
"name_short": "MIR\u00f3",
"ints": {
"\/en\/ceramics": 1,
"\/en\/dada": 1,
"\/en\/mural": 1,
"\/en\/painting": 1,
"\/en\/sculpture": 1,
"\/en\/spain": 1,
"\/en\/surrealism": 1
},
"to": {
"\/en\/alberto_giacometti": 1,
"\/en\/arshile_gorky": 1,
"\/en\/salvador_dali": 1
},
"fr": {
"\/en\/andre_masson": 1,
"\/en\/hieronymus_bosch": 1,
"\/en\/jean_arp": 1,
"\/en\/pablo_picasso": 1,
"\/en\/tristan_tzara": 1
},
"fr_count": 5,
"to_count": 3,
"d1": 0.665802558961,
"d2": 0.521878197486
},
"\/en\/willem_de_kooning": {
"id": "\/en\/willem_de_kooning",
"guid": "9202a8c04000641f8000000000259555",
"img_guid": "9202a8c04000641f80000000049e8d81",
"name": "Willem de Kooning",
"abstract": "Willem de Kooning (April 24, 1904 \u2013 March 19, 1997) was a\nDutch American abstract expressionist artist who was born in\nRotterdam, the Netherlands.\nIn the post-World War II era, de Kooning painted in a style\nthat came to be referred to as Abstract expressionism or\nAction painting, and was part of a group of artists that\ncame to be known as the New York School. Other painters in\nthis group included Jackson Pollock, Franz Kline, Arshile\nGorky, Mark Rothko, Hans Hofmann, Adolph Gottlieb, Robert...",
"birthyear": "1904",
"name_short": "KOONING",
"ints": {
"\/en\/artist": 1,
"\/en\/netherlands": 1,
"\/en\/painting": 1,
"\/en\/united_states": 1
},
"to": {
"\/en\/franz_kline": 1,
"\/en\/joan_mitchell": 1,
"\/en\/richard_diebenkorn": 1
},
"fr": {
"\/en\/josef_albers": 1,
"\/en\/vincent_van_gogh": 1
},
"fr_count": 2,
"to_count": 3,
"d1": 0.295738341845,
"d2": 0.413254217965
},
"\/en\/josef_albers": {
"id": "\/en\/josef_albers",
"guid": "9202a8c04000641f80000000001e3519",
"img_guid": "9202a8c04000641f800000000789bb93",
"name": "Josef Albers",
"abstract": "Josef Albers (March 19, 1888 \u2013 March 25, 1976) was a\nGerman-born American artist and educator whose work, both in\nEurope and in the United States, formed the basis of some of\nthe most influential and far-reaching art education programs\nof the 20th century.\nAlbers was born in Bottrop, Westphalia (Germany). He\nstudied art in Berlin, Essen, and Munich, before enrolling\nas a student in the basic course of Johannes Itten at the\nprestigious Weimar Bauhaus in 1920. The director and founder\nof the...",
"birthyear": "1888",
"name_short": "ALBERS",
"ints": {
"\/en\/artist": 1,
"\/en\/geometric_abstract_art": 1,
"\/en\/germany": 1,
"\/en\/painting": 1,
"\/en\/united_states": 1
},
"to": {
"\/en\/betty_hawley_kelso": 1,
"\/en\/robert_rauschenberg": 1,
"\/en\/willem_de_kooning": 1
},
"fr": [],
"fr_count": 0,
"to_count": 3,
"d1": 0.246289256539,
"d2": 0.473516531793
},
"\/en\/vincent_van_gogh": {
"id": "\/en\/vincent_van_gogh",
"guid": "9202a8c04000641f800000000003fe62",
"img_guid": "9202a8c04000641f8000000004a895a6",
"name": "Vincent van Gogh",
"abstract": "Vincent Willem van Gogh (Dutch:\u00a0[fa\u014b\u02c8x\u0254x]\u00a0 ( listen),\nEnglish:\u00a0\/\u02ccv\u00e6n \u02c8\u0261\u0252x\/ in British English and \/\u02ccv\u00e6n\n\u02c8\u0261o\u028a\/ van-GOH in American English; 30 March 1853\u00a0\u2013 29\nJuly 1890) was a Dutch post-Impressionist painter whose work\nhad a far-reaching influence on 20th century art for its\nvivid colors and emotional impact. He suffered from anxiety\nand increasingly frequent bouts of mental illness throughout\nhis life and died, largely unknown, at the age of 37 from a\nself-inflicted gunshot wound.\nLittle...",
"birthyear": "1853",
"name_short": "GOGH",
"ints": {
"\/en\/artist": 1,
"\/en\/drawing": 1,
"\/en\/dutch_people": 1,
"\/en\/expressionism": 1,
"\/en\/impressionism": 1,
"\/en\/netherlands": 1,
"\/en\/painter": 1,
"\/en\/painting": 1,
"\/en\/post-impressionism": 1
},
"to": {
"\/en\/henri_matisse": 1,
"\/en\/joan_mitchell": 1,
"\/en\/willem_de_kooning": 1
},
"fr": {
"\/en\/anton_mauve": 1,
"\/en\/claude_monet": 1,
"\/en\/jean-francois_millet": 1,
"\/en\/paul_cezanne": 1,
"\/en\/peter_paul_rubens": 1
},
"fr_count": 5,
"to_count": 3,
"d1": 0.357014232806,
"d2": 0.124193013203
},
"\/en\/winslow_homer": {
"id": "\/en\/winslow_homer",
"guid": "9202a8c04000641f80000000001cbce3",
"img_guid": "9202a8c04000641f8000000004b73b70",
"name": "Winslow Homer",
"abstract": "Winslow Homer (February 24, 1836 \u2013 September 29, 1910) was\nan American landscape painter and printmaker, best known for\nhis marine subjects. He is considered one of the foremost\npainters in 19th century America and a preeminent figure in\nAmerican art.\nLargely self-taught, Homer began his career working as a\ncommercial illustrator. He subsequently took up oil painting\nand produced major studio works characterized by the weight\nand density he exploited from the medium. He also worked...",
"birthyear": "1836",
"name_short": "HOMER",
"ints": {
"\/en\/artist": 1,
"\/en\/drawing": 1,
"\/en\/painting": 1,
"\/en\/realism": 1,
"\/en\/tile_club": 1,
"\/en\/united_states": 1
},
"to": {
"\/en\/frederic_remington": 1,
"\/en\/n_c_wyeth": 1,
"\/en\/robert_henri": 1
},
"fr": [],
"fr_count": 0,
"to_count": 3,
"d1": 0.350886106059,
"d2": 0.200340489176
},
"\/en\/edouard_manet": {
"id": "\/en\/edouard_manet",
"guid": "9202a8c04000641f8000000000014d51",
"img_guid": "9202a8c04000641f8000000004a63816",
"name": "\u00c9douard Manet",
"abstract": "\u00c9douard Manet (French pronunciation:\u00a0[edwa\u0281 man\u025b]; 23\nJanuary 1832 \u2013 30 April 1883) was a French painter. One of\nthe first 19th-century artists to approach modern-life\nsubjects, he was a pivotal figure in the transition from\nRealism to Impressionism.\nHis early masterworks, The Luncheon on the Grass (Le\nd\u00e9jeuner sur l'herbe) and Olympia, engendered great\ncontroversy and served as rallying points for the young\npainters who would create Impressionism. Today, these are\nconsidered watershed...",
"birthyear": "1832",
"name_short": "MANET",
"ints": {
"\/en\/france": 1,
"\/en\/impressionism": 1,
"\/en\/painting": 1,
"\/en\/realism": 1
},
"to": {
"\/en\/pablo_picasso": 1,
"\/en\/paul_cezanne": 1,
"\/en\/stefan_luchian": 1
},
"fr": {
"\/en\/diego_velazquez": 1,
"\/en\/eugene_delacroix": 1,
"\/en\/francisco_goya": 1,
"\/en\/thomas_couture": 1
},
"fr_count": 4,
"to_count": 3,
"d1": 0.258000166752,
"d2": 0.265206647195
},
"\/en\/claude_monet": {
"id": "\/en\/claude_monet",
"guid": "9202a8c04000641f800000000000f290",
"img_guid": "9202a8c04000641f8000000004a5ea35",
"name": "Claude Monet",
"abstract": "Claude Monet (French pronunciation:\u00a0[klod m\u0254n\u025b]), born\nOscar Claude Monet (14\u00a0November 1840 \u2013 5 December 1926),\nwas a founder of French impressionist painting, and the most\nconsistent and prolific practitioner of the movement's\nphilosophy of expressing one's perceptions before nature,\nespecially as applied to plein-air landscape painting. The\nterm Impressionism is derived from the title of his painting\nImpression, Sunrise (Impression, soleil levant).\nClaude Monet was born on 14 November 1840...",
"birthyear": "1840",
"name_short": "MONET",
"ints": {
"\/en\/artist": 1,
"\/en\/france": 1,
"\/en\/impressionism": 1,
"\/en\/painting": 1
},
"to": {
"\/en\/edgar_degas": 1,
"\/en\/vincent_van_gogh": 1,
"\/en\/wassily_kandinsky": 1
},
"fr": {
"\/en\/charles-francois_daubigny": 1,
"\/en\/eugene_boudin": 1,
"\/en\/eugene_delacroix": 1,
"\/en\/gustave_courbet": 1
},
"fr_count": 4,
"to_count": 3,
"d1": 0.273356380756,
"d2": 0.340143236885
},
"\/en\/michelangelo": {
"id": "\/en\/michelangelo",
"guid": "9202a8c04000641f800000000002a365",
"img_guid": "9202a8c04000641f8000000004a76a70",
"name": "Michelangelo",
"abstract": "Michelangelo di Lodovico Buonarroti Simoni (6\u00a0March 1475\n\u2013 18 February 1564), commonly known as Michelangelo, was\nan Italian Renaissance painter, sculptor, architect, poet,\nand engineer. Despite making few forays beyond the arts, his\nversatility in the disciplines he took up was of such a high\norder that he is often considered a contender for the title\nof the archetypal Renaissance man, along with fellow Italian\nLeonardo da Vinci.\nMichelangelo's output in every field during his long life\nwas...",
"birthyear": "1475",
"name_short": "MICHELANGELO",
"ints": {
"\/en\/architect": 1,
"\/en\/artist": 1,
"\/en\/catholicism": 1,
"\/en\/drawing": 1,
"\/en\/high_renaissance": 1,
"\/en\/italian_renaissance": 1,
"\/en\/italy": 1,
"\/en\/painting": 1,
"\/en\/renaissance": 1,
"\/en\/sculpture": 1,
"\/m\/0b7b55p": 1
},
"to": {
"\/en\/auguste_rodin": 1,
"\/en\/henry_moore": 1,
"\/en\/peter_paul_rubens": 1
},
"fr": {
"\/en\/domenico_ghirlandaio": 1,
"\/en\/melozzo_da_forli": 1
},
"fr_count": 2,
"to_count": 3,
"d1": 0.482037879632,
"d2": 0.216500911331
},
"\/en\/hieronymus_bosch": {
"id": "\/en\/hieronymus_bosch",
"guid": "9202a8c04000641f800000000005b29f",
"img_guid": "9202a8c04000641f8000000004a9cf8b",
"name": "Hieronymus Bosch",
"abstract": "Hieronymus Bosch (English\npronunciation:\u00a0\/\u02ccha\u026a.\u0259\u02c8r\u0252n\u0268m\u0259s \u02c8b\u0252\u0283\/,\nDutch:\u00a0[\u0266ije\u02d0\u02c8\u027eo\u02d0nim\u028fs \u02c8b\u0254s]; born Jeroen\nAnthoniszoon van Aken [j\u0259\u02c8run \u0251n\u02c8to\u02d0n\u026aso\u02d0n v\u0251n\n\u02c8a\u02d0k\u0259(n)]; c. 1450 \u2013 August 9, 1516) was an Early\nNetherlandish painter. His work is known for its use of\nfantastic imagery to illustrate moral and religious concepts\nand narratives.\nHieronymus Bosch was born Hieronymus (or Jeroen,\nrespectively the Latin and Middle Dutch form of the name\n\"Jerome\") van Aken (meaning \"from Aachen\"). He signed...",
"birthyear": "1450",
"name_short": "BOSCH",
"ints": {
"\/en\/artist": 1,
"\/en\/catholicism": 1,
"\/en\/drawing": 1,
"\/en\/netherlands": 1,
"\/en\/painter": 1,
"\/en\/painting": 1,
"\/en\/renaissance": 1
},
"to": {
"\/en\/joan_miro": 1,
"\/en\/pieter_brueghel_the_elder": 1,
"\/en\/salvador_dali": 1
},
"fr": [],
"fr_count": 0,
"to_count": 3,
"d1": 0.343154844703,
"d2": 0.278038021751
},
"\/en\/leonardo_da_vinci": {
"id": "\/en\/leonardo_da_vinci",
"guid": "9202a8c04000641f80000000000249c6",
"img_guid": "9202a8c04000641f8000000004a72672",
"name": "Leonardo da Vinci",
"abstract": "Leonardo di ser Piero da Vinci ( pronunciation (help\u00b7info))\n(April 15, 1452\u00a0\u2013 May 2, 1519) was an Italian polymath:\npainter, sculptor, architect, musician, scientist,\nmathematician, engineer, inventor, anatomist, geologist,\ncartographer, botanist and writer. Leonardo has often been\ndescribed as the archetype of the Renaissance Man, a man of\n\"unquenchable curiosity\" and \"feverishly inventive\nimagination\". He is widely considered to be one of the\ngreatest painters of all time and perhaps the...",
"birthyear": "1453",
"name_short": "VINCI",
"ints": {
"\/en\/anatomist": 1,
"\/en\/architect": 1,
"\/en\/artist": 1,
"\/en\/botanist": 1,
"\/en\/catholicism": 1,
"\/en\/civil_engineer": 1,
"\/en\/drawing": 1,
"\/en\/engineer": 1,
"\/en\/high_renaissance": 1,
"\/en\/inventor": 1,
"\/en\/italian_people": 1,
"\/en\/italian_renaissance": 1,
"\/en\/italy": 1,
"\/en\/military_engineer": 1,
"\/en\/musician": 1,
"\/en\/painter": 1,
"\/en\/painting": 1,
"\/en\/renaissance": 1,
"\/en\/sculpture": 1,
"\/en\/writer": 1,
"\/m\/0b7b55p": 1
},
"to": {
"\/en\/giorgio_vasari": 1,
"\/en\/peter_paul_rubens": 1,
"\/en\/raphael": 1
},
"fr": {
"\/en\/andrea_del_verrocchio": 1
},
"fr_count": 1,
"to_count": 3,
"d1": 0.482037879632,
"d2": 0.216500911331
},
"\/en\/francisco_goya": {
"id": "\/en\/francisco_goya",
"guid": "9202a8c04000641f8000000000017443",
"img_guid": "9202a8c04000641f8000000004a6639e",
"name": "Francisco Goya",
"abstract": "Francisco Jos\u00e9 de Goya y Lucientes (30 March 1746 \u2013 16\nApril 1828) was a Spanish romantic painter and printmaker\nregarded both as the last of the Old Masters and as the\nfirst of the moderns. Goya was a court painter to the\nSpanish Crown, and through his works was both a commentator\non and chronicler of his era. The subversive and imaginative\nelement in his art, as well as his bold handling of paint,\nprovided a model for the work of later generations of\nartists, notably Manet and...",
"birthyear": "1746",
"name_short": "GOYA",
"ints": {
"\/en\/catholicism": 1,
"\/en\/drawing": 1,
"\/en\/painting": 1,
"\/en\/printmaking": 1,
"\/en\/romanticism": 1,
"\/en\/spain": 1
},
"to": {
"\/en\/edouard_manet": 1,
"\/en\/pablo_picasso": 1
},
"fr": [],
"fr_count": 0,
"to_count": 2,
"d1": 0.374249759885,
"d2": 0.246622979653
},
"\/en\/franz_kline": {
"id": "\/en\/franz_kline",
"guid": "9202a8c04000641f8000000000309aae",
"img_guid": "9202a8c04000641f8000000004a0e448",
"name": "Franz Kline",
"abstract": "Franz Jozef Kline (May 23 1910 \u2013 May 13 1962) was an\nAmerican painter mainly associated with the Abstract\nExpressionist movement centered around New York in the 1940s\nand 1950s. He was born in Wilkes-Barre, Pennsylvania,\nattended Girard College, an academy for fatherless boys,\nattended Boston University, spent summers from 1956-62\npainting in Provincetown, Massachusetts, and died in New\nYork City of a rheumatic heart disease. He was married to\nElizabeth Vincent Parsons, a British ballet...",
"birthyear": "1910",
"name_short": "KLINE",
"ints": {
"\/en\/abstract_expressionism": 1,
"\/en\/artist": 1,
"\/en\/painting": 1,
"\/en\/united_states": 1
},
"to": {
"\/en\/frank_stella": 1,
"\/en\/joan_mitchell": 1
},
"fr": {
"\/en\/willem_de_kooning": 1
},
"fr_count": 1,
"to_count": 2,
"d1": 0.286884310734,
"d2": 0.489312694226
},
"\/en\/paul_gauguin": {
"id": "\/en\/paul_gauguin",
"guid": "9202a8c04000641f800000000007a05c",
"img_guid": "9202a8c04000641f8000000004ab6aae",
"name": "Paul Gauguin",
"abstract": "Eug\u00e8ne Henri Paul Gauguin (French\npronunciation:\u00a0[\u0261o\u0261\u025b\u0303]; 7 June 1848\u00a0\u2013 8 May 1903)\nwas a leading French Post-Impressionist artist. He was an\nimportant figure in the Symbolist movement as a painter,\nsculptor, printmaker, ceramist, and writer. His bold\nexperimentation with colouring led directly to the\nSynthetist style of modern art while his expression of the\ninherent meaning of the subjects in his paintings, under the\ninfluence of the cloisonnist style, paved the way to\nPrimitivism and the...",
"birthyear": "1848",
"name_short": "GAUGUIN",
"ints": {
"\/en\/artist": 1,
"\/en\/france": 1,
"\/en\/painting": 1,
"\/en\/post-impressionism": 1,
"\/en\/printmaking": 1,
"\/en\/sailor": 1,
"\/en\/sculpture": 1
},
"to": {
"\/en\/georgia_okeeffe": 1,
"\/en\/henri_matisse": 1
},
"fr": {
"\/en\/camille_pissarro": 1
},
"fr_count": 1,
"to_count": 2,
"d1": 0.471848912545,
"d2": 0.314308767899
},
"\/en\/david_park": {
"id": "\/en\/david_park",
"guid": "9202a8c04000641f800000000039d7e5",
"img_guid": "",
"name": "David Park",
"abstract": "David Park (March 17, 1911 \u2013 September 20, 1960) was a\npainter and a pioneer of the Bay Area Figurative School of\npainting during the 1950s.\nDavid Park was part of the post-World War II alumnae of the\nSan Francisco Art Institute which was called the California\nSchool of Fine Arts (CSFA) at the time. He revived an\ninterest in figurative art, at first experimenting with\nstill-abstracted forms that relied on color for their\nimpact, dynamics and warmth. Park, along with Richard\nDiebenkorn and...",
"birthyear": "1911",
"name_short": "PARK",
"ints": {
"\/en\/artist": 1,
"\/en\/painting": 1,
"\/en\/united_states": 1
},
"to": {
"\/en\/elmer_bischoff": 1,
"\/en\/richard_diebenkorn": 1
},
"fr": [],
"fr_count": 0,
"to_count": 2,
"d1": 0.295738341845,
"d2": 0.413254217965
},
"\/en\/william_hogarth": {
"id": "\/en\/william_hogarth",
"guid": "9202a8c04000641f80000000000afefc",
"img_guid": "9202a8c04000641f80000000076dc382",
"name": "William Hogarth",
"abstract": "William Hogarth (10 November 1697 \u2013 26 October 1764) was\nan English painter, printmaker, pictorial satirist, social\ncritic and editorial cartoonist who has been credited with\npioneering western sequential art. His work ranged from\nrealistic portraiture to comic strip-like series of pictures\ncalled \"modern moral subjects\". Knowledge of his work is so\npervasive that satirical political illustrations in this\nstyle are often referred to as \"Hogarthian.\"\nWilliam Hogarth was born at Bartholomew...",
"birthyear": "1697",
"name_short": "HOGARTH",
"ints": {
"\/en\/cartoonist": 1,
"\/en\/deism": 1,
"\/en\/england": 1,
"\/en\/painter": 1,
"\/en\/painting": 1,
"\/en\/printmaking": 1,
"\/en\/social_critic": 1
},
"to": {
"\/en\/ford_madox_brown": 1,
"\/en\/john_lewis_krimmel": 1
},
"fr": [],
"fr_count": 0,
"to_count": 2,
"d1": 0.368478878696,
"d2": 0.381531151766
},
"\/en\/wassily_kandinsky": {
"id": "\/en\/wassily_kandinsky",
"guid": "9202a8c04000641f80000000000414de",
"img_guid": "9202a8c04000641f8000000004a8aedc",
"name": "Wassily Kandinsky",
"abstract": "Wassily Wassilyevich Kandinsky (English\npronunciation:\u00a0\/k\u0259n\u02c8d\u026anski\/; Russian: \u0412\u0430\u0441\u0438\u0301\u043b\u0438\u0439\n\u0412\u0430\u0441\u0438\u0301\u043b\u044c\u0435\u0432\u0438\u0447 \u041a\u0430\u043d\u0434\u0438\u0301\u043d\u0441\u043a\u0438\u0439, Vasilij\nVasil'evi\u010d Kandinskij; 16 December [O.S. 4 December] 1866\n\u2013 13 December 1944) was a Russian painter, and art\ntheorist. He is credited with painting of the first purely\nabstract works.\nBorn in Moscow, Kandinsky spent his childhood in Odessa. He\nenrolled at the University of Moscow and chose to study law\nand economics. Quite successful in his profession\u2014he was\noffered a...",
"birthyear": "1866",
"name_short": "KANDINSKY",
"ints": {
"\/en\/abstract_art": 1,