-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcurrencies.ttl
2881 lines (2881 loc) · 144 KB
/
currencies.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@prefix geographis: <http://telegraphis.net/ontology/geography/geography#>.
@prefix code: <http://telegraphis.net/ontology/measurement/code#>.
@prefix money: <http://telegraphis.net/ontology/money/money#>.
@prefix owl: <http://www.w3.org/2002/07/owl#>.
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
<http://telegraphis.net/data/currencies/AED#AED> a money:Currency;
money:name "United Arab Emirates dirham"@en;
money:shortName "dirham"@en;
money:symbol "د.إ";
money:minorName "fils"@en;
money:minorExponent "2";
money:isoAlpha "AED";
money:isoNumeric "784";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "784" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "AED" ].
<http://telegraphis.net/data/currencies/AED#AED> money:currencyOf <http://telegraphis.net/data/countries/AE#AE>.
<http://telegraphis.net/data/currencies/AED#AED> owl:sameAs <http://dbpedia.org/resource/United_Arab_Emirates_dirham>.
<http://telegraphis.net/data/currencies/AFN#AFN> a money:Currency;
money:name "Afghan afghani"@en;
money:shortName "afghani"@en;
money:symbol "؋";
money:minorName "pul"@en;
money:minorExponent "2";
money:isoAlpha "AFN";
money:isoNumeric "971";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "971" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "AFN" ].
<http://telegraphis.net/data/currencies/AFN#AFN> money:currencyOf <http://telegraphis.net/data/countries/AF#AF>.
<http://telegraphis.net/data/currencies/AFN#AFN> owl:sameAs <http://dbpedia.org/resource/Afghan_afghani>.
<http://telegraphis.net/data/currencies/ALL#ALL> a money:Currency;
money:name "Albanian lek"@en;
money:shortName "lek"@en;
money:symbol "L";
money:minorName "qindarkë"@en;
money:minorExponent "2";
money:isoAlpha "ALL";
money:isoNumeric "008";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "008" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "ALL" ].
<http://telegraphis.net/data/currencies/ALL#ALL> money:currencyOf <http://telegraphis.net/data/countries/AL#AL>.
<http://telegraphis.net/data/currencies/ALL#ALL> owl:sameAs <http://dbpedia.org/resource/Albanian_lek>.
<http://telegraphis.net/data/currencies/AMD#AMD> a money:Currency;
money:name "Armenian dram"@en;
money:shortName "dram"@en;
money:symbol "դր.";
money:minorName "luma"@en;
money:minorExponent "0";
money:isoAlpha "AMD";
money:isoNumeric "051";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "051" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "AMD" ].
<http://telegraphis.net/data/currencies/AMD#AMD> money:currencyOf <http://telegraphis.net/data/countries/AM#AM>.
<http://telegraphis.net/data/currencies/AMD#AMD> owl:sameAs <http://dbpedia.org/resource/Armenian_dram>.
<http://telegraphis.net/data/currencies/ANG#ANG> a money:Currency;
money:name "Netherlands Antillean guilder"@en;
money:shortName "guilder"@en;
money:symbol "ƒ";
money:minorName "cent"@en;
money:minorExponent "2";
money:isoAlpha "ANG";
money:isoNumeric "532";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "532" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "ANG" ].
<http://telegraphis.net/data/currencies/ANG#ANG> money:currencyOf <http://telegraphis.net/data/countries/AN#AN>.
<http://telegraphis.net/data/currencies/ANG#ANG> owl:sameAs <http://dbpedia.org/resource/Netherlands_Antillean_guilder>.
<http://telegraphis.net/data/currencies/AOA#AOA> a money:Currency;
money:name "Angolan kwanza"@en;
money:shortName "kwanza"@en;
money:symbol "Kw";
money:minorName "cêntimo"@en;
money:minorExponent "1";
money:isoAlpha "AOA";
money:isoNumeric "973";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "973" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "AOA" ].
<http://telegraphis.net/data/currencies/AOA#AOA> money:currencyOf <http://telegraphis.net/data/countries/AO#AO>.
<http://telegraphis.net/data/currencies/AOA#AOA> owl:sameAs <http://dbpedia.org/resource/Angolan_kwanza>.
<http://telegraphis.net/data/currencies/ARS#ARS> a money:Currency;
money:name "Argentine peso"@en;
money:shortName "peso"@en;
money:symbol "$";
money:minorName "centavo"@en;
money:minorExponent "2";
money:isoAlpha "ARS";
money:isoNumeric "032";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "032" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "ARS" ].
<http://telegraphis.net/data/currencies/ARS#ARS> money:currencyOf <http://telegraphis.net/data/countries/AR#AR>.
<http://telegraphis.net/data/currencies/ARS#ARS> owl:sameAs <http://dbpedia.org/resource/Argentine_peso>.
<http://telegraphis.net/data/currencies/AUD#AUD> a money:Currency;
money:name "Australian dollar"@en;
money:shortName "dollar"@en;
money:symbol "A$";
money:minorName "cent"@en;
money:minorSymbol "c";
money:minorExponent "2";
money:isoAlpha "AUD";
money:isoNumeric "036";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "036" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "AUD" ].
<http://telegraphis.net/data/currencies/AUD#AUD> money:currencyOf <http://telegraphis.net/data/countries/AU#AU>.
<http://telegraphis.net/data/currencies/AUD#AUD> money:currencyOf <http://telegraphis.net/data/countries/CC#CC>.
<http://telegraphis.net/data/currencies/AUD#AUD> money:currencyOf <http://telegraphis.net/data/countries/CX#CX>.
<http://telegraphis.net/data/currencies/AUD#AUD> money:currencyOf <http://telegraphis.net/data/countries/HM#HM>.
<http://telegraphis.net/data/currencies/AUD#AUD> money:currencyOf <http://telegraphis.net/data/countries/KI#KI>.
<http://telegraphis.net/data/currencies/AUD#AUD> money:currencyOf <http://telegraphis.net/data/countries/NF#NF>.
<http://telegraphis.net/data/currencies/AUD#AUD> money:currencyOf <http://telegraphis.net/data/countries/NR#NR>.
<http://telegraphis.net/data/currencies/AUD#AUD> money:currencyOf <http://telegraphis.net/data/countries/TV#TV>.
<http://telegraphis.net/data/currencies/AUD#AUD> owl:sameAs <http://dbpedia.org/resource/Australian_dollar>.
<http://telegraphis.net/data/currencies/AWG#AWG> a money:Currency;
money:name "Aruban guilder"@en;
money:shortName "guilder"@en;
money:symbol "Afl.";
money:minorName "cent"@en;
money:minorExponent "2";
money:isoAlpha "AWG";
money:isoNumeric "533";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "533" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "AWG" ].
<http://telegraphis.net/data/currencies/AWG#AWG> money:currencyOf <http://telegraphis.net/data/countries/AW#AW>.
<http://telegraphis.net/data/currencies/AWG#AWG> owl:sameAs <http://dbpedia.org/resource/Aruban_florin>.
<http://telegraphis.net/data/currencies/AZN#AZN> a money:Currency;
money:name "Azerbaijani manat"@en;
money:shortName "manat"@en;
money:symbol "m";
money:minorName "qəpik"@en;
money:minorExponent "2";
money:isoAlpha "AZN";
money:isoNumeric "944";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "944" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "AZN" ].
<http://telegraphis.net/data/currencies/AZN#AZN> money:currencyOf <http://telegraphis.net/data/countries/AZ#AZ>.
<http://telegraphis.net/data/currencies/AZN#AZN> owl:sameAs <http://dbpedia.org/resource/Azerbaijani_manat>.
<http://telegraphis.net/data/currencies/BAM#BAM> a money:Currency;
money:name "Bosnia and Herzegovina konvertibilna marka"@en;
money:shortName "konvertibilna marka"@en;
money:symbol "KM";
money:minorName "fening"@en;
money:minorExponent "2";
money:isoAlpha "BAM";
money:isoNumeric "977";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "977" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "BAM" ].
<http://telegraphis.net/data/currencies/BAM#BAM> money:currencyOf <http://telegraphis.net/data/countries/BA#BA>.
<http://telegraphis.net/data/currencies/BAM#BAM> owl:sameAs <http://dbpedia.org/resource/Bosnia_and_Herzegovina_konvertibilna_marka>.
<http://telegraphis.net/data/currencies/BBD#BBD> a money:Currency;
money:name "Barbados dollar"@en;
money:shortName "dollar"@en;
money:symbol "Bds$";
money:minorName "cent"@en;
money:minorExponent "2";
money:isoAlpha "BBD";
money:isoNumeric "052";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "052" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "BBD" ].
<http://telegraphis.net/data/currencies/BBD#BBD> money:currencyOf <http://telegraphis.net/data/countries/BB#BB>.
<http://telegraphis.net/data/currencies/BBD#BBD> owl:sameAs <http://dbpedia.org/resource/Barbadian_dollar>.
<http://telegraphis.net/data/currencies/BDT#BDT> a money:Currency;
money:name "Bangladeshi taka"@en;
money:shortName "taka"@en;
money:symbol "৳";
money:minorName "poisha"@en;
money:minorExponent "2";
money:isoAlpha "BDT";
money:isoNumeric "050";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "050" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "BDT" ].
<http://telegraphis.net/data/currencies/BDT#BDT> money:currencyOf <http://telegraphis.net/data/countries/BD#BD>.
<http://telegraphis.net/data/currencies/BDT#BDT> owl:sameAs <http://dbpedia.org/resource/Bangladeshi_taka>.
<http://telegraphis.net/data/currencies/BGN#BGN> a money:Currency;
money:name "Bulgarian lev"@en;
money:shortName "lev"@en;
money:symbol "лв";
money:minorName "stotinka"@en;
money:minorExponent "2";
money:isoAlpha "BGN";
money:isoNumeric "975";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "975" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "BGN" ].
<http://telegraphis.net/data/currencies/BGN#BGN> money:currencyOf <http://telegraphis.net/data/countries/BG#BG>.
<http://telegraphis.net/data/currencies/BGN#BGN> owl:sameAs <http://dbpedia.org/resource/Bulgarian_lev>.
<http://telegraphis.net/data/currencies/BHD#BHD> a money:Currency;
money:name "Bahraini dinar"@en;
money:shortName "dinar"@en;
money:symbol ".د.ب";
money:minorName "fils"@en;
money:minorExponent "3";
money:isoAlpha "BHD";
money:isoNumeric "048";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "048" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "BHD" ].
<http://telegraphis.net/data/currencies/BHD#BHD> money:currencyOf <http://telegraphis.net/data/countries/BH#BH>.
<http://telegraphis.net/data/currencies/BHD#BHD> owl:sameAs <http://dbpedia.org/resource/Bahraini_dinar>.
<http://telegraphis.net/data/currencies/BIF#BIF> a money:Currency;
money:name "Burundian franc"@en;
money:shortName "franc"@en;
money:symbol "FBu";
money:minorName "centime"@en;
money:minorExponent "0";
money:isoAlpha "BIF";
money:isoNumeric "108";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "108" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "BIF" ].
<http://telegraphis.net/data/currencies/BIF#BIF> money:currencyOf <http://telegraphis.net/data/countries/BI#BI>.
<http://telegraphis.net/data/currencies/BIF#BIF> owl:sameAs <http://dbpedia.org/resource/Burundian_franc>.
<http://telegraphis.net/data/currencies/BMD#BMD> a money:Currency;
money:name "Bermudian dollar"@en;
money:shortName "dollar"@en;
money:symbol "BD$";
money:minorName "cent"@en;
money:minorExponent "2";
money:isoAlpha "BMD";
money:isoNumeric "060";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "060" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "BMD" ].
<http://telegraphis.net/data/currencies/BMD#BMD> money:currencyOf <http://telegraphis.net/data/countries/BM#BM>.
<http://telegraphis.net/data/currencies/BMD#BMD> owl:sameAs <http://dbpedia.org/resource/Bermudian_dollar>.
<http://telegraphis.net/data/currencies/BND#BND> a money:Currency;
money:name "Brunei dollar"@en;
money:shortName "dollar"@en;
money:symbol "B$";
money:minorName "sen"@en;
money:minorExponent "2";
money:isoAlpha "BND";
money:isoNumeric "096";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "096" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "BND" ].
<http://telegraphis.net/data/currencies/BND#BND> money:currencyOf <http://telegraphis.net/data/countries/BN#BN>.
<http://telegraphis.net/data/currencies/BND#BND> money:currencyOf <http://telegraphis.net/data/countries/SG#SG>.
<http://telegraphis.net/data/currencies/BND#BND> owl:sameAs <http://dbpedia.org/resource/Brunei_dollar>.
<http://telegraphis.net/data/currencies/BOB#BOB> a money:Currency;
money:name "Bolivian boliviano"@en;
money:shortName "boliviano"@en;
money:symbol "Bs.";
money:minorName "centavo"@en;
money:minorExponent "2";
money:isoAlpha "BOB";
money:isoNumeric "068";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "068" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "BOB" ].
<http://telegraphis.net/data/currencies/BOB#BOB> money:currencyOf <http://telegraphis.net/data/countries/BO#BO>.
<http://telegraphis.net/data/currencies/BOB#BOB> owl:sameAs <http://dbpedia.org/resource/Bolivian_boliviano>.
<http://telegraphis.net/data/currencies/BOV#BOV> a money:Currency;
money:name "Bolivian Mvdol"@en;
money:shortName "mvdol"@en;
money:minorExponent "2";
money:isoAlpha "BOV";
money:isoNumeric "984";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "984" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "BOV" ].
<http://telegraphis.net/data/currencies/BOV#BOV> money:currencyOf <http://telegraphis.net/data/countries/BO#BO>.
<http://telegraphis.net/data/currencies/BRL#BRL> a money:Currency;
money:name "Brazilian real"@en;
money:shortName "real"@en;
money:symbol "R$";
money:minorName "centavo"@en;
money:minorExponent "2";
money:isoAlpha "BRL";
money:isoNumeric "986";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "986" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "BRL" ].
<http://telegraphis.net/data/currencies/BRL#BRL> money:currencyOf <http://telegraphis.net/data/countries/BR#BR>.
<http://telegraphis.net/data/currencies/BRL#BRL> owl:sameAs <http://dbpedia.org/resource/Brazilian_real>.
<http://telegraphis.net/data/currencies/BSD#BSD> a money:Currency;
money:name "Bahamian dollar"@en;
money:shortName "dollar"@en;
money:symbol "B$";
money:minorName "cent"@en;
money:minorExponent "2";
money:isoAlpha "BSD";
money:isoNumeric "044";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "044" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "BSD" ].
<http://telegraphis.net/data/currencies/BSD#BSD> money:currencyOf <http://telegraphis.net/data/countries/BS#BS>.
<http://telegraphis.net/data/currencies/BSD#BSD> owl:sameAs <http://dbpedia.org/resource/Bahamian_dollar>.
<http://telegraphis.net/data/currencies/BTN#BTN> a money:Currency;
money:name "Bhutanese ngultrum"@en;
money:shortName "ngultrum"@en;
money:symbol "Nu.";
money:minorName "chhertum"@en;
money:minorSymbol "Ch.";
money:minorExponent "2";
money:isoAlpha "BTN";
money:isoNumeric "064";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "064" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "BTN" ].
<http://telegraphis.net/data/currencies/BTN#BTN> money:currencyOf <http://telegraphis.net/data/countries/BT#BT>.
<http://telegraphis.net/data/currencies/BTN#BTN> owl:sameAs <http://dbpedia.org/resource/Bhutanese_ngultrum>.
<http://telegraphis.net/data/currencies/BWP#BWP> a money:Currency;
money:name "Botswana pula"@en;
money:shortName "pula"@en;
money:symbol "P";
money:minorName "thebe"@en;
money:minorExponent "2";
money:isoAlpha "BWP";
money:isoNumeric "072";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "072" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "BWP" ].
<http://telegraphis.net/data/currencies/BWP#BWP> money:currencyOf <http://telegraphis.net/data/countries/BW#BW>.
<http://telegraphis.net/data/currencies/BWP#BWP> owl:sameAs <http://dbpedia.org/resource/Botswana_pula>.
<http://telegraphis.net/data/currencies/BYR#BYR> a money:Currency;
money:name "Belarusian ruble"@en;
money:shortName "ruble"@en;
money:symbol "Br";
money:minorName "kapeyka"@en;
money:minorExponent "0";
money:isoAlpha "BYR";
money:isoNumeric "974";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "974" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "BYR" ].
<http://telegraphis.net/data/currencies/BYR#BYR> money:currencyOf <http://telegraphis.net/data/countries/BY#BY>.
<http://telegraphis.net/data/currencies/BYR#BYR> owl:sameAs <http://dbpedia.org/resource/Belarusian_ruble>.
<http://telegraphis.net/data/currencies/BZD#BZD> a money:Currency;
money:name "Belize dollar"@en;
money:shortName "dollar"@en;
money:symbol "BZ$";
money:minorName "cent"@en;
money:minorExponent "2";
money:isoAlpha "BZD";
money:isoNumeric "084";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "084" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "BZD" ].
<http://telegraphis.net/data/currencies/BZD#BZD> money:currencyOf <http://telegraphis.net/data/countries/BZ#BZ>.
<http://telegraphis.net/data/currencies/BZD#BZD> owl:sameAs <http://dbpedia.org/resource/Belize_dollar>.
<http://telegraphis.net/data/currencies/CAD#CAD> a money:Currency;
money:name "Canadian dollar"@en;
money:shortName "dollar"@en;
money:symbol "C$";
money:minorName "cent"@en;
money:minorSymbol "¢";
money:minorExponent "2";
money:isoAlpha "CAD";
money:isoNumeric "124";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "124" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "CAD" ].
<http://telegraphis.net/data/currencies/CAD#CAD> money:currencyOf <http://telegraphis.net/data/countries/CA#CA>.
<http://telegraphis.net/data/currencies/CAD#CAD> owl:sameAs <http://dbpedia.org/resource/Canadian_dollar>.
<http://telegraphis.net/data/currencies/CDF#CDF> a money:Currency;
money:name "Congolese franc"@en;
money:shortName "franc"@en;
money:symbol "F";
money:minorName "centime"@en;
money:minorExponent "2";
money:isoAlpha "CDF";
money:isoNumeric "976";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "976" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "CDF" ].
<http://telegraphis.net/data/currencies/CDF#CDF> money:currencyOf <http://telegraphis.net/data/countries/CD#CD>.
<http://telegraphis.net/data/currencies/CDF#CDF> owl:sameAs <http://dbpedia.org/resource/Congolese_franc>.
<http://telegraphis.net/data/currencies/CHE#CHE> a money:Currency;
money:name "WIR euro"@en;
money:shortName "euro"@en;
money:minorName "cent"@en;
money:minorExponent "2";
money:isoAlpha "CHE";
money:isoNumeric "947";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "947" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "CHE" ].
<http://telegraphis.net/data/currencies/CHE#CHE> money:currencyOf <http://telegraphis.net/data/countries/CH#CH>.
<http://telegraphis.net/data/currencies/CHF#CHF> a money:Currency;
money:name "Swiss franc"@en;
money:shortName "franc"@en;
money:symbol "Fr.";
money:minorName "centime"@en;
money:minorExponent "2";
money:isoAlpha "CHF";
money:isoNumeric "756";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "756" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "CHF" ].
<http://telegraphis.net/data/currencies/CHF#CHF> money:currencyOf <http://telegraphis.net/data/countries/CH#CH>.
<http://telegraphis.net/data/currencies/CHF#CHF> money:currencyOf <http://telegraphis.net/data/countries/LI#LI>.
<http://telegraphis.net/data/currencies/CHF#CHF> owl:sameAs <http://dbpedia.org/resource/Swiss_franc>.
<http://telegraphis.net/data/currencies/CHW#CHW> a money:Currency;
money:name "WIR franc"@en;
money:shortName "franc"@en;
money:minorName "centime"@en;
money:minorExponent "2";
money:isoAlpha "CHW";
money:isoNumeric "948";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "948" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "CHW" ].
<http://telegraphis.net/data/currencies/CHW#CHW> money:currencyOf <http://telegraphis.net/data/countries/CH#CH>.
<http://telegraphis.net/data/currencies/CLF#CLF> a money:Currency;
money:name "Chilean Unidad de Fomento"@en;
money:shortName "UF"@en;
money:minorExponent "0";
money:isoAlpha "CLF";
money:isoNumeric "990";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "990" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "CLF" ].
<http://telegraphis.net/data/currencies/CLF#CLF> money:currencyOf <http://telegraphis.net/data/countries/CL#CL>.
<http://telegraphis.net/data/currencies/CLF#CLF> owl:sameAs <http://dbpedia.org/resource/Unidad_de_Fomento>.
<http://telegraphis.net/data/currencies/CLP#CLP> a money:Currency;
money:name "Chilean peso"@en;
money:shortName "peso"@en;
money:symbol "$";
money:minorName "centavo"@en;
money:minorExponent "0";
money:isoAlpha "CLP";
money:isoNumeric "152";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "152" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "CLP" ].
<http://telegraphis.net/data/currencies/CLP#CLP> money:currencyOf <http://telegraphis.net/data/countries/CL#CL>.
<http://telegraphis.net/data/currencies/CLP#CLP> owl:sameAs <http://dbpedia.org/resource/Chilean_peso>.
<http://telegraphis.net/data/currencies/CNY#CNY> a money:Currency;
money:name "Chinese renminbi"@en;
money:shortName "yuan"@en;
money:symbol "¥";
money:minorName "fen"@en;
money:minorExponent "1";
money:isoAlpha "CNY";
money:isoNumeric "156";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "156" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "CNY" ].
<http://telegraphis.net/data/currencies/CNY#CNY> money:currencyOf <http://telegraphis.net/data/countries/CN#CN>.
<http://telegraphis.net/data/currencies/CNY#CNY> owl:sameAs <http://dbpedia.org/resource/Renminbi>.
<http://telegraphis.net/data/currencies/COP#COP> a money:Currency;
money:name "Colombian peso"@en;
money:shortName "peso"@en;
money:symbol "$";
money:minorName "centavo"@en;
money:minorExponent "0";
money:isoAlpha "COP";
money:isoNumeric "170";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "170" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "COP" ].
<http://telegraphis.net/data/currencies/COP#COP> money:currencyOf <http://telegraphis.net/data/countries/CO#CO>.
<http://telegraphis.net/data/currencies/COP#COP> owl:sameAs <http://dbpedia.org/resource/Colombian_peso>.
<http://telegraphis.net/data/currencies/COU#COU> a money:Currency;
money:name "Columbian Unidad de Valor Real"@en;
money:shortName "UVR"@en;
money:minorExponent "2";
money:isoAlpha "COU";
money:isoNumeric "970";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "970" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "COU" ].
<http://telegraphis.net/data/currencies/COU#COU> money:currencyOf <http://telegraphis.net/data/countries/CO#CO>.
<http://telegraphis.net/data/currencies/CRC#CRC> a money:Currency;
money:name "Costa Rican colon"@en;
money:shortName "colon"@en;
money:symbol "₡";
money:minorName "céntimo"@en;
money:minorExponent "2";
money:isoAlpha "CRC";
money:isoNumeric "188";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "188" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "CRC" ].
<http://telegraphis.net/data/currencies/CRC#CRC> money:currencyOf <http://telegraphis.net/data/countries/CR#CR>.
<http://telegraphis.net/data/currencies/CRC#CRC> owl:sameAs <http://dbpedia.org/resource/Costa_Rican_col%C3%B3n>.
<http://telegraphis.net/data/currencies/CUC#CUC> a money:Currency;
money:name "Cuban convertible peso"@en;
money:shortName "convertible peso"@en;
money:symbol "$";
money:minorName "centavo convertible"@en;
money:minorSymbol "¢";
money:minorExponent "2";
money:isoAlpha "CUC";
money:isoNumeric "931";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "931" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "CUC" ].
<http://telegraphis.net/data/currencies/CUC#CUC> money:currencyOf <http://telegraphis.net/data/countries/CU#CU>.
<http://telegraphis.net/data/currencies/CUC#CUC> owl:sameAs <http://dbpedia.org/resource/Cuban_convertible_peso>.
<http://telegraphis.net/data/currencies/CUP#CUP> a money:Currency;
money:name "Cuban peso"@en;
money:shortName "peso"@en;
money:symbol "$";
money:minorName "centavo"@en;
money:minorSymbol "¢";
money:minorExponent "2";
money:isoAlpha "CUP";
money:isoNumeric "192";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "192" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "CUP" ].
<http://telegraphis.net/data/currencies/CUP#CUP> money:currencyOf <http://telegraphis.net/data/countries/CU#CU>.
<http://telegraphis.net/data/currencies/CUP#CUP> owl:sameAs <http://dbpedia.org/resource/Cuban_peso>.
<http://telegraphis.net/data/currencies/CVE#CVE> a money:Currency;
money:name "Cape Verde escudo"@en;
money:shortName "escudo"@en;
money:symbol "$";
money:minorName "centavo"@en;
money:minorExponent "2";
money:isoAlpha "CVE";
money:isoNumeric "132";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "132" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "CVE" ].
<http://telegraphis.net/data/currencies/CVE#CVE> money:currencyOf <http://telegraphis.net/data/countries/CV#CV>.
<http://telegraphis.net/data/currencies/CVE#CVE> owl:sameAs <http://dbpedia.org/resource/Cape_Verdean_escudo>.
<http://telegraphis.net/data/currencies/CZK#CZK> a money:Currency;
money:name "Czech koruna"@en;
money:shortName "koruna"@en;
money:symbol "Kč";
money:minorName "haléř"@en;
money:minorSymbol "h";
money:minorExponent "2";
money:isoAlpha "CZK";
money:isoNumeric "203";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "203" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "CZK" ].
<http://telegraphis.net/data/currencies/CZK#CZK> money:currencyOf <http://telegraphis.net/data/countries/CZ#CZ>.
<http://telegraphis.net/data/currencies/CZK#CZK> owl:sameAs <http://dbpedia.org/resource/Czech_koruna>.
<http://telegraphis.net/data/currencies/DJF#DJF> a money:Currency;
money:name "Djiboutian franc"@en;
money:shortName "franc"@en;
money:symbol "Fdj";
money:minorName "centime"@en;
money:minorExponent "0";
money:isoAlpha "DJF";
money:isoNumeric "262";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "262" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "DJF" ].
<http://telegraphis.net/data/currencies/DJF#DJF> money:currencyOf <http://telegraphis.net/data/countries/DJ#DJ>.
<http://telegraphis.net/data/currencies/DJF#DJF> owl:sameAs <http://dbpedia.org/resource/Djiboutian_franc>.
<http://telegraphis.net/data/currencies/DKK#DKK> a money:Currency;
money:name "Danish krone"@en;
money:shortName "krone"@en;
money:symbol "kr";
money:minorName "øre"@en;
money:minorExponent "2";
money:isoAlpha "DKK";
money:isoNumeric "208";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "208" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "DKK" ].
<http://telegraphis.net/data/currencies/DKK#DKK> money:currencyOf <http://telegraphis.net/data/countries/DK#DK>.
<http://telegraphis.net/data/currencies/DKK#DKK> money:currencyOf <http://telegraphis.net/data/countries/FO#FO>.
<http://telegraphis.net/data/currencies/DKK#DKK> money:currencyOf <http://telegraphis.net/data/countries/GL#GL>.
<http://telegraphis.net/data/currencies/DKK#DKK> owl:sameAs <http://dbpedia.org/resource/Danish_krone>.
<http://telegraphis.net/data/currencies/DOP#DOP> a money:Currency;
money:name "Dominican peso"@en;
money:shortName "peso"@en;
money:symbol "RD$";
money:minorName "centavo"@en;
money:minorExponent "2";
money:isoAlpha "DOP";
money:isoNumeric "214";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "214" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "DOP" ].
<http://telegraphis.net/data/currencies/DOP#DOP> money:currencyOf <http://telegraphis.net/data/countries/DO#DO>.
<http://telegraphis.net/data/currencies/DOP#DOP> owl:sameAs <http://dbpedia.org/resource/Dominican_peso>.
<http://telegraphis.net/data/currencies/DZD#DZD> a money:Currency;
money:name "Algerian dinar"@en;
money:shortName "dinar"@en;
money:symbol "د.ج";
money:minorName "santeem"@en;
money:minorExponent "2";
money:isoAlpha "DZD";
money:isoNumeric "012";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "012" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "DZD" ].
<http://telegraphis.net/data/currencies/DZD#DZD> money:currencyOf <http://telegraphis.net/data/countries/DZ#DZ>.
<http://telegraphis.net/data/currencies/DZD#DZD> owl:sameAs <http://dbpedia.org/resource/Algerian_dinar>.
<http://telegraphis.net/data/currencies/EEK#EEK> a money:Currency;
money:name "Estonian kroon"@en;
money:shortName "kroon"@en;
money:symbol "KR";
money:minorName "sent"@en;
money:minorExponent "2";
money:isoAlpha "EEK";
money:isoNumeric "233";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "233" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "EEK" ].
<http://telegraphis.net/data/currencies/EEK#EEK> money:currencyOf <http://telegraphis.net/data/countries/EE#EE>.
<http://telegraphis.net/data/currencies/EEK#EEK> owl:sameAs <http://dbpedia.org/resource/Estonian_kroon>.
<http://telegraphis.net/data/currencies/EGP#EGP> a money:Currency;
money:name "Egyptian pound"@en;
money:shortName "pound"@en;
money:symbol "£";
money:minorName "piastre"@en;
money:minorSymbol "Pt.";
money:minorExponent "2";
money:isoAlpha "EGP";
money:isoNumeric "818";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "818" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "EGP" ].
<http://telegraphis.net/data/currencies/EGP#EGP> money:currencyOf <http://telegraphis.net/data/countries/EG#EG>.
<http://telegraphis.net/data/currencies/EGP#EGP> owl:sameAs <http://dbpedia.org/resource/Egyptian_pound>.
<http://telegraphis.net/data/currencies/ERN#ERN> a money:Currency;
money:name "Eritrean nakfa"@en;
money:shortName "nakfa"@en;
money:symbol "Nfk";
money:minorName "cent"@en;
money:minorExponent "2";
money:isoAlpha "ERN";
money:isoNumeric "232";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "232" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "ERN" ].
<http://telegraphis.net/data/currencies/ERN#ERN> money:currencyOf <http://telegraphis.net/data/countries/ER#ER>.
<http://telegraphis.net/data/currencies/ERN#ERN> owl:sameAs <http://dbpedia.org/resource/Eritrean_nakfa>.
<http://telegraphis.net/data/currencies/ETB#ETB> a money:Currency;
money:name "Ethiopian birr"@en;
money:shortName "birr"@en;
money:symbol "Br";
money:minorName "santim"@en;
money:minorExponent "2";
money:isoAlpha "ETB";
money:isoNumeric "230";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "230" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "ETB" ].
<http://telegraphis.net/data/currencies/ETB#ETB> money:currencyOf <http://telegraphis.net/data/countries/ET#ET>.
<http://telegraphis.net/data/currencies/ETB#ETB> owl:sameAs <http://dbpedia.org/resource/Ethiopian_birr>.
<http://telegraphis.net/data/currencies/EUR#EUR> a money:Currency;
money:name "Euro"@en;
money:shortName "euro"@en;
money:symbol "€";
money:minorName "cent"@en;
money:minorExponent "2";
money:isoAlpha "EUR";
money:isoNumeric "978";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "978" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "EUR" ].
<http://telegraphis.net/data/currencies/EUR#EUR> money:currencyOf <http://telegraphis.net/data/countries/AD#AD>.
<http://telegraphis.net/data/currencies/EUR#EUR> money:currencyOf <http://telegraphis.net/data/countries/AT#AT>.
<http://telegraphis.net/data/currencies/EUR#EUR> money:currencyOf <http://telegraphis.net/data/countries/BE#BE>.
<http://telegraphis.net/data/currencies/EUR#EUR> money:currencyOf <http://telegraphis.net/data/countries/CY#CY>.
<http://telegraphis.net/data/currencies/EUR#EUR> money:currencyOf <http://telegraphis.net/data/countries/DE#DE>.
<http://telegraphis.net/data/currencies/EUR#EUR> money:currencyOf <http://telegraphis.net/data/countries/ES#ES>.
<http://telegraphis.net/data/currencies/EUR#EUR> money:currencyOf <http://telegraphis.net/data/countries/FI#FI>.
<http://telegraphis.net/data/currencies/EUR#EUR> money:currencyOf <http://telegraphis.net/data/countries/FR#FR>.
<http://telegraphis.net/data/currencies/EUR#EUR> money:currencyOf <http://telegraphis.net/data/countries/GR#GR>.
<http://telegraphis.net/data/currencies/EUR#EUR> money:currencyOf <http://telegraphis.net/data/countries/IE#IE>.
<http://telegraphis.net/data/currencies/EUR#EUR> money:currencyOf <http://telegraphis.net/data/countries/IT#IT>.
<http://telegraphis.net/data/currencies/EUR#EUR> money:currencyOf <http://telegraphis.net/data/countries/LU#LU>.
<http://telegraphis.net/data/currencies/EUR#EUR> money:currencyOf <http://telegraphis.net/data/countries/MC#MC>.
<http://telegraphis.net/data/currencies/EUR#EUR> money:currencyOf <http://telegraphis.net/data/countries/ME#ME>.
<http://telegraphis.net/data/currencies/EUR#EUR> money:currencyOf <http://telegraphis.net/data/countries/MT#MT>.
<http://telegraphis.net/data/currencies/EUR#EUR> money:currencyOf <http://telegraphis.net/data/countries/NL#NL>.
<http://telegraphis.net/data/currencies/EUR#EUR> money:currencyOf <http://telegraphis.net/data/countries/PT#PT>.
<http://telegraphis.net/data/currencies/EUR#EUR> money:currencyOf <http://telegraphis.net/data/countries/SI#SI>.
<http://telegraphis.net/data/currencies/EUR#EUR> money:currencyOf <http://telegraphis.net/data/countries/SK#SK>.
<http://telegraphis.net/data/currencies/EUR#EUR> money:currencyOf <http://telegraphis.net/data/countries/SM#SM>.
<http://telegraphis.net/data/currencies/EUR#EUR> money:currencyOf <http://telegraphis.net/data/countries/VA#VA>.
<http://telegraphis.net/data/currencies/EUR#EUR> owl:sameAs <http://dbpedia.org/resource/Euro>.
<http://telegraphis.net/data/currencies/FJD#FJD> a money:Currency;
money:name "Fiji dollar"@en;
money:shortName "dollar"@en;
money:symbol "FJ$";
money:minorName "cent"@en;
money:minorExponent "2";
money:isoAlpha "FJD";
money:isoNumeric "242";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "242" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "FJD" ].
<http://telegraphis.net/data/currencies/FJD#FJD> money:currencyOf <http://telegraphis.net/data/countries/FJ#FJ>.
<http://telegraphis.net/data/currencies/FJD#FJD> owl:sameAs <http://dbpedia.org/resource/Fijian_dollar>.
<http://telegraphis.net/data/currencies/FKP#FKP> a money:Currency;
money:name "Falkland Islands pound"@en;
money:shortName "pound"@en;
money:symbol "£";
money:minorName "penny"@en;
money:minorSymbol "p";
money:minorExponent "2";
money:isoAlpha "FKP";
money:isoNumeric "238";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "238" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "FKP" ].
<http://telegraphis.net/data/currencies/FKP#FKP> money:currencyOf <http://telegraphis.net/data/countries/FK#FK>.
<http://telegraphis.net/data/currencies/FKP#FKP> owl:sameAs <http://dbpedia.org/resource/Falkland_Islands_pound>.
<http://telegraphis.net/data/currencies/GBP#GBP> a money:Currency;
money:name "British pound sterling"@en;
money:shortName "pound"@en;
money:symbol "£";
money:minorName "penny"@en;
money:minorSymbol "p";
money:minorExponent "2";
money:isoAlpha "GBP";
money:isoNumeric "826";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "826" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "GBP" ].
<http://telegraphis.net/data/currencies/GBP#GBP> money:currencyOf <http://telegraphis.net/data/countries/GB#GB>.
<http://telegraphis.net/data/currencies/GBP#GBP> money:currencyOf <http://telegraphis.net/data/countries/GG#GG>.
<http://telegraphis.net/data/currencies/GBP#GBP> money:currencyOf <http://telegraphis.net/data/countries/GS#GS>.
<http://telegraphis.net/data/currencies/GBP#GBP> money:currencyOf <http://telegraphis.net/data/countries/IM#IM>.
<http://telegraphis.net/data/currencies/GBP#GBP> money:currencyOf <http://telegraphis.net/data/countries/IO#IO>.
<http://telegraphis.net/data/currencies/GBP#GBP> money:currencyOf <http://telegraphis.net/data/countries/JE#JE>.
<http://telegraphis.net/data/currencies/GBP#GBP> owl:sameAs <http://dbpedia.org/resource/Pound_sterling>.
<http://telegraphis.net/data/currencies/GEL#GEL> a money:Currency;
money:name "Georgian lari"@en;
money:shortName "lari"@en;
money:minorName "tetri"@en;
money:minorExponent "2";
money:isoAlpha "GEL";
money:isoNumeric "981";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "981" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "GEL" ].
<http://telegraphis.net/data/currencies/GEL#GEL> money:currencyOf <http://telegraphis.net/data/countries/GE#GE>.
<http://telegraphis.net/data/currencies/GEL#GEL> owl:sameAs <http://dbpedia.org/resource/Georgian_lari>.
<http://telegraphis.net/data/currencies/GHS#GHS> a money:Currency;
money:name "Ghanaian cedi"@en;
money:shortName "cedi"@en;
money:symbol "₵";
money:minorName "pesewa"@en;
money:minorExponent "2";
money:isoAlpha "GHS";
money:isoNumeric "936";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "936" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "GHS" ].
<http://telegraphis.net/data/currencies/GHS#GHS> money:currencyOf <http://telegraphis.net/data/countries/GH#GH>.
<http://telegraphis.net/data/currencies/GHS#GHS> owl:sameAs <http://dbpedia.org/resource/Ghanaian_cedi>.
<http://telegraphis.net/data/currencies/GIP#GIP> a money:Currency;
money:name "Gibraltar pound"@en;
money:shortName "pound"@en;
money:symbol "£";
money:minorName "penny"@en;
money:minorSymbol "p";
money:minorExponent "2";
money:isoAlpha "GIP";
money:isoNumeric "292";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "292" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "GIP" ].
<http://telegraphis.net/data/currencies/GIP#GIP> money:currencyOf <http://telegraphis.net/data/countries/GI#GI>.
<http://telegraphis.net/data/currencies/GIP#GIP> owl:sameAs <http://dbpedia.org/resource/Gibraltar_pound>.
<http://telegraphis.net/data/currencies/GMD#GMD> a money:Currency;
money:name "Gambian dalasi"@en;
money:shortName "dalasi"@en;
money:symbol "D";
money:minorName "butut"@en;
money:minorExponent "2";
money:isoAlpha "GMD";
money:isoNumeric "270";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "270" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "GMD" ].
<http://telegraphis.net/data/currencies/GMD#GMD> money:currencyOf <http://telegraphis.net/data/countries/GM#GM>.
<http://telegraphis.net/data/currencies/GMD#GMD> owl:sameAs <http://dbpedia.org/resource/Gambian_dalasi>.
<http://telegraphis.net/data/currencies/GNF#GNF> a money:Currency;
money:name "Guinean franc"@en;
money:shortName "franc"@en;
money:symbol "FG";
money:minorName "centime"@en;
money:minorExponent "0";
money:isoAlpha "GNF";
money:isoNumeric "324";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "324" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "GNF" ].
<http://telegraphis.net/data/currencies/GNF#GNF> money:currencyOf <http://telegraphis.net/data/countries/GN#GN>.
<http://telegraphis.net/data/currencies/GNF#GNF> owl:sameAs <http://dbpedia.org/resource/Guinean_franc>.
<http://telegraphis.net/data/currencies/GTQ#GTQ> a money:Currency;
money:name "Guatemalan quetzal"@en;
money:shortName "quetzal"@en;
money:symbol "Q";
money:minorName "centavo"@en;
money:minorExponent "2";
money:isoAlpha "GTQ";
money:isoNumeric "320";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "320" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "GTQ" ].
<http://telegraphis.net/data/currencies/GTQ#GTQ> money:currencyOf <http://telegraphis.net/data/countries/GT#GT>.
<http://telegraphis.net/data/currencies/GTQ#GTQ> owl:sameAs <http://dbpedia.org/resource/Guatemalan_quetzal>.
<http://telegraphis.net/data/currencies/GYD#GYD> a money:Currency;
money:name "Guyanese dollar"@en;
money:shortName "dollar"@en;
money:symbol "G$";
money:minorName "cent"@en;
money:minorExponent "2";
money:isoAlpha "GYD";
money:isoNumeric "328";
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217num>;
rdf:value "328" ];
code:hasCode [ a code:Code;
code:inCodeScheme <http://telegraphis.net/data/currencies/codeSchemes#iso4217al>;
rdf:value "GYD" ].
<http://telegraphis.net/data/currencies/GYD#GYD> money:currencyOf <http://telegraphis.net/data/countries/GY#GY>.
<http://telegraphis.net/data/currencies/GYD#GYD> owl:sameAs <http://dbpedia.org/resource/Guyanese_dollar>.
<http://telegraphis.net/data/currencies/HKD#HKD> a money:Currency;
money:name "Hong Kong dollar"@en;