-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmini.nt
2000 lines (2000 loc) · 425 KB
/
mini.nt
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
<http://publications.europa.eu/resource/oj/JOL_2002_266_R_0007_01.DAN.print> <http://publications.europa.eu/ontology/cdm#manifestation_type> "print"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_266_R_0007_01.DAN.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_is_corrigendum_printer> "O"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_266_R_0007_01.DAN.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_information_number> "72/2002"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_266_R_0007_01.DAN> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/oj/JOL_2002_266_R_0007_01.DAN.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_page_last> "0008"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_266_R_0007_01.DAN.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_page_first> "0007"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_266_R_0007_01.DAN.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_author_printer> "CMEEE"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/035b70e9-a853-4673-9afd-17d1278e961a.0001.03> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.L_.2002.266.01.0007.01.DAN.print> .
<http://publications.europa.eu/resource/oj/JOL_2002_266_R_0007_01.DAN.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_typedoc_printer> "DEC.EEA"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_266_R_0007_01.DAN.print> <http://publications.europa.eu/ontology/cdm#manifestation_manifests_expression> <http://publications.europa.eu/resource/oj/JOL_2002_266_R_0007_01.DAN> .
<http://publications.europa.eu/resource/oj/JOL_2002_266_R_0007_01.DAN.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_pages_total> "2"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/035b70e9-a853-4673-9afd-17d1278e961a.0001.03> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_266_R_0007_01.DAN.print> .
<http://publications.europa.eu/resource/oj/JOL_2002_266_R_0007_01.DAN.print> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part> .
<http://publications.europa.eu/resource/oj/JOL_2002_266_R_0007_01.DAN.print> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:28/03/2014 20:45:04" .
<http://publications.europa.eu/resource/oj/JOL_2002_266_R_0007_01.DAN.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_section_oj> "L2"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_266_R_0007_01.DAN.print> <http://publications.europa.eu/ontology/cdm#manifestation_part_of_manifestation> <http://publications.europa.eu/resource/oj/JOL_2002_266_R.DAN.print> .
<http://publications.europa.eu/resource/cellar/035b70e9-a853-4673-9afd-17d1278e961a.0001.03> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/22002D0072.DAN.print> .
<http://publications.europa.eu/resource/cellar/035b70e9-a853-4673-9afd-17d1278e961a.0001> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_266_R_0007_01.DAN> .
<http://publications.europa.eu/resource/oj/JOL_2002_266_R_0007_01.DAN.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_durability> "DUR"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/035b70e9-a853-4673-9afd-17d1278e961a.0001.03> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-29T08:29:11+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/cellar/035b70e9-a853-4673-9afd-17d1278e961a.0008.01/DOC_1> <http://publications.europa.eu/ontology/cdm#item_identifier> "DOC_1" .
<http://publications.europa.eu/resource/cellar/035b70e9-a853-4673-9afd-17d1278e961a.0008.01/DOC_1> <http://publications.europa.eu/ontology/cdm#item_belongs_to_manifestation> <http://publications.europa.eu/resource/cellar/035b70e9-a853-4673-9afd-17d1278e961a.0008.01> .
<http://publications.europa.eu/resource/oj/JOL_2002_266_R_0007_01.ITA.html> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#manifestation> .
<http://publications.europa.eu/resource/oj/JOL_2002_266_R_0007_01.ITA.html> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:28/03/2014 20:45:04" .
<http://publications.europa.eu/resource/oj/JOL_2002_266_R_0007_01.ITA> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/cellar/035b70e9-a853-4673-9afd-17d1278e961a.0008.01> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/22002D0072.ITA.html> .
<http://publications.europa.eu/resource/cellar/035b70e9-a853-4673-9afd-17d1278e961a.0008.01/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.L_.2002.266.01.0007.01.ITA.html.22002D0072it.html> .
<http://publications.europa.eu/resource/cellar/035b70e9-a853-4673-9afd-17d1278e961a.0008.01> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_266_R_0007_01.ITA.html> .
<http://publications.europa.eu/resource/oj/JOL_2002_266_R_0007_01.ITA.html> <http://publications.europa.eu/ontology/cdm#manifestation_type> "html"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_266_R_0007_01.ITA.html> <http://publications.europa.eu/ontology/cdm#manifestation_source-pool> "src/eurlex/content"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/035b70e9-a853-4673-9afd-17d1278e961a.0008.01> <http://publications.europa.eu/ontology/cdm#manifestation_has_item> <http://publications.europa.eu/resource/cellar/035b70e9-a853-4673-9afd-17d1278e961a.0008.01/DOC_1> .
<http://publications.europa.eu/resource/cellar/035b70e9-a853-4673-9afd-17d1278e961a.0008.01/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_266_R_0007_01.ITA.html.22002D0072it.html> .
<http://publications.europa.eu/resource/oj/JOL_2002_266_R_0007_01.ITA.html> <http://publications.europa.eu/ontology/cdm#manifestation_manifests_expression> <http://publications.europa.eu/resource/oj/JOL_2002_266_R_0007_01.ITA> .
<http://publications.europa.eu/resource/cellar/035b70e9-a853-4673-9afd-17d1278e961a.0008.01> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.L_.2002.266.01.0007.01.ITA.html> .
<http://publications.europa.eu/resource/cellar/035b70e9-a853-4673-9afd-17d1278e961a.0008.01/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/22002D0072.ITA.html.22002D0072it.html> .
<http://publications.europa.eu/resource/cellar/035b70e9-a853-4673-9afd-17d1278e961a.0008> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_266_R_0007_01.ITA> .
<http://publications.europa.eu/resource/cellar/035b70e9-a853-4673-9afd-17d1278e961a.0008.01/DOC_1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#item> .
<http://publications.europa.eu/resource/cellar/035b70e9-a853-4673-9afd-17d1278e961a.0008.01> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-29T08:29:11+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/oj/JOL_2002_266_R_0007_01.LAV.html> <http://publications.europa.eu/ontology/cdm#manifestation_source-pool> "src/eurlex/content"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/035b70e9-a853-4673-9afd-17d1278e961a.0016.01/DOC_1> <http://publications.europa.eu/ontology/cdm#item_identifier> "DOC_1" .
<http://publications.europa.eu/resource/cellar/035b70e9-a853-4673-9afd-17d1278e961a.0016.01/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_266_R_0007_01.LAV.html.22002D0072lv.html> .
<http://publications.europa.eu/resource/oj/JOL_2002_266_R_0007_01.LAV.html> <http://publications.europa.eu/ontology/cdm#manifestation_manifests_expression> <http://publications.europa.eu/resource/oj/JOL_2002_266_R_0007_01.LAV> .
<http://publications.europa.eu/resource/oj/JOL_2002_266_R_0007_01.LAV.html> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:28/03/2014 20:45:04" .
<http://publications.europa.eu/resource/cellar/035b70e9-a853-4673-9afd-17d1278e961a.0016.01> <http://publications.europa.eu/ontology/cdm#manifestation_has_item> <http://publications.europa.eu/resource/cellar/035b70e9-a853-4673-9afd-17d1278e961a.0016.01/DOC_1> .
<http://publications.europa.eu/resource/cellar/035b70e9-a853-4673-9afd-17d1278e961a.0016.01/DOC_1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#item> .
<http://publications.europa.eu/resource/cellar/035b70e9-a853-4673-9afd-17d1278e961a.0016.01/DOC_1> <http://publications.europa.eu/ontology/cdm#item_belongs_to_manifestation> <http://publications.europa.eu/resource/cellar/035b70e9-a853-4673-9afd-17d1278e961a.0016.01> .
<http://publications.europa.eu/resource/cellar/035b70e9-a853-4673-9afd-17d1278e961a.0016.01> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/22002D0072.LAV.html> .
<http://publications.europa.eu/resource/cellar/035b70e9-a853-4673-9afd-17d1278e961a.0016.01/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/22002D0072.LAV.html.22002D0072lv.html> .
<http://publications.europa.eu/resource/cellar/035b70e9-a853-4673-9afd-17d1278e961a.0016.01> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_266_R_0007_01.LAV.html> .
<http://publications.europa.eu/resource/oj/JOL_2002_266_R_0007_01.LAV> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/cellar/035b70e9-a853-4673-9afd-17d1278e961a.0016> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_266_R_0007_01.LAV> .
<http://publications.europa.eu/resource/oj/JOL_2002_266_R_0007_01.LAV.html> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#manifestation> .
<http://publications.europa.eu/resource/oj/JOL_2002_266_R_0007_01.LAV.html> <http://publications.europa.eu/ontology/cdm#manifestation_type> "html"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/035b70e9-a853-4673-9afd-17d1278e961a.0016.01> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-29T08:29:11+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#work> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#resolution> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.ITA> <http://publications.europa.eu/ontology/cdm#expression_title> "Risoluzione del Consiglio sul seguito da dare al libro verde sulla responsabilit\u00E0 sociale delle imprese"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.ITA> <http://publications.europa.eu/ontology/cdm#expression_belongs_to_work> <http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01> .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#legislation_secondary> .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0008> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.C_.2002.086.01.0003.01.ITA> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.ITA> <http://publications.europa.eu/ontology/cdm#expression_title_information_additional> "CELEX1"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0008> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002G0410%2802%29.ITA> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#resource_legal> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.ITA> <http://publications.europa.eu/ontology/cdm#expression_uses_language> <http://publications.europa.eu/resource/authority/language/ITA> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.ITA> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.ITA> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 15:00:10" .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0008> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.ITA> .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0008> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-27T22:50:45+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.ELL.print> <http://publications.europa.eu/ontology/cdm#manifestation_part_of_manifestation> <http://publications.europa.eu/resource/oj/JOC_2002_086_R.ELL.print> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.ELL.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_pages_total> "2"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.ELL.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_page_last> "0004"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.ELL.print> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part> .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0003.03> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.C_.2002.086.01.0003.01.ELL.print> .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0003.03> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.ELL.print> .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0003> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.ELL> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.ELL.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_typedoc_printer> "OTHER"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0003.03> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002G0410%2802%29.ELL.print> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.ELL.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_is_corrigendum_printer> "O"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.ELL.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_information_number> "2002/C 86/03"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.ELL.print> <http://publications.europa.eu/ontology/cdm#manifestation_type> "print"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.ELL.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_page_first> "0003"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.ELL.print> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 15:00:10" .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.ELL.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_author_printer> "CS"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.ELL.print> <http://publications.europa.eu/ontology/cdm#manifestation_manifests_expression> <http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.ELL> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.ELL> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.ELL.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_section_oj> "C1"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0003.03> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-27T22:50:45+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0002.01/DOC_1> <http://publications.europa.eu/ontology/cdm#item_belongs_to_manifestation> <http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0002.01> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.DEU.html> <http://publications.europa.eu/ontology/cdm#manifestation_type> "html"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.DEU.html> <http://publications.europa.eu/ontology/cdm#manifestation_manifests_expression> <http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.DEU> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.DEU.html> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#manifestation> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.DEU> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0002.01/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.DEU.html.52002XC0423_04_de.html> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.DEU.html> <http://publications.europa.eu/ontology/cdm#manifestation_source-pool> "src/eurlex/content"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.DEU.html> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 17:30:06" .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0002> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.DEU> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0002.01/DOC_1> <http://publications.europa.eu/ontology/cdm#item_identifier> "DOC_1" .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0002.01/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.C_.2002.098.01.0037.01.DEU.html.52002XC0423_04_de.html> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0002.01> <http://publications.europa.eu/ontology/cdm#manifestation_has_item> <http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0002.01/DOC_1> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0002.01/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/52002XC0423%2804%29.DEU.html.52002XC0423_04_de.html> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0002.01/DOC_1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#item> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0002.01> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.DEU.html> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0002.01> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/52002XC0423%2804%29.DEU.html> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0002.01> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.C_.2002.098.01.0037.01.DEU.html> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0002.01> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-28T21:54:46+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.SWE.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_page_last> "0038"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0011.03> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.SWE.print> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.SWE.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_typedoc_printer> "OTHER"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0011> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.SWE> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.SWE.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_section_oj> "C1"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.SWE.print> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.SWE.print> <http://publications.europa.eu/ontology/cdm#manifestation_type> "print"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0011.03> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/52002XC0423%2804%29.SWE.print> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.SWE.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_pages_total> "2"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.SWE.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_author_printer> "COM"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0011.03> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.C_.2002.098.01.0037.01.SWE.print> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.SWE.print> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 17:30:06" .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.SWE.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_is_corrigendum_printer> "O"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.SWE.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_information_number> "2002/C 98/05"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.SWE.print> <http://publications.europa.eu/ontology/cdm#manifestation_part_of_manifestation> <http://publications.europa.eu/resource/oj/JOC_2002_098_R.SWE.print> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.SWE.print> <http://publications.europa.eu/ontology/cdm#manifestation_manifests_expression> <http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.SWE> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.SWE> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.SWE.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_page_first> "0037"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0011.03> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-28T21:54:46+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.FRA.print> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 17:30:06" .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.FRA.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_information_number> "2002/C 98/05"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.FRA.print> <http://publications.europa.eu/ontology/cdm#manifestation_type> "print"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.FRA.print> <http://publications.europa.eu/ontology/cdm#manifestation_part_of_manifestation> <http://publications.europa.eu/resource/oj/JOC_2002_098_R.FRA.print> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.FRA.print> <http://publications.europa.eu/ontology/cdm#manifestation_manifests_expression> <http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.FRA> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.FRA.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_page_first> "0037"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.FRA.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_section_oj> "C1"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0007.03> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/52002XC0423%2804%29.FRA.print> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.FRA.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_pages_total> "2"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.FRA.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_is_corrigendum_printer> "O"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.FRA> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.FRA.print> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.FRA.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_author_printer> "COM"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.FRA.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_page_last> "0038"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0007.03> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.FRA.print> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0007.03> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.C_.2002.098.01.0037.01.FRA.print> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.FRA.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_typedoc_printer> "OTHER"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0007> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.FRA> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0007.03> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-28T21:54:46+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.NLD.print> <http://publications.europa.eu/ontology/cdm#manifestation_manifests_expression> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.NLD> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.NLD.print> <http://publications.europa.eu/ontology/cdm#manifestation_type> "print"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.NLD> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.NLD.print> <http://publications.europa.eu/ontology/cdm#manifestation_part_of_manifestation> <http://publications.europa.eu/resource/oj/JOL_2002_172_R.NLD.print> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.NLD.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_pages_total> "1"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0009.03> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002R1183.NLD.print> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.NLD.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_durability> "EPH"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.NLD.print> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 22:15:01" .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.NLD.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_legal_basis_printer> "EC"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.NLD.print> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.NLD.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_author_printer> "COM"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.NLD.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_is_corrigendum_printer> "O"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0009.03> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.NLD.print> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.NLD.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_information_number> "1183/2002 (EC)"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0009> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.NLD> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.NLD.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_typedoc_printer> "REG"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0009.03> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.L_.2002.172.01.0023.01.NLD.print> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.NLD.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_section_oj> "L1"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.NLD.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_page_last> "0023"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.NLD.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_page_first> "0023"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0009.03> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-28T06:17:07+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.SWE.html> <http://publications.europa.eu/ontology/cdm#manifestation_type> "html"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0011.01/DOC_1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#item> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0011.01> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.SWE.html> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0011.01/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002R1183.SWE.html.32002R1183sv.html> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.SWE.html> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#manifestation> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.SWE.html> <http://publications.europa.eu/ontology/cdm#manifestation_manifests_expression> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.SWE> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0011.01/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.SWE.html.32002R1183sv.html> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0011.01/DOC_1> <http://publications.europa.eu/ontology/cdm#item_belongs_to_manifestation> <http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0011.01> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0011.01> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.L_.2002.172.01.0023.01.SWE.html> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0011.01/DOC_1> <http://publications.europa.eu/ontology/cdm#item_identifier> "DOC_1" .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0011.01> <http://publications.europa.eu/ontology/cdm#manifestation_has_item> <http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0011.01/DOC_1> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0011> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.SWE> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.SWE.html> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 22:15:01" .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.SWE.html> <http://publications.europa.eu/ontology/cdm#manifestation_source-pool> "src/eurlex/content"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0011.01> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002R1183.SWE.html> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.SWE> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0011.01/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.L_.2002.172.01.0023.01.SWE.html.32002R1183sv.html> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0011.01> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-28T06:17:07+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.FIN.print> <http://publications.europa.eu/ontology/cdm#manifestation_manifests_expression> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.FIN> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0006> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.FIN> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.FIN.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_author_printer> "COM"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.FIN.print> <http://publications.europa.eu/ontology/cdm#manifestation_part_of_manifestation> <http://publications.europa.eu/resource/oj/JOL_2002_172_R.FIN.print> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.FIN.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_page_first> "0023"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.FIN.print> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 22:15:01" .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.FIN.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_is_corrigendum_printer> "O"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.FIN.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_pages_total> "1"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.FIN.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_legal_basis_printer> "EC"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.FIN.print> <http://publications.europa.eu/ontology/cdm#manifestation_type> "print"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0006.03> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002R1183.FIN.print> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.FIN.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_durability> "EPH"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.FIN.print> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0006.03> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.L_.2002.172.01.0023.01.FIN.print> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.FIN.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_section_oj> "L1"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.FIN.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_page_last> "0023"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.FIN> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.FIN.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_typedoc_printer> "REG"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.FIN.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_information_number> "1183/2002 (EC)"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0006.03> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.FIN.print> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0006.03> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-28T06:17:07+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.FRA> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 15:00:10" .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.FRA> <http://publications.europa.eu/ontology/cdm#expression_uses_language> <http://publications.europa.eu/resource/authority/language/FRA> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.FRA> <http://publications.europa.eu/ontology/cdm#expression_title_information_additional> "CELEX1"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.FRA> <http://publications.europa.eu/ontology/cdm#expression_title> "R\u00E9solution du Conseil sur le suivi du livre vert sur la responsabilit\u00E9 sociale des entreprises"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#legislation_secondary> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.FRA> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0007> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.C_.2002.086.01.0003.01.FRA> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#work> .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0007> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.FRA> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#resource_legal> .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0007> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002G0410%2802%29.FRA> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#resolution> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.FRA> <http://publications.europa.eu/ontology/cdm#expression_belongs_to_work> <http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01> .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0007> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-27T22:50:45+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.DAN.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_is_corrigendum_printer> "O"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.DAN.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_information_number> "2002/C 86/03"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.DAN.print> <http://publications.europa.eu/ontology/cdm#manifestation_type> "print"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.DAN.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_typedoc_printer> "OTHER"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.DAN.print> <http://publications.europa.eu/ontology/cdm#manifestation_part_of_manifestation> <http://publications.europa.eu/resource/oj/JOC_2002_086_R.DAN.print> .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0001.03> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.C_.2002.086.01.0003.01.DAN.print> .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0001.03> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.DAN.print> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.DAN.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_page_last> "0004"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.DAN.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_section_oj> "C1"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.DAN.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_page_first> "0003"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.DAN.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_pages_total> "2"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.DAN> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.DAN.print> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.DAN.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_author_printer> "CS"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.DAN.print> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 15:00:10" .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0001> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.DAN> .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0001.03> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002G0410%2802%29.DAN.print> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.DAN.print> <http://publications.europa.eu/ontology/cdm#manifestation_manifests_expression> <http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.DAN> .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0001.03> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-27T22:50:45+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.DEU> <http://publications.europa.eu/ontology/cdm#expression_title> "Mitteilung der Kommission im Rahmen der Durchf\u00FChrung der Richtlinie des Rates 96/48/EG \u2014 April 2002 (Text von Bedeutung f\u00FCr den EWR)"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.DEU> <http://publications.europa.eu/ontology/cdm#expression_title_information_additional> "CELEX1"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#resource_legal> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0002> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.C_.2002.098.01.0037.01.DEU> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#act_other_ec> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0002> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/52002XC0423%2804%29.DEU> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.DEU> <http://publications.europa.eu/ontology/cdm#expression_uses_language> <http://publications.europa.eu/resource/authority/language/DEU> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.DEU> <http://publications.europa.eu/ontology/cdm#expression_belongs_to_work> <http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.DEU> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 17:30:06" .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#work> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#act_preparatory> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0002> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.DEU> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.DEU> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0002> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-28T21:54:46+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.NLD.html> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 17:30:06" .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.NLD.html> <http://publications.europa.eu/ontology/cdm#manifestation_type> "html"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0009.01/DOC_1> <http://publications.europa.eu/ontology/cdm#item_identifier> "DOC_1" .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.NLD> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0009.01/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.C_.2002.098.01.0037.01.NLD.html.52002XC0423_04_nl.html> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0009.01> <http://publications.europa.eu/ontology/cdm#manifestation_has_item> <http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0009.01/DOC_1> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.NLD.html> <http://publications.europa.eu/ontology/cdm#manifestation_source-pool> "src/eurlex/content"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.NLD.html> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#manifestation> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0009.01/DOC_1> <http://publications.europa.eu/ontology/cdm#item_belongs_to_manifestation> <http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0009.01> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0009> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.NLD> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0009.01> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.NLD.html> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0009.01/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/52002XC0423%2804%29.NLD.html.52002XC0423_04_nl.html> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0009.01/DOC_1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#item> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0009.01> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/52002XC0423%2804%29.NLD.html> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0009.01/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.NLD.html.52002XC0423_04_nl.html> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0009.01> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.C_.2002.098.01.0037.01.NLD.html> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.NLD.html> <http://publications.europa.eu/ontology/cdm#manifestation_manifests_expression> <http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.NLD> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0009.01> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-28T21:54:46+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0003> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.ELL> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0003.02/DOC_1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#item> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0003.02> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.C_.2002.098.01.0037.01.ELL.pdf> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.ELL.pdf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#manifestation> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.ELL.pdf> <http://publications.europa.eu/ontology/cdm#manifestation_manifests_expression> <http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.ELL> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0003.02/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.C_.2002.098.01.0037.01.ELL.pdf.c_09820020423el00370038.pdf> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0003.02> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.ELL.pdf> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0003.02> <http://publications.europa.eu/ontology/cdm#manifestation_has_item> <http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0003.02/DOC_1> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.ELL.pdf> <http://publications.europa.eu/ontology/cdm#manifestation_source-pool> "src/eudor"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.ELL.pdf> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 17:30:06" .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0003.02/DOC_1> <http://publications.europa.eu/ontology/cdm#item_belongs_to_manifestation> <http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0003.02> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0003.02> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/52002XC0423%2804%29.ELL.pdf> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0003.02/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.ELL.pdf.c_09820020423el00370038.pdf> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0003.02/DOC_1> <http://publications.europa.eu/ontology/cdm#item_identifier> "DOC_1" .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.ELL.pdf> <http://publications.europa.eu/ontology/cdm#manifestation_type> "pdf"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.ELL> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0003.02/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/52002XC0423%2804%29.ELL.pdf.c_09820020423el00370038.pdf> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0003.02> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-28T21:54:46+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0011.01> <http://publications.europa.eu/ontology/cdm#manifestation_has_item> <http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0011.01/DOC_1> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0011.01/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.C_.2002.098.01.0037.01.SWE.html.52002XC0423_04_sv.html> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0011> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.SWE> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.SWE.html> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 17:30:06" .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0011.01> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.SWE.html> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0011.01> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/52002XC0423%2804%29.SWE.html> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0011.01/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.SWE.html.52002XC0423_04_sv.html> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.SWE.html> <http://publications.europa.eu/ontology/cdm#manifestation_type> "html"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.SWE.html> <http://publications.europa.eu/ontology/cdm#manifestation_source-pool> "src/eurlex/content"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0011.01/DOC_1> <http://publications.europa.eu/ontology/cdm#item_identifier> "DOC_1" .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0011.01> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.C_.2002.098.01.0037.01.SWE.html> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0011.01/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/52002XC0423%2804%29.SWE.html.52002XC0423_04_sv.html> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.SWE.html> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#manifestation> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.SWE.html> <http://publications.europa.eu/ontology/cdm#manifestation_manifests_expression> <http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.SWE> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0011.01/DOC_1> <http://publications.europa.eu/ontology/cdm#item_belongs_to_manifestation> <http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0011.01> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0011.01/DOC_1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#item> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.SWE> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0011.01> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-28T21:54:46+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:N1ca7e07727fb49ce826d561f6fbe3e5b <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 22:15:01" .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://publications.europa.eu/ontology/cdm#resource_legal_type> "R"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://publications.europa.eu/ontology/cdm#resource_legal_published_in_official-journal> <http://publications.europa.eu/resource/oj/JOL_2002_172_R> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://publications.europa.eu/ontology/cdm#work_is_about_concept_eurovoc> <http://eurovoc.europa.eu/2668> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://publications.europa.eu/ontology/cdm#resource_legal_id_celex> "32002R1183"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://publications.europa.eu/ontology/cdm#work_part_of_collection_document> <http://publications.europa.eu/resource/authority/document-collection/CELEX> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://publications.europa.eu/ontology/cdm#resource_legal_has_type_act_concept_type_act> <http://publications.europa.eu/resource/authority/fd_030/REPH> .
_:Na2bd2bdc284047f08ecdf1295b8ff496 <http://www.w3.org/2002/07/owl#annotatedTarget> "2002-07-02"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://publications.europa.eu/ontology/cdm#resource_legal_based_on_resource_legal> <http://publications.europa.eu/resource/celex/11979H%2FPRO%2F04> .
<http://publications.europa.eu/resource/authority/corporate-body/COM> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#institution> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://publications.europa.eu/ontology/cdm#resource_legal_number_natural_celex> "1183"^^<http://www.w3.org/2001/XMLSchema#positiveInteger> .
_:Na2bd2bdc284047f08ecdf1295b8ff496 <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 22:15:01" .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://publications.europa.eu/ontology/cdm#work_date_creation> "2014-03-28"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://publications.europa.eu/ontology/cdm#work_date_document> "2002-07-01"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 22:15:01" .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://publications.europa.eu/ontology/cdm#resource_legal_year> "2002"^^<http://www.w3.org/2001/XMLSchema#gYear> .
_:N1ca7e07727fb49ce826d561f6fbe3e5b <http://www.w3.org/2002/07/owl#annotatedTarget> <http://publications.europa.eu/resource/celex/32001R1051> .
_:N1ca7e07727fb49ce826d561f6fbe3e5b <http://publications.europa.eu/ontology/annotation#article> "04" .
_:Na2bd2bdc284047f08ecdf1295b8ff496 <http://publications.europa.eu/ontology/annotation#comment_on_date> "{V|http://publications.europa.eu/resource/authority/fd_335/V} {ART|http://publications.europa.eu/resource/authority/fd_335/ART} 2" .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002R1183> .
_:Na2bd2bdc284047f08ecdf1295b8ff496 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://publications.europa.eu/ontology/cdm#resource_legal_date_entry-into-force> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#legislation_secondary> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://publications.europa.eu/ontology/cdm#work_created_by_agent> <http://publications.europa.eu/resource/authority/corporate-body/COM> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://publications.europa.eu/ontology/cdm#work_id_document> "oj:JOL_2002_172_R_0023_01"^^<http://www.w3.org/2001/XMLSchema#string> .
_:N1ca7e07727fb49ce826d561f6fbe3e5b <http://publications.europa.eu/ontology/annotation#comment_on_legal_basis> "A04" .
_:N1ca7e07727fb49ce826d561f6fbe3e5b <http://www.w3.org/2002/07/owl#annotatedProperty> <http://publications.europa.eu/ontology/cdm#resource_legal_based_on_resource_legal> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://publications.europa.eu/ontology/cdm#work_part_of_collection_document> <http://publications.europa.eu/resource/authority/document-collection/JO> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://publications.europa.eu/ontology/cdm#work_id_obsolete_notice> "376298"^^<http://www.w3.org/2001/XMLSchema#positiveInteger> .
_:Na2bd2bdc284047f08ecdf1295b8ff496 <http://www.w3.org/2002/07/owl#annotatedSource> <http://publications.europa.eu/resource/celex/32002R1183> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://publications.europa.eu/ontology/cdm#resource_legal_based_on_resource_legal> <http://publications.europa.eu/resource/celex/32001R1051> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://publications.europa.eu/ontology/cdm#work_cites_work> <http://publications.europa.eu/resource/celex/32001R1591> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://publications.europa.eu/ontology/cdm#resource_legal_id_sector> "3"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://publications.europa.eu/ontology/cdm#resource_legal_date_entry-into-force> "2002-07-02"^^<http://www.w3.org/2001/XMLSchema#date> .
_:N1ca7e07727fb49ce826d561f6fbe3e5b <http://www.w3.org/2002/07/owl#annotatedSource> <http://publications.europa.eu/resource/celex/32002R1183> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://publications.europa.eu/ontology/cdm#work_embargo> "2002-07-02T00:00:00+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://publications.europa.eu/ontology/cdm#resource_legal_based_on_concept_treaty> <http://publications.europa.eu/resource/authority/treaty/TEC_1992> .
_:N1ca7e07727fb49ce826d561f6fbe3e5b <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Axiom> .
_:Na2bd2bdc284047f08ecdf1295b8ff496 <http://publications.europa.eu/ontology/annotation#type_of_date> "{EV|http://publications.europa.eu/resource/authority/fd_335/EV}" .
<http://publications.europa.eu/resource/authority/corporate-body/COM> <http://www.w3.org/2004/02/skos/core#inScheme> <http://publications.europa.eu/resource/authority/corporate-body/> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://publications.europa.eu/ontology/cdm#work_id_document> "celex:32002R1183"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#resource_legal> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://publications.europa.eu/ontology/cdm#date_creation_legacy> "2002-07-03"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#regulation> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://publications.europa.eu/ontology/cdm#work_is_about_concept_eurovoc> <http://eurovoc.europa.eu/252> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#work> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://publications.europa.eu/ontology/cdm#work_date_creation_legacy> "2002-07-03"^^<http://www.w3.org/2001/XMLSchema#date> .
_:Na2bd2bdc284047f08ecdf1295b8ff496 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Axiom> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-28T06:17:07+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#legislation_secondary> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.NLD> <http://publications.europa.eu/ontology/cdm#expression_belongs_to_work> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.NLD> <http://publications.europa.eu/ontology/cdm#expression_uses_language> <http://publications.europa.eu/resource/authority/language/NLD> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0009> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.NLD> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.NLD> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 22:15:01" .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.NLD> <http://publications.europa.eu/ontology/cdm#expression_title_information_additional> "CELEX1"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0009> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.L_.2002.172.01.0023.01.NLD> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#regulation> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.NLD> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.NLD> <http://publications.europa.eu/ontology/cdm#expression_title> "Verordening (EG) nr. 1183/2002 van de Commissie van 1 juli 2002 tot vaststelling van de wereldmarktpr\u0133s voor niet-ge\u00EBgreneerde katoen"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0009> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002R1183.NLD> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#resource_legal> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#work> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0009> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-28T06:17:07+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0002.01/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.DEU.html.32002R1183de.html> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.DEU.html> <http://publications.europa.eu/ontology/cdm#manifestation_manifests_expression> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.DEU> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0002.01> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.DEU.html> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.DEU.html> <http://publications.europa.eu/ontology/cdm#manifestation_type> "html"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0002.01/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.L_.2002.172.01.0023.01.DEU.html.32002R1183de.html> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0002> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.DEU> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.DEU.html> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#manifestation> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.DEU.html> <http://publications.europa.eu/ontology/cdm#manifestation_source-pool> "src/eurlex/content"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0002.01> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002R1183.DEU.html> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.DEU> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0002.01/DOC_1> <http://publications.europa.eu/ontology/cdm#item_belongs_to_manifestation> <http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0002.01> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.DEU.html> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 22:15:01" .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0002.01/DOC_1> <http://publications.europa.eu/ontology/cdm#item_identifier> "DOC_1" .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0002.01> <http://publications.europa.eu/ontology/cdm#manifestation_has_item> <http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0002.01/DOC_1> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0002.01> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.L_.2002.172.01.0023.01.DEU.html> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0002.01/DOC_1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#item> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0002.01/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002R1183.DEU.html.32002R1183de.html> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0002.01> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-28T06:17:07+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0003.01> <http://publications.europa.eu/ontology/cdm#manifestation_has_item> <http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0003.01/DOC_1> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0003.01/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002R1183.ELL.html.32002R1183el.html> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.ELL.html> <http://publications.europa.eu/ontology/cdm#manifestation_type> "html"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0003.01/DOC_1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#item> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0003> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.ELL> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0003.01/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.L_.2002.172.01.0023.01.ELL.html.32002R1183el.html> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.ELL.html> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 22:15:01" .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.ELL.html> <http://publications.europa.eu/ontology/cdm#manifestation_manifests_expression> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.ELL> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0003.01> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.L_.2002.172.01.0023.01.ELL.html> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0003.01> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002R1183.ELL.html> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0003.01> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.ELL.html> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.ELL.html> <http://publications.europa.eu/ontology/cdm#manifestation_source-pool> "src/eurlex/content"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0003.01/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.ELL.html.32002R1183el.html> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0003.01/DOC_1> <http://publications.europa.eu/ontology/cdm#item_belongs_to_manifestation> <http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0003.01> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.ELL.html> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#manifestation> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.ELL> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0003.01/DOC_1> <http://publications.europa.eu/ontology/cdm#item_identifier> "DOC_1" .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0003.01> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-28T06:17:07+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0005> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.SPA> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.SPA.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_information_number> "1183/2002 (EC)"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.SPA.print> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.SPA> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0005.03> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002R1183.SPA.print> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.SPA.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_section_oj> "L1"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.SPA.print> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 22:15:01" .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.SPA.print> <http://publications.europa.eu/ontology/cdm#manifestation_type> "print"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.SPA.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_page_last> "0023"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.SPA.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_page_first> "0023"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.SPA.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_author_printer> "COM"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.SPA.print> <http://publications.europa.eu/ontology/cdm#manifestation_manifests_expression> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.SPA> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.SPA.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_durability> "EPH"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.SPA.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_pages_total> "1"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0005.03> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.L_.2002.172.01.0023.01.SPA.print> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.SPA.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_typedoc_printer> "REG"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.SPA.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_legal_basis_printer> "EC"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0005.03> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.SPA.print> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.SPA.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_is_corrigendum_printer> "O"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.SPA.print> <http://publications.europa.eu/ontology/cdm#manifestation_part_of_manifestation> <http://publications.europa.eu/resource/oj/JOL_2002_172_R.SPA.print> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0005.03> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-28T06:17:07+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.SWE> <http://publications.europa.eu/ontology/cdm#expression_belongs_to_work> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0011> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.SWE> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.SWE> <http://publications.europa.eu/ontology/cdm#expression_uses_language> <http://publications.europa.eu/resource/authority/language/SWE> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.SWE> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 22:15:01" .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#work> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.SWE> <http://publications.europa.eu/ontology/cdm#expression_title> "Kommissionens f\u00F6rordning (EG) nr 1183/2002 av den 1 juli 2002 om fastst\u00E4llande av v\u00E4rldsmarknadspriset p\u00E5 orensad bomull"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.SWE> <http://publications.europa.eu/ontology/cdm#expression_title_information_additional> "CELEX1"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#resource_legal> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0011> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.L_.2002.172.01.0023.01.SWE> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#regulation> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.SWE> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#legislation_secondary> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0011> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002R1183.SWE> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0011> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-28T06:17:07+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.FIN> <http://publications.europa.eu/ontology/cdm#expression_uses_language> <http://publications.europa.eu/resource/authority/language/FIN> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0006> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002R1183.FIN> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.FIN> <http://publications.europa.eu/ontology/cdm#expression_title_information_additional> "CELEX1"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0006> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.FIN> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.FIN> <http://publications.europa.eu/ontology/cdm#expression_belongs_to_work> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#legislation_secondary> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.FIN> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.FIN> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 22:15:01" .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#work> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#regulation> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.FIN> <http://publications.europa.eu/ontology/cdm#expression_title> "Komission asetus (EY) N:o 1183/2002, annettu 1 p\u00E4iv\u00E4n\u00E4 hein\u00E4kuuta 2002, puuvillan, josta siemeni\u00E4 ei ole poistettu, maailmanmarkkinahinnan vahvistamisesta"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0006> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.L_.2002.172.01.0023.01.FIN> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#resource_legal> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0006> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-28T06:17:07+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#work> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#decision> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0010> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002D0473.POR> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.POR> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#resource_legal> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.POR> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 22:15:01" .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.POR> <http://publications.europa.eu/ontology/cdm#expression_belongs_to_work> <http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0010> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.L_.2002.163.01.0029.01.POR> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.POR> <http://publications.europa.eu/ontology/cdm#expression_title> "2002/473/CE: Decis\u00E3o da Comiss\u00E3o, de 20 de Junho de 2002, que altera a Decis\u00E3o 97/296/CE que estabelece a lista dos pa\u00EDses terceiros a partir dos quais \u00E9 autorizada a importa\u00E7\u00E3o de determinados produtos da pesca destinados \u00E0 alimenta\u00E7\u00E3o humana, no respeitante \u00E0 Bulg\u00E1ria e aos Emirados \u00C1rabes Unidos (Texto relevante para efeitos do EEE) [notificada com o n\u00FAmero C(2002) 2215]"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#legislation_secondary> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.POR> <http://publications.europa.eu/ontology/cdm#expression_uses_language> <http://publications.europa.eu/resource/authority/language/POR> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.POR> <http://publications.europa.eu/ontology/cdm#expression_title_information_additional> "CELEX1"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0010> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.POR> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0010> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-28T06:35:03+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.DAN> <http://publications.europa.eu/ontology/cdm#expression_belongs_to_work> <http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#work> .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0001> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.C_.2002.086.01.0003.01.DAN> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.DAN> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.DAN> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 15:00:10" .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#resolution> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.DAN> <http://publications.europa.eu/ontology/cdm#expression_uses_language> <http://publications.europa.eu/resource/authority/language/DAN> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#legislation_secondary> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.DAN> <http://publications.europa.eu/ontology/cdm#expression_title_information_additional> "CELEX1"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01> .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0001> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002G0410%2802%29.DAN> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.DAN> <http://publications.europa.eu/ontology/cdm#expression_title> "R\u00E5dets resolution om opf\u00F8lgning af gr\u00F8nbogen om virksomhedernes sociale ansvar"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0001> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.DAN> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#resource_legal> .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0001> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-27T22:50:45+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.FRA.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_section_oj> "C1"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.FRA.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_author_printer> "CS"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.FRA.print> <http://publications.europa.eu/ontology/cdm#manifestation_part_of_manifestation> <http://publications.europa.eu/resource/oj/JOC_2002_086_R.FRA.print> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.FRA.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_page_first> "0003"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.FRA.print> <http://publications.europa.eu/ontology/cdm#manifestation_manifests_expression> <http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.FRA> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.FRA.print> <http://publications.europa.eu/ontology/cdm#manifestation_type> "print"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.FRA.print> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.FRA.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_pages_total> "2"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.FRA.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_typedoc_printer> "OTHER"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.FRA.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_is_corrigendum_printer> "O"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.FRA.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_information_number> "2002/C 86/03"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0007.03> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.FRA.print> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.FRA> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0007.03> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.C_.2002.086.01.0003.01.FRA.print> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.FRA.print> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 15:00:10" .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0007> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.FRA> .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0007.03> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002G0410%2802%29.FRA.print> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.FRA.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_page_last> "0004"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0007.03> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-27T22:50:45+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0004> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.ENG> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.ENG.print> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part> .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0004.03> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002G0410%2802%29.ENG.print> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.ENG> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.ENG.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_pages_total> "2"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.ENG.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_page_first> "0003"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.ENG.print> <http://publications.europa.eu/ontology/cdm#manifestation_type> "print"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.ENG.print> <http://publications.europa.eu/ontology/cdm#manifestation_manifests_expression> <http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.ENG> .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0004.03> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.ENG.print> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.ENG.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_author_printer> "CS"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.ENG.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_page_last> "0004"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.ENG.print> <http://publications.europa.eu/ontology/cdm#manifestation_part_of_manifestation> <http://publications.europa.eu/resource/oj/JOC_2002_086_R.ENG.print> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.ENG.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_section_oj> "C1"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0004.03> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.C_.2002.086.01.0003.01.ENG.print> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.ENG.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_typedoc_printer> "OTHER"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.ENG.print> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 15:00:10" .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.ENG.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_is_corrigendum_printer> "O"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.ENG.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_information_number> "2002/C 86/03"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0004.03> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-27T22:50:45+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.ITA.print> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 17:30:06" .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.ITA> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.ITA.print> <http://publications.europa.eu/ontology/cdm#manifestation_manifests_expression> <http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.ITA> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.ITA.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_is_corrigendum_printer> "O"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.ITA.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_page_first> "0037"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0008.03> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.C_.2002.098.01.0037.01.ITA.print> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0008.03> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.ITA.print> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.ITA.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_author_printer> "COM"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.ITA.print> <http://publications.europa.eu/ontology/cdm#manifestation_part_of_manifestation> <http://publications.europa.eu/resource/oj/JOC_2002_098_R.ITA.print> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.ITA.print> <http://publications.europa.eu/ontology/cdm#manifestation_type> "print"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.ITA.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_typedoc_printer> "OTHER"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.ITA.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_section_oj> "C1"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.ITA.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_page_last> "0038"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.ITA.print> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0008.03> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/52002XC0423%2804%29.ITA.print> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0008> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.ITA> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.ITA.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_information_number> "2002/C 98/05"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.ITA.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_pages_total> "2"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0008.03> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-28T21:54:46+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0008.02/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.C_.2002.098.01.0037.01.ITA.pdf.c_09820020423it00370038.pdf> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.ITA> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0008.02> <http://publications.europa.eu/ontology/cdm#manifestation_has_item> <http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0008.02/DOC_1> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0008> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.ITA> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0008.02/DOC_1> <http://publications.europa.eu/ontology/cdm#item_identifier> "DOC_1" .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.ITA.pdf> <http://publications.europa.eu/ontology/cdm#manifestation_source-pool> "src/eudor"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0008.02> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/52002XC0423%2804%29.ITA.pdf> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.ITA.pdf> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 17:30:06" .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.ITA.pdf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#manifestation> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0008.02/DOC_1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#item> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0008.02> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.ITA.pdf> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0008.02> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.C_.2002.098.01.0037.01.ITA.pdf> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0008.02/DOC_1> <http://publications.europa.eu/ontology/cdm#item_belongs_to_manifestation> <http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0008.02> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.ITA.pdf> <http://publications.europa.eu/ontology/cdm#manifestation_type> "pdf"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0008.02/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.ITA.pdf.c_09820020423it00370038.pdf> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0008.02/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/52002XC0423%2804%29.ITA.pdf.c_09820020423it00370038.pdf> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.ITA.pdf> <http://publications.europa.eu/ontology/cdm#manifestation_manifests_expression> <http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.ITA> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0008.02> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-28T21:54:46+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0009.02/DOC_1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#item> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.NLD.pdf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#manifestation> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0009.02/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.NLD.pdf.c_09820020423nl00370038.pdf> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0009.02> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.NLD.pdf> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0009.02> <http://publications.europa.eu/ontology/cdm#manifestation_has_item> <http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0009.02/DOC_1> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0009.02/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/52002XC0423%2804%29.NLD.pdf.c_09820020423nl00370038.pdf> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.NLD.pdf> <http://publications.europa.eu/ontology/cdm#manifestation_source-pool> "src/eudor"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0009> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.NLD> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.NLD.pdf> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 17:30:06" .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.NLD.pdf> <http://publications.europa.eu/ontology/cdm#manifestation_manifests_expression> <http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.NLD> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0009.02> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/52002XC0423%2804%29.NLD.pdf> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.NLD> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.NLD.pdf> <http://publications.europa.eu/ontology/cdm#manifestation_type> "pdf"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0009.02/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.C_.2002.098.01.0037.01.NLD.pdf.c_09820020423nl00370038.pdf> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0009.02/DOC_1> <http://publications.europa.eu/ontology/cdm#item_identifier> "DOC_1" .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0009.02> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.C_.2002.098.01.0037.01.NLD.pdf> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0009.02/DOC_1> <http://publications.europa.eu/ontology/cdm#item_belongs_to_manifestation> <http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0009.02> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0009.02> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-28T21:54:46+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.SPA> <http://publications.europa.eu/ontology/cdm#expression_title_information_additional> "CELEX1"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#resource_legal> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#work> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.SPA> <http://publications.europa.eu/ontology/cdm#expression_belongs_to_work> <http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.SPA> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.SPA> <http://publications.europa.eu/ontology/cdm#expression_uses_language> <http://publications.europa.eu/resource/authority/language/SPA> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#act_other_ec> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0005> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/52002XC0423%2804%29.SPA> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.SPA> <http://publications.europa.eu/ontology/cdm#expression_title> "Comunicaci\u00F3n de la Comisi\u00F3n en el marco de la aplicaci\u00F3n de la Directiva 96/48/CE del Consejo \u2014 Abril de 2002 (Texto pertinente a efectos del EEE)"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0005> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.C_.2002.098.01.0037.01.SPA> .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.SPA> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 17:30:06" .
<http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#act_preparatory> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0005> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_098_R_0037_01.SPA> .
<http://publications.europa.eu/resource/cellar/3a04d843-65dd-488d-8991-693f7c1bd5ec.0005> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-28T21:54:46+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0007.02/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.L_.2002.172.01.0023.01.FRA.pdf.l_17220020702fr00230023.pdf> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.FRA.pdf> <http://publications.europa.eu/ontology/cdm#manifestation_type> "pdf"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.FRA.pdf> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 22:15:01" .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.FRA.pdf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#manifestation> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0007.02> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.L_.2002.172.01.0023.01.FRA.pdf> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0007.02> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.FRA.pdf> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.FRA> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0007.02/DOC_1> <http://publications.europa.eu/ontology/cdm#item_belongs_to_manifestation> <http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0007.02> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.FRA.pdf> <http://publications.europa.eu/ontology/cdm#manifestation_source-pool> "src/eudor"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0007.02/DOC_1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#item> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0007.02/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002R1183.FRA.pdf.l_17220020702fr00230023.pdf> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0007.02> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002R1183.FRA.pdf> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0007.02/DOC_1> <http://publications.europa.eu/ontology/cdm#item_identifier> "DOC_1" .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0007> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.FRA> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0007.02/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.FRA.pdf.l_17220020702fr00230023.pdf> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.FRA.pdf> <http://publications.europa.eu/ontology/cdm#manifestation_manifests_expression> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.FRA> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0007.02> <http://publications.europa.eu/ontology/cdm#manifestation_has_item> <http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0007.02/DOC_1> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0007.02> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-28T06:17:07+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.FRA> <http://publications.europa.eu/ontology/cdm#expression_uses_language> <http://publications.europa.eu/resource/authority/language/FRA> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0007> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002R1183.FRA> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0007> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.L_.2002.172.01.0023.01.FRA> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.FRA> <http://publications.europa.eu/ontology/cdm#expression_belongs_to_work> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#legislation_secondary> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.FRA> <http://publications.europa.eu/ontology/cdm#expression_title> "R\u00E8glement (CE) n\u00B0 1183/2002 de la Commission du 1er juillet 2002 fixant le prix du march\u00E9 mondial du coton non \u00E9gren\u00E9"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.FRA> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 22:15:01" .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.FRA> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.FRA> <http://publications.europa.eu/ontology/cdm#expression_title_information_additional> "CELEX1"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#regulation> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#resource_legal> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0007> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.FRA> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#work> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0007> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-28T06:17:07+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0010.03> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002R1183.POR.print> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.POR> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.POR.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_is_corrigendum_printer> "O"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.POR.print> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 22:15:01" .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.POR.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_section_oj> "L1"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.POR.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_page_last> "0023"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.POR.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_durability> "EPH"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.POR.print> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.POR.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_typedoc_printer> "REG"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0010.03> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.L_.2002.172.01.0023.01.POR.print> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.POR.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_pages_total> "1"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0010.03> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.POR.print> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.POR.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_page_first> "0023"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.POR.print> <http://publications.europa.eu/ontology/cdm#manifestation_manifests_expression> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.POR> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.POR.print> <http://publications.europa.eu/ontology/cdm#manifestation_part_of_manifestation> <http://publications.europa.eu/resource/oj/JOL_2002_172_R.POR.print> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.POR.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_information_number> "1183/2002 (EC)"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.POR.print> <http://publications.europa.eu/ontology/cdm#manifestation_type> "print"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0010> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.POR> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.POR.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_legal_basis_printer> "EC"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.POR.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_author_printer> "COM"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0010.03> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-28T06:17:07+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0003> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.ELL> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#work> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#regulation> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.ELL> <http://publications.europa.eu/ontology/cdm#expression_belongs_to_work> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0003> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002R1183.ELL> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.ELL> <http://publications.europa.eu/ontology/cdm#expression_uses_language> <http://publications.europa.eu/resource/authority/language/ELL> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.ELL> <http://publications.europa.eu/ontology/cdm#expression_title_information_additional> "CELEX1"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.ELL> <http://publications.europa.eu/ontology/cdm#expression_title> "\u039A\u03B1\u03BD\u03BF\u03BD\u03B9\u03C3\u03BC\u03CC\u03C2 (\u0395\u039A) \u03B1\u03C1\u03B9\u03B8. 1183/2002 \u03C4\u03B7\u03C2 \u0395\u03C0\u03B9\u03C4\u03C1\u03BF\u03C0\u03AE\u03C2, \u03C4\u03B7\u03C2 1\u03B7\u03C2 \u0399\u03BF\u03C5\u03BB\u03AF\u03BF\u03C5 2002, \u03B3\u03B9\u03B1 \u03BA\u03B1\u03B8\u03BF\u03C1\u03B9\u03C3\u03BC\u03CC \u03C4\u03B7\u03C2 \u03C4\u03B9\u03BC\u03AE\u03C2 \u03C4\u03B7\u03C2 \u03C0\u03B1\u03B3\u03BA\u03CC\u03C3\u03BC\u03B9\u03B1\u03C2 \u03B1\u03B3\u03BF\u03C1\u03AC\u03C2 \u03C4\u03BF\u03C5 \u03BC\u03B7 \u03B5\u03BA\u03BA\u03BF\u03BA\u03BA\u03B9\u03C3\u03BC\u03AD\u03BD\u03BF\u03C5 \u03B2\u03B1\u03BC\u03B2\u03B1\u03BA\u03B9\u03BF\u03CD"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0003> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.L_.2002.172.01.0023.01.ELL> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.ELL> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#legislation_secondary> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.ELL> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 22:15:01" .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#resource_legal> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0003> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-28T06:17:07+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0010.01/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002R1183.POR.html.32002R1183pt.html> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0010.01/DOC_1> <http://publications.europa.eu/ontology/cdm#item_belongs_to_manifestation> <http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0010.01> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0010.01> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.L_.2002.172.01.0023.01.POR.html> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0010.01/DOC_1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#item> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0010.01/DOC_1> <http://publications.europa.eu/ontology/cdm#item_identifier> "DOC_1" .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.POR.html> <http://publications.europa.eu/ontology/cdm#manifestation_type> "html"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.POR.html> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#manifestation> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0010.01> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002R1183.POR.html> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0010.01/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.L_.2002.172.01.0023.01.POR.html.32002R1183pt.html> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.POR.html> <http://publications.europa.eu/ontology/cdm#manifestation_source-pool> "src/eurlex/content"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.POR> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0010> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.POR> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0010.01> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.POR.html> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.POR.html> <http://publications.europa.eu/ontology/cdm#manifestation_manifests_expression> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.POR> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0010.01> <http://publications.europa.eu/ontology/cdm#manifestation_has_item> <http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0010.01/DOC_1> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.POR.html> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 22:15:01" .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0010.01/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.POR.html.32002R1183pt.html> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0010.01> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-28T06:17:07+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0002> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.DEU> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0002.02> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002R1183.DEU.pdf> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.DEU.pdf> <http://publications.europa.eu/ontology/cdm#manifestation_manifests_expression> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.DEU> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0002.02> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.DEU.pdf> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.DEU> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.DEU.pdf> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 22:15:01" .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0002.02/DOC_1> <http://publications.europa.eu/ontology/cdm#item_belongs_to_manifestation> <http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0002.02> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0002.02> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.L_.2002.172.01.0023.01.DEU.pdf> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0002.02> <http://publications.europa.eu/ontology/cdm#manifestation_has_item> <http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0002.02/DOC_1> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0002.02/DOC_1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#item> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0002.02/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.L_.2002.172.01.0023.01.DEU.pdf.l_17220020702de00230023.pdf> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0002.02/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.DEU.pdf.l_17220020702de00230023.pdf> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0002.02/DOC_1> <http://publications.europa.eu/ontology/cdm#item_identifier> "DOC_1" .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0002.02/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002R1183.DEU.pdf.l_17220020702de00230023.pdf> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.DEU.pdf> <http://publications.europa.eu/ontology/cdm#manifestation_source-pool> "src/eudor"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.DEU.pdf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#manifestation> .
<http://publications.europa.eu/resource/oj/JOL_2002_172_R_0023_01.DEU.pdf> <http://publications.europa.eu/ontology/cdm#manifestation_type> "pdf"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/2d52b6cd-f847-46a4-9c75-1f5061c33e64.0002.02> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-28T06:17:07+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.SWE.pdf> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 15:00:10" .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.SWE.pdf> <http://publications.europa.eu/ontology/cdm#manifestation_manifests_expression> <http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.SWE> .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0011.02> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002G0410%2802%29.SWE.pdf> .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0011.02/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002G0410%2802%29.SWE.pdf.c_08620020410sv00030004.pdf> .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0011.02/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.C_.2002.086.01.0003.01.SWE.pdf.c_08620020410sv00030004.pdf> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.SWE.pdf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#manifestation> .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0011.02> <http://publications.europa.eu/ontology/cdm#manifestation_has_item> <http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0011.02/DOC_1> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.SWE.pdf> <http://publications.europa.eu/ontology/cdm#manifestation_type> "pdf"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0011.02/DOC_1> <http://publications.europa.eu/ontology/cdm#item_identifier> "DOC_1" .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0011.02> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.SWE.pdf> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.SWE.pdf> <http://publications.europa.eu/ontology/cdm#manifestation_source-pool> "src/eudor"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0011.02> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.C_.2002.086.01.0003.01.SWE.pdf> .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0011.02/DOC_1> <http://publications.europa.eu/ontology/cdm#item_belongs_to_manifestation> <http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0011.02> .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0011.02/DOC_1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#item> .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0011> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.SWE> .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0011.02/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.SWE.pdf.c_08620020410sv00030004.pdf> .
<http://publications.europa.eu/resource/oj/JOC_2002_086_R_0003_01.SWE> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/cellar/87ad7bf6-0a05-48fb-bfc8-67e94c2ce2db.0011.02> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-27T22:50:45+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/oj/JOC_2002_165_R_0032_01.NLD> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/oj/JOC_2002_165_R_0032_01.NLD.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_typedoc_printer> "OTHER"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_165_R_0032_01.NLD.print> <http://publications.europa.eu/ontology/cdm#manifestation_type> "print"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/7ec9e5ce-640d-4ee8-a3c8-e8b3996a2ca1.0009> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_165_R_0032_01.NLD> .
<http://publications.europa.eu/resource/cellar/7ec9e5ce-640d-4ee8-a3c8-e8b3996a2ca1.0009.02> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/C2002%2F165%2F04.NLD.print> .
<http://publications.europa.eu/resource/oj/JOC_2002_165_R_0032_01.NLD.print> <http://publications.europa.eu/ontology/cdm#manifestation_part_of_manifestation> <http://publications.europa.eu/resource/oj/JOC_2002_165_R.NLD.print> .
<http://publications.europa.eu/resource/oj/JOC_2002_165_R_0032_01.NLD.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_page_last> "0032"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/7ec9e5ce-640d-4ee8-a3c8-e8b3996a2ca1.0009.02> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.C_.2002.165.01.0032.01.NLD.print> .
<http://publications.europa.eu/resource/oj/JOC_2002_165_R_0032_01.NLD.print> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part> .
<http://publications.europa.eu/resource/oj/JOC_2002_165_R_0032_01.NLD.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_section_oj> "C1"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_165_R_0032_01.NLD.print> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:28/03/2014 01:30:08" .
<http://publications.europa.eu/resource/oj/JOC_2002_165_R_0032_01.NLD.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_is_corrigendum_printer> "O"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_165_R_0032_01.NLD.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_pages_total> "1"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/7ec9e5ce-640d-4ee8-a3c8-e8b3996a2ca1.0009.02> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_165_R_0032_01.NLD.print> .
<http://publications.europa.eu/resource/oj/JOC_2002_165_R_0032_01.NLD.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_information_number> "2002/C 165/04"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_165_R_0032_01.NLD.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_author_printer> "COM"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_165_R_0032_01.NLD.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_page_first> "0032"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_165_R_0032_01.NLD.print> <http://publications.europa.eu/ontology/cdm#manifestation_manifests_expression> <http://publications.europa.eu/resource/oj/JOC_2002_165_R_0032_01.NLD> .
<http://publications.europa.eu/resource/cellar/7ec9e5ce-640d-4ee8-a3c8-e8b3996a2ca1.0009.02> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-28T11:47:05+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/oj/JOC_2002_165_R_0032_01.SPA> <http://publications.europa.eu/ontology/cdm#expression_title> "Notificaci\u00F3n previa de una operaci\u00F3n de concentraci\u00F3n (asunto COMP/M.2816 \u2014 Ernst\u00A0&\u00A0Young France/Andersen France) (Texto pertinente a efectos del EEE)"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_165_R_0032_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#work> .
<http://publications.europa.eu/resource/cellar/7ec9e5ce-640d-4ee8-a3c8-e8b3996a2ca1.0005> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_165_R_0032_01.SPA> .
<http://publications.europa.eu/resource/cellar/7ec9e5ce-640d-4ee8-a3c8-e8b3996a2ca1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_165_R_0032_01> .
<http://publications.europa.eu/resource/oj/JOC_2002_165_R_0032_01.SPA> <http://publications.europa.eu/ontology/cdm#expression_uses_language> <http://publications.europa.eu/resource/authority/language/SPA> .
<http://publications.europa.eu/resource/oj/JOC_2002_165_R_0032_01.SPA> <http://publications.europa.eu/ontology/cdm#expression_title_information_additional> "CELEX1"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_165_R_0032_01.SPA> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:28/03/2014 01:30:08" .
<http://publications.europa.eu/resource/oj/JOC_2002_165_R_0032_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#resource_legal> .
<http://publications.europa.eu/resource/cellar/7ec9e5ce-640d-4ee8-a3c8-e8b3996a2ca1.0005> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.C_.2002.165.01.0032.01.SPA> .
<http://publications.europa.eu/resource/oj/JOC_2002_165_R_0032_01.SPA> <http://publications.europa.eu/ontology/cdm#expression_belongs_to_work> <http://publications.europa.eu/resource/oj/JOC_2002_165_R_0032_01> .
<http://publications.europa.eu/resource/cellar/7ec9e5ce-640d-4ee8-a3c8-e8b3996a2ca1.0005> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/C2002%2F165%2F04.SPA> .
<http://publications.europa.eu/resource/oj/JOC_2002_165_R_0032_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#oj_c> .
<http://publications.europa.eu/resource/oj/JOC_2002_165_R_0032_01.SPA> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/cellar/7ec9e5ce-640d-4ee8-a3c8-e8b3996a2ca1.0005> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-28T11:47:05+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/cellar/7ec9e5ce-640d-4ee8-a3c8-e8b3996a2ca1.0009.01> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.C_.2002.165.01.0032.01.NLD.pdf> .
<http://publications.europa.eu/resource/oj/JOC_2002_165_R_0032_01.NLD.pdf> <http://publications.europa.eu/ontology/cdm#manifestation_source-pool> "src/eudor"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_2002_165_R_0032_01.NLD.pdf> <http://publications.europa.eu/ontology/cdm#manifestation_manifests_expression> <http://publications.europa.eu/resource/oj/JOC_2002_165_R_0032_01.NLD> .
<http://publications.europa.eu/resource/oj/JOC_2002_165_R_0032_01.NLD.pdf> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:28/03/2014 01:30:08" .
<http://publications.europa.eu/resource/oj/JOC_2002_165_R_0032_01.NLD.pdf> <http://publications.europa.eu/ontology/cdm#manifestation_type> "pdf"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/7ec9e5ce-640d-4ee8-a3c8-e8b3996a2ca1.0009.01/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/C2002%2F165%2F04.NLD.pdf.c_16520020711nl00320032.pdf> .
<http://publications.europa.eu/resource/cellar/7ec9e5ce-640d-4ee8-a3c8-e8b3996a2ca1.0009.01/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.C_.2002.165.01.0032.01.NLD.pdf.c_16520020711nl00320032.pdf> .
<http://publications.europa.eu/resource/cellar/7ec9e5ce-640d-4ee8-a3c8-e8b3996a2ca1.0009.01> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/C2002%2F165%2F04.NLD.pdf> .
<http://publications.europa.eu/resource/cellar/7ec9e5ce-640d-4ee8-a3c8-e8b3996a2ca1.0009.01/DOC_1> <http://publications.europa.eu/ontology/cdm#item_identifier> "DOC_1" .
<http://publications.europa.eu/resource/cellar/7ec9e5ce-640d-4ee8-a3c8-e8b3996a2ca1.0009.01> <http://publications.europa.eu/ontology/cdm#manifestation_has_item> <http://publications.europa.eu/resource/cellar/7ec9e5ce-640d-4ee8-a3c8-e8b3996a2ca1.0009.01/DOC_1> .
<http://publications.europa.eu/resource/cellar/7ec9e5ce-640d-4ee8-a3c8-e8b3996a2ca1.0009> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_165_R_0032_01.NLD> .
<http://publications.europa.eu/resource/oj/JOC_2002_165_R_0032_01.NLD> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/oj/JOC_2002_165_R_0032_01.NLD.pdf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#manifestation> .
<http://publications.europa.eu/resource/cellar/7ec9e5ce-640d-4ee8-a3c8-e8b3996a2ca1.0009.01/DOC_1> <http://publications.europa.eu/ontology/cdm#item_belongs_to_manifestation> <http://publications.europa.eu/resource/cellar/7ec9e5ce-640d-4ee8-a3c8-e8b3996a2ca1.0009.01> .
<http://publications.europa.eu/resource/cellar/7ec9e5ce-640d-4ee8-a3c8-e8b3996a2ca1.0009.01/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_165_R_0032_01.NLD.pdf.c_16520020711nl00320032.pdf> .
<http://publications.europa.eu/resource/cellar/7ec9e5ce-640d-4ee8-a3c8-e8b3996a2ca1.0009.01/DOC_1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#item> .
<http://publications.europa.eu/resource/cellar/7ec9e5ce-640d-4ee8-a3c8-e8b3996a2ca1.0009.01> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_2002_165_R_0032_01.NLD.pdf> .
<http://publications.europa.eu/resource/cellar/7ec9e5ce-640d-4ee8-a3c8-e8b3996a2ca1.0009.01> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-28T11:47:05+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/celex/72001L0113SWE%2801%29> <http://publications.europa.eu/ontology/cdm#work_id_document> "celex:72001L0113SWE(01)"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/authority/country/SWE> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#country> .
<http://publications.europa.eu/resource/celex/72001L0113SWE%2801%29> <http://publications.europa.eu/ontology/cdm#resource_legal_id_celex> "72001L0113SWE(01)"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/celex/72001L0113SWE%2801%29> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#work> .
<http://publications.europa.eu/resource/celex/72001L0113SWE%2801%29> <http://publications.europa.eu/ontology/cdm#resource_legal_has_type_act_concept_type_act> <http://publications.europa.eu/resource/authority/fd_030/MNE> .
_:N594814c03fb144638d27e7314fa1d658 <http://publications.europa.eu/ontology/annotation#build_info> "cdm:4441 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.0.3\n1.1.1 builddate:21/11/2012 15:46:14" .
_:N594814c03fb144638d27e7314fa1d658 <http://www.w3.org/2002/07/owl#annotatedSource> <http://publications.europa.eu/resource/celex/72001L0113SWE%2801%29> .
_:N594814c03fb144638d27e7314fa1d658 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Axiom> .
<http://publications.europa.eu/resource/celex/72001L0113SWE%2801%29> <http://publications.europa.eu/ontology/cdm#resource_legal_year> "2001"^^<http://www.w3.org/2001/XMLSchema#gYear> .
_:N594814c03fb144638d27e7314fa1d658 <http://publications.europa.eu/ontology/annotation#error_message> "Data missing" .
_:N594814c03fb144638d27e7314fa1d658 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://publications.europa.eu/ontology/cdm#work_date_document> .
<http://publications.europa.eu/resource/celex/72001L0113SWE%2801%29> <http://publications.europa.eu/ontology/cdm#work_created_by_agent> <http://publications.europa.eu/resource/authority/country/SWE> .
<http://publications.europa.eu/resource/celex/72001L0113SWE%2801%29> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:4441 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.0.3\n1.1.1 builddate:21/11/2012 15:46:14" .
_:N594814c03fb144638d27e7314fa1d658 <http://publications.europa.eu/ontology/annotation#quality_issue> "DATMIS" .
<http://publications.europa.eu/resource/celex/72001L0113SWE%2801%29> <http://publications.europa.eu/ontology/cdm#resource_legal_type> "L"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/celex/72001L0113SWE%2801%29> <http://publications.europa.eu/ontology/cdm#resource_legal_id_sector> "7"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/celex/72001L0113SWE%2801%29> <http://publications.europa.eu/ontology/cdm#resource_legal_number_natural_celex> "113"^^<http://www.w3.org/2001/XMLSchema#positiveInteger> .
<http://publications.europa.eu/resource/celex/72001L0113SWE%2801%29> <http://publications.europa.eu/ontology/cdm#work_date_document> "0003-03-03"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://publications.europa.eu/resource/authority/country/SWE> <http://www.w3.org/2004/02/skos/core#inScheme> <http://publications.europa.eu/resource/authority/country/> .
<http://publications.europa.eu/resource/celex/72001L0113SWE%2801%29> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#resource_legal> .
<http://publications.europa.eu/resource/cellar/86fa4fde-6963-4e89-96b7-e3987d5e6eba> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/72001L0113SWE%2801%29> .
_:N594814c03fb144638d27e7314fa1d658 <http://www.w3.org/2002/07/owl#annotatedTarget> "0003-03-03"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://publications.europa.eu/resource/cellar/86fa4fde-6963-4e89-96b7-e3987d5e6eba> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2012-11-27T16:42:45+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/celex/72001L0113SWE%2801%29.SWE> <http://publications.europa.eu/ontology/cdm#expression_belongs_to_work> <http://publications.europa.eu/resource/celex/72001L0113SWE%2801%29> .
<http://publications.europa.eu/resource/celex/72001L0113SWE%2801%29.SWE> <http://publications.europa.eu/ontology/cdm#expression_uses_language> <http://publications.europa.eu/resource/authority/language/SWE> .
<http://publications.europa.eu/resource/celex/72001L0113SWE%2801%29.SWE> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:4441 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.0.3\n1.1.1 builddate:21/11/2012 15:46:14" .
<http://publications.europa.eu/resource/celex/72001L0113SWE%2801%29.SWE> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/celex/72001L0113SWE%2801%29.SWE> <http://publications.europa.eu/ontology/cdm#expression_title_information_additional> "CELEX1"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/celex/72001L0113SWE%2801%29> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#resource_legal> .
<http://publications.europa.eu/resource/cellar/86fa4fde-6963-4e89-96b7-e3987d5e6eba.0001> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/72001L0113SWE%2801%29.SWE> .
<http://publications.europa.eu/resource/celex/72001L0113SWE%2801%29.SWE> <http://publications.europa.eu/ontology/cdm#expression_title> "Livsmedelsverkets f\u00F6reskrifter om sylt, gel\u00E9 och marmelad. LIVSFS n\u00B0 17 av 26/5/2003"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/86fa4fde-6963-4e89-96b7-e3987d5e6eba> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/72001L0113SWE%2801%29> .
<http://publications.europa.eu/resource/celex/72001L0113SWE%2801%29> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#work> .
<http://publications.europa.eu/resource/cellar/86fa4fde-6963-4e89-96b7-e3987d5e6eba.0001> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2012-11-27T16:42:45+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0010> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.POR> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0010.02> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002D0473.POR.pdf> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.POR.pdf> <http://publications.europa.eu/ontology/cdm#manifestation_type> "pdf"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0010.02/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002D0473.POR.pdf.l_16320020621pt00290031.pdf> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0010.02> <http://publications.europa.eu/ontology/cdm#manifestation_has_item> <http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0010.02/DOC_1> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.POR.pdf> <http://publications.europa.eu/ontology/cdm#manifestation_source-pool> "src/eudor"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0010.02/DOC_1> <http://publications.europa.eu/ontology/cdm#item_identifier> "DOC_1" .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0010.02/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.L_.2002.163.01.0029.01.POR.pdf.l_16320020621pt00290031.pdf> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.POR.pdf> <http://publications.europa.eu/ontology/cdm#manifestation_manifests_expression> <http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.POR> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0010.02> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.POR.pdf> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.POR> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0010.02/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.POR.pdf.l_16320020621pt00290031.pdf> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0010.02> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.L_.2002.163.01.0029.01.POR.pdf> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0010.02/DOC_1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#item> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.POR.pdf> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 22:15:01" .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0010.02/DOC_1> <http://publications.europa.eu/ontology/cdm#item_belongs_to_manifestation> <http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0010.02> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.POR.pdf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#manifestation> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0010.02> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-28T06:35:03+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0003.02/DOC_1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#item> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0003.02/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.ELL.pdf.l_16320020621el00290031.pdf> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0003.02/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002D0473.ELL.pdf.l_16320020621el00290031.pdf> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0003.02> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.ELL.pdf> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0003.02/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.L_.2002.163.01.0029.01.ELL.pdf.l_16320020621el00290031.pdf> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.ELL.pdf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#manifestation> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.ELL> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.ELL.pdf> <http://publications.europa.eu/ontology/cdm#manifestation_type> "pdf"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.ELL.pdf> <http://publications.europa.eu/ontology/cdm#manifestation_manifests_expression> <http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.ELL> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0003.02/DOC_1> <http://publications.europa.eu/ontology/cdm#item_identifier> "DOC_1" .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0003.02> <http://publications.europa.eu/ontology/cdm#manifestation_has_item> <http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0003.02/DOC_1> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0003.02/DOC_1> <http://publications.europa.eu/ontology/cdm#item_belongs_to_manifestation> <http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0003.02> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.ELL.pdf> <http://publications.europa.eu/ontology/cdm#manifestation_source-pool> "src/eudor"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0003> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.ELL> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.ELL.pdf> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 22:15:01" .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0003.02> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.L_.2002.163.01.0029.01.ELL.pdf> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0003.02> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002D0473.ELL.pdf> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0003.02> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-28T06:35:03+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0003.01/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.L_.2002.163.01.0029.01.ELL.html.32002D0473el.html> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.ELL.html> <http://publications.europa.eu/ontology/cdm#manifestation_type> "html"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0003.01/DOC_1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#item> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0003.01/DOC_1> <http://publications.europa.eu/ontology/cdm#item_belongs_to_manifestation> <http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0003.01> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0003.01> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.L_.2002.163.01.0029.01.ELL.html> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.ELL.html> <http://publications.europa.eu/ontology/cdm#manifestation_manifests_expression> <http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.ELL> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0003.01/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.ELL.html.32002D0473el.html> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0003> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.ELL> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.ELL.html> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#manifestation> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0003.01/DOC_1> <http://publications.europa.eu/ontology/cdm#item_identifier> "DOC_1" .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0003.01> <http://publications.europa.eu/ontology/cdm#manifestation_has_item> <http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0003.01/DOC_1> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0003.01> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002D0473.ELL.html> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0003.01> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.ELL.html> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.ELL.html> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 22:15:01" .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.ELL.html> <http://publications.europa.eu/ontology/cdm#manifestation_source-pool> "src/eurlex/content"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0003.01/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002D0473.ELL.html.32002D0473el.html> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.ELL> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0003.01> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-28T06:35:03+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0001.01/DOC_1> <http://publications.europa.eu/ontology/cdm#item_belongs_to_manifestation> <http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0001.01> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0001.01/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.DAN.html.32002D0473da.html> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0001> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.DAN> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.DAN> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.DAN.html> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 22:15:01" .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0001.01> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.DAN.html> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0001.01> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.L_.2002.163.01.0029.01.DAN.html> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.DAN.html> <http://publications.europa.eu/ontology/cdm#manifestation_source-pool> "src/eurlex/content"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.DAN.html> <http://publications.europa.eu/ontology/cdm#manifestation_type> "html"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0001.01> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002D0473.DAN.html> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0001.01> <http://publications.europa.eu/ontology/cdm#manifestation_has_item> <http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0001.01/DOC_1> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0001.01/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002D0473.DAN.html.32002D0473da.html> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0001.01/DOC_1> <http://publications.europa.eu/ontology/cdm#item_identifier> "DOC_1" .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.DAN.html> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#manifestation> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0001.01/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.L_.2002.163.01.0029.01.DAN.html.32002D0473da.html> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.DAN.html> <http://publications.europa.eu/ontology/cdm#manifestation_manifests_expression> <http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.DAN> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0001.01/DOC_1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#item> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0001.01> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-28T06:35:03+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0010.01> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002D0473.POR.html> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0010.01/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002D0473.POR.html.32002D0473pt.html> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0010.01> <http://publications.europa.eu/ontology/cdm#manifestation_has_item> <http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0010.01/DOC_1> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.POR> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0010.01/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.L_.2002.163.01.0029.01.POR.html.32002D0473pt.html> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.POR.html> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 22:15:01" .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0010.01> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.L_.2002.163.01.0029.01.POR.html> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.POR.html> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#manifestation> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0010.01/DOC_1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#item> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.POR.html> <http://publications.europa.eu/ontology/cdm#manifestation_type> "html"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0010.01> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.POR.html> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0010.01/DOC_1> <http://publications.europa.eu/ontology/cdm#item_identifier> "DOC_1" .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0010.01/DOC_1> <http://publications.europa.eu/ontology/cdm#item_belongs_to_manifestation> <http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0010.01> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.POR.html> <http://publications.europa.eu/ontology/cdm#manifestation_source-pool> "src/eurlex/content"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0010.01/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.POR.html.32002D0473pt.html> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.POR.html> <http://publications.europa.eu/ontology/cdm#manifestation_manifests_expression> <http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.POR> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0010> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.POR> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0010.01> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-28T06:35:03+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.NLD> <http://publications.europa.eu/ontology/cdm#expression_uses_language> <http://publications.europa.eu/resource/authority/language/NLD> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#work> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0009> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.NLD> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#legislation_secondary> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0009> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.L_.2002.163.01.0029.01.NLD> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#resource_legal> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.NLD> <http://publications.europa.eu/ontology/cdm#expression_title_information_additional> "CELEX1"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.NLD> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0009> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002D0473.NLD> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.NLD> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 22:15:01" .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#decision> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.NLD> <http://publications.europa.eu/ontology/cdm#expression_title> "2002/473/EG: Beschikking van de Commissie van 20 juni 2002 houdende w\u0133ziging van Beschikking 97/296/EG tot vaststelling van de l\u0133sten van derde landen waaruit invoer van visser\u0133producten voor mensel\u0133ke consumptie is toegestaan, met betrekking tot Bulgar\u0133e en de Verenigde Arabische Emiraten (Voor de EER relevante tekst) (kennisgeving geschied onder nummer C(2002) 2215)"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.NLD> <http://publications.europa.eu/ontology/cdm#expression_belongs_to_work> <http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0009> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-28T06:35:03+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.DAN.pdf> <http://publications.europa.eu/ontology/cdm#manifestation_manifests_expression> <http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.DAN> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0001> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.DAN> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0001.02/DOC_1> <http://publications.europa.eu/ontology/cdm#item_belongs_to_manifestation> <http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0001.02> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.DAN.pdf> <http://publications.europa.eu/ontology/cdm#manifestation_type> "pdf"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.DAN.pdf> <http://publications.europa.eu/ontology/cdm#manifestation_source-pool> "src/eudor"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0001.02/DOC_1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#item> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0001.02> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.L_.2002.163.01.0029.01.DAN.pdf> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0001.02/DOC_1> <http://publications.europa.eu/ontology/cdm#item_identifier> "DOC_1" .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0001.02> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002D0473.DAN.pdf> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0001.02/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.L_.2002.163.01.0029.01.DAN.pdf.l_16320020621da00290031.pdf> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.DAN.pdf> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 22:15:01" .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.DAN> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0001.02> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.DAN.pdf> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0001.02/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002D0473.DAN.pdf.l_16320020621da00290031.pdf> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.DAN.pdf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#manifestation> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0001.02> <http://publications.europa.eu/ontology/cdm#manifestation_has_item> <http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0001.02/DOC_1> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0001.02/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.DAN.pdf.l_16320020621da00290031.pdf> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0001.02> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-28T06:35:03+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0011.02/DOC_1> <http://publications.europa.eu/ontology/cdm#item_identifier> "DOC_1" .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0011.02> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.L_.2002.163.01.0029.01.SWE.pdf> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0011.02/DOC_1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#item> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0011> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.SWE> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0011.02/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002D0473.SWE.pdf.l_16320020621sv00290031.pdf> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0011.02/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.SWE.pdf.l_16320020621sv00290031.pdf> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.SWE.pdf> <http://publications.europa.eu/ontology/cdm#manifestation_source-pool> "src/eudor"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0011.02> <http://publications.europa.eu/ontology/cdm#manifestation_has_item> <http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0011.02/DOC_1> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.SWE> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0011.02> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.SWE.pdf> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.SWE.pdf> <http://publications.europa.eu/ontology/cdm#manifestation_type> "pdf"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.SWE.pdf> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 22:15:01" .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.SWE.pdf> <http://publications.europa.eu/ontology/cdm#manifestation_manifests_expression> <http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.SWE> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0011.02/DOC_1> <http://publications.europa.eu/ontology/cdm#item_belongs_to_manifestation> <http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0011.02> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.SWE.pdf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#manifestation> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0011.02> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002D0473.SWE.pdf> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0011.02/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.L_.2002.163.01.0029.01.SWE.pdf.l_16320020621sv00290031.pdf> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0011.02> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-28T06:35:03+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0006.01/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.L_.2002.163.01.0029.01.FIN.html.32002D0473fi.html> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0006.01> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.L_.2002.163.01.0029.01.FIN.html> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0006.01> <http://publications.europa.eu/ontology/cdm#manifestation_has_item> <http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0006.01/DOC_1> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0006.01/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002D0473.FIN.html.32002D0473fi.html> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0006.01> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.FIN.html> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0006> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.FIN> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0006.01> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/celex/32002D0473.FIN.html> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.FIN.html> <http://publications.europa.eu/ontology/cdm#manifestation_source-pool> "src/eurlex/content"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0006.01/DOC_1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#item> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0006.01/DOC_1> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.FIN.html.32002D0473fi.html> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.FIN.html> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#manifestation> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.FIN> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0006.01/DOC_1> <http://publications.europa.eu/ontology/cdm#item_identifier> "DOC_1" .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.FIN.html> <http://publications.europa.eu/ontology/cdm#manifestation_manifests_expression> <http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.FIN> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.FIN.html> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:27/03/2014 22:15:01" .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0006.01/DOC_1> <http://publications.europa.eu/ontology/cdm#item_belongs_to_manifestation> <http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0006.01> .
<http://publications.europa.eu/resource/oj/JOL_2002_163_R_0029_01.FIN.html> <http://publications.europa.eu/ontology/cdm#manifestation_type> "html"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/292de05b-08e7-4ae1-8b8b-f2d6f7de785c.0006.01> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-03-28T06:35:03+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/oj/JOC_1988_105_R_0002_01.SPA.print> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:16/05/2014 04:30:00" .
<http://publications.europa.eu/resource/oj/JOC_1988_105_R_0002_01.SPA.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_pages_total> "1"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_1988_105_R_0002_01.SPA.print> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part> .
<http://publications.europa.eu/resource/oj/JOC_1988_105_R_0002_01.SPA.print> <http://publications.europa.eu/ontology/cdm#manifestation_part_of_manifestation> <http://publications.europa.eu/resource/oj/JOC_1988_105_R.SPA.print> .
<http://publications.europa.eu/resource/cellar/77663c26-cbf8-4c2d-9079-a7d9fd7af99a.0005> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_1988_105_R_0002_01.SPA> .
<http://publications.europa.eu/resource/cellar/77663c26-cbf8-4c2d-9079-a7d9fd7af99a.0005.02> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_1988_105_R_0002_01.SPA.print> .
<http://publications.europa.eu/resource/oj/JOC_1988_105_R_0002_01.SPA.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_page_last> "0002"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_1988_105_R_0002_01.SPA.print> <http://publications.europa.eu/ontology/cdm#manifestation_type> "print"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_1988_105_R_0002_01.SPA.print> <http://publications.europa.eu/ontology/cdm#manifestation_manifests_expression> <http://publications.europa.eu/resource/oj/JOC_1988_105_R_0002_01.SPA> .
<http://publications.europa.eu/resource/oj/JOC_1988_105_R_0002_01.SPA> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/oj/JOC_1988_105_R_0002_01.SPA.print> <http://publications.europa.eu/ontology/cdm#manifestation_official-journal_part_page_first> "0002"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/77663c26-cbf8-4c2d-9079-a7d9fd7af99a.0005.02> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.C_.1988.105.01.0002.01.SPA.print> .
<http://publications.europa.eu/resource/cellar/77663c26-cbf8-4c2d-9079-a7d9fd7af99a.0005.02> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-05-16T08:27:57+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/oj/JOC_1988_105_R_0002_01.NLD> <http://publications.europa.eu/ontology/cdm#expression_belongs_to_work> <http://publications.europa.eu/resource/oj/JOC_1988_105_R_0002_01> .
<http://publications.europa.eu/resource/oj/JOC_1988_105_R_0002_01.NLD> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/oj/JOC_1988_105_R_0002_01.NLD> <http://publications.europa.eu/ontology/cdm#expression_uses_language> <http://publications.europa.eu/resource/authority/language/NLD> .
<http://publications.europa.eu/resource/oj/JOC_1988_105_R_0002_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#resource_legal> .
<http://publications.europa.eu/resource/oj/JOC_1988_105_R_0002_01.NLD> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:16/05/2014 04:30:00" .
<http://publications.europa.eu/resource/cellar/77663c26-cbf8-4c2d-9079-a7d9fd7af99a.0008> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.C_.1988.105.01.0002.01.NLD> .
<http://publications.europa.eu/resource/oj/JOC_1988_105_R_0002_01.NLD> <http://publications.europa.eu/ontology/cdm#expression_title> "Gemiddelde prijzen en representatieve prijzen van tafelwijnsoorten op de verschillende commercialisatiecentra"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/77663c26-cbf8-4c2d-9079-a7d9fd7af99a.0008> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_1988_105_R_0002_01.NLD> .
<http://publications.europa.eu/resource/oj/JOC_1988_105_R_0002_01.NLD> <http://publications.europa.eu/ontology/cdm#expression_title_information_additional> "CELEX1"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOC_1988_105_R_0002_01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#work> .
<http://publications.europa.eu/resource/cellar/77663c26-cbf8-4c2d-9079-a7d9fd7af99a> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOC_1988_105_R_0002_01> .
<http://publications.europa.eu/resource/cellar/77663c26-cbf8-4c2d-9079-a7d9fd7af99a.0008> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-05-16T08:27:57+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publications.europa.eu/resource/cellar/8d8480dd-33c1-4e8d-a50d-e94fc0b5bbf3> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_1988_099_R_0001_027> .
<http://publications.europa.eu/resource/oj/JOL_1988_099_R_0001_027.SPA> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#expression> .
<http://publications.europa.eu/resource/oj/JOL_1988_099_R_0001_027> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#work> .
<http://publications.europa.eu/resource/oj/JOL_1988_099_R_0001_027.SPA> <http://publications.europa.eu/ontology/cdm#expression_title> "Reglamento (CEE) n 990/88 de la Comisi\u00F3n, de 15 de abril de 1988, por el que se fijan las exacciones reguladoras a la importaci\u00F3n aplicables a los cereales y a las harinas, gra\u00F1ones y s\u00E9molas de trigo o de centeno"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/oj/JOL_1988_099_R_0001_027.SPA> <http://publications.europa.eu/ontology/cdm#expression_title_information_additional> "CELEX1"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://publications.europa.eu/resource/cellar/8d8480dd-33c1-4e8d-a50d-e94fc0b5bbf3.0005> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/oj/JOL_1988_099_R_0001_027.SPA> .
<http://publications.europa.eu/resource/oj/JOL_1988_099_R_0001_027.SPA> <http://publications.europa.eu/ontology/cdm#expression_belongs_to_work> <http://publications.europa.eu/resource/oj/JOL_1988_099_R_0001_027> .
<http://publications.europa.eu/resource/cellar/8d8480dd-33c1-4e8d-a50d-e94fc0b5bbf3.0005> <http://www.w3.org/2002/07/owl#sameAs> <http://publications.europa.eu/resource/uriserv/OJ.L_.1988.099.01.0001.01.SPA> .
<http://publications.europa.eu/resource/oj/JOL_1988_099_R_0001_027.SPA> <http://publications.europa.eu/ontology/annotation#build_info> "cdm:CDM_2.1.7 tdm:1523 xslt:3945 saxon:9.0.0.1J JVM:1.6.0_29 metaconvJar:1.2.0 builddate:12/05/2014 17:45:08" .
<http://publications.europa.eu/resource/oj/JOL_1988_099_R_0001_027.SPA> <http://publications.europa.eu/ontology/cdm#expression_uses_language> <http://publications.europa.eu/resource/authority/language/SPA> .
<http://publications.europa.eu/resource/oj/JOL_1988_099_R_0001_027> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://publications.europa.eu/ontology/cdm#resource_legal> .
<http://publications.europa.eu/resource/cellar/8d8480dd-33c1-4e8d-a50d-e94fc0b5bbf3.0005> <http://publications.europa.eu/ontology/cdm/cmr#lastModificationDate> "2014-05-12T22:24:45+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .