-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvgww_data_rce_2024-03-26.trig
10878 lines (9157 loc) · 831 KB
/
vgww_data_rce_2024-03-26.trig
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
@prefix XSD: <http://www.w3.org/2001/XMLSchema#> .
@prefix crm: <http://www.cidoc-crm.org/cidoc-crm/> .
@prefix dig: <http://www.ics.forth.gr/isl/CRMdig/> .
@prefix la: <https://linked.art/ns/terms/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
<https://linkeddata.cultureelerfgoed.nl/rce/graph/Van-Gogh-World-Wide-RCE> {
<http://vocab.getty.edu/ulan/500115588> a crm:E39_Actor ;
rdfs:label "Gogh, Vincent van"@nl .
<https://data.cultureelerfgoed.nl/term/id/cht/014237aa-5381-4dbe-8818-8d15931b3a34> a crm:E55_Type ;
rdfs:label "hars"@nl .
<https://data.cultureelerfgoed.nl/term/id/cht/07307c99-4889-4ea8-a8ee-ac43e6103642> a crm:E55_Type ;
rdfs:label "restaurator"@nl .
<https://data.cultureelerfgoed.nl/term/id/cht/1eb395fc-5e3f-4b4c-9991-1fcc4ba53253> a crm:E55_Type ;
rdfs:label "reconstructies"@nl .
<https://data.cultureelerfgoed.nl/term/id/cht/2cdcbbd6-87c7-4f60-b6ab-80947b545989> a crm:E55_Type ;
rdfs:label "copaivabalsem"@nl .
<https://data.cultureelerfgoed.nl/term/id/cht/7ed4e756-c437-41b4-8cd1-78f9870593ef> a crm:E55_Type ;
rdfs:label "gouache"@nl .
<https://data.cultureelerfgoed.nl/term/id/cht/868cae26-3d02-40f1-b739-636778888e72> a crm:E55_Type ;
rdfs:label "harsen"@nl .
<https://data.cultureelerfgoed.nl/term/id/cht/9778420a-5e87-4efb-8e73-e4344a1788aa> a crm:E55_Type ;
rdfs:label "doubleren"@nl .
<https://data.cultureelerfgoed.nl/term/id/cht/af7b5f1a-1bd7-4241-b981-dc14e6b4ec49> a crm:E55_Type ;
rdfs:label "alkydhars"@nl .
<https://data.cultureelerfgoed.nl/term/id/cht/b885b180-0922-40b0-b178-7b8a9ea00eea> a crm:E55_Type ;
rdfs:label "vezels"@nl .
<https://data.cultureelerfgoed.nl/term/id/cht/e70d81ed-7a29-408d-8c40-5da8c818774c> a crm:E55_Type ;
rdfs:label "adhesieven"@nl .
<https://data.cultureelerfgoed.nl/term/id/cht/f093a8d0-04e3-4e8d-82de-4f1019dc1600> a crm:E55_Type ;
rdfs:label "textielvezels"@nl .
<https://data.cultureelerfgoed.nl/term/id/cht/fd29681f-cff4-4780-b09d-8b07c1d3ea42> a crm:E55_Type ;
rdfs:label "infraroodreflectografie"@nl .
<https://data.cultureelerfgoed.nl/term/id/rn/1e95ed28-14f7-472c-9166-1a9f93a65e75> a crm:E39_Actor ;
rdfs:label "Heesters,Raymond"@nl ;
crm:P2_has_type <http://vocab.getty.edu/aat/300025576> .
<https://data.cultureelerfgoed.nl/term/id/rn/4648011b-2b9f-4179-87b5-d5ade56d4afd> a crm:E39_Actor ;
rdfs:label "Werf,InezD.vander"@nl ;
crm:P2_has_type <http://vocab.getty.edu/aat/300025576> .
<https://data.cultureelerfgoed.nl/term/id/rn/6e2e3f4a-af8a-420e-97b2-e74d8c74d305> a crm:E39_Actor ;
rdfs:label "Megens,Luc"@nl ;
crm:P2_has_type <http://vocab.getty.edu/aat/300025576> .
<https://data.cultureelerfgoed.nl/term/id/rn/ccc2ab1a-c992-45eb-b719-6e1272a7fd3b> a crm:E39_Actor ;
rdfs:label "Pause,Rika"@nl ;
crm:P2_has_type <http://vocab.getty.edu/aat/300025576> .
<https://data.cultureelerfgoed.nl/term/id/rn/d814e282-4ed2-4a90-a348-d6857339d11c> a crm:E39_Actor ;
rdfs:label "Klusman,Ernst"@nl ;
crm:P2_has_type <http://vocab.getty.edu/aat/300417573> .
<https://data.cultureelerfgoed.nl/term/id/rn/e3cb9e0d-3fbe-4804-b4b7-255e0948dcaa> a crm:E39_Actor ;
rdfs:label "Reissland,Birgit"@nl ;
crm:P2_has_type <http://vocab.getty.edu/aat/300025576> .
<https://data.cultureelerfgoed.nl/term/id/rn/f616f6d4-8a5a-475d-b4dc-80414ffeb271> a crm:E39_Actor ;
rdfs:label "Oosten,TheaB.van"@nl ;
crm:P2_has_type <http://vocab.getty.edu/aat/300025576> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/005b175a-84bd-3b89-8091-8a93ec4a1966> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900001669"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/00c8bb5e-43db-43b7-99c9-0f093455f19a> a crm:E52_Time-Span ;
crm:P82a_begin_of_the_begin "2004"^^XSD:gYear ;
crm:P82b_end_of_the_end "2004"^^XSD:gYear .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/00e4ab17-fa1e-3e25-b2a8-9c0a6d9c20f2> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900002017"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/01073efb-e4bb-3593-b62c-31419a95a551> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "D2001-047" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/70003ebd-15ba-4f93-9c0c-baac09ccff44> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/0163f7ff-f5b5-3f88-8b11-86ceb0cae80f> a crm:E33_E41_Linguistic_Appellation,
crm:E42_Identifier ;
crm:P190_has_symbolic_content "VincentvanGogh,'Self-PortraitwithPipeandStrawHat',Paris,September-October1887,VanGoghMuseum,inv.nr.F524"@nl .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/01e7bcfa-4e77-33c1-ad86-4092401fa144> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "D1990-027" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/70003ebd-15ba-4f93-9c0c-baac09ccff44> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/01ee34cf-e653-3b91-961d-c9e9ebfe7a72> a crm:E33_E41_Linguistic_Appellation,
crm:E42_Identifier ;
crm:P190_has_symbolic_content "VincentvanGogh,'DakenvanParijs';'ViewfromVincent'sStudio',Paris,June1886,VanGoghMuseum,inv.nr.F231"@nl .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/020a1d32-ad23-42b6-bacc-686449177f25> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "2947" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/be568e9e-9cab-48ef-b226-fd9d37b971b1> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/023aacdb-9ea5-3e9a-adc1-714580fd3bf6> a crm:E33_E41_Linguistic_Appellation,
crm:E42_Identifier ;
crm:P190_has_symbolic_content "VincentvanGogh,'Self-PortraitwithFeltHat',VanGoghMuseum,Paris,December1886-January1887,inv.nr.F208A"@nl .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/024d2745-7428-3fe4-8bb6-2445912ec63b> a crm:E33_E41_Linguistic_Appellation,
crm:E42_Identifier ;
crm:P190_has_symbolic_content "VincentvanGogh,'LaButtedeMontmartre',Parijs,1886,F266;'Interieurmetwever',Nuenen,1884,F37;'Hetravijn(LesPeiroulets)',Saint-Rémy,1889,F661,Kröller-MüllerMuseum:onderzoekm.b.t.deoppervlaktelagenopdeverflagen[incl.F394;F617;F513]"@nl .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/02659b84-b974-3d30-8c7d-18a98aba068e> a crm:E33_E41_Linguistic_Appellation,
crm:E42_Identifier ;
crm:P190_has_symbolic_content "VincentvanGogh,'BankoftheSeine',Paris,May-July1887,VanGoghMuseum,inv.nr.F293"@nl .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/036bf734-6ac1-3cc2-a8ea-d15d100757fc> crm:P190_has_symbolic_content "F61v" ;
crm:P2_has_type <https://vangoghworldwide.org/data/concept/f_number> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/03bdf8c3-8f76-3d77-b9b0-9292f131260a> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "D2001-064" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/70003ebd-15ba-4f93-9c0c-baac09ccff44> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/04a9efeb-c744-37b2-85b9-04b27469d194> a crm:E33_E41_Linguistic_Appellation,
crm:E42_Identifier ;
crm:P190_has_symbolic_content "VincentvanGogh,'Stilllifewithgrapes'['Grapes'],Paris,September-October1887,VanGoghMuseum,inv.nr.F603"@nl .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/0585014d-fa39-39e4-8e7a-c6f6c7eda005> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900002025"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/05bb6983-0e91-4484-9ff8-7d3493438a1c> a crm:E52_Time-Span ;
crm:P82a_begin_of_the_begin "2019"^^XSD:gYear ;
crm:P82b_end_of_the_end "2019"^^XSD:gYear .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/07120025-38d1-47ce-82e1-d833e42e88bb> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "2813" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/be568e9e-9cab-48ef-b226-fd9d37b971b1> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/0752ec66-2c34-4de6-9079-f3038e1b3e88> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "F16" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/be568e9e-9cab-48ef-b226-fd9d37b971b1> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/07a0806f-d25a-3d1c-9877-c479eba76e34> a crm:E33_E41_Linguistic_Appellation,
crm:E42_Identifier ;
crm:P190_has_symbolic_content "VincentvanGogh,'CourtingcouplesintheVoyerd'ArgesonParkinAsnieres'['GardenwithCourtingCouples:SquareSaint-Pierre'],Paris,May1887,VanGoghMuseum,inv.nr.F314"@nl .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/07e8e782-8589-4bb0-85d8-bc4c315cb113> a crm:E52_Time-Span ;
crm:P82a_begin_of_the_begin "2000"^^XSD:gYear ;
crm:P82b_end_of_the_end "2000"^^XSD:gYear .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/08463e31-1bc0-46e8-94de-4cb3bd51b917> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "2928" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/be568e9e-9cab-48ef-b226-fd9d37b971b1> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/08499914-ed06-3786-901a-2fc006dd85fa> crm:P190_has_symbolic_content "F215c" ;
crm:P2_has_type <https://vangoghworldwide.org/data/concept/f_number> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/086546c3-5ed3-329c-91ff-7cabd83b32c6> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900002046"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/087406a6-9664-30ed-b4b5-b132ffd6e834> a crm:E33_E41_Linguistic_Appellation,
crm:E42_Identifier ;
crm:P190_has_symbolic_content "VincentvanGogh,'ViewfromMontmartre','DesteengroevebijMontmartre',Paris,1886,VanGoghMuseum,inv.nr.F233"@nl .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/087e234d-829e-3762-af54-d0b35310cd93> crm:P190_has_symbolic_content "F294" ;
crm:P2_has_type <https://vangoghworldwide.org/data/concept/f_number> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/0968e8a8-8985-37f8-874e-f2add2e6aa0c> a crm:E33_E41_Linguistic_Appellation,
crm:E42_Identifier ;
crm:P190_has_symbolic_content "VincentvanGogh,'Gipsenvrouwentorso'['TorsoofVenus'],Paris,June1886,VanGoghMuseum,inv.nr.F216A"@nl .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/096f6b40-d7ce-36f6-9488-c0046cccd2b6> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900002091"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/09fe610b-76c5-3a05-b923-4652678794af> crm:P190_has_symbolic_content "F369" ;
crm:P2_has_type <https://vangoghworldwide.org/data/concept/f_number> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/0a490960-e383-3d62-8454-694dc0cb987b> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900001943"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/0a6a7499-94b5-3ee6-949c-54f3e5aedced> crm:P190_has_symbolic_content "F380" ;
crm:P2_has_type <https://vangoghworldwide.org/data/concept/f_number> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/0abfeb6f-ee19-32cb-b72d-42ae198bffc8> crm:P190_has_symbolic_content "F310" ;
crm:P2_has_type <https://vangoghworldwide.org/data/concept/f_number> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/0afd3c4c-9f56-359c-ae1a-fbcfb9c2ae28> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900001956"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/0afec102-a5a7-31aa-8f0c-da05380a5174> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "2018-010" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/6e5da07f-8f5e-40b0-83b9-15c6523edc11> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/0bf39d41-ae51-4016-9d20-18c898ade5a4> a crm:E52_Time-Span ;
crm:P82a_begin_of_the_begin "2002"^^XSD:gYear ;
crm:P82b_end_of_the_end "2002"^^XSD:gYear .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/0c3920eb-f073-38bb-8559-0d73a701fb7b> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "D2004-086" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/70003ebd-15ba-4f93-9c0c-baac09ccff44> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/0c70f0ab-ec62-31c3-b079-bf7bac39fc94> a crm:E33_E41_Linguistic_Appellation,
crm:E42_Identifier ;
crm:P190_has_symbolic_content "VincentvanGogh,'Gipsenvrouwentorso'['TorsoofVenus'],Paris,June1886,VanGoghMuseum,inv.nr.F216J"@nl .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/0c89c345-a0a1-3d7d-abf9-69ffdf23c565> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "D2014-061" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/70003ebd-15ba-4f93-9c0c-baac09ccff44> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/0ca8c4b3-cf1b-3c6f-a8d6-c71f8504ac90> crm:P190_has_symbolic_content "F289" ;
crm:P2_has_type <https://vangoghworldwide.org/data/concept/f_number> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/0caf1461-fc1d-32a0-869d-cdfc63c3babf> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "D2003-045" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/70003ebd-15ba-4f93-9c0c-baac09ccff44> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/0d0d984d-8af7-31ec-9e76-9e75f3055069> a crm:E33_E41_Linguistic_Appellation,
crm:E42_Identifier ;
crm:P190_has_symbolic_content "VincentvanGogh,'ExteriorofaRestaurantinAsnières',Paris,May-June1887,VanGoghMuseum,inv.nr.F321"@nl .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/0d407f6d-a92b-3428-841d-1679d7510662> crm:P190_has_symbolic_content "F493" ;
crm:P2_has_type <https://vangoghworldwide.org/data/concept/f_number> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/0d69a773-e285-305d-a722-d2eaf96a8ebc> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "D2002-060" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/70003ebd-15ba-4f93-9c0c-baac09ccff44> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/0d8d5753-86cd-3cb2-b2c5-1e9b3b9ebcff> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900002015"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/0db14466-f212-3d3a-9136-a4cf3d5acdf4> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "D2009-059" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/70003ebd-15ba-4f93-9c0c-baac09ccff44> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/0deee808-c2e7-3638-bbd5-74ace82ef203> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900002047"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/0df87736-be1d-3063-b53e-82c5d5990419> a crm:E33_E41_Linguistic_Appellation,
crm:E42_Identifier ;
crm:P190_has_symbolic_content "VincentvanGogh,'TheRaisingofLazarus(afterRembrandt)',Saint-Rémy,May1890,VanGoghMuseum,inv.nr.F677"@nl .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/0e5d9a7d-1b35-3dba-896f-87323271209e> a crm:E33_E41_Linguistic_Appellation,
crm:E42_Identifier ;
crm:P190_has_symbolic_content "VincentvanGogh,'Musselsandshrimps'['PrawnsandMussels'],Paris,September-November1886,VanGoghMuseum,inv.nr.F256"@nl .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/0ec61793-2ce8-4856-9f87-d6f02c3c2a5d> a crm:E52_Time-Span ;
crm:P82a_begin_of_the_begin "2000"^^XSD:gYear ;
crm:P82b_end_of_the_end "2000"^^XSD:gYear .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/0f2a243d-263f-3715-aa4a-4c5187d0f7f6> a crm:E33_E41_Linguistic_Appellation,
crm:E42_Identifier ;
crm:P190_has_symbolic_content "VincentvanGogh,'Self-Portrait',Paris,July-August1887,VanGoghMuseum,inv.nr.F269V[F61v,F77v,F109v,F179vandF269v;Self-PortraitsonreverseofNuenenpaintings]"@nl .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/109437d5-032a-3aac-bf50-d5c359f427f3> a crm:E33_E41_Linguistic_Appellation,
crm:E42_Identifier ;
crm:P190_has_symbolic_content "VincentvanGogh,'DeheuvelvanMontmartremetsteengroeve';'TheHillofMontmartrewithStoneQuarry',Paris,June-July1886,VanGoghMuseum,inv.nr.F229"@nl .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/10bbff43-2e74-3497-8dd9-423325a90593> a crm:E33_E41_Linguistic_Appellation,
crm:E42_Identifier ;
crm:P190_has_symbolic_content "VincentvanGogh,'VasewithMyosotisandPeonies'['SmallBottlewithPeoniesandBlueDelphiniums'],Paris,June-July1886,VanGoghMuseum,inv.nr.F243A"@nl .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/10d0ea5c-aa89-312d-b36a-cb9cf8fe277b> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "2014-061" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/6e5da07f-8f5e-40b0-83b9-15c6523edc11> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/10ea67aa-b13e-39b5-a7f6-c12be5623481> crm:P190_has_symbolic_content "F603" ;
crm:P2_has_type <https://vangoghworldwide.org/data/concept/f_number> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/11665147-74c6-4cc1-b713-36978c1dc38c> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "2814" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/be568e9e-9cab-48ef-b226-fd9d37b971b1> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/1179836a-6b72-3bcb-91b5-a6f033b78c8a> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "D2004-014" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/70003ebd-15ba-4f93-9c0c-baac09ccff44> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/11877eed-39e0-34e1-bf9f-22edb604fa13> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "D2004-077" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/70003ebd-15ba-4f93-9c0c-baac09ccff44> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/12334045-337c-3fa5-b620-a1f274c01a5d> crm:P190_has_symbolic_content "F192" ;
crm:P2_has_type <https://vangoghworldwide.org/data/concept/f_number> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/126e4c9b-7268-357a-a3b9-deba02651dda> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900002050"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/12b36e7d-dbab-3ecc-b3e6-86fa46f8e9e5> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900002011"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/131d6147-f0e1-4956-abc2-5ff57f338959> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "2783" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/be568e9e-9cab-48ef-b226-fd9d37b971b1> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/13c77b64-5728-3db7-9f1a-8df62458dbb1> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "D2001-086" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/70003ebd-15ba-4f93-9c0c-baac09ccff44> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/14952335-8b6e-40de-9d16-fa7fcbe0ae98> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "2019-022_F64" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/be568e9e-9cab-48ef-b226-fd9d37b971b1> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/14dd26a4-7d4b-3318-bd50-7acec2f162e9> crm:P190_has_symbolic_content "F334" ;
crm:P2_has_type <https://vangoghworldwide.org/data/concept/f_number> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/1500a33a-bb26-3629-92e7-2c92b322218b> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "D2001-020" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/70003ebd-15ba-4f93-9c0c-baac09ccff44> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/151fbbcb-4b1a-36be-83cf-da4307bbf58f> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "D2001-048" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/70003ebd-15ba-4f93-9c0c-baac09ccff44> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/154ecf47-28a5-4614-b599-512d25d84c15> a crm:E52_Time-Span ;
crm:P82a_begin_of_the_begin "2003"^^XSD:gYear ;
crm:P82b_end_of_the_end "2003"^^XSD:gYear .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/1596b4bd-7803-31ca-9cd3-d66682abd438> a crm:E33_E41_Linguistic_Appellation,
crm:E42_Identifier ;
crm:P190_has_symbolic_content "VincentvanGogh,'Vasewithcarnations',Paris,1886,DetroitInstituteofArts,inv.nr.F243"@nl .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/15f69529-1fbd-3f45-87a3-0c3962d304db> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "D2001-084" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/70003ebd-15ba-4f93-9c0c-baac09ccff44> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/167b1c8b-d2c5-43bd-ada7-3d9fda957deb> a crm:E52_Time-Span ;
crm:P82a_begin_of_the_begin "2019"^^XSD:gYear ;
crm:P82b_end_of_the_end "2019"^^XSD:gYear .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/16a5c046-42f6-3bb2-82bd-93a5e52ecedc> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "D1989-035" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/70003ebd-15ba-4f93-9c0c-baac09ccff44> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/17649ee1-d524-404b-93d4-31ec735743f0> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "3051" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/be568e9e-9cab-48ef-b226-fd9d37b971b1> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/17f99fb6-6cc3-3c9b-b615-bdd77b78578d> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900001986"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/18083c62-b8d8-339f-be04-07ff4b06ec98> crm:P190_has_symbolic_content "F677" ;
crm:P2_has_type <https://vangoghworldwide.org/data/concept/f_number> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/1824f1ee-da92-4b38-b46e-b6c3a69f3548> a crm:E52_Time-Span ;
crm:P82a_begin_of_the_begin "2003"^^XSD:gYear ;
crm:P82b_end_of_the_end "2003"^^XSD:gYear .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/182aaf4d-15c3-3d83-b992-831329b3c68f> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900002027"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/183a458a-7b31-4c8b-ad6e-34efe6f8db39> a crm:E52_Time-Span ;
crm:P82a_begin_of_the_begin "2002"^^XSD:gYear ;
crm:P82b_end_of_the_end "2002"^^XSD:gYear .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/18990cd2-b153-4a4d-8961-10f852224765> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "2633" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/be568e9e-9cab-48ef-b226-fd9d37b971b1> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/18a1af61-475a-32cb-9175-9d181c8e6227> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "2018-100" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/6e5da07f-8f5e-40b0-83b9-15c6523edc11> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/1936246f-93fe-4655-9d95-3e97685f522c> a crm:E52_Time-Span ;
crm:P82a_begin_of_the_begin "2003"^^XSD:gYear ;
crm:P82b_end_of_the_end "2003"^^XSD:gYear .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/1940eb98-4fb5-3c67-9d60-b91cd6fde9dc> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "D2002-031" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/70003ebd-15ba-4f93-9c0c-baac09ccff44> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/195538f1-6454-3728-8d89-ab2044e70522> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "D2001-051" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/70003ebd-15ba-4f93-9c0c-baac09ccff44> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/19719ec4-c016-385e-bb6a-e6184bb670f7> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900001671"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/19a0f07e-e43c-49ac-b386-e333864d4923> a crm:E52_Time-Span ;
crm:P82a_begin_of_the_begin "2000"^^XSD:gYear ;
crm:P82b_end_of_the_end "2000"^^XSD:gYear .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/19b5e910-b3b7-3c3f-a2d4-733a4124758b> a crm:E33_E41_Linguistic_Appellation,
crm:E42_Identifier ;
crm:P190_has_symbolic_content "VincentvanGogh,'Self-Portrait',Paris,March-June1887,F267;'Self-PortraitorPortraitofTheovanGogh',Paris,Summer1887,F294;and'Self-Portrait',Paris,Summer1887,F296,VanGoghMuseum"@nl .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/1a08112d-79f3-3fb5-95c5-e96a0500201b> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900002007"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/1a4c9574-bad3-4a4a-9897-861d2635639c> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "1862" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/be568e9e-9cab-48ef-b226-fd9d37b971b1> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/1a4ccded-0cb4-49fb-8f42-c8f94af36dc8> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "3011" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/be568e9e-9cab-48ef-b226-fd9d37b971b1> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/1af423fa-f133-3731-83c3-ec78b14ae45d> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900003623"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/1af522dd-0315-3373-8333-a4a0bc7d9acf> crm:P190_has_symbolic_content "F260" ;
crm:P2_has_type <https://vangoghworldwide.org/data/concept/f_number> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/1b32cbf7-9ff6-3263-b2e9-71e4d2d1443a> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900001681"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/1b5a3b26-3ee5-3aec-97d9-ada7d7e952c4> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "2019-200" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/6e5da07f-8f5e-40b0-83b9-15c6523edc11> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/1b64295f-6142-3fef-b066-446adc460a1f> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900003512"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/1b7d5147-0fc4-4384-8d9a-d1b75dc84ac0> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "2920" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/be568e9e-9cab-48ef-b226-fd9d37b971b1> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/1b82b9b4-74fa-389e-94fc-1f0b29c25011> a crm:E33_E41_Linguistic_Appellation,
crm:E42_Identifier ;
crm:P190_has_symbolic_content "VincentvanGogh,'Gipsenvrouwentorso'['TorsoofVenus'],Paris,June1886,VanGoghMuseum,inv.nr.F216D"@nl .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/1c4569a8-0bd6-3672-a2e2-2973227b2a18> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900002032"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/1c70be32-31f5-4349-927c-e1b2e067ad36> a crm:E52_Time-Span ;
crm:P82a_begin_of_the_begin "2007"^^XSD:gYear ;
crm:P82b_end_of_the_end "2007"^^XSD:gYear .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/1e3dbdc4-22e6-49fb-bd67-380692e75c7e> a crm:E52_Time-Span ;
crm:P82a_begin_of_the_begin "2004"^^XSD:gYear ;
crm:P82b_end_of_the_end "2004"^^XSD:gYear .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/1e528f69-86be-3d1a-89b2-b946127ea959> crm:P190_has_symbolic_content "F522" ;
crm:P2_has_type <https://vangoghworldwide.org/data/concept/f_number> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/1ebfd489-73f0-3395-8097-1c85cf171ba0> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "D2000-066" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/70003ebd-15ba-4f93-9c0c-baac09ccff44> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/1f4209d1-6260-4da1-8ffb-a518780d56b7> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "3085" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/be568e9e-9cab-48ef-b226-fd9d37b971b1> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/1f45f5bf-095c-30fc-a4af-35f36a4be90c> a crm:E33_E41_Linguistic_Appellation,
crm:E42_Identifier ;
crm:P190_has_symbolic_content "VincentvanGogh,'Ingangvaneensteengroeve','EntrancetoaQuarry',Saint-Rémy,June1889,VanGoghMuseum,inv.nr.F744"@nl .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/1f49ba7d-c96d-3bb2-bd1e-eab6a4781db4> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900003697"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/1f51e223-00b0-3271-b7f5-643ecff28afc> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "D2003-004" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/70003ebd-15ba-4f93-9c0c-baac09ccff44> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/1f9959f5-23fe-30c3-81f6-1b4e366beb37> a crm:E33_E41_Linguistic_Appellation,
crm:E42_Identifier ;
crm:P190_has_symbolic_content "VincentvanGogh,'Plasterfigureofamaletorso',Paris,June1886,VanGoghMuseum,inv.nr.F216E"@nl .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/1ff08f5a-325f-4550-9a1d-91d2a465d6cc> a crm:E52_Time-Span ;
crm:P82a_begin_of_the_begin "2003"^^XSD:gYear ;
crm:P82b_end_of_the_end "2003"^^XSD:gYear .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/207f1aca-9ec7-38a8-b176-754ec10e8e5e> crm:P190_has_symbolic_content "F234" ;
crm:P2_has_type <https://vangoghworldwide.org/data/concept/f_number> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/20960e13-172d-35ef-8b38-de745811ca4c> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900001950"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/20a33126-01f0-47e7-a474-de7ab9653086> a crm:E52_Time-Span ;
crm:P82a_begin_of_the_begin "2000"^^XSD:gYear ;
crm:P82b_end_of_the_end "2000"^^XSD:gYear .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/20d8fa08-b0ca-3bff-a6d2-346a47581cbe> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900001962"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/21475889-e2da-4040-8183-b377fc1e68d7> a crm:E52_Time-Span ;
crm:P82a_begin_of_the_begin "2001"^^XSD:gYear ;
crm:P82b_end_of_the_end "2001"^^XSD:gYear .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/21bc8654-8ab9-4ce6-827a-eb43af6a3e28> a crm:E52_Time-Span ;
crm:P82a_begin_of_the_begin "2019"^^XSD:gYear ;
crm:P82b_end_of_the_end "2019"^^XSD:gYear .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/21dd24d0-ea7d-4de5-904c-211679800bea> a crm:E52_Time-Span ;
crm:P82a_begin_of_the_begin "2018"^^XSD:gYear ;
crm:P82b_end_of_the_end "2018"^^XSD:gYear .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/22287ba0-23b1-3075-bd5c-3a344ea43f55> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "D2001-104" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/70003ebd-15ba-4f93-9c0c-baac09ccff44> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/226ad49f-5090-33c2-baff-21d960d1d1a3> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "D1978-019" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/70003ebd-15ba-4f93-9c0c-baac09ccff44> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/2278e315-3f84-3df5-9c5d-7308537884ec> a crm:E33_E41_Linguistic_Appellation,
crm:E42_Identifier ;
crm:P190_has_symbolic_content "VincentvanGogh,'Headofawoman'[HeadofaProstitute'],Antwerp,December1885,VanGoghMuseum,inv.nr.F206"@nl .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/227bf380-db90-3ab0-af4b-f56b3e0170c5> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900003704"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/234b72d8-bf83-3cf2-a7cd-6519756d6f4e> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "D2003-044" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/70003ebd-15ba-4f93-9c0c-baac09ccff44> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/23a3a6cf-7cd1-3dd7-bf54-3c1eed1bdf8f> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "D2001-063" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/70003ebd-15ba-4f93-9c0c-baac09ccff44> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/23a3c3d5-0f5f-48ac-b69c-2a5f0b82cbe0> a crm:E52_Time-Span ;
crm:P82a_begin_of_the_begin "2003"^^XSD:gYear ;
crm:P82b_end_of_the_end "2003"^^XSD:gYear .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/23e5c91f-b7d5-4fc5-8f49-f603cf0d3dae> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "1049" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/be568e9e-9cab-48ef-b226-fd9d37b971b1> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/24113e4a-6023-3422-a412-d0f4cdba90b2> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "2018-104" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/6e5da07f-8f5e-40b0-83b9-15c6523edc11> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/245a8325-06f0-46be-884d-bb6285054062> a crm:E52_Time-Span ;
crm:P82a_begin_of_the_begin "2000"^^XSD:gYear ;
crm:P82b_end_of_the_end "2000"^^XSD:gYear .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/24dff248-dee4-3436-9110-1992c1ad7f03> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "D2002-044" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/70003ebd-15ba-4f93-9c0c-baac09ccff44> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/251ed31f-5f32-4a7f-a2b9-8fc599d1fcee> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "2816" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/be568e9e-9cab-48ef-b226-fd9d37b971b1> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/254181df-ed90-4f23-8573-d2990143f048> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "2922" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/be568e9e-9cab-48ef-b226-fd9d37b971b1> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/254ed425-14d5-39e1-85d6-abd5c096ffbc> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "D2001-057" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/70003ebd-15ba-4f93-9c0c-baac09ccff44> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/25bc7334-b2d7-380a-b172-aeb452d28476> crm:P190_has_symbolic_content "F339" ;
crm:P2_has_type <https://vangoghworldwide.org/data/concept/f_number> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/25dd0daf-7660-367f-a906-b992a44a68c1> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900001766"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/25f35d79-7169-44e2-bccb-f332c029525e> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "2693" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/be568e9e-9cab-48ef-b226-fd9d37b971b1> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/26096ec3-4144-4c87-8c00-c3206c101486> a crm:E52_Time-Span ;
crm:P82a_begin_of_the_begin "2009"^^XSD:gYear ;
crm:P82b_end_of_the_end "2009"^^XSD:gYear .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/26abbea3-51d1-3151-994e-c02744e8fa3c> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900001726"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/26b14d3c-7f86-37f4-867c-0246bfda736e> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900001930"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/26eae159-7fbc-3d2a-9dad-6f854bf3d11b> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900002051"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/2700e140-896b-47b8-8e27-765324c8ba56> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "2918" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/be568e9e-9cab-48ef-b226-fd9d37b971b1> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/2736263c-11ed-4b91-9e92-94774aab8df2> a crm:E52_Time-Span ;
crm:P82a_begin_of_the_begin "2002"^^XSD:gYear ;
crm:P82b_end_of_the_end "2002"^^XSD:gYear .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/27a8d940-b7d1-3e6d-a86b-736bce36b2d9> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "2019-037" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/6e5da07f-8f5e-40b0-83b9-15c6523edc11> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/28726805-f683-305f-85d2-b45514b0d015> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "D2003-069" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/70003ebd-15ba-4f93-9c0c-baac09ccff44> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/287db5f3-9ecf-3c08-9e35-a11797a45d84> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900001989"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/289e41d7-63a3-384d-b6db-da83f872b053> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "D2000-094" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/70003ebd-15ba-4f93-9c0c-baac09ccff44> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/28c7d0c2-93ba-3e41-885a-3d99a3bb8faf> crm:P190_has_symbolic_content "F587" ;
crm:P2_has_type <https://vangoghworldwide.org/data/concept/f_number> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/296a8880-30b9-4a8b-a74a-86dd7cc276e5> a crm:E52_Time-Span ;
crm:P82a_begin_of_the_begin "2004"^^XSD:gYear ;
crm:P82b_end_of_the_end "2004"^^XSD:gYear .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/29aa4157-d20a-3ba9-afea-932fc89b6b28> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900001975"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/29bcc58f-e908-357b-85b6-6d0cc9c281c4> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900001664"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/29be3ca9-66ce-3279-a5fd-e643e33723cf> a crm:E33_E41_Linguistic_Appellation,
crm:E42_Identifier ;
crm:P190_has_symbolic_content "VincentvanGogh,'BridgeintheRain'(afterHiroshige),Paris,October-November1887,VanGoghMuseum,inv.nr.F372"@nl .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/2aacee0b-157d-39ca-b81d-750ffa3fea4e> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "D2000-085" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/70003ebd-15ba-4f93-9c0c-baac09ccff44> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/2aaf7f8e-c5e0-3235-a2c4-aa249587874b> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900001706"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/2b1b8e03-3146-49b0-a8ca-8351f06ffe31> a crm:E52_Time-Span ;
crm:P82a_begin_of_the_begin "2002"^^XSD:gYear ;
crm:P82b_end_of_the_end "2002"^^XSD:gYear .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/2b3e7ce4-5d54-49b7-a038-d7576c51bc42> a crm:E52_Time-Span ;
crm:P82a_begin_of_the_begin "2000"^^XSD:gYear ;
crm:P82b_end_of_the_end "2000"^^XSD:gYear .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/2b59cb5a-b791-39b7-9853-90c52620ceac> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "D2000-093" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/70003ebd-15ba-4f93-9c0c-baac09ccff44> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/2b925a78-3a72-3194-87b5-4caa5a51d88f> a crm:E33_E41_Linguistic_Appellation,
crm:E42_Identifier ;
crm:P190_has_symbolic_content "VincentvanGogh,'Kingfisher'['KingfisherbytheWaterside'],Paris,July-August1887,VanGoghMuseum,inv.nr.F28"@nl .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/2b9354a9-4a19-38f9-b31f-67ac46340560> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "2017-089" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/6e5da07f-8f5e-40b0-83b9-15c6523edc11> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/2ba34767-1abd-4150-985d-ab2e1985bd5d> a crm:E52_Time-Span ;
crm:P82a_begin_of_the_begin "2000"^^XSD:gYear ;
crm:P82b_end_of_the_end "2000"^^XSD:gYear .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/2bdd0240-b5ba-48df-9f0a-22d50b2c6cc6> a crm:E52_Time-Span ;
crm:P82a_begin_of_the_begin "1978"^^XSD:gYear ;
crm:P82b_end_of_the_end "1978"^^XSD:gYear .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/2c70fb6f-250f-3d10-b5d2-182e8905c7bb> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900001973"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/2c8827fe-e113-3128-94b7-a3a0e841a63a> crm:P190_has_symbolic_content "F346" ;
crm:P2_has_type <https://vangoghworldwide.org/data/concept/f_number> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/2e2f03ac-610a-3104-9f5b-83cf10c9e7e1> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "1999-121" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/6e5da07f-8f5e-40b0-83b9-15c6523edc11> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/2ec4eade-d7c3-3924-a089-f7db9d1e383b> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900001984"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/2ef1f2c6-a8bf-397c-8205-529a10d0bbd3> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900001988"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/2f542528-b818-373a-80a5-dd8d2ccb4c63> crm:P190_has_symbolic_content "F216a" ;
crm:P2_has_type <https://vangoghworldwide.org/data/concept/f_number> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/3002d143-7983-387e-b799-8ea7ef7681a8> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "2019-139" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/6e5da07f-8f5e-40b0-83b9-15c6523edc11> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/30113ae4-c4b1-3a23-9974-0c04ba67c71c> crm:P190_has_symbolic_content "F109v" ;
crm:P2_has_type <https://vangoghworldwide.org/data/concept/f_number> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/30f022b8-648a-32f8-bfb0-d086c4f6672a> a crm:E33_E41_Linguistic_Appellation,
crm:E42_Identifier ;
crm:P190_has_symbolic_content "VincentvanGogh,'PlasterCastofaWoman'sTorso',Paris,February-March1887,VanGoghMuseum,inv.nr.F216G"@nl .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/31ba82d3-186b-329c-ac55-796e02c4f860> crm:P190_has_symbolic_content "F374" ;
crm:P2_has_type <https://vangoghworldwide.org/data/concept/f_number> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/31f264cd-1c62-4f03-81cf-0fee91563aec> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "2327" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/be568e9e-9cab-48ef-b226-fd9d37b971b1> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/3204369a-dfbf-4a33-bd23-623fe84b2162> a crm:E52_Time-Span ;
crm:P82a_begin_of_the_begin "2002"^^XSD:gYear ;
crm:P82b_end_of_the_end "2002"^^XSD:gYear .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/323fd7cb-9410-3581-b0c8-7966c3d99f57> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "D2001-026" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/70003ebd-15ba-4f93-9c0c-baac09ccff44> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/32b87b15-c04f-364a-9898-e8eb842893e9> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900001677"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/337fa854-1011-40c6-b207-047c332dc4e8> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "2795" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/be568e9e-9cab-48ef-b226-fd9d37b971b1> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/346cda49-1b06-3759-9a4b-41c326329b4b> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "D2000-065" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/70003ebd-15ba-4f93-9c0c-baac09ccff44> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/350f5f9f-e7b4-34b7-8c1a-ba00c29d192b> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900001960"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/367c5902-1896-37f9-8402-4292f808e38c> crm:P190_has_symbolic_content "F767" ;
crm:P2_has_type <https://vangoghworldwide.org/data/concept/f_number> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/368b97c1-8b8d-3e96-8bbc-fae27147ede6> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900001675"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/36923002-cbfb-3e6f-8f9e-209cab3e600b> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "2021-059" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/6e5da07f-8f5e-40b0-83b9-15c6523edc11> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/3707deee-f818-3ddb-b60d-8b4df8c7fe8c> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900001659"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/372e0fde-8c5e-3414-aed9-2bdc71b29c52> crm:P190_has_symbolic_content "F253a" ;
crm:P2_has_type <https://vangoghworldwide.org/data/concept/f_number> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/37bce54c-5b34-4096-a360-19069e4b31d4> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "2977" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/be568e9e-9cab-48ef-b226-fd9d37b971b1> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/37e92cdb-d603-45ee-a0e0-b0415f55e4bf> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "2892" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/be568e9e-9cab-48ef-b226-fd9d37b971b1> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/37ea37a0-9561-498f-b834-3b3658e07fd1> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "2791" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/be568e9e-9cab-48ef-b226-fd9d37b971b1> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/37f2f43a-6f6b-325b-9736-6e7ecaaa1bdc> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900003751"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/3807deee-f818-3ddb-b60d-8b4df8c7fe8c> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900003839"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/38203e61-aae1-4ef6-a0f3-fbf2bc9b6343> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "2781" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/be568e9e-9cab-48ef-b226-fd9d37b971b1> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/38869a2a-2892-3c06-92aa-95e8530b5dac> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "D2001-036" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/70003ebd-15ba-4f93-9c0c-baac09ccff44> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/389788a2-0715-37dc-8408-bee3a2ebb9be> crm:P190_has_symbolic_content "F216d" ;
crm:P2_has_type <https://vangoghworldwide.org/data/concept/f_number> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/38f70fa2-080b-3295-98bf-4b080816348d> a crm:E33_E41_Linguistic_Appellation,
crm:E42_Identifier ;
crm:P190_has_symbolic_content "VincentvanGogh,'Floweringchestnuttree'['HorseChestnutTreeinBlossom'],Paris,May1887,VanGoghMuseum,inv.nr.F270A"@nl .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/3907deee-f818-3ddb-b60d-8b4df8c7fe8c> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900003840"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/39e9ddf6-1f23-32a3-abfd-a725d2f7956d> a crm:E33_E41_Linguistic_Appellation,
crm:E42_Identifier ;
crm:P190_has_symbolic_content "VincentvanGogh,'Bosrand',augustus-september1883,Kröller-MüllerMuseum,inv.nr.F192"@nl .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/3a03bdbd-f367-3f81-9a4d-79ad9365c601> crm:P190_has_symbolic_content "F321" ;
crm:P2_has_type <https://vangoghworldwide.org/data/concept/f_number> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/3a2ec921-fc35-3645-a56a-95373d584fab> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "D2001-045" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/70003ebd-15ba-4f93-9c0c-baac09ccff44> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/3a8be561-823f-35f8-ac05-9a2af41ce6b8> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "D2001-065" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/70003ebd-15ba-4f93-9c0c-baac09ccff44> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/3b004e6c-1adc-3783-89d6-875525fa71ff> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "D2003-020" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/70003ebd-15ba-4f93-9c0c-baac09ccff44> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/3b0d3e4d-0c1a-4ad0-9aaf-a5796c773027> a crm:E52_Time-Span ;
crm:P82a_begin_of_the_begin "2002"^^XSD:gYear ;
crm:P82b_end_of_the_end "2002"^^XSD:gYear .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/3b214e02-fcaf-34e8-8d49-7da479046316> crm:P190_has_symbolic_content "F216h" ;
crm:P2_has_type <https://vangoghworldwide.org/data/concept/f_number> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/3b475350-aea5-390c-9377-6d384a28a510> a crm:E33_E41_Linguistic_Appellation,
crm:E42_Identifier ;
crm:P190_has_symbolic_content "VincentvanGogh,'Schemering(OudeboerderijenteLoosduinen)',DenHaag,August1883,CentraalMuseumUtrecht,inv.nr.21782;F16"@nl .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/3b6a838e-5863-4f14-9caa-96d096ea94c5> a crm:E52_Time-Span ;
crm:P82a_begin_of_the_begin "2018"^^XSD:gYear ;
crm:P82b_end_of_the_end "2018"^^XSD:gYear .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/3ba24207-80c1-34d6-a7c9-c4bbcf50cf07> a crm:E33_E41_Linguistic_Appellation,
crm:E42_Identifier ;
crm:P190_has_symbolic_content "VincentvanGogh,'Still-lifewithlemons'['DishwithCitrusFruit'],Paris,February-March1887,VanGoghMuseum,inv.nr.F338"@nl .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/3d11736d-0d4a-3ca2-adc5-8fb1f8f5e086> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900001949"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/3da5a975-ea87-3c03-9467-ebe0f2fd14b7> crm:P190_has_symbolic_content "F54" ;
crm:P2_has_type <https://vangoghworldwide.org/data/concept/f_number> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/3de957ae-1cae-3d18-88e3-ecb20bb3cdae> a crm:E33_E41_Linguistic_Appellation,
crm:E42_Identifier ;
crm:P190_has_symbolic_content "VincentvanGogh,'TheWhiteOrchard',Arles,April1888,F403;'ThePinkOrchard',Arles,April1888,F555;'ThePinkPeachTree',Arles,April-May1888,F404,VanGoghMuseum"@nl .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/3e134690-17d1-48e8-9a26-de1124fda9c1> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "2836" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/be568e9e-9cab-48ef-b226-fd9d37b971b1> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/3e3edc8b-102c-460b-b376-ff0e9ef4159f> a crm:E52_Time-Span ;
crm:P82a_begin_of_the_begin "2000"^^XSD:gYear ;
crm:P82b_end_of_the_end "2000"^^XSD:gYear .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/3f6c7c6e-3ad2-484b-a251-aedee887d8c5> a crm:E52_Time-Span ;
crm:P82a_begin_of_the_begin "2020"^^XSD:gYear ;
crm:P82b_end_of_the_end "2020"^^XSD:gYear .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/3f6f00f0-f6f7-35ad-af01-c4d6f6d04959> crm:P190_has_symbolic_content "F778" ;
crm:P2_has_type <https://vangoghworldwide.org/data/concept/f_number> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/3f96bdf8-a737-3c48-b511-b45d624d3113> a crm:E33_E41_Linguistic_Appellation,
crm:E42_Identifier ;
crm:P190_has_symbolic_content "VincentvanGogh,'Kopvaneenvrouw',Nuenen,november1884-mei1885,Kröller-MüllerMuseum,cat.nr.KM111.262,F74"@nl .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/3f9e618a-53b3-4d30-b60b-d25eb36b661d> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "3010" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/be568e9e-9cab-48ef-b226-fd9d37b971b1> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/3fa3740b-0e1c-4411-90b8-e42766776312> a crm:E52_Time-Span ;
crm:P82a_begin_of_the_begin "2001"^^XSD:gYear ;
crm:P82b_end_of_the_end "2001"^^XSD:gYear .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/3fbeb962-bb85-3a1b-93c6-eaf9ed66094c> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900003811"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/3fc56445-0fc4-3c6b-b7d8-7a94f1f51dd2> crm:P190_has_symbolic_content "F340" ;
crm:P2_has_type <https://vangoghworldwide.org/data/concept/f_number> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/3fe791f6-e1a2-3dea-b7ab-2de9c552b582> a crm:E33_E41_Linguistic_Appellation,
crm:E42_Identifier ;
crm:P190_has_symbolic_content "VincentvanGogh,'Self-Portrait',Paris,March-June1887,VanGoghMuseum,inv.nr.F356"@nl .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/4007deee-f818-3ddb-b60d-8b4df8c7fe8c> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900003841"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/402e9d70-31ed-36da-a7d8-254e6d84b452> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900001683"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/404e4c4f-af99-3e52-9a2b-eba81f5dee2b> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "2002-146" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/6e5da07f-8f5e-40b0-83b9-15c6523edc11> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/4099a2ae-dcc5-31ab-a64a-c6af6861f76b> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900001961"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/40df1e4d-d52b-3d3c-bebd-802930eaa5bd> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "D2004-021" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/70003ebd-15ba-4f93-9c0c-baac09ccff44> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/40ead154-e040-382b-b0ba-37436179d277> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "D2001-022" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/70003ebd-15ba-4f93-9c0c-baac09ccff44> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/40fd2558-15b7-3f01-b000-c402b30148ac> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "D2000-083" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/70003ebd-15ba-4f93-9c0c-baac09ccff44> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/4101dd7e-242e-3be2-99b3-f4b1a913cd06> crm:P190_has_symbolic_content "F659" ;
crm:P2_has_type <https://vangoghworldwide.org/data/concept/f_number> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/4107deee-f818-3ddb-b60d-8b4df8c7fe8c> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900003880"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/4183d2e0-a520-362d-9f28-b6d82613fe0d> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "D1993-003" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/70003ebd-15ba-4f93-9c0c-baac09ccff44> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/41c6be68-66f6-4edf-8ca3-d9f0949ef45f> a crm:E52_Time-Span ;
crm:P82a_begin_of_the_begin "2001"^^XSD:gYear ;
crm:P82b_end_of_the_end "2001"^^XSD:gYear .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/41c88a51-114e-3d44-b6fe-ed4526e64b2a> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900002350"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/41e9d38e-118b-4824-a426-ed85d7db3bb9> a crm:E52_Time-Span ;
crm:P82a_begin_of_the_begin "2001"^^XSD:gYear ;
crm:P82b_end_of_the_end "2001"^^XSD:gYear .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/4207deee-f818-3ddb-b60d-8b4df8c7fe8c> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900003915"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/4263a9e7-7c5a-39be-aae5-684aa9e49718> a crm:E33_E41_Linguistic_Appellation,
crm:E42_Identifier ;
crm:P190_has_symbolic_content "VincentvanGogh,'DeoudetorenvanNuenen',Nuenen,februari-maart1884,Kröller-MüllerMuseum,cat.nr.192,F34"@nl .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/426a10ca-fe14-33ed-b701-6b6b1a30cb2b> crm:P190_has_symbolic_content "F216b" ;
crm:P2_has_type <https://vangoghworldwide.org/data/concept/f_number> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/42c36457-7750-49e4-a954-d590fe01b1f2> a crm:E52_Time-Span ;
crm:P82a_begin_of_the_begin "2003"^^XSD:gYear ;
crm:P82b_end_of_the_end "2003"^^XSD:gYear .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/4307deee-f818-3ddb-b60d-8b4df8c7fe8c> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900003972"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/43125f19-7e9b-39c9-81e5-0f5b90935544> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900002033"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/43300a54-f9cf-3b9c-832b-4370525ddf48> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "D2001-067" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/70003ebd-15ba-4f93-9c0c-baac09ccff44> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/43652487-a529-3c2b-b1a1-a359d41be10a> crm:P190_has_symbolic_content "F25" ;
crm:P2_has_type <https://vangoghworldwide.org/data/concept/f_number> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/4371eee5-d566-3a88-bdac-35ad661d99e7> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "D2018-010" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/70003ebd-15ba-4f93-9c0c-baac09ccff44> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/4388ba7b-1781-3c24-a385-814182e64ff6> crm:P190_has_symbolic_content "F307" ;
crm:P2_has_type <https://vangoghworldwide.org/data/concept/f_number> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/43b94bfc-abbc-4beb-b3fd-571d8add1929> a crm:E52_Time-Span ;
crm:P82a_begin_of_the_begin "2001"^^XSD:gYear ;
crm:P82b_end_of_the_end "2001"^^XSD:gYear .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/4407deee-f818-3ddb-b60d-8b4df8c7fe8c> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900004050"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/4451bcf0-dfea-3ed4-be45-72d8a41044ec> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "D2002-059" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/70003ebd-15ba-4f93-9c0c-baac09ccff44> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/449584e2-763f-373a-95ca-0c8efe2c363c> crm:P190_has_symbolic_content "F38" ;
crm:P2_has_type <https://vangoghworldwide.org/data/concept/f_number> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/44a1bb49-8bdb-316d-9293-9789b6fc9c2f> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "D2007-035" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/70003ebd-15ba-4f93-9c0c-baac09ccff44> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/44ceda00-d8a1-3922-be3f-247bd12f59af> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "D2001-043" ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/70003ebd-15ba-4f93-9c0c-baac09ccff44> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/453337df-dfc7-31f0-9a31-acff508e61b1> a crm:E33_E41_Linguistic_Appellation,
crm:E42_Identifier ;
crm:P190_has_symbolic_content "VincentvanGogh,ArmandRoulin(schilderij,1888):samenstellingvandevernislaagendeopbouwvanhetschilderij,inv.nr.F493"@nl .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/45582526-056a-3977-b289-6d2c4ac8e107> a crm:E42_Identifier ;
crm:P190_has_symbolic_content "900002083"^^XSD:string ;
crm:P2_has_type <https://data.cultureelerfgoed.nl/term/id/rn/240c0699-1dbe-4476-9a1e-3aa4e8387352> .
<https://linkeddata.cultureelerfgoed.nl/id/vgww/4560ec3e-e2bb-4029-9be0-44e57a83369d> a crm:E52_Time-Span ;
crm:P82a_begin_of_the_begin "2001"^^XSD:gYear ;