forked from srault95/pysdmx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_sdmx.py
2167 lines (2165 loc) · 153 KB
/
test_sdmx.py
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
import unittest
from pprint import pprint
import sdmx
class EcbTest(unittest.TestCase):
def test_codes(self):
model = {'COLLECTION': {'A': 'Average of observations through period',
'B': 'Beginning of period',
'E': 'End of period',
'H': 'Highest in period',
'L': 'Lowest in period',
'M': 'Middle of period',
'S': 'Summed through period',
'U': 'Unknown',
'V': 'Other',
'Y': 'Annualised summed'},
'CURRENCY': {'ADF': 'Andorran Franc (1-1 peg to the French franc)',
'ADP': 'Andorran Peseta (1-1 peg to the Spanish peseta)',
'AED': 'United Arab Emirates dirham',
'AFA': 'Afghanistan afghani (old)',
'AFN': 'Afghanistan, Afghanis',
'ALL': 'Albanian lek',
'AMD': 'Armenian dram',
'ANG': 'Netherlands Antillean guilder',
'AOA': 'Angola, Kwanza',
'AON': 'Angolan kwanza (old)',
'AOR': 'Angolan kwanza readjustado',
'ARS': 'Argentine peso',
'ATS': 'Austrian schilling',
'AUD': 'Australian dollar',
'AWG': 'Aruban florin/guilder',
'AZM': 'Azerbaijanian manat (old)',
'AZN': 'Azerbaijan, manats',
'BAM': 'Bosnia-Hezergovinian convertible mark',
'BBD': 'Barbados dollar',
'BDT': 'Bangladesh taka',
'BEF': 'Belgian franc',
'BEL': 'Belgian franc (financial)',
'BGL': 'Bulgarian lev (old)',
'BGN': 'Bulgarian lev',
'BHD': 'Bahraini dinar',
'BIF': 'Burundi franc',
'BMD': 'Bermudian dollar',
'BND': 'Brunei dollar',
'BOB': 'Bolivian boliviano',
'BRE': 'Brasilian cruzeiro (old)',
'BRL': 'Brazilian real',
'BSD': 'Bahamas dollar',
'BTN': 'Bhutan ngultrum',
'BWP': 'Botswana pula',
'BYB': 'Belarussian rouble (old)',
'BYR': 'Belarus, Rubles',
'BZD': 'Belize dollar',
'C36': 'European Commission IC-36 group of currencies '
'(European Union 27 Member States, i.e. BE, DE, EE, '
'GR, ES, FR, IE, IT, CY, LU, NL, MT, AT, PT, SI, SK, '
'FI, BG, CZ, DK, LV, LT, HU, PL, RO, SE, GB, and US, '
'AU, CA, JP, MX, NZ, NO, CH, TR)',
'CAD': 'Canadian dollar',
'CDF': 'Congo franc (ex Zaire)',
'CHE': 'WIR Euro',
'CHF': 'Swiss franc',
'CHW': 'WIR Franc',
'CLF': 'Chile Unidades de fomento',
'CLP': 'Chilean peso',
'CNH': 'Chinese yuan offshore',
'CNY': 'Chinese yuan renminbi',
'COP': 'Colombian peso',
'COU': 'Unidad de Valor Real',
'CRC': 'Costa Rican colon',
'CSD': 'Serbian dinar',
'CUC': 'Cuban convertible peso',
'CUP': 'Cuban peso',
'CVE': 'Cape Verde escudo',
'CYP': 'Cyprus pound',
'CZK': 'Czech koruna',
'DEM': 'German mark',
'DJF': 'Djibouti franc',
'DKK': 'Danish krone',
'DOP': 'Dominican peso',
'DZD': 'Algerian dinar',
'E0': 'Euro area changing composition vis-a-vis the EER-12 '
'group of trading partners (AU, CA, DK, HK, JP, NO, SG, '
'KR, SE, CH, GB and US)',
'E1': 'Euro area-18 countries vis-a-vis the EER-20 group of '
'trading partners (AU, CA, DK, HK, JP, NO, SG, KR, SE, '
'CH, GB, US, BG, CZ, LT, HU, PL, RO, HR and CN)',
'E2': 'Euro area-18 countries vis-a-vis the EER-19 group of '
'trading partners (AU, CA, DK, HK, JP, NO, SG, KR, SE, '
'CH, GB, US, BG, CZ, LT, HU, PL, RO, and CN)',
'E3': 'Euro area-18 countries vis-a-vis the EER-39 group of '
'trading partners (AU, CA, DK, HK, JP, NO, SG, KR, SE, '
'CH, GB, US, BG, CZ, LT, HU, PL, RO, CN, DZ, AR, BR, '
'CL, HR, IS, IN, ID, IL, MY, MX, MA, NZ, PH, RU, ZA, '
'TW, TH, TR and VE)',
'E4': 'Euro area-18 countries vis-a-vis the EER-12 group of '
'trading partners (AU, CA, DK, HK, JP, NO, SG, KR, SE, '
'CH, GB and US)',
'E5': 'Euro area-19 countries vis-a-vis the EER-19 group of '
'trading partners (AU, CA, DK, HK, JP, NO, SG, KR, SE, '
'CH, GB, US, BG, CZ, HU, PL, RO, HR and CN)',
'E6': 'Euro area-19 countries vis-a-vis the EER-18 group of '
'trading partners (AU, CA, DK, HK, JP, NO, SG, KR, SE, '
'CH, GB, US, BG, CZ, HU, PL, RO, and CN)',
'E7': 'Euro area-19 countries vis-a-vis the EER-38 group of '
'trading partners (AU, CA, DK, HK, JP, NO, SG, KR, SE, '
'CH, GB, US, BG, CZ, HU, PL, RO, CN, DZ, AR, BR, CL, '
'HR, IS, IN, ID, IL, MY, MX, MA, NZ, PH, RU, ZA, TW, '
'TH, TR and VE)',
'E8': 'Euro area-19 countries vis-a-vis the EER-12 group of '
'trading partners (AU, CA, DK, HK, JP, NO, SG, KR, SE, '
'CH, GB and US)',
'ECS': 'Ecuador sucre',
'EEK': 'Estonian kroon',
'EGP': 'Egyptian pound',
'ERN': 'Erytrean nafka',
'ESP': 'Spanish peseta',
'ETB': 'Ethiopian birr',
'EUR': 'Euro',
'FIM': 'Finnish markka',
'FJD': 'Fiji dollar',
'FKP': 'Falkland Islands pound',
'FRF': 'French franc',
'GBP': 'UK pound sterling',
'GEL': 'Georgian lari',
'GGP': 'Guernsey, Pounds',
'GHC': 'Ghana Cedi (old)',
'GHS': 'Ghana Cedi',
'GIP': 'Gibraltar pound',
'GMD': 'Gambian dalasi',
'GNF': 'Guinea franc',
'GRD': 'Greek drachma',
'GTQ': 'Guatemalan quetzal',
'GWP': 'Guinea-Bissau peso (old)',
'GYD': 'Guyanan dollar',
'H1': 'Euro area 18 currencies (FR, BE, LU, NL, DE, IT, IE, '
'PT, ES, FI, AT, GR, SI, CY, EE, LV, MT, SK)',
'H10': 'ECB EER-38 group of currencies and Euro area (latest '
'composition) currencies '
'(FR,BE,LU,NL,DE,IT,IE,PT,ES,FI,AT,GR,SI,AU,CA,CN,DK,HK,JP,NO,SG,KR,SE,CH,GB,US,CY,CZ,EE,HU,LV,LT,MT,PL,SK,BG,RO,NZ,DZ,AR,BR,HR,IN,ID,IL,MY,MX,MA,PH,RU,ZA,TW,TH,TR,IS,CL,VE)',
'H11': 'ECB EER-19 group of currencies and Euro area (latest '
'composition) currencies (FR, BE, LU, NL, DE, IT, IE, '
'PT, ES, FI, AT, GR, SI, AU, CA, CN, DK, HK, JP, NO, '
'SG, KR, SE, CH, GB, US, CY, CZ, EE, HU, LV, LT, MT, '
'PL, SK, BG, RO, HR)',
'H2': 'ECB EER-12 group of currencies and Euro area (latest '
'composition) currencies (FR, BE, LU, NL, DE, IT, IE, '
'PT, ES, FI, AT, GR, SI, CY, EE, LV, MT, SK, AU, CA, '
'CN, DK, HK, JP, NO, SG, KR, SE, CH, GB, US)',
'H3': 'ECB EER-19 group of currencies and Euro area (latest '
'composition) currencies (FR, BE, LU, NL, DE, IT, IE, '
'PT, ES, FI, AT, GR, SI, AU, CA, CN, DK, HK, JP, NO, '
'SG, KR, SE, CH, GB, US, CY, CZ, EE, HU, LV, LT, MT, '
'PL, SK, BG, RO)',
'H36': 'European Commission IC-36 group of currencies '
'(European Union 27 Member States, i.e. BE, DE, EE, '
'GR, ES, FR, IE, IT, CY, LU, NL, MT, AT, PT, SI, SK, '
'FI, BG, CZ, DK, LV, LT, HU, PL, RO, SE, GB, and US, '
'AU, CA, JP, MX, NZ, NO, CH, TR)',
'H37': 'European Commission IC-37 group of currencies '
'(European Union 28 Member States, i.e. BE, DE, EE, '
'GR, ES, FR, IE, IT, CY, LU, NL, MT, AT, PT, SI, SK, '
'FI, BG, CZ, DK, HR, LV, LT, HU, PL, RO, SE, GB, and '
'US, AU, CA, JP, MX, NZ, NO, CH, TR)',
'H4': 'ECB EER-39 group of currencies and Euro area (latest '
'composition) currencies '
'(FR,BE,LU,NL,DE,IT,IE,PT,ES,FI,AT,GR,SI,AU,CA,CN,DK,HK,JP,NO,SG,KR,SE,CH,GB,US,CY,CZ,EE,HU,LV,LT,MT,PL,SK,BG,RO,NZ,DZ,AR,BR,HR,IN,ID,IL,MY,MX,MA,PH,RU,ZA,TW,TH,TR,IS,CL,VE)',
'H42': 'European Commission IC-42 group of currencies '
'(European Union 28 Member States, i.e. '
'BE,DE,EE,GR,ES,FR,IE,IT,CY,LU,NL,MT,AT,PT,SI,SK,FI,BG,CZ,DK,HR,LV,LT,HU,PL,RO,SE,GB, '
'and US,AU,CA,JP,MX,NZ,NO,CH,TR,KR,CN,HK,RU,BR)',
'H5': 'ECB EER-20 group of currencies and Euro area (latest '
'composition) currencies (FR, BE, LU, NL, DE, IT, IE, '
'PT, ES, FI, AT, GR, SI, AU, CA, CN, DK, HK, JP, NO, '
'SG, KR, SE, CH, GB, US, CY, CZ, EE, HU, LV, LT, MT, '
'PL, SK, BG, RO, HR)',
'H6': 'ECB EER-12 group of currencies and Euro area (latest '
'composition) currencies (FR, BE, LU, NL, DE, IT, IE, '
'PT, ES, FI, AT, GR, SI, AU, CA, CN, DK, HK, JP, NO, '
'SG, KR, SE, CH, GB, US, CY, CZ, EE, HU, LV, LT, MT, '
'PL, SK, BG, RO, HR, TR and RU)',
'H7': 'Euro area 19 currencies (FR, BE, LU, NL, DE, IT, IE, '
'PT, ES, FI, AT, GR, SI, CY, EE, LT, LV, MT, SK)',
'H8': 'ECB EER-12 group of currencies and Euro area (latest '
'composition) currencies (FR, BE, LU, NL, DE, IT, IE, '
'PT, ES, FI, AT, GR, SI, CY, EE, LT, LV, MT, SK, AU, '
'CA, CN, DK, HK, JP, NO, SG, KR, SE, CH, GB, US)',
'H9': 'ECB EER-18 group of currencies and Euro area (latest '
'composition) currencies (FR, BE, LU, NL, DE, IT, IE, '
'PT, ES, FI, AT, GR, SI, AU, CA, CN, DK, HK, JP, NO, '
'SG, KR, SE, CH, GB, US, CY, CZ, EE, HU, LV, LT, MT, '
'PL, SK, BG, RO)',
'HKD': 'Hong Kong dollar',
'HKQ': 'Hong Kong dollar (old)',
'HNL': 'Honduran lempira',
'HRK': 'Croatian kuna',
'HTG': 'Haitian gourde',
'HUF': 'Hungarian forint',
'IDR': 'Indonesian rupiah',
'IEP': 'Irish pound',
'ILS': 'Israeli shekel',
'IMP': 'Isle of Man, Pounds',
'INR': 'Indian rupee',
'IQD': 'Iraqi dinar',
'IRR': 'Iranian rial',
'ISK': 'Iceland krona',
'ITL': 'Italian lira',
'JEP': 'Jersey, Pounds',
'JMD': 'Jamaican dollar',
'JOD': 'Jordanian dinar',
'JPY': 'Japanese yen',
'KES': 'Kenyan shilling',
'KGS': 'Kyrgyzstan som',
'KHR': 'Kampuchean real (Cambodian)',
'KMF': 'Comoros franc',
'KPW': 'Korean won (North)',
'KRW': 'Korean won (Republic)',
'KWD': 'Kuwait dinar',
'KYD': 'Cayman Islands dollar',
'KZT': 'Kazakstan tenge',
'LAK': 'Lao kip',
'LBP': 'Lebanese pound',
'LKR': 'Sri Lanka rupee',
'LRD': 'Liberian dollar',
'LSL': 'Lesotho loti',
'LTL': 'Lithuanian litas',
'LUF': 'Luxembourg franc',
'LVL': 'Latvian lats',
'LYD': 'Libyan dinar',
'MAD': 'Moroccan dirham',
'MDL': 'Moldovian leu',
'MGA': 'Madagascar, Ariary',
'MGF': 'Malagasy franc',
'MKD': 'Macedonian denar',
'MMK': 'Myanmar kyat',
'MNT': 'Mongolian tugrik',
'MOP': 'Macau pataca',
'MRO': 'Mauritanian ouguiya',
'MTL': 'Maltese lira',
'MUR': 'Mauritius rupee',
'MVR': 'Maldive rufiyaa',
'MWK': 'Malawi kwacha',
'MXN': 'Mexican peso',
'MXP': 'Mexican peso (old)',
'MXV': 'Mexican Unidad de Inversion (UDI)',
'MYR': 'Malaysian ringgit',
'MZM': 'Mozambique metical (old)',
'MZN': 'Mozambique, Meticais',
'NAD': 'Namibian dollar',
'NGN': 'Nigerian naira',
'NIO': 'Nicaraguan cordoba',
'NLG': 'Netherlands guilder',
'NOK': 'Norwegian krone',
'NPR': 'Nepaleese rupee',
'NZD': 'New Zealand dollar',
'OMR': 'Oman Sul rial',
'PAB': 'Panama balboa',
'PEN': 'Peru nuevo sol',
'PGK': 'Papua New Guinea kina',
'PHP': 'Philippine peso',
'PKR': 'Pakistan rupee',
'PLN': 'Polish zloty',
'PLZ': 'Polish zloty (old)',
'PTE': 'Portugese escudo',
'PYG': 'Paraguay guarani',
'QAR': 'Qatari rial',
'ROL': 'Romanian leu (old)',
'RON': 'Romanian leu',
'RSD': 'Serbian dinar',
'RUB': 'Rouble',
'RUR': 'Russian ruble (old)',
'RWF': 'Rwanda franc',
'SAR': 'Saudi riyal',
'SBD': 'Solomon Islands dollar',
'SCR': 'Seychelles rupee',
'SDD': 'Sudanese dinar',
'SDG': 'Sudan, Dinars',
'SDP': 'Sudanese pound (old)',
'SEK': 'Swedish krona',
'SGD': 'Singapore dollar',
'SHP': 'St. Helena pound',
'SIT': 'Slovenian tolar',
'SKK': 'Slovak koruna',
'SLL': 'Sierra Leone leone',
'SOS': 'Somali shilling',
'SPL': 'Seborga, Luigini',
'SRD': 'Suriname, Dollars',
'SRG': 'Suriname guilder',
'SSP': 'South sudanese pound',
'STD': 'Sao Tome and Principe dobra',
'SVC': 'El Salvador colon',
'SYP': 'Syrian pound',
'SZL': 'Swaziland lilangeni',
'THB': 'Thai bhat',
'TJR': 'Tajikistan rouble',
'TJS': 'Tajikistan, Somoni',
'TMM': 'Turkmenistan manat (old)',
'TMT': 'Turkmenistan manat',
'TND': 'Tunisian dinar',
'TOP': 'Tongan paanga',
'TPE': 'East Timor escudo',
'TRL': 'Turkish lira (old)',
'TRY': 'Turkish lira',
'TTD': 'Trinidad and Tobago dollar',
'TVD': 'Tuvalu, Tuvalu Dollars',
'TWD': 'New Taiwan dollar',
'TZS': 'Tanzania shilling',
'U1': 'Euro and domestic currency',
'UAH': 'Ukraine hryvnia',
'UGX': 'Uganda Shilling',
'USD': 'US dollar',
'UYI': 'Uruguay Peso en Unidades Indexadas',
'UYU': 'Uruguayan peso',
'UZS': 'Uzbekistan sum',
'VEB': 'Venezuela bolivar (old)',
'VEF': 'Venezuela bolivar',
'VND': 'Vietnamese dong',
'VUV': 'Vanuatu vatu',
'WST': 'Samoan tala',
'X1': 'All currencies except national currency',
'X2': 'All currencies except USD',
'X3': 'All currencies except EUR',
'X4': 'All currencies except EUR, USD',
'X5': 'All currencies except EUR, JPY, USD',
'X6': 'All currencies except EUR, CHF, GBP, JPY, USD',
'X7': 'All currencies except EUR, USD, JPY, GBP, CHF, '
'domestic currency',
'XAF': 'CFA franc / BEAC',
'XAG': 'Silver',
'XAU': 'Gold in units of grams',
'XBA': 'European composite unit',
'XBB': 'European Monetary unit EC-6',
'XBC': 'European Unit of Account 9 (E.U.A.-9)',
'XBD': 'European Unit of Account 17 (E.U.A.-17)',
'XCD': 'Eastern Caribbean dollar',
'XDB': 'Currencies included in the SDR basket, gold and SDRs',
'XDC': 'Domestic currency (incl. conversion to current '
'currency made using a fixed parity)',
'XDM': 'Domestic currency (incl. conversion to current '
'currency made using market exchange rate)',
'XDO': 'Other currencies not included in the SDR basket, exc. '
'gold and SDRs',
'XDR': 'Special Drawing Rights (SDR)',
'XEU': 'European Currency Unit (E.C.U.)',
'XFO': 'Gold-Franc',
'XFU': 'UIC-Franc',
'XGO': 'Gold fine troy ounces',
'XNC': 'Euro area non-participating foreign currency',
'XOF': 'CFA franc / BCEAO',
'XPC': 'Euro area participating foreign currency',
'XPD': 'Palladium Ounces',
'XPF': 'Pacific franc',
'XPT': 'Platinum, Ounces',
'XRH': 'Rhodium',
'XSU': 'Sucre',
'XTS': 'Codes specifically reserved for testing purposes',
'XUA': 'ADB Unit of Account',
'XXX': 'Transactions where no currency is involved',
'YER': 'Yemeni rial',
'YUM': 'Yugoslav dinar',
'Z01': 'All currencies combined',
'Z02': 'Euro and euro area national currencies',
'Z03': 'Other EU currencies combined',
'Z04': 'Other currencies than EU combined',
'Z05': 'All currencies other than EU, EUR, USD, CHF, JPY',
'Z06': 'Non-Euro and non-euro area currencies combined',
'Z07': 'All currencies other than domestic, Euro and euro '
'area currencies',
'Z08': 'ECB EER-12 group of currencies (AU, CA, DK, HK, JP, '
'NO, SG, KR, SE, CH, GB, US), changing composition of '
'the euro area',
'Z09': 'EER broad group of currencies including also Greece '
'until 01 january 2001',
'Z0Z': 'Not applicable',
'Z10': 'EER-12 group of currencies (AU, CA, DK, HK, JP, NO, '
'SG, KR, SE, CH, GB, US)',
'Z11': 'EER broad group of currencies (excluding Greece)',
'Z12': 'Euro and Euro Area countries currencies (including '
'Greece)',
'Z13': 'Other EU currencies combined (MU12; excluding GRD)',
'Z14': 'Other currencies than EU15 and EUR combined',
'Z15': 'All currencies other than EU15, EUR, USD, CHF, JPY',
'Z16': 'Non-MU12 currencies combined',
'Z17': 'ECB EER-12 group of currencies and Euro Area '
'countries currencies (FR, BE, LU, NL, DE, IT, IE, PT, '
'ES, FI, AT, GR, AU, CA, DK, HK, JP, NO, SG, KR, SE, '
'CH, GB, US)',
'Z18': 'ECB EER broad group of currencies and Euro Area '
'countries currencies',
'Z19': 'ECB EER-12 group of currencies and Euro area 11 '
'countries currencies (FR, BE, LU, NL, DE, IT, IE, PT, '
'ES, FI, AT, AU, CA, DK, HK, JP, NO, SG, KR, SE, CH, '
'GB, US)',
'Z20': 'ECB EER-12 group of currencies (AU, CA, DK, HK, JP, '
'NO, SG, KR, SE, CH, GB, US) - Euro area 15',
'Z21': 'ECB EER broad group, regional breakdown, '
'industrialised countries',
'Z22': 'ECB EER broad group, regional breakdown, non-Japan '
'Asia',
'Z23': 'ECB EER broad group, regional breakdown, Latin America',
'Z24': 'ECB EER broad group, regional breakdown, Central and '
'Eastern Europe (CEEC)',
'Z25': 'ECB EER broad group, regional breakdown, other '
'countries',
'Z26': 'Euro area 15 countries currencies (FR, BE, LU, NL, '
'DE, IT, IE, PT, ES, FI, AT, GR, SI, MT and CY)',
'Z27': 'ECB EER-12 group of currencies and Euro area 15 '
'country currencies (FR, BE, LU, NL, DE, IT, IE, PT, '
'ES, FI, AT, GR, SI, CY, MT, AU, CA, DK, HK, JP, NO, '
'SG, KR, SE, CH, GB, US)',
'Z28': 'Euro area-16 countries (BE, DE, IE, GR, ES, FR, IT, '
'CY, LU, MT, NL, AT, PT, SI, SK and FI)',
'Z29': 'Euro area-16 countries vis-a-vis the EER-12 group of '
'trading partners and other euro area countries (AU, '
'CA, DK, HK, JP, NO, SG, KR, SE, CH, GB, US, BE, DE, '
'IE, GR, ES, FR, IT, CY, LU, MT, NL, AT, PT, SI, SK '
'and FI)',
'Z30': 'EER-23 group of currencies (CZ, CY, DK, EE, LV, LT, '
'HU, MT, PL, SI, SK, SE, GB, AU, CA, CN, HK, JP, NO, '
'SG, KR, CH, US)',
'Z31': 'EER-42 group of currencies (CZ, CY, DK, EE, LV, LT, '
'HU, MT, PL, SI, SK, SE, GB, AU, CA, CN, HK, JP, NO, '
'SG, KR, CH, US, DZ, AR, BR, BG, HR, IN, ID, IL, MY, '
'MX, MA, NZ, PH, RO, RU, ZA, TW, TH, TR)',
'Z32': 'Euro area-17 countries (BE, DE, EE, IE, GR, ES, FR, '
'IT, CY, LU, MT, NL, AT, PT, SI, SK and FI)',
'Z33': 'Euro area-17 countries vis-a-vis the EER-12 group of '
'trading partners and other euro area countries (AU, '
'CA, DK, HK, JP, NO, SG, KR, SE, CH, GB, US, BE, DE, '
'EE, IE, GR, ES, FR, IT, CY, LU, MT, NL, AT, PT, SI, '
'SK and FI)',
'Z37': 'ECB EER-23 group of currencies and Euro Area '
'countries currencies (FR, BE, LU, NL, DE, IT, IE, PT, '
'ES, FI, AT, GR, CZ, CY, DK, EE, LV, LT, HU, MT, PL, '
'SI, SK, SE, GB, AU, CA, CN, HK, JP, NO, SG, KR, CH, '
'US)',
'Z38': 'ECB EER-42 group of currencies and Euro Area '
'countries currencies (FR, BE, LU, NL, DE, IT, IE, PT, '
'ES, FI, AT, GR, CZ, CY, DK, EE, LV, LT, HU, MT, PL, '
'SI, SK, SE, GB, AU, CA, CN, HK, JP, NO, SG, KR, CH, '
'US, DZ, AR, BR, BG, HR, IN, ID, IL, MY, MX, MA, NZ, '
'PH, RO, RU, ZA, TW, TH, TR)',
'Z40': 'ECB EER-12 group of currencies (AU, CA, DK, HK, JP, '
'NO, SG, KR, SE, CH, GB, US)',
'Z41': 'All currencies other than domestic',
'Z42': 'All currencies other than EUR, USD, GBP, CHF, JPY and '
'domestic',
'Z44': 'Other currencies than EU15, EUR and domestic',
'Z45': 'All currencies other than EU15, EUR, USD, CHF, JPY '
'and domestic',
'Z46': 'All currencies other than EUR, USD, GBP and JPY',
'Z50': 'ECB EER-24 group of currencies (AU, CA, CN, DK, HK, '
'JP, NO, SG, KR, SE, CH, GB, US, CY, CZ, EE, HU, LV, '
'LT, MT, PL, SK, BG, RO)',
'Z51': 'ECB EER-44 group of currencies (AU, CA, CN, DK, HK, '
'JP, NO, SG, KR, SE, CH, GB, US, CY, CZ, EE, HU, LV, '
'LT, MT, PL, SK, BG, RO, NZ, DZ, AR, BR, HR, IN, ID, '
'IL, MY, MX, MA, PH, RU, ZA, TW, TH, TR, IS, CL, VE)',
'Z52': 'Euro and Euro area 13 country currencies (FR, BE, LU, '
'NL, DE, IT, IE, PT, ES, FI, AT, GR, SI)',
'Z53': 'Non-euro area 13 currencies combined (all currencies '
'other than those related to FR, BE, LU, NL, DE, IT, '
'IE, PT, ES, FI, AT, GR, SI)',
'Z54': 'ECB EER-22 group of currencies (AU, CA, CN, DK, HK, '
'JP, NO, SG, KR, SE, CH, GB, US,CZ, EE, HU, LV, LT, '
'PL, SK, BG, RO) - Euro area 15',
'Z55': 'ECB EER-42 group of currencies (AU, CA, CN, DK, HK, '
'JP, NO, SG, KR, SE, CH, GB, US, CZ, EE, HU, LV, LT, '
'PL, SK, BG, RO, NZ, DZ, AR, BR, HR, IN, ID, IL, MY, '
'MX, MA, PH, RU, ZA, TW, TH, TR, IS, CL, VE) - Euro '
'area 15',
'Z56': 'ECB EER-12 group of currencies and Euro area country '
'currencies (FR, BE, LU, NL, DE, IT, IE, PT, ES, FI, '
'AT, GR, SI, AU, CA, DK, HK, JP, NO, SG, KR, SE, CH, '
'GB, US)',
'Z57': 'ECB EER-20 group of currencies and Euro area 17 '
'country currencies (FR, BE, LU, NL, DE, IT, IE, PT, '
'ES, FI, AT, GR, SI, AU, CA, CN, DK, HK, JP, NO, SG, '
'KR, SE, CH, GB, US, CY, CZ, EE, HU, LV, LT, MT, PL, '
'SK, BG, RO)',
'Z58': 'ECB EER-40 group of currencies and Euro area 17 '
'country currencies (FR, BE, LU, NL, DE, IT, IE, PT, '
'ES, FI, AT, GR, SI, AU, CA, CN, DK, HK, JP, NO, SG, '
'KR, SE, CH, GB, US, CY, CZ, EE, HU, LV, LT, MT, PL, '
'SK, BG, RO, NZ, DZ, AR, BR, HR, IN, ID, IL, MY, MX, '
'MA, PH, RU, ZA, TW, TH, TR, IS, CL, VE)',
'Z59': 'Euro area-16 countries vis-a-vis the EER-21 group of '
'trading partners (AU, CA, DK, HK, JP, NO, SG, KR, SE, '
'CH, GB, US, BG, CZ, EE, LV, LT, HU, PL, RO and CN)',
'Z60': 'Euro area-16 countries vis-a-vis the EER-41 group of '
'trading partners (AU, CA, DK, HK, JP, NO, SG, KR, SE, '
'CH, GB, US, BG, CZ, EE, LV, LT, HU, PL, RO, CN, DZ, '
'AR, BR, CL, HR, IS, IN, ID, IL, MY, MX, MA, NZ, PH, '
'RU, ZA, TW, TH, TR and VE)',
'Z61': 'ECB EER-21 group of currencies and Euro area 17 '
'country currencies (FR, BE, LU, NL, DE, IT, IE, PT, '
'ES, FI, AT, GR, SI, AU, CA, CN, DK, HK, JP, NO, SG, '
'KR, SE, CH, GB, US, CY, CZ, EE, HU, LV, LT, MT, PL, '
'SK, BG, RO, HR)',
'Z62': 'Euro and Euro area 15 country currencies (FR, BE, LU, '
'NL, DE, IT, IE, PT, ES, FI, AT, GR, SI, CY, MT)',
'Z63': 'Non-euro area 15 currencies combined (all currencies '
'other than those related to FR, BE, LU, NL, DE, IT, '
'IE, PT, ES, FI, AT, GR, SI, CY, MT)',
'Z64': 'Euro area-17 countries vis-a-vis the EER-20 group of '
'trading partners (AU, CA, DK, HK, JP, NO, SG, KR, SE, '
'CH, GB, US, BG, CZ, LV, LT, HU, PL, RO and CN)',
'Z65': 'Euro area-17 countries vis-a-vis the EER-40 group of '
'trading partners (AU, CA, DK, HK, JP, NO, SG, KR, SE, '
'CH, GB, US, BG, CZ, LV, LT, HU, PL, RO, CN, DZ, AR, '
'BR, CL, HR, IS, IN, ID, IL, MY, MX, MA, NZ, PH, RU, '
'ZA, TW, TH, TR and VE)',
'Z66': 'Euro area-17 countries vis-a-vis the EER-21 group of '
'trading partners (AU, CA, DK, HK, JP, NO, SG, KR, SE, '
'CH, GB, US, BG, CZ, LV, LT, HU, PL, RO, HR and CN)',
'Z67': 'Euro area-16 countries vis-a-vis the EER-12 group of '
'trading partners (AU, CA, DK, HK, JP, NO, SG, KR, SE, '
'CH, GB and US)',
'Z68': 'Euro area-17 countries vis-a-vis the EER-12 group of '
'trading partners (AU, CA, DK, HK, JP, NO, SG, KR, SE, '
'CH, GB and US)',
'Z69': 'Euro area-17 countries vis-a-vis the EER-23 group of '
'trading partners (AU, CA, DK, HK, JP, NO, SG, KR, SE, '
'CH, GB, US, BG, CZ, LV, LT, HU, PL, RO, HR, TR, RU '
'and CN)',
'Z70': 'ECB EER-23 group of currencies and Euro area 17 '
'country currencies (FR, BE, LU, NL, DE, IT, IE, PT, '
'ES, FI, AT, GR, SI, AU, CA, CN, DK, HK, JP, NO, SG, '
'KR, SE, CH, GB, US, CY, CZ, EE, HU, LV, LT, MT, PL, '
'SK, BG, RO, HR, TR and RU)',
'Z72': 'Euro and Euro area 16 country currencies (FR, BE, LU, '
'NL, DE, IT, IE, PT, ES, FI, AT, GR, SI, CY, MT, SK)',
'Z73': 'Non-euro area 16 currencies combined (all currencies '
'other than those related to FR, BE, LU, NL, DE, IT, '
'IE, PT, ES, FI, AT, GR, SI, CY, MT, SK)',
'Z82': 'Euro and Euro area 17 country currencies (FR, BE, LU, '
'NL, DE, IT, IE, PT, ES, FI, AT, GR, SI, CY, MT, SK, '
'EE)',
'Z83': 'Non-euro area 17 currencies combined (all currencies '
'other than those related to FR, BE, LU, NL, DE, IT, '
'IE, PT, ES, FI, AT, GR, SI, CY, MT, SK, EE)',
'ZAR': 'South African Rand',
'ZMK': 'Zambian kwacha',
'ZMW': 'New zambian kwacha',
'ZWD': 'Zimbabwe dollar',
'ZWL': 'Fourth Zimbabwe dollar',
'ZWN': 'Zimbabwe, Zimbabwe Dollars',
'ZWR': 'Third Zimbabwe dollar',
'_T': 'All currencies of denomination',
'_X': 'Not specified',
'_Z': 'Not applicable'},
'DECIMALS': {'0': 'Zero',
'1': 'One',
'10': 'Ten',
'11': 'Eleven',
'12': 'Twelve',
'13': 'Thirteen',
'14': 'Fourteen',
'15': 'Fifteen',
'2': 'Two',
'3': 'Three',
'4': 'Four',
'5': 'Five',
'6': 'Six',
'7': 'Seven',
'8': 'Eight',
'9': 'Nine'},
'EXR_SUFFIX': {'A': 'Average or standardised measure for given frequency',
'E': 'End-of-period',
'P': 'Growth rate to previous period',
'R': 'Annual rate of change',
'S': 'Accumulated perc change compared to 1998 (Dec 1998 '
'for monthly series and 1998Q4 for quart. series)',
'T': '3-year percentage change'},
'EXR_TYPE': {'BRC0': 'Real bilateral exchange rate, CPI deflated',
'CR00': 'Central rate',
'DFC0': 'Real effective exch. rate deflator based on CPI',
'DFC1': 'Real effective exch. rate deflator based on retail '
'prices',
'DFD0': 'Real effective exch. rate deflator based on GDP '
'deflator',
'DFM0': 'Real effective exch. rate deflator based on import '
'unit values',
'DFP0': 'Real effective exch. rate deflator based on producer '
'prices',
'DFU0': 'Real effective exch. rate deflator based on ULC '
'manufacturing',
'DFU1': 'Real effective exch. rate deflator based on ULC '
'total economy',
'DFW0': 'Real effective exch. rate deflator based on '
'wholesale prices',
'DFX0': 'Real effective exch. rate deflator based on export '
'unit values',
'EN00': 'Nominal effective exch. rate',
'ER00': 'Constant (real) exchange rate',
'ERC0': 'Real effective exch. rate CPI deflated',
'ERC1': 'Real effective exch. rate retail prices deflated',
'ERD0': 'Real effective exch. rate GDP deflators deflated',
'ERM0': 'Real effective exch. rate import unit values deflated',
'ERP0': 'Real effective exch. rate producer prices deflated',
'ERU0': 'Real effective exch. rate ULC manufacturing deflated',
'ERU1': 'Real effective exch. rate ULC total economy deflated',
'ERW0': 'Real effective exch. rate wholesale prices deflated',
'ERX0': 'Real effective exch. rate export unit values deflated',
'F01M': '1m-forward',
'F03M': '3m-forward',
'F06M': '6m-forward',
'F12M': '12m-forward',
'IR00': 'Indicative rate',
'NN00': 'Nominal harmonised competitiveness indicator (ECB '
'terminology), Nominal effective exchange rate (EC '
'terminology)',
'NRC0': 'Real harmonised competitiveness indicator CPI '
'deflated (ECB terminology), Real effective exchange '
'rate (EC terminology)',
'NRD0': 'Real harmonised competitiveness indicator GDP '
'deflators deflated',
'NRP0': 'Real harmonised competitiveness indicator Producer '
'Prices deflated',
'NRU0': 'Real harmonised competitiveness indicator ULC '
'manufacturing deflated',
'NRU1': 'Real harmonised competitiveness indicator ULC in '
'total economy deflated',
'OF00': 'Official fixing',
'RR00': 'Reference rate',
'SP00': 'Spot'},
'FREQ': {'A': 'Annual',
'B': 'Business',
'D': 'Daily',
'E': 'Event (not supported)',
'H': 'Half-yearly',
'M': 'Monthly',
'N': 'Minutely',
'Q': 'Quarterly',
'S': 'Half Yearly, semester (value H exists but change to S in '
'2009, move from H to this new value to be agreed in ESCB '
'context)',
'W': 'Weekly'},
'OBS_CONF': {'C': 'Confidential statistical information',
'D': 'Secondary confidentiality set by the sender, not for '
'publication',
'F': 'Free',
'N': 'Not for publication, restricted for internal use only',
'S': 'Secondary confidentiality set and managed by the '
'receiver, not for publication'},
'OBS_STATUS': {'A': 'Normal value',
'B': 'Time series break',
'D': 'Definition differs',
'E': 'Estimated value',
'F': 'Forecast value',
'G': 'Experimental value',
'H': 'Missing value; holiday or weekend',
'I': 'Imputed value (CCSA definition)',
'J': 'Derogation',
'L': 'Missing value; data exist but were not collected',
'M': 'Missing value; data cannot exist',
'N': 'Not significant',
'P': 'Provisional value',
'Q': 'Missing value; suppressed',
'S': 'Strike and any special events',
'U': 'Low reliability',
'V': 'Unvalidated value'},
'ORGANISATION': {'1A0': 'International organisations',
'1B0': 'UN organisations',
'1C0': 'International Monetary Fund (IMF)',
'1D0': 'World Trade Organisation',
'1E0': 'International Bank for Reconstruction and '
'Development',
'1F0': 'International Development Association',
'1G0': 'Other UN Organisations (includes 1H, 1J-1T)',
'1H0': 'UNESCO (United Nations Educational, Scientific '
'and Cultural Organisation)',
'1J0': 'FAO (Food and Agriculture Organisation)',
'1K0': 'WHO (World Health Organisation)',
'1L0': 'IFAD (International Fund for Agricultural '
'Development)',
'1M0': 'IFC (International Finance Corporation)',
'1N0': 'MIGA (Multilateral Investment Guarantee Agency)',
'1O0': 'UNICEF (United Nations Children Fund)',
'1P0': 'UNHCR (United Nations High Commissioner for '
'Refugees)',
'1Q0': 'UNRWA (United Nations Relief and Works Agency for '
'Palestine)',
'1R0': 'IAEA (International Atomic Energy Agency)',
'1S0': 'ILO (International Labour Organisation)',
'1T0': 'ITU (International Telecommunication Union)',
'1U0': 'UNECE (United Nations Economic Commission for '
'Europe)',
'1W0': 'World Bank',
'1Z0': 'Rest of\xa0UN Organisations\xa0n.i.e.',
'4A0': 'European Community Institutions, Organs and '
'Organisms',
'4B0': 'EMS (European Monetary System)',
'4C0': 'European Investment Bank',
'4D0': 'Statistical Office of the European Commission '
'(Eurostat)',
'4D1': 'European Commission (including Eurostat)',
'4E0': 'European Development Fund',
'4F0': 'European Central Bank (ECB)',
'4F1': 'ECB_LM',
'4F2': 'ECB_AC',
'4F3': 'ECB_FO',
'4F4': 'ECB_MB',
'4F5': 'D-Internal Finance',
'4F6': 'ECB, D-BN',
'4F7': 'ECB, DG-P',
'4G0': 'EIF (European Investment Fund)',
'4H0': 'European Community of Steel and Coal',
'4I0': 'Neighbourhood Investment Facility',
'4J0': 'Other EC Institutions, Organs and Organisms '
'covered by General budget',
'4J10': 'European Parliament',
'4J20': 'Council of the European Union',
'4J30': 'Court of Justice',
'4J40': 'Court of Auditors',
'4J50': 'European Council',
'4J60': 'Economic and Social Committee',
'4J70': 'Committee of Regions',
'4J80': 'Other European Community Institutions, Organs '
'and Organisms',
'4K0': 'European Parliament',
'4L0': 'European Council',
'4M0': 'Court of Justice',
'4N0': 'Court of Auditors',
'4P0': 'Economic and Social Committee',
'4Q0': 'Committee of Regions',
'4S0': 'European Stability Mechanism (ESM)',
'4T0': 'Joint Committee of the European Supervisory '
'Authorities (ESAs)',
'4T1': 'European Banking Agency (EBA, European '
'Supervisory Authority)',
'4T10': 'EBA (European Banking Authority)',
'4T2': 'European Insurance and Occupational Pensions '
'Authority (EIOPA, European Supervisory Authority)',
'4T20': 'ESMA (European Securities and Markets Authority)',
'4T3': 'European Securities and Markets Agency (ESMA, '
'European Supervisory Authority)',
'4T30': 'EIOPA (European Insurance and Occupational '
'Pensions Authority)',
'4V0': 'FEMIP (Facility for Euro-Mediterranean Investment '
'and Partnership)',
'4Y0': 'All the European Union Institutions including the '
'ECB and ESM',
'4Z0': 'Other European Community Institutions, Organs and '
'Organisms',
'5A0': 'Organisation for Economic Cooperation and '
'Development (OECD)',
'5B0': 'Bank for International Settlements (BIS)',
'5C0': 'Inter-American Development Bank',
'5D0': 'African Development Bank',
'5E0': 'Asian Development Bank',
'5F0': 'European Bank for Reconstruction and Development',
'5G0': 'IIC (Inter-American Investment Corporation)',
'5H0': 'NIB (Nordic Investment Bank)',
'5I0': 'Eastern Caribbean Central Bank (ECCB)',
'5J0': 'IBEC (International Bank for Economic '
'Co-operation)',
'5K0': 'IIB (International Investment Bank)',
'5L0': 'CDB (Caribbean Development Bank)',
'5M0': 'AMF (Arab Monetary Fund)',
'5N0': 'BADEA (Banque arabe pour le developpement '
'economique en Afrique)',
'5O0': 'Banque Centrale des Etats de l`Afrique de l`Ouest '
'(BCEAO)',
'5P0': 'CASDB (Central African States Development Bank)',
'5Q0': 'African Development Fund',
'5R0': 'Asian Development Fund',
'5S0': 'Fonds special unifie de developpement',
'5T0': 'CABEI (Central American Bank for Economic '
'Integration)',
'5U0': 'ADC (Andean Development Corporation)',
'5V0': 'Other International Organisations (financial '
'institutions)',
'5W0': 'Banque des Etats de l`Afrique Centrale (BEAC)',
'5X0': 'Communaute economique et Monetaire de l`Afrique '
'Centrale (CEMAC)',
'5Y0': 'Eastern Caribbean Currency Union (ECCU)',
'5Z0': 'Other International Financial Organisations n.i.e.',
'6A0': 'Other International Organisations (non-financial '
'institutions)',
'6B0': 'NATO (North Atlantic Treaty Organisation)',
'6C0': 'Council of Europe',
'6D0': 'ICRC (International Committee of the Red Cross)',
'6E0': 'ESA (European Space Agency)',
'6F0': 'EPO (European Patent Office)',
'6G0': 'EUROCONTROL (European Organisation for the Safety '
'of Air Navigation)',
'6H0': 'EUTELSAT (European Telecommunications Satellite '
'Organisation)',
'6I0': 'West African Economic and Monetary Union (WAEMU)',
'6J0': 'INTELSAT (International Telecommunications '
'Satellite Organisation)',
'6K0': 'EBU/UER (European Broadcasting Union/Union '
'europeenne de radio-television)',
'6L0': 'EUMETSAT (European Organisation for the '
'Exploitation of Meteorological Satellites)',
'6M0': 'ESO (European Southern Observatory)',
'6N0': 'ECMWF (European Centre for Medium-Range Weather '
'Forecasts)',
'6O0': 'EMBL (European Molecular Biology Laboratory)',
'6P0': 'CERN (European Organisation for Nuclear Research)',
'6Q0': 'IOM (International Organisation for Migration)',
'6R0': 'Islamic Development Bank (IDB)',
'6S0': 'Eurasian Development Bank (EDB)',
'6T0': 'Paris Club Creditor Institutions',
'6Z0': 'Other International Non-Financial Organisations '
'n.i.e.',
'7A0': 'WAEMU (West African Economic and Monetary Union)',
'7B0': 'IDB (Islamic Development Bank)',
'7C0': 'EDB (Eurasian Development Bank )',
'7D0': 'Paris Club Creditor Institutions',
'7E0': 'CEB (Council of Europe Development Bank)',
'7F0': 'International Union of Credit and Investment '
'Insurers',
'7G0': 'Black Sea Trade and Development Banks',
'7H0': 'AFREXIMBANK (African Export-Import Bank)',
'7I0': 'BLADEX (Banco Latino Americano De Comercio '
'Exterior)',
'7J0': 'FLAR (Fondo Latino Americano de Reservas)',
'7K0': 'Fonds Belgo-Congolais d Amortissement et de '
'Gestion',
'7L0': 'IFFIm (International finance Facility for '
'Immunisation)',
'7M0': 'EUROFIMA (European Company for the Financing of '
'Railroad Rolling Stock)',
'7Z0': 'International Organisations excl. European '
'Community Institutions (4A)',
'8A0': 'International Union of Credit and Investment '
'Insurers',
'9A0': 'International Organisations excl. European '
'Community Institutions (4Y)',
'AE1': 'Central Statistical Organization, part of the '
'Ministry of Economy and Planning (United Arab '
'Emirates)',
'AE2': 'Central Bank of the United Arab Emirates',
'AE4': 'Ministry of Finance and Industry (United Arab '
'Emirates)',
'AF2': 'Da Afghanistan Bank',
'AF4': 'Ministry of Finance (Afghanistan, Islamic State '
'of)',
'AG2': 'Eastern Caribbean Central Bank (ECCB) (Antigua '
'and Barbuda)',
'AG4': 'Ministry of Finance (Antigua and Barbuda)',
'AI1': 'Central Statistical Office (Anguilla)',
'AI4': 'Ministry of Finance (Anguilla)',
'AI99': 'Other competent National Authority (Anguilla)',
'AL1': 'Institution of Statistics (Albania)',
'AL2': 'Bank of Albania',
'AL4': 'Ministere des Finances (Albania)',
'AM1': 'State National Statistics Service (Armenia)',
'AM2': 'Central Bank of Armenia',
'AM4': 'Ministry of Finance and Economy (Armenia)',
'AM99': 'Other competent National Authority (Armenia, '
'Republic of)',
'AN1': 'Central Bureau of Statistics (Netherlands '
'Antilles)',
'AN2': 'Bank of the Netherlands Antilles',
'AN99': 'Other competent National Authority (Netherlands '
'Antilles)',
'AO1': 'National Institute of Statistics (Angola)',
'AO2': 'Banco Nacional de Angola',
'AO4': 'Ministerio das Financas (Angola)',
'AR1': 'Instituto Nacional de Estadistica y Censos '
'(Argentina)',
'AR2': 'Banco Central de la Republica Argentina',
'AR4': 'Ministerio de Economia (Argentina)',
'AR99': 'Other competent National Authority (Argentina)',
'AT1': 'Statistik Osterreich (Austria)',
'AT2': 'Oesterreichische Nationalbank (Austria)',
'AT99': 'Other competent National Authority (Austria)',
'AU1': 'Australian Bureau of Statistics',
'AU2': 'Reserve Bank of Australia',
'AU3': 'Australian Prudential Regulation Authority',
'AU5': 'Department of the Treasury (Australia)',
'AU99': 'Other competent National Authority (Australia)',
'AW1': 'Central Bureau of Statistics (Aruba)',
'AW2': 'Centrale Bank van Aruba',
'AW99': 'Other competent National Authority (Aruba)',
'AZ1': 'State Statistics Committee of the Azerbaijan '
'Republic',
'AZ2': 'National Bank of Azerbaijan',
'AZ4': 'Ministry of Finance (Azerbaijan)',
'AZ99': 'Other competent National Authority (Azerbaijan, '
'Republic of)',
'B22': 'EU 15 central banks',
'B32': 'EU 25 central banks',
'B42': 'EU 27 central banks',
'B52': 'EU 28 central banks',
'BA1': 'Institute of Statistics (Bosnia and Herzegovina)',
'BA2': 'Central Bank of Bosnia and Herzegovina',
'BA4': 'Ministry of Finance for the Federation of Bosnia '
'and Herzegovina',
'BA99': 'Other competent National Authority (Bosnia and '
'Herzegovina)',
'BB1': 'Barbados Statistical Service',
'BB2': 'Central Bank of Barbados',
'BB4': 'Ministry of Finance and Economic Affairs '
'(Barbados)',
'BB99': 'Other competent National Authority (Barbados)',
'BD1': 'Bangladesh Bureau of Statistics',
'BD2': 'Bangladesh Bank',
'BD4': 'Ministry of Finance (Bangladesh)',
'BE1': 'Institut National de Statistiques de Belgique '
'(Belgium)',
'BE2': 'Banque Nationale de Belgique (Belgium)',
'BE3': 'Federal Public Service Budget (Belgium)',
'BE9': 'Bureau van Dijk',
'BE99': 'Other competent National Authority (Belgium)',
'BF2': 'Banque Centrale des Etats de l`Afrique de l`Ouest '
'(BCEAO) (Burkina Faso)',
'BF4': 'Ministere de l`Economie et des Finances (Burkina '
'Faso)',
'BG1': 'National Statistical Institute of Bulgaria',
'BG2': 'Bulgarian National Bank',
'BG3': 'Prime Ministers Office (Bulgaria)',
'BG4': 'Ministry of Finance (Bulgaria)',
'BG99': 'Other competent National Authority (Bulgaria)',
'BH1': 'Directorate of Statistics (Bahrain)',
'BH2': 'Bahrain Monetary Authority',
'BH4': 'Ministry of Finance and National Economy (Bahrain)',
'BH99': 'Other competent National Authority (Bahrain, '
'Kingdom of)',
'BI2': 'Banque de la Republique du Burundi',
'BI3': 'Ministere du Plan (Burundi)',
'BI4': 'Ministere des finances (Burundi)',
'BJ1': 'Institut National de la Statistique et de '
'l`Analyse Economique (Benin)',
'BJ2': 'Banque Centrale des Etats de l`Afrique de l`Ouest '
'(BCEAO) (Benin)',
'BJ4': 'Ministere des Finances (Benin)',
'BJ99': 'Other competent National Authority (Benin)',
'BM1': 'Bermuda Government - Department of Statistics',
'BM2': 'Bermuda Monetary Authority',
'BM99': 'Other competent National Authority (Bermuda)',
'BN1': 'Department of Statistics (Brunei Darussalam)',
'BN2': 'Brunei Currency and Monetary Board (BCMB)',
'BN3': 'Department of Economic Planning and Development '
'(DEPD) (Brunei Darussalam)',
'BN4': 'Ministry of Finance (Brunei Darussalam)',
'BN99': 'Other competent National Authority (Brunei '
'Darussalam)',
'BO1': 'Instituto Nacional de Estadistica (Bolivia)',
'BO2': 'Banco Central de Bolivia',
'BO3': 'Secretaria Nacional de Hacienda (Bolivia)',
'BO4': 'Ministerio de Hacienda (Bolivia)',
'BO99': 'Other competent National Authority (Bolivia)',
'BR1': 'Brazilian Institute of Statistics and Geography '
'(IBGE) (Brazil)',
'BR2': 'Banco Central do Brasil',
'BR3': 'Ministry of Industry, Commerce and Tourism, '
'Secretariat of Foreign Commerce (SECEX) (Brazil)',
'BR4': 'Ministerio da Fazenda (Brazil)',
'BS1': 'Department of Statistics (Bahamas)',
'BS2': 'The Central Bank of the Bahamas',
'BS4': 'Ministry of Finance (Bahamas)',
'BS99': 'Other competent National Authority (Bahamas, The)',
'BT1': 'Central Statistical Office (Bhutan)',
'BT2': 'Royal Monetary Authority of Bhutan',
'BT4': 'Ministry of Finance (Bhutan)',
'BW1': 'Central Statistics Office (Botswana)',
'BW2': 'Bank of Botswana',
'BW3': 'Department of Customs and Excise (Botswana)',
'BW4': 'Ministry of Finance and Development Planning '
'(Botswana)',
'BY1': 'Ministry of Statistics and Analysis of the '
'Republic of Belarus',
'BY2': 'National Bank of Belarus',
'BY4': 'Ministry of Finance of the Republic of Belarus',
'BY99': 'Other competent National Authority (Belarus)',
'BZ1': 'Central Statistical Office (Belize)',
'BZ2': 'Central Bank of Belize',
'BZ3': 'Ministry of Foreign Affairs (Belize)',
'BZ4': 'Ministry of Finance (Belize)',
'BZ99': 'Other competent National Authority (Belize)',
'C992': 'Central banks of the new EU Member States 2004 '
'(CY,CZ,EE,HU,LV,LT,MT,PL,SK,SI)',
'CA1': 'Statistics Canada',
'CA2': 'Bank of Canada',
'CA99': 'Other competent National Authority (Canada)',
'CD1': 'Institute National de la Statistique (Congo, Dem. '
'Rep. of)',
'CD2': 'Banque Centrale du Congo (Congo, Dem. Rep. of)',
'CD4': 'Ministry of Finance and Budget (Congo, Dem. Rep. '
'of)',
'CD5': 'National Office of Research and Development '
'(Congo, Dem. Rep. of)',
'CD99': 'Other competent National Authority (Congo, '
'Democratic Republic of)',
'CF2': 'Banque des Etats de l`Afrique Centrale (BEAC) '
'(Central African Republic)',
'CF3': 'Presidence de la Republique (Central African '
'Republic)',
'CF4': 'Ministere des Finances, du Plan et de la '
'Cooperation International (Central African '
'Republic)',
'CG1': 'Centre National de la Statistique et des Etudes '
'Economiques (CNSEE) (Congo, Rep of)',
'CG2': 'Banque des Etats de l`Afrique Centrale (BEAC) '
'(Congo, Rep. of)',
'CG4': 'Ministere de l`economie, des finances et du '