-
Notifications
You must be signed in to change notification settings - Fork 0
/
VISplus.skos.xml
3947 lines (3947 loc) · 256 KB
/
VISplus.skos.xml
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
<?xml version="1.0" encoding="UTF-8"?><rdf:RDF xmlns="urn:schemas-microsoft-com:office:spreadsheet" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:html="http://www.w3.org/TR/REC-html40" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:skos="http://www.w3.org/2004/02/skos/core#" xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" xmlns:x="urn:schemas-microsoft-com:office:excel">
<!--
This document is the living document adding new concepts, creating new definitions, changing hierarchy etc.
-->
<skos:ConceptSchema rdf:about="http://gams.uni-graz.at/o:vis">
<dc:title xml:lang="deu">Siegelvokabular</dc:title>
<dc:publisher>Zentrum für Informationsmodellierung, Karl-Franzens-Universität
Graz</dc:publisher>
<dc:source>Conseil International des Archives - Comité de Sigillographie: Vocabulaire Internationale de la Sigillographie, Roma 1990 (Ministero per i Beni Culturali e Ambientali, Pubblicazioni degli Archivi di Stato, Sussidi 3)</dc:source>
<dc:date>2016-12-12</dc:date>
<skos:note>Multilingual terminology extracted from Conseil International des Archives - Comité de Sigillographie: Vocabulaire Internationale de la Sigillographie, Roma 1990 (Ministero per i Beni Culturali e Ambientali, Pubblicazioni degli Archivi di Stato, Sussidi 3)</skos:note>
<skos:hasTopConcept rdf:resource="http://gams.uni-graz.at/o:vis#TOC_I"/>
<skos:hasTopConcept rdf:resource="http://gams.uni-graz.at/o:vis#TOC_II"/>
<skos:hasTopConcept rdf:resource="http://gams.uni-graz.at/o:vis#TOC_III"/>
<skos:hasTopConcept rdf:resource="http://gams.uni-graz.at/o:vis#TOC_IV"/>
<skos:hasTopConcept rdf:resource="http://gams.uni-graz.at/o:vis#TOC_V"/>
<skos:hasTopConcept rdf:resource="http://gams.uni-graz.at/o:vis#TOC_VI"/>
<skos:hasTopConcept rdf:resource="http://gams.uni-graz.at/o:vis#TOC_VII"/>
<skos:hasTopConcept rdf:resource="http://gams.uni-graz.at/o:vis#TOC_VIII"/>
<skos:hasTopConcept rdf:resource="http://gams.uni-graz.at/o:vis#TOC_IX"/>
<skos:hasTopConcept rdf:resource="http://gams.uni-graz.at/o:vis#TOC_A"/>
<!--<skos:hasTopConcept rdf:resource="http://gams.uni-graz.at/o:vis#nummer"/>
<skos:hasTopConcept rdf:resource="http://gams.uni-graz.at/o:vis#nummer"/>-->
<dc:rights rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/"/>
</skos:ConceptSchema>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#TOC_I">
<skos:prefLabel xml:lang="fr">GÉNÉRALITÉS</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#TOC_I"/></skos:Concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#TOC_II">
<skos:prefLabel xml:lang="fr">NATURE MATÉRIELLE DU SCEAU ET SA TRADITION</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#TOC_II"/></skos:Concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#TOC_III">
<skos:prefLabel xml:lang="fr">NATURE DIPLOMATIQUE ET NATURE JURIDIQUE DU
SCEAU</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#TOC_III"/></skos:Concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#TOC_IV">
<skos:prefLabel xml:lang="fr">MODES D'APPOSITION DU SCEAU</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#TOC_IV"/></skos:Concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#TOC_V_">
<skos:prefLabel xml:lang="fr">MATRICES DE SCEAU</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#TOC_V_"/></skos:Concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#TOC_V_A">
<skos:prefLabel xml:lang="fr">Généralités</skos:prefLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_V_"/>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#TOC_V_A"/></skos:Concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#TOC_V_B">
<skos:prefLabel xml:lang="fr">Types de matrices</skos:prefLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_V_"/>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#TOC_V_B"/></skos:Concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#TOC_V_C">
<skos:prefLabel xml:lang="fr">Parties de la matrice</skos:prefLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_V_"/>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#TOC_V_C"/></skos:Concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#TOC_VI_">
<skos:prefLabel xml:lang="fr">MATIÈRE, COULEUR ET FORME DES SCEAUX</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#TOC_VI_"/></skos:Concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#TOC_VI_A">
<skos:prefLabel xml:lang="fr">Matière</skos:prefLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_VI_"/>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#TOC_VI_A"/></skos:Concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#TOC_VI_B">
<skos:prefLabel xml:lang="fr">Couleur</skos:prefLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_VI_"/>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#TOC_VI_B"/></skos:Concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#TOC_VI_C">
<skos:prefLabel xml:lang="fr">Forme</skos:prefLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_VI_"/>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#TOC_VI_C"/></skos:Concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#TOC_VII_">
<skos:prefLabel xml:lang="fr">PARTIES DU SCEAU, TYPES ET ICONOGRAPHIE</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#TOC_VII_"/></skos:Concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#TOC_VII_A">
<skos:prefLabel xml:lang="fr">Pa rties du scea u</skos:prefLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_VII_"/>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#TOC_VII_A"/></skos:Concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#TOC_VII_B">
<skos:prefLabel xml:lang="fr">Typologie des sceaux</skos:prefLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_VII_"/>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#TOC_VII_B"/></skos:Concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#TOC_VII_">
<skos:prefLabel xml:lang="fr"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_VII_"/>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#TOC_VII_"/></skos:Concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#TOC_VIII">
<skos:prefLabel xml:lang="fr">PALÉOGRAPHIE DES SCEAUX</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#TOC_VIII"/></skos:Concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#TOC_IX">
<skos:prefLabel xml:lang="fr">CONSERVATION DES SCEAUX:</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#TOC_IX"/></skos:Concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#TOC_IX_A">
<skos:prefLabel xml:lang="fr">Préservation</skos:prefLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_IX"/>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#TOC_IX_A"/></skos:Concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#TOC_IX_A_1">
<skos:prefLabel xml:lang="fr">Matrices</skos:prefLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_IX"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_IX_A"/>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#TOC_IX_A_1"/></skos:Concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#TOC_IX_A_2">
<skos:prefLabel xml:lang="fr">Empreintes</skos:prefLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_IX"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_IX_A"/>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#TOC_IX_A_2"/></skos:Concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#TOC_IX_B">
<skos:prefLabel xml:lang="fr">Restauration</skos:prefLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_IX"/>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#TOC_IX_B"/></skos:Concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#TOC_IX_C">
<skos:prefLabel xml:lang="fr">Élaboration des instruments de recherche en matière sigillographique</skos:prefLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_IX"/>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#TOC_IX_C"/></skos:Concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#TOC_A">
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:prefLabel xml:lang="fr">Appendix</skos:prefLabel>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#TOC_A"/></skos:Concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#1">
<skos:prefLabel xml:lang="fr">sigillographie</skos:prefLabel>
<skos:prefLabel xml:lang="fr">sphragistique</skos:prefLabel>
<skos:prefLabel xml:lang="de">Siegelkunde</skos:prefLabel>
<skos:altLabel xml:lang="de">Sphragistik</skos:altLabel>
<skos:prefLabel xml:lang="en">Sigillography</skos:prefLabel>
<skos:altLabel xml:lang="en">sphragistic</skos:altLabel>
<skos:prefLabel xml:lang="es">Sigilografia</skos:prefLabel>
<skos:altLabel xml:lang="es">esfragística</skos:altLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_I"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#2">
<skos:prefLabel xml:lang="fr">art du sceau</skos:prefLabel>
<skos:prefLabel xml:lang="de">Siegelkunst</skos:prefLabel>
<skos:prefLabel xml:lang="en">Art of the seal</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_I"/>
<skos:narrower rdf:resource="http://gams.uni-graz.at/o:vis#2a"/>
<skos:narrower rdf:resource="http://gams.uni-graz.at/o:vis#2b"/>
</skos:concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#2a">
<skos:prefLabel xml:lang="es">Aspecto artístico del sello</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#2"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#2a"/></skos:Concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#2b">
<skos:prefLabel xml:lang="es">Arte de grabar sellos</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#2"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#2b"/></skos:Concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#3">
<skos:prefLabel xml:lang="fr">sceau</skos:prefLabel>
<skos:prefLabel xml:lang="de">Siegel</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_I"/>
<skos:narrower rdf:resource="http://gams.uni-graz.at/o:vis#3a"/>
<skos:narrower rdf:resource="http://gams.uni-graz.at/o:vis#3b"/>
</skos:concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#3a">
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:prefLabel xml:lang="en">Seal impression</skos:prefLabel>
<skos:prefLabel xml:lang="es">Sello (le mot s'applique aussi aux empreintes
métalliques)</skos:prefLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#3"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#3a"/></skos:Concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#3b">
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:prefLabel xml:lang="en">Seal matrix (ou die)</skos:prefLabel>
<skos:prefLabel xml:lang="es">Sello (matriz)</skos:prefLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#3"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#3b"/></skos:Concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#4">
<skos:prefLabel xml:lang="fr">sceau de validation</skos:prefLabel>
<skos:prefLabel xml:lang="de">Beglaubigungssiegel</skos:prefLabel>
<skos:prefLabel xml:lang="en">Seal of validation</skos:prefLabel>
<skos:prefLabel xml:lang="es">Sello de validación</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_I"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#5">
<skos:prefLabel xml:lang="fr">sceau de clôture</skos:prefLabel>
<skos:prefLabel xml:lang="de">Verschlußsiegel</skos:prefLabel>
<skos:prefLabel xml:lang="en">Seal of closure</skos:prefLabel>
<skos:prefLabel xml:lang="es">Sello de cierre</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_I"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#6">
<skos:prefLabel xml:lang="fr">sceau de reconnaissance</skos:prefLabel>
<skos:prefLabel xml:lang="de">Botensiegel</skos:prefLabel>
<skos:prefLabel xml:lang="en">Seal of recognizance</skos:prefLabel>
<skos:prefLabel xml:lang="es">Sello de creencia</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_I"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#7">
<skos:prefLabel xml:lang="fr">matrice de sceau</skos:prefLabel>
<skos:prefLabel xml:lang="de">Siegelstempel</skos:prefLabel>
<skos:altLabel xml:lang="de">Petschaft</skos:altLabel>
<skos:altLabel xml:lang="de">Typar</skos:altLabel>
<skos:prefLabel xml:lang="en">Seal matrix (ou die)</skos:prefLabel>
<skos:prefLabel xml:lang="es">Matriz de sello</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_I"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#8">
<skos:prefLabel xml:lang="fr">empreinte</skos:prefLabel>
<skos:prefLabel xml:lang="de">Siegel(abdruck)</skos:prefLabel>
<skos:prefLabel xml:lang="en">Impression</skos:prefLabel>
<skos:prefLabel xml:lang="es">Impronta</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_I"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#9">
<skos:prefLabel xml:lang="fr">sigillant</skos:prefLabel>
<skos:prefLabel xml:lang="de">Siegelinhaber</skos:prefLabel>
<skos:altLabel xml:lang="de">Siegelführer</skos:altLabel>
<skos:altLabel xml:lang="de">Siegler</skos:altLabel>
<skos:prefLabel xml:lang="en">Owner of the seal</skos:prefLabel>
<skos:prefLabel xml:lang="es">Titular del sello; aussi le bénéficiaire d'un sceau d'emprunt:
Sigilante</skos:prefLabel><!-- altLabel? -->
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_I"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#10">
<skos:prefLabel xml:lang="fr">tradition</skos:prefLabel>
<skos:prefLabel xml:lang="de">Überlieferung</skos:prefLabel>
<skos:altLabel xml:lang="de">Belege</skos:altLabel>
<skos:prefLabel xml:lang="es">Tradición</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_II"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#11">
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:prefLabel xml:lang="fr">bulle</skos:prefLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_II"/>
</skos:concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#11a">
<skos:prefLabel xml:lang="fr">bulle</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:prefLabel xml:lang="de">Bulle</skos:prefLabel>
<skos:prefLabel xml:lang="en">Bulla</skos:prefLabel>
<skos:prefLabel xml:lang="es">Sello, bula</skos:prefLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#11"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#11a"/></skos:Concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#11aa">
<skos:prefLabel xml:lang="fr">bulle</skos:prefLabel>
<skos:prefLabel xml:lang="de">Bleibulle</skos:prefLabel>
<skos:prefLabel xml:lang="en">Leaden bulla</skos:prefLabel>
<skos:prefLabel xml:lang="es">Sello de plomo</skos:prefLabel>
<skos:altLabel xml:lang="es">bula de plomo</skos:altLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#11a"/>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#11aa"/></skos:Concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#11ab">
<skos:prefLabel xml:lang="fr">bulle</skos:prefLabel>
<skos:prefLabel xml:lang="de">Goldbulle</skos:prefLabel>
<skos:prefLabel xml:lang="en">Golden bulla</skos:prefLabel>
<skos:prefLabel xml:lang="es">Sello
de oro</skos:prefLabel>
<skos:prefLabel xml:lang="es">Bula de oro</skos:prefLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#11a"/>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#11ab"/></skos:Concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#11ac">
<skos:prefLabel xml:lang="fr">bulle</skos:prefLabel>
<skos:prefLabel xml:lang="de">Silberbulle</skos:prefLabel>
<skos:prefLabel xml:lang="en">Silver bulla</skos:prefLabel>
<skos:prefLabel xml:lang="es">Sello de plata</skos:prefLabel>
<skos:prefLabel xml:lang="es">Bula de plata</skos:prefLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#11a"/>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#11ac"/></skos:Concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#11b">
<skos:prefLabel xml:lang="fr">bulle</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:prefLabel xml:lang="de">Bulle</skos:prefLabel>
<skos:prefLabel xml:lang="en">The document bearing a bulla</skos:prefLabel>
<skos:prefLabel xml:lang="es">Bula (seulement pour le document pontifical)</skos:prefLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#11"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#11b"/></skos:Concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#12">
<skos:prefLabel xml:lang="fr">signet</skos:prefLabel>
<skos:prefLabel xml:lang="de">Signet</skos:prefLabel>
<skos:altLabel xml:lang="de">Petschaft</skos:altLabel>
<skos:altLabel xml:lang="de">Pitschier</skos:altLabel>
<skos:prefLabel xml:lang="en">Signet</skos:prefLabel>
<skos:prefLabel xml:lang="es">Signeto</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_II"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#13">
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:prefLabel xml:lang="fr">cachet</skos:prefLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_II"/>
<skos:narrower rdf:resource="http://gams.uni-graz.at/o:vis#13a"/>
<skos:narrower rdf:resource="http://gams.uni-graz.at/o:vis#13b"/>
<skos:narrower rdf:resource="http://gams.uni-graz.at/o:vis#13c"/>
</skos:concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#13a">
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:prefLabel xml:lang="en">Signet</skos:prefLabel>
<skos:prefLabel xml:lang="es">Sello de cierre</skos:prefLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#13"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#13a"/></skos:Concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#13b">
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:prefLabel xml:lang="en">Signet</skos:prefLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#13"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#13b"/></skos:Concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#13c">
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:prefLabel xml:lang="es">Sello en tinta</skos:prefLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#13"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#13c"/></skos:Concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#14">
<skos:prefLabel xml:lang="fr">Décacheter</skos:prefLabel>
<skos:prefLabel xml:lang="de">Das Siegel erbrechen</skos:prefLabel>
<skos:prefLabel xml:lang="en">To break the seal</skos:prefLabel>
<skos:prefLabel xml:lang="es">Romper el sello</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_II"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#15">
<skos:prefLabel xml:lang="fr">scellés</skos:prefLabel>
<skos:prefLabel xml:lang="de">Gerichtssiegel</skos:prefLabel>
<skos:prefLabel xml:lang="es">Precintos</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_II"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#16">
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:prefLabel xml:lang="fr">timbre</skos:prefLabel>
<skos:prefLabel xml:lang="de">Stempel</skos:prefLabel>
<skos:prefLabel xml:lang="en">Stamp</skos:prefLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_II"/>
<skos:narrower rdf:resource="http://gams.uni-graz.at/o:vis#16a"/>
<skos:narrower rdf:resource="http://gams.uni-graz.at/o:vis#16b"/>
</skos:concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#16a">
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:prefLabel xml:lang="es">Matriz</skos:prefLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#16"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#16a"/></skos:Concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#16b">
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:prefLabel xml:lang="es">Sello, impronta</skos:prefLabel><!-- altLabel? -->
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#16"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#16b"/></skos:Concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#17">
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:prefLabel xml:lang="fr">timbre sec</skos:prefLabel>
<skos:prefLabel xml:lang="en">Impressed (ou embossed) stamp</skos:prefLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_II"/>
<skos:narrower rdf:resource="http://gams.uni-graz.at/o:vis#17a"/>
<skos:narrower rdf:resource="http://gams.uni-graz.at/o:vis#17b"/>
</skos:concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#17a">
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:prefLabel xml:lang="de">Prägestempel</skos:prefLabel>
<skos:prefLabel xml:lang="es">Matriz para sello en seco</skos:prefLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#17"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#17a"/></skos:Concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#17b">
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:prefLabel xml:lang="de">Prägesiegel</skos:prefLabel>
<skos:prefLabel xml:lang="es">Sello en seco</skos:prefLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#17"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#17b"/></skos:Concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#18">
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:prefLabel xml:lang="fr">timbre humide</skos:prefLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_II"/>
<skos:narrower rdf:resource="http://gams.uni-graz.at/o:vis#18a"/>
<skos:narrower rdf:resource="http://gams.uni-graz.at/o:vis#18b"/>
<skos:narrower rdf:resource="http://gams.uni-graz.at/o:vis#18c"/>
</skos:concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#18a">
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:prefLabel xml:lang="de">Stempel</skos:prefLabel>
<skos:prefLabel xml:lang="en">Rubber (ou pad) stamp</skos:prefLabel>
<skos:prefLabel xml:lang="es">Matriz para sello en tinta</skos:prefLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#18"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#18a"/></skos:Concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#18b">
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:prefLabel xml:lang="de">Stempel</skos:prefLabel>
<skos:prefLabel xml:lang="en">Stamp</skos:prefLabel>
<skos:prefLabel xml:lang="es">Sello en tinta</skos:prefLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#18"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#18b"/></skos:Concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#18c">
<skos:prefLabel xml:lang="fr">griffe</skos:prefLabel>
<skos:prefLabel xml:lang="fr">estampille</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#18"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#18c"/></skos:Concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#18ca">
<skos:prefLabel xml:lang="fr">griffe</skos:prefLabel>
<skos:prefLabel xml:lang="fr">estampille</skos:prefLabel>
<skos:prefLabel xml:lang="es">Estampilla (pour la matrice)</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#18"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#18ca"/></skos:Concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#18cb">
<skos:prefLabel xml:lang="fr">griffe</skos:prefLabel>
<skos:prefLabel xml:lang="fr">estampille</skos:prefLabel>
<skos:prefLabel xml:lang="es">Estampillado (pour l'empreinte)</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#18"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#18cb"/></skos:Concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#19">
<skos:prefLabel xml:lang="fr">tampon</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_II"/>
<skos:narrower rdf:resource="http://gams.uni-graz.at/o:vis#19a"/>
<skos:narrower rdf:resource="http://gams.uni-graz.at/o:vis#19b"/>
</skos:concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#19a">
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:prefLabel xml:lang="de">Stempelkissen</skos:prefLabel>
<skos:prefLabel xml:lang="en">(Inking) pad</skos:prefLabel>
<skos:prefLabel xml:lang="es">Tampón</skos:prefLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#19"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#19a"/></skos:Concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#19b">
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:prefLabel xml:lang="de">Stempel</skos:prefLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#19"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#19b"/></skos:Concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#20">
<skos:prefLabel xml:lang="fr">moulage</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_II"/>
<skos:narrower rdf:resource="http://gams.uni-graz.at/o:vis#20a"/>
<skos:narrower rdf:resource="http://gams.uni-graz.at/o:vis#20b"/>
</skos:concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#20a">
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:prefLabel xml:lang="de">Abgießen</skos:prefLabel>
<skos:prefLabel xml:lang="en">Casting</skos:prefLabel>
<skos:prefLabel xml:lang="es">Vaciado</skos:prefLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#20"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#20a"/></skos:Concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#20b">
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:prefLabel xml:lang="de">Abguß</skos:prefLabel>
<skos:prefLabel xml:lang="en">Cast</skos:prefLabel>
<skos:prefLabel xml:lang="es">Vaciado</skos:prefLabel>
<skos:altLabel xml:lang="es">impronta</skos:altLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#20"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#20b"/></skos:Concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#21">
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:prefLabel xml:lang="fr">moule</skos:prefLabel>
<skos:altLabel xml:lang="fr">creux</skos:altLabel>
<skos:prefLabel xml:lang="de">Negativ</skos:prefLabel>
<skos:prefLabel xml:lang="de">Matrize</skos:prefLabel>
<skos:prefLabel xml:lang="en">Mould</skos:prefLabel>
<skos:prefLabel xml:lang="es">Molde</skos:prefLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_II"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#21"/></skos:Concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#22">
<skos:prefLabel xml:lang="fr">épreuve</skos:prefLabel>
<skos:prefLabel xml:lang="de">Abguß</skos:prefLabel>
<skos:prefLabel xml:lang="en">Cast</skos:prefLabel>
<skos:altLabel xml:lang="en">proof</skos:altLabel>
<skos:prefLabel xml:lang="es">Prueba</skos:prefLabel>
<skos:altLabel xml:lang="es">vaciado</skos:altLabel>
<skos:altLabel xml:lang="es">impronta</skos:altLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_II"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#23">
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:prefLabel xml:lang="fr">surmoulage</skos:prefLabel>
<skos:prefLabel xml:lang="es">Reproducción de un vaciado</skos:prefLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_II"/>
<skos:narrower rdf:resource="http://gams.uni-graz.at/o:vis#23a"/>
<skos:narrower rdf:resource="http://gams.uni-graz.at/o:vis#23b"/>
</skos:concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#23a">
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:prefLabel xml:lang="de">Abgießen von Abguß</skos:prefLabel>
<skos:prefLabel xml:lang="en">Cast from a cast</skos:prefLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#23"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#23a"/></skos:Concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#23b">
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:prefLabel xml:lang="de">Abguß von Abguß</skos:prefLabel>
<skos:prefLabel xml:lang="en">Cast</skos:prefLabel>
<skos:prefLabel xml:lang="en">proof</skos:prefLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#23"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#23b"/></skos:Concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#24">
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:prefLabel xml:lang="fr">tirage</skos:prefLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_II"/>
<skos:narrower rdf:resource="http://gams.uni-graz.at/o:vis#24a"/>
<skos:narrower rdf:resource="http://gams.uni-graz.at/o:vis#24b"/>
</skos:concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#24a">
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:prefLabel xml:lang="de">Herstellen eines Abdrucks vom Stempel</skos:prefLabel>
<skos:prefLabel xml:lang="en">To take an impression from the matrix</skos:prefLabel>
<skos:prefLabel xml:lang="es">Obtener pruebas de una matriz</skos:prefLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#24"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#24a"/></skos:Concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#24b">
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:prefLabel xml:lang="de">(Moderner) Abdruck</skos:prefLabel>
<skos:prefLabel xml:lang="en">Impression</skos:prefLabel>
<skos:prefLabel xml:lang="es">Prueba obtenida de una matriz, impronta</skos:prefLabel><!-- altLabel? -->
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#24"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#24b"/></skos:Concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#25">
<skos:prefLabel xml:lang="fr">nature diplomatique du sceau</skos:prefLabel>
<skos:prefLabel xml:lang="de">Diplomatische Seite des Siegels</skos:prefLabel>
<skos:prefLabel xml:lang="en">Diplomatic nature of the seal</skos:prefLabel>
<skos:prefLabel xml:lang="es">Naturaleza diplomática del sello</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_III"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#26">
<skos:prefLabel xml:lang="fr">nature juridique du sceau</skos:prefLabel>
<skos:prefLabel xml:lang="de">Rechtscharakter des Siegels</skos:prefLabel>
<skos:prefLabel xml:lang="en">Legal nature of the seal</skos:prefLabel>
<skos:prefLabel xml:lang="es">Naturaleza jurídica del sello</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_III"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#27">
<skos:prefLabel xml:lang="fr">grand sceau</skos:prefLabel>
<skos:prefLabel xml:lang="de">Großes (ou größeres) Siegel</skos:prefLabel>
<skos:altLabel xml:lang="de">Hauptsiegel</skos:altLabel>
<skos:prefLabel xml:lang="en">Great (ou broad) seal</skos:prefLabel>
<skos:prefLabel xml:lang="es">Sello mayor</skos:prefLabel>
<skos:altLabel xml:lang="es">gran sello</skos:altLabel>
<skos:altLabel xml:lang="es">gseulement pour les sceaux royaux en Aragon:
Flahón</skos:altLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_III"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#28">
<skos:prefLabel xml:lang="fr">petit sceau</skos:prefLabel>
<skos:prefLabel xml:lang="de">Kleines Siegel</skos:prefLabel>
<skos:prefLabel xml:lang="en">Small seal</skos:prefLabel>
<skos:prefLabel xml:lang="es">Sello menor</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_III"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#29">
<skos:prefLabel xml:lang="fr">sceau moyen</skos:prefLabel>
<skos:prefLabel xml:lang="es">Sello mediano</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_III"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#30">
<skos:prefLabel xml:lang="fr">sceau du secret</skos:prefLabel>
<skos:prefLabel xml:lang="fr">sceau secret</skos:prefLabel>
<skos:prefLabel xml:lang="de">Sekretsiegel</skos:prefLabel>
<skos:altLabel xml:lang="de">Sekret</skos:altLabel>
<skos:prefLabel xml:lang="en">Signet</skos:prefLabel>
<skos:altLabel xml:lang="en">secretum</skos:altLabel>
<skos:prefLabel xml:lang="es">Sello secreto (ou de la poridad)</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_III"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#31">
<skos:prefLabel xml:lang="fr">anneau du pêcheur</skos:prefLabel>
<skos:prefLabel xml:lang="de">Fischerring</skos:prefLabel>
<skos:prefLabel xml:lang="en">Fisherman's ring</skos:prefLabel>
<skos:prefLabel xml:lang="es">Anillo del pescador</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_III"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#32">
<skos:prefLabel xml:lang="fr">sceau privé</skos:prefLabel>
<skos:prefLabel xml:lang="en">Privy seal</skos:prefLabel>
<skos:prefLabel xml:lang="es">Sello privado (ou de la poridad)</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_III"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#33">
<skos:prefLabel xml:lang="fr">sceau de substitution</skos:prefLabel>
<skos:prefLabel xml:lang="fr">substitut du grand sceau</skos:prefLabel>
<skos:prefLabel xml:lang="fr">sceau en l'absence</skos:prefLabel>
<skos:prefLabel xml:lang="en">Seal of absence (ou of substitution)</skos:prefLabel>
<skos:altLabel xml:lang="en">deputed seal</skos:altLabel>
<skos:prefLabel xml:lang="es">Sello de sustitución</skos:prefLabel>
<skos:altLabel xml:lang="es">sello in absentia magni</skos:altLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_III"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#34">
<skos:prefLabel xml:lang="fr">sceau ordonné</skos:prefLabel>
<skos:prefLabel xml:lang="fr">sceau ordonné en l'absence du grand</skos:prefLabel>
<skos:prefLabel xml:lang="es">Sello ordenado</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_III"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#35">
<skos:prefLabel xml:lang="fr">sceau de régence</skos:prefLabel>
<skos:prefLabel xml:lang="de">Regentschaftssiegel; pour le sceau dont usait le "Reichsvikar"
lors de la vacance du trône: Vikariatssiegel</skos:prefLabel>
<skos:prefLabel xml:lang="en">Seal of regency</skos:prefLabel>
<skos:prefLabel xml:lang="es">Sello de regencia</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_III"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#36">
<skos:prefLabel xml:lang="fr">sceau ante susceptum</skos:prefLabel>
<skos:prefLabel xml:lang="en">Seal of election</skos:prefLabel>
<skos:prefLabel xml:lang="es">Sello ante susceptum</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_III"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#37">
<skos:prefLabel xml:lang="la">sigillum electi</skos:prefLabel>
<skos:prefLabel xml:lang="de">Elektensiegel</skos:prefLabel>
<skos:prefLabel xml:lang="en">Seal of election</skos:prefLabel>
<skos:prefLabel xml:lang="es">Sello de electo</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_III"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#38">
<skos:prefLabel xml:lang="fr">bulla dimidia</skos:prefLabel>
<skos:prefLabel xml:lang="fr">bulla blanca</skos:prefLabel>
<skos:prefLabel xml:lang="fr">bulla defectiva</skos:prefLabel>
<skos:prefLabel xml:lang="de">Halbbulle</skos:prefLabel>
<skos:prefLabel xml:lang="en">Half-pull</skos:prefLabel>
<skos:prefLabel xml:lang="es">Bulla dimidia</skos:prefLabel>
<skos:altLabel xml:lang="es">semibula</skos:altLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_III"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#39">
<skos:prefLabel xml:lang="fr">sceau de juridiction</skos:prefLabel>
<skos:prefLabel xml:lang="de">Gerichtssiegel</skos:prefLabel>
<skos:prefLabel xml:lang="en">Seal ad causas</skos:prefLabel>
<skos:prefLabel xml:lang="es">Sello de jurisdicción</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_III"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#40">
<skos:prefLabel xml:lang="fr">sceau rigoureux</skos:prefLabel>
<skos:prefLabel xml:lang="es">Sello riguroso</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_III"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#41">
<skos:prefLabel xml:lang="fr">sceau aux causes</skos:prefLabel>
<skos:prefLabel xml:lang="de">Geschäftssiegel</skos:prefLabel>
<skos:altLabel xml:lang="de">sigillum ad causas</skos:altLabel>
<skos:prefLabel xml:lang="en">Seal ad causas</skos:prefLabel>
<skos:prefLabel xml:lang="es">Sello ad causas</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_III"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#42">
<skos:prefLabel xml:lang="fr">sceau aux contrats</skos:prefLabel>
<skos:prefLabel xml:lang="fr">sceau aux obligations</skos:prefLabel>
<skos:prefLabel xml:lang="fr">sceau aux reconnaissances</skos:prefLabel>
<skos:prefLabel xml:lang="en">Seal of recognizances</skos:prefLabel>
<skos:prefLabel xml:lang="es">Sello para contratos</skos:prefLabel>
<skos:altLabel xml:lang="es">sello obligatorio</skos:altLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_III"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#43">
<skos:prefLabel xml:lang="fr">contre-sceau</skos:prefLabel>
<skos:prefLabel xml:lang="de">Rücksiegel</skos:prefLabel>
<skos:altLabel xml:lang="de">Gegensiegel</skos:altLabel>
<skos:altLabel xml:lang="de">Kontrasiegel</skos:altLabel>
<skos:prefLabel xml:lang="en">Counter-seal</skos:prefLabel>
<skos:prefLabel xml:lang="es">Contrasello</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_III"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#44">
<skos:prefLabel xml:lang="fr">sceau placé en contre-sceau</skos:prefLabel>
<skos:prefLabel xml:lang="de">Siegel als Rücksiegel</skos:prefLabel>
<skos:prefLabel xml:lang="en">Substitute counter-seal</skos:prefLabel>
<skos:prefLabel xml:lang="es">Sello utilizado como contrasello</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_III"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#45">
<skos:prefLabel xml:lang="fr">capacité sigillaire</skos:prefLabel>
<skos:prefLabel xml:lang="fr">droit au sceau</skos:prefLabel>
<skos:prefLabel xml:lang="de">Siegelmäßigkeit</skos:prefLabel>
<skos:prefLabel xml:lang="en">Right to use a seal</skos:prefLabel>
<skos:prefLabel xml:lang="es">Capacidad sigilar</skos:prefLabel>
<skos:altLabel xml:lang="es">derecho al uso de sello</skos:altLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_III"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#46">
<skos:prefLabel xml:lang="fr">compétence sigillaire</skos:prefLabel>
<skos:prefLabel xml:lang="de">Siegelkompetenz</skos:prefLabel>
<skos:prefLabel xml:lang="en">Competence (ou authority) to seal</skos:prefLabel>
<skos:prefLabel xml:lang="es">Competencia sigilar</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_III"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#47">
<skos:prefLabel xml:lang="fr">défaut de sceau</skos:prefLabel>
<skos:prefLabel xml:lang="fr">carence de sceau</skos:prefLabel>
<skos:prefLabel xml:lang="de">Siegelkarenz</skos:prefLabel>
<skos:prefLabel xml:lang="en">Lacking a seal</skos:prefLabel>
<skos:prefLabel xml:lang="es">Falta (ou carencia) de sello</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_III"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#48">
<skos:prefLabel xml:lang="fr">absence de sceau</skos:prefLabel>
<skos:prefLabel xml:lang="en">Absence of a seal</skos:prefLabel>
<skos:prefLabel xml:lang="es">Ausencia del sello</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_III"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#49"><!-- da bin ich mir nicht ganz sicher -->
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_III"/>
<skos:narrower rdf:resource="http://gams.uni-graz.at/o:vis#49a"/>
<skos:narrower rdf:resource="http://gams.uni-graz.at/o:vis#49b"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#49a">
<skos:prefLabel xml:lang="fr">emprunt de sceau</skos:prefLabel>
<skos:prefLabel xml:lang="de">Siegelung in fremder Sache</skos:prefLabel>
<skos:altLabel xml:lang="de">Fremdbesiegelung</skos:altLabel>
<skos:prefLabel xml:lang="en">Borrowing of a seal</skos:prefLabel>
<skos:prefLabel xml:lang="es">Préstamo del sello</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#49"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#49b">
<skos:prefLabel xml:lang="fr">sceau d'emprunt</skos:prefLabel>
<skos:prefLabel xml:lang="en">Borrowed seal</skos:prefLabel>
<skos:prefLabel xml:lang="es">Sello prestado</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#49"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#50">
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_III"/>
<skos:narrower rdf:resource="http://gams.uni-graz.at/o:vis#50a"/>
<skos:narrower rdf:resource="http://gams.uni-graz.at/o:vis#50b"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#50a">
<skos:prefLabel xml:lang="fr">sceau de juridiction gracieuse</skos:prefLabel>
<skos:prefLabel xml:lang="de">Siegelung der freiwilligen Gerichtsbarkeit</skos:prefLabel>
<skos:prefLabel xml:lang="es">Sello de jurisdicción graciosa</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#50"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#50b">
<skos:prefLabel xml:lang="fr">sceau de ... établi à ...</skos:prefLabel>
<skos:prefLabel xml:lang="es">Sello de ... instituido en ...</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#50"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#51">
<skos:prefLabel xml:lang="fr">sceau authentique</skos:prefLabel>
<skos:prefLabel xml:lang="de">Authentisches Siegel</skos:prefLabel>
<skos:prefLabel xml:lang="en">Seal of authentication</skos:prefLabel>
<skos:altLabel xml:lang="en">authenticating seal</skos:altLabel>
<skos:prefLabel xml:lang="es">Sello auténtico</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_III"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#52">
<skos:prefLabel xml:lang="fr">certificat d'authenticité de sceau</skos:prefLabel>
<skos:prefLabel xml:lang="en">Certificate of authenticity of seal</skos:prefLabel>
<skos:prefLabel xml:lang="es">Certificado de autenticidad del sello</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_III"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#53">
<skos:prefLabel xml:lang="fr">sceau de confortation</skos:prefLabel>
<skos:prefLabel xml:lang="en">Seal of corroboration</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_III"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#54">
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:prefLabel xml:lang="fr">sceau d'attestation</skos:prefLabel>
<skos:prefLabel xml:lang="en">Seal of corroboration</skos:prefLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_III"/>
<skos:narrower rdf:resource="http://gams.uni-graz.at/o:vis#54a"/>
<skos:narrower rdf:resource="http://gams.uni-graz.at/o:vis#54b"/>
<skos:narrower rdf:resource="http://gams.uni-graz.at/o:vis#54c"/>
</skos:concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#54a">
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:prefLabel xml:lang="es">Sello de control</skos:prefLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#54"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#54a"/></skos:Concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#54b">
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:prefLabel xml:lang="es">Sello de intervención</skos:prefLabel>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#54"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#54b"/></skos:Concept>
<skos:Concept rdf:about="http://gams.uni-graz.at/o:vis#54c">
<skos:prefLabel xml:lang="fr">soussceaux</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#54"/>
<owl:sameAs rdf:resource="http://gams.uni-graz.at/skos/scheme/o:vis/#54c"/></skos:Concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#55">
<skos:prefLabel xml:lang="fr">révocation du sceau</skos:prefLabel>
<skos:prefLabel xml:lang="de">Siegelverrufung</skos:prefLabel>
<skos:prefLabel xml:lang="en">Revocation of seal</skos:prefLabel>
<skos:prefLabel xml:lang="es">Revocación del sello</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_III"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#56">
<skos:prefLabel xml:lang="fr">déclaration d'usage de sceau</skos:prefLabel>
<skos:prefLabel xml:lang="de">Erklärung über den Gebrauch eines (neuen)
Siegels</skos:prefLabel>
<skos:prefLabel xml:lang="es">Declaración de adopción de sello</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_III"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#57">
<skos:prefLabel xml:lang="fr">descellement d'un acte</skos:prefLabel>
<skos:prefLabel xml:lang="en">Removal of the seal</skos:prefLabel>
<skos:prefLabel xml:lang="es">Desellado de un acta</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_III"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#58">
<skos:prefLabel xml:lang="fr">cassation du sceau</skos:prefLabel>
<skos:prefLabel xml:lang="de">Kassation des Siegelstempels</skos:prefLabel>
<skos:prefLabel xml:lang="en">Invalidation of the seal</skos:prefLabel>
<skos:prefLabel xml:lang="es">Casación del sello</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_III"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#59">
<skos:prefLabel xml:lang="fr">brisement du sceau</skos:prefLabel>
<skos:prefLabel xml:lang="de">Brechen (ou Vernichtung) des Siegelstempels</skos:prefLabel>
<skos:prefLabel xml:lang="en">Breaking of the seal</skos:prefLabel>
<skos:prefLabel xml:lang="es">Quebrantamiento del sello</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_III"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#60">
<skos:prefLabel xml:lang="fr">cancellation du sceau</skos:prefLabel>
<skos:prefLabel xml:lang="de">Außerkraftsetzung des Siegelstempels</skos:prefLabel>
<skos:prefLabel xml:lang="en">Cancellation of the seal</skos:prefLabel>
<skos:prefLabel xml:lang="es">Cancelación del sello</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_III"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#61">
<skos:prefLabel xml:lang="fr">modes d'apposition du sceau</skos:prefLabel>
<skos:prefLabel xml:lang="fr">scellement</skos:prefLabel>
<skos:prefLabel xml:lang="de">Siegelanbringungsarten</skos:prefLabel>
<skos:altLabel xml:lang="de">Besiegelungsarten</skos:altLabel>
<skos:altLabel xml:lang="de">Untersiegelungsarten</skos:altLabel>
<skos:altLabel xml:lang="de">Versiegelungsarten</skos:altLabel>
<skos:prefLabel xml:lang="en">Methods of sealing</skos:prefLabel>
<skos:prefLabel xml:lang="es">Modos de aposición del sello</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_IV"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#62">
<skos:prefLabel xml:lang="fr">apposition du sceau</skos:prefLabel>
<skos:prefLabel xml:lang="fr">scellage</skos:prefLabel>
<skos:prefLabel xml:lang="de">Anbringung des Siegels</skos:prefLabel>
<skos:altLabel xml:lang="de">Besiegelung</skos:altLabel>
<skos:altLabel xml:lang="de">Untersiegelung</skos:altLabel>
<skos:altLabel xml:lang="de">Versiegelung</skos:altLabel>
<skos:prefLabel xml:lang="en">Sealing</skos:prefLabel>
<skos:prefLabel xml:lang="es">Aposición del sello</skos:prefLabel>
<skos:altLabel xml:lang="es">sellado</skos:altLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_IV"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#63">
<skos:prefLabel xml:lang="fr">apposition de la bulle</skos:prefLabel>
<skos:prefLabel xml:lang="fr">bullement</skos:prefLabel>
<skos:prefLabel xml:lang="de">Anbringung der Bulle</skos:prefLabel>
<skos:altLabel xml:lang="de">Besiegelung mit Bulle</skos:altLabel>
<skos:altLabel xml:lang="de">Bullierung</skos:altLabel>
<skos:prefLabel xml:lang="en">Attaching the bulla</skos:prefLabel>
<skos:prefLabel xml:lang="es">Aposición de la bula</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_IV"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#64">
<skos:prefLabel xml:lang="fr">Sceller</skos:prefLabel>
<skos:prefLabel xml:lang="de">Siegeln</skos:prefLabel>
<skos:altLabel xml:lang="de">besiegeln</skos:altLabel>
<skos:altLabel xml:lang="de">untersiegeln</skos:altLabel>
<skos:prefLabel xml:lang="en">To seal</skos:prefLabel>
<skos:prefLabel xml:lang="es">Sellar</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_IV"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#65">
<skos:prefLabel xml:lang="fr">Resceller</skos:prefLabel>
<skos:prefLabel xml:lang="de">Neubesiegeln</skos:prefLabel>
<skos:altLabel xml:lang="de">wiederbesiegeln</skos:altLabel>
<skos:prefLabel xml:lang="en">To reseal</skos:prefLabel>
<skos:prefLabel xml:lang="es">Resellar</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_IV"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#66">
<skos:prefLabel xml:lang="fr">scellage multiple</skos:prefLabel>
<skos:prefLabel xml:lang="en">Multiple sealing</skos:prefLabel>
<skos:prefLabel xml:lang="es">Sellado múltiple</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_IV"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#67">
<skos:prefLabel xml:lang="fr">sceau plaqué</skos:prefLabel>
<skos:prefLabel xml:lang="de">Aufgedrücktes Siegel</skos:prefLabel>
<skos:prefLabel xml:lang="en">Applied seal</skos:prefLabel>
<skos:prefLabel xml:lang="es">Sello adherido</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_IV"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#68">
<skos:prefLabel xml:lang="fr">sceau rivé</skos:prefLabel>
<skos:prefLabel xml:lang="de">Durchgedrücktes Siegel</skos:prefLabel>
<skos:prefLabel xml:lang="es">Sello roblado</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_IV"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#69">
<skos:prefLabel xml:lang="fr">marques de doigts</skos:prefLabel>
<skos:prefLabel xml:lang="de">Fingerabdrücke</skos:prefLabel>
<skos:prefLabel xml:lang="en">Fingermarks</skos:prefLabel>
<skos:prefLabel xml:lang="es">Huellas de dedos</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_IV"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#70">
<skos:prefLabel xml:lang="fr">sceau en placard</skos:prefLabel>
<skos:prefLabel xml:lang="de">Aufgedrücktes Siegel</skos:prefLabel>
<skos:prefLabel xml:lang="en">Seal en placard</skos:prefLabel>
<skos:prefLabel xml:lang="es">Sello de placa</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_IV"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#71">
<skos:prefLabel xml:lang="fr">simple queue</skos:prefLabel>
<skos:prefLabel xml:lang="de">(Abhangende) Pressel</skos:prefLabel>
<skos:prefLabel xml:lang="en">Tongue</skos:prefLabel>
<skos:prefLabel xml:lang="es">Cola</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_IV"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#72">
<skos:prefLabel xml:lang="fr">simple queue parisienne</skos:prefLabel>
<skos:prefLabel xml:lang="fr">simple queue bretonne</skos:prefLabel>
<skos:prefLabel xml:lang="es">Cola parisina</skos:prefLabel>
<skos:altLabel xml:lang="es">cola bretona</skos:altLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_IV"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#73">
<skos:prefLabel xml:lang="fr">sceau pendant</skos:prefLabel>
<skos:prefLabel xml:lang="de">Anhängendes (ou angehängtes) Siegel</skos:prefLabel>
<skos:altLabel xml:lang="de">Hangesiegel</skos:altLabel>
<skos:prefLabel xml:lang="en">Pendent seal</skos:prefLabel>
<skos:prefLabel xml:lang="es">Sello pendiente</skos:prefLabel>
<skos:inScheme rdf:resource="http://gams.uni-graz.at/o:vis"/>
<skos:broader rdf:resource="http://gams.uni-graz.at/o:vis#TOC_IV"/>
</skos:concept>
<skos:concept rdf:about="http://gams.uni-graz.at/o:vis#74">
<skos:prefLabel xml:lang="fr">attaches du sceau</skos:prefLabel>
<skos:prefLabel xml:lang="de">Befestigungsmittel</skos:prefLabel>
<skos:prefLabel xml:lang="en">Tags</skos:prefLabel>
<skos:altLabel xml:lang="en">laces</skos:altLabel>
<skos:altLabel xml:lang="en">cords</skos:altLabel>
<skos:prefLabel xml:lang="es">Enlaces</skos:prefLabel>
<skos:altLabel xml:lang="es">vínculo</skos:altLabel>