forked from rsouza/Python_Course
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdados.csv
We can't make this file beautiful and searchable because it's too large.
1350 lines (1348 loc) · 735 KB
/
dados.csv
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
"Data Source","World Development Indicators",
"Last Updated Date","2015-12-22",
"Country Name","Country Code","Indicator Name","Indicator Code","1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015",
"Brazil","BRA","Agricultural machinery, tractors","AG.AGR.TRAC.NO","","72000","82000","93000","103000","114000","124000","134500","145000","155400","165870","183500","201000","218500","236000","323113","350000","370000","428000","485000","545205","569000","593000","617000","641000","666309","678803","691297","703790","716285","728779","741272","753766","766260","778754","791248","803742","802173","800604","799035","797466","795898","794329","792760","791191","789622","788053","","","","","","","","","",
"Brazil","BRA","Fertilizer consumption (% of fertilizer production)","AG.CON.FERT.PT.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","264.490172269972","315.684800619306","322.15815720138","269.937681288949","261.737007494086","326.585848270781","309.008997833499","269.266612576327","324.868648278904","383.536443566304","367.991885538572","387.150739659597","","",
"Brazil","BRA","Fertilizer consumption (kilograms per hectare of arable land)","AG.CON.FERT.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","120.840839620187","152.305241823189","150.94595108815","120.100351374409","124.031867468147","165.169737380827","141.838604982206","118.256743327655","156.189872518227","183.014804975579","181.732808131447","175.660146747518","","",
"Brazil","BRA","Agricultural land (sq. km)","AG.LND.AGRI.K2","","1505310","1559130","1615110","1660410","1703950","1750940","1795890","1852230","1937780","1953970","1996320","2028370","2058610","2100430","2134160","2160070","2185500","2200390","2225130","2242780","2258240","2281360","2288210","2299240","2310410","2340550","2357910","2376870","2394320","2416080","2449410","2467090","2494630","2514180","2584720","2590190","2595660","2601120","2607590","2614060","2634650","2658680","2684690","2721320","2724326","2727840","2716380","2735000","2735400","2734630","2753730","2756070","2788081","","",
"Brazil","BRA","Agricultural land (% of land area)","AG.LND.AGRI.ZS","","18.0101075119584","18.6540306814674","19.3237969213246","19.8657835355713","20.386712833238","20.9489192571553","21.4867183368549","22.1607917551034","23.1843448422735","23.3780482260407","23.8847399062471","24.2681984269227","24.6300014117974","25.1303519682609","25.5339106547629","25.8439078550969","26.1481621509092","26.3263118349298","26.6223107054919","26.833482090513","27.0184514736532","27.2950680414542","27.3770240747343","27.508991234892","27.6426334088685","28.0032399553011","28.2109416688402","28.4377863974521","28.646564905589","28.9069099105782","29.305682843312","29.5172131598657","29.8467123068051","30.080616022225","30.9245836992441","30.990028882024","31.0554740648039","31.1207996037396","31.1982091709399","31.2756187381403","31.5219654133575","31.8094695709811","32.1206632097572","32.5589186110785","32.5948835506464","32.6369263974999","32.4998145520415","32.7225913899504","32.7273771437186","32.7181645677148","32.9466843101456","32.9746809696894","33.3576728793727","","",
"Brazil","BRA","Arable land (hectares)","AG.LND.ARBL.HA","","22118000","24000000","26000000","27000000","28000000","29000000","30000000","32000000","33000000","35000000","37000000","38000000","39000000","41000000","42000000","43000000","44000000","44000000","44900000","45000000","45600000","47000000","47000000","47100000","47300000","49000000","49500000","49800000","49900000","50681000","51998000","51803000","52264000","52745000","58059000","57858000","57788000","57717200","57746800","57776400","59071000","61504000","64634000","68327000","69157000","69538000","68388000","70250000","70440000","70363000","72273000","72607000","76008100","","",
"Brazil","BRA","Arable land (hectares per person)","AG.LND.ARBL.HA.PC","","0.296063731097995","0.311657757085607","0.32758607503664","0.330267949323001","0.332818016142886","0.335279546316366","0.337633740523001","0.35082715010531","0.352617801433137","0.364649984513315","0.376007853482951","0.376818181191654","0.377465185200341","0.387354211448199","0.387342088469597","0.387122111088867","0.386723205247707","0.377578195092645","0.376231412115308","0.368249613270394","0.364486885354215","0.367030488371471","0.358739364532295","0.35162229381199","0.345668187129234","0.350840415661691","0.347520893710847","0.343092245489694","0.337614255023768","0.336990098012647","0.340041004767741","0.333397672783458","0.33117840937793","0.3291203844181","0.356726249496375","0.350011468323155","0.34419369835706","0.338484581214853","0.333501458183824","0.328673813926297","0.331079475238219","0.339715534195387","0.351984624685979","0.367119789462037","0.366921046583167","0.364649404395922","0.354738023806382","0.360682392809198","0.358106432017546","0.354269720724109","0.360432230222762","0.358727429722091","0.37211559692557","","",
"Brazil","BRA","Arable land (% of land area)","AG.LND.ARBL.ZS","","2.64628254611672","2.87145226090972","3.11073994931887","3.23038379352344","3.35002763772801","3.46967148193258","3.58931532613715","3.8286030145463","3.94824685875087","4.18753454716001","4.42682223556916","4.54646607977373","4.6661099239783","4.90539761238745","5.02504145659202","5.14468530079659","5.26432914500116","5.26432914500116","5.37200860478528","5.38397298920573","5.45575929572848","5.62326067761488","5.62326067761488","5.63522506203533","5.65915383087625","5.86254836602402","5.92237028812631","5.95826344138768","5.97022782580813","6.0636696681319","6.22124061094933","6.19791006132944","6.25306587350774","6.31061456257014","6.94640195067324","6.92235353798812","6.9139784688938","6.90550768472411","6.90904914251257","6.91259060030102","7.06748152100826","7.35857499395799","7.7330602263183","8.17490494296578","8.27420933365558","8.31979363829752","8.18220321746226","8.40498005537117","8.42771238577004","8.41849980976629","8.64701955219702","8.68698059616135","9.09390127468552","","",
"Brazil","BRA","Land under cereal production (hectares)","AG.LND.CREL.HA","","11168641","11522315","12565288","13107902","14247927","13523268","14493244","15119971","15774034","16821700","17674109","17468377","16803961","18023969","19309530","21558886","21283876","19860058","20861400","21080553","19893608","21903982","18083861","19502145","19702168","22404844","23456712","23082577","21970521","18512400","19821129","20564106","18293749","20072480","19752819","17471671","17791386","15780800","17431028","17244374","18137080","17877180","19929747","20426199","19312005","18423582","19543770","20818353","20080310","18600440","19216441","19611226","20906133","","",
"Brazil","BRA","Permanent cropland (% of land area)","AG.LND.CROP.ZS","","0.751124053916302","0.743347204043005","0.743107916354596","0.746697231680733","0.729229230426865","0.741073971003118","0.740475751782095","0.744543642485051","0.751124053916302","0.748850820876415","0.757584821503349","0.758183040724372","0.749090108564824","0.746936519369142","0.767634904416533","0.802451263080063","0.831524717221774","0.866101788196895","0.898884201508948","0.940879190824753","0.900200283795198","0.853778472243825","0.79216189247847","0.756627670749712","0.710804078419361","0.724443476658682","0.704821886209133","0.752200848514143","0.79347797476472","0.804844139964155","0.836190827145753","0.861076746740303","0.925564778766568","0.891944858545083","0.890269844726219","0.902353872990881","0.898764557664744","0.89527095741397","0.891729499625515","0.888188041837059","0.884646584048604","0.881057268722467","0.877587597240534","0.873998281914397","0.870480752894783","0.866939295106328","0.867417870483146","0.867417870483146","0.84947129385246","0.84947129385246","0.84947129385246","0.837506909432003","0.813578140591088","","",
"Brazil","BRA","Land area where elevation is below 5 meters (% of total land area)","AG.LND.EL5M.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1.212341","","","","","","","","","","1.212341","","","","","","","","","","","","","","","",
"Brazil","BRA","Forest area (sq. km)","AG.LND.FRST.K2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","5748390","5719494","5690598","5661702","5632806","5603910","5575014","5546118","5517222","5488326","5459430","5428532","5397634","5366736","5335838","5304940","5282996","5261052","5239108","5217164","5195220","5173276","5151332","","","",
"Brazil","BRA","Forest area (% of land area)","AG.LND.FRST.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","65.4098878458604","65.1056215856638","64.8013553254671","64.4970890652705","64.1928228050739","63.8885565448772","63.5842902846806","63.2800240244839","62.9757577642873","62.6714915040906","62.367225243894","62.0193009449471","61.6713766460002","61.3234523470533","60.9755280481064","60.6276037491595","60.4295692582321","60.2315347673047","60.0335002763773","59.8354657854499","59.6374312945225","59.5197017518252","59.4019722091279","59.2842426664306","","",
"Brazil","BRA","Agricultural irrigated land (% of total agricultural land)","AG.LND.IRIG.AG.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1.63279371224119","1.63968222413653","","","","","","","","",
"Brazil","BRA","Average precipitation in depth (mm per year)","AG.LND.PRCP.MM","","","1761","","","","","1761","","","","","1761","","","","","1761","","","","","1761","","","","","1761","","","","","1761","","","","","1761","","","","","1761","","","","","1761","","","","","1761","","1761","",
"Brazil","BRA","Land area (sq. km)","AG.LND.TOTL.K2","","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","8358140","",
"Brazil","BRA","Agricultural machinery, tractors per 100 sq. km of arable land","AG.LND.TRAC.ZS","","32.5526720318293","34.1666666666667","35.7692307692308","38.1481481481481","40.7142857142857","42.7586206896552","44.8333333333333","45.3125","47.0909090909091","47.3914285714286","49.5945945945946","52.8947368421053","56.025641025641","57.5609756097561","76.9316666666667","81.3953488372093","84.0909090909091","97.2727272727273","108.017817371938","121.156666666667","124.780701754386","126.170212765957","131.276595744681","136.093418259023","140.868710359408","138.531224489796","139.65595959596","141.323293172691","143.544088176353","143.79728103234","142.557790684257","145.506244812077","146.613347619777","147.645084842165","136.283435815291","138.916312350928","138.813075378971","138.71151060689","138.368706144756","138.026252933724","134.735826378426","129.150786940687","122.638532223632","117.726244680534","116.081431736949","116.861992007059","","","","","","","","","",
"Brazil","BRA","Cereal production (metric tons)","AG.PRD.CREL.MT","","15036353","15918336","16616892","16469226","20350793","17867924","20322328","20418801","20549860","23698316","22814265","22703928","23721606","26240014","26238419","31143200","30913834","24033646","27147322","33217492","32050567","33838263","29197566","32711289","36011139","37298400","44148398","42905037","43934410","32490390","36682063","44057997","43073464","45852774","49641824","44957172","44871284","40734185","47428952","45893360","57124610","50878876","67468220","63963630","55668625","59148968","69441579","79751786","70913797","75161327","77586276","89908244","100901726","","",
"Brazil","BRA","Crop production index (2004-2006 = 100)","AG.PRD.CROP.XD","","23.31","24.67","24.82","24.47","29.29","26.84","29.56","29.61","30.41","31.12","33.58","34.71","32.74","36.25","36.6","37.55","41.21","39.4","41.11","45.45","47.54","48.78","47.47","52.22","58.65","53.92","59.99","60.94","63.55","59.02","59.91","63.86","62.72","68.08","69.97","66.04","70.39","71.16","75.73","77.32","82.78","87.51","95.49","99","97.96","103.04","112.35","121.79","118.79","126.58","135.28","130.58","140.33","","",
"Brazil","BRA","Food production index (2004-2006 = 100)","AG.PRD.FOOD.XD","","15.66","16.2","16.73","17.58","19.62","19.1","20.56","21.24","21.94","23.39","23.88","25.37","25.35","26.74","28.04","30.92","32.29","31.55","33.05","37.41","38.17","40.15","40.1","43.12","46.22","45.08","49.02","51.36","53.48","51.39","53.58","56.72","57.31","61.9","66.23","65.94","69.06","69.92","75.13","76.81","81.38","86.5","94.19","97.43","99.41","103.16","110.92","116.66","116.85","123.92","128.97","127.1","136.65","","",
"Brazil","BRA","Livestock production index (2004-2006 = 100)","AG.PRD.LVSK.XD","","13.63","13.93","14.09","15.12","15.98","16.08","16.45","17.96","18.83","19.28","19.18","20.89","21.87","21.85","23.43","25.38","25.64","26.99","28.68","31.92","32.92","33.32","34.37","34.99","36.08","37.72","40.41","42.81","44.18","44.91","48.97","51.59","53.44","56.49","62.2","66.49","67.01","68.41","74.14","77.58","80.39","85.71","89.58","96.3","100.9","102.8","107.69","111.51","111.42","116.59","118.85","121.42","127.53","","",
"Brazil","BRA","Surface area (sq. km)","AG.SRF.TOTL.K2","","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","8515770","",
"Brazil","BRA","Cereal yield (kg per hectare)","AG.YLD.CREL.KG","","1346.301","1381.522","1322.444","1256.435","1428.334","1321.273","1402.193","1350.452","1302.765","1408.794","1290.83","1299.716","1411.668","1455.84","1358.833","1444.564","1452.453","1210.15","1301.318","1575.741","1611.099","1544.845","1614.565","1677.317","1827.775","1664.747","1882.122","1858.763","1999.698","1755.061","1850.655","2142.471","2354.545","2284.36","2513.151","2573.147","2522.079","2581.25","2720.95","2661.353","3149.603","2846.024","3385.302","3131.45","2882.592","3210.503","3553.131","3830.84","3531.509","4040.836","4037.495","4584.529","4826.417","","",
"Brazil","BRA","Trade in services (% of GDP)","BG.GSR.NFSV.GD.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","4.30970374599226","4.21053894172545","4.37893107543184","4.57875707361068","4.48775084795687","4.25597403775267","4.37322870890998","5.00604469142165","5.2402515714994","5.4827622282398","",
"Brazil","BRA","Communications, computer, etc. (% of service imports, BoP)","BM.GSR.CMCP.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","52.0643743001807","50.4494835011811","49.3351370386386","48.7041384763701","52.5418005830757","50.3997728636409","48.8714376462536","50.6608546945773","49.5086068533611","51.4889704001862","",
"Brazil","BRA","Primary income payments (BoP, current US$)","BM.GSR.FCTY.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","29161701041","33927084451","40783869373","53072582766","42510024800","46891868560","58071792710","46335381148","49848364647","64325109768","",
"Brazil","BRA","Imports of goods and services (BoP, current US$)","BM.GSR.GNFS.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","96610925191","119499000000","157790000000","220247000000","174697000000","244202000000","302394000000","304088000000","325858000000","319354000000","",
"Brazil","BRA","Insurance and financial services (% of service imports, BoP)","BM.GSR.INSF.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","6.12923698824621","5.73811794236424","5.69032049260354","5.96149773490872","7.2950093346464","5.13763141525902","4.62256238898033","4.33625620185355","3.87556159098179","2.76117490613208","",
"Brazil","BRA","Goods imports (BoP, current US$)","BM.GSR.MRCH.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","73139777858","91349560988","120617000000","173107000000","127723000000","181768000000","226233000000","223149000000","239634000000","230893000000","",
"Brazil","BRA","Service imports (BoP, current US$)","BM.GSR.NFSV.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","23471147333","28149406189","37172915001","47140404693","46974141400","62434005084","76161087742","80939018421","86223756159","88461304714","",
"Brazil","BRA","Charges for the use of intellectual property, payments (BoP, current US$)","BM.GSR.ROYL.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1404494000","1663677000","2259433000","2697171000","2512044100","2850248166","3301090225","3666480099","3668547013","5922655347","",
"Brazil","BRA","Imports of goods, services and primary income (BoP, current US$)","BM.GSR.TOTL.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","125772626232","153426084451","198573869373","273319582766","217207024800","291093868560","360465792710","350423381148","375706364647","383679109768","",
"Brazil","BRA","Transport services (% of service imports, BoP)","BM.GSR.TRAN.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","21.6971970639029","23.3369399940204","22.8853869645981","22.0796673740596","16.9628422415402","18.1634846663171","18.5857145685092","17.5342413336184","17.6366905159614","16.8481861172925","",
"Brazil","BRA","Travel services (% of service imports, BoP)","BM.GSR.TRVL.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","20.1091916515047","20.4754585631448","22.0891555041597","23.2546964146615","23.2003478407378","26.2991110531973","27.9202853956529","27.4686477705437","28.9791410384896","28.9016638468749","",
"Brazil","BRA","Foreign direct investment, net outflows (% of GDP)","BM.KLT.DINV.GD.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.326239263496742","2.59959495898288","1.22220689138752","1.54110370451144","-0.273453764002123","0.7434353971811","0.147195806420194","0.332240321793989","0.558175462450612","1.09699331893641","",
"Brazil","BRA","Secondary income, other sectors, payments (BoP, current US$)","BM.TRF.PRVT.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","353085000","419405000","813450000","983276000","1127773600","1556562180","1534654243","1407584568","1708222024","1963628845","",
"Brazil","BRA","Personal remittances, paid (current US$)","BM.TRF.PWKR.CD.DT","","","","","","","","","","","","","","","","108000000","103000000","114000000","147000000","27000000","152000000","154000000","168000000","19000000","5000000","6000000","10000000","10000000","7000000","9000000","12000000","22000000","34000000","203000000","252000000","347000000","409000000","375000000","444000000","330000000","365988006.6","709002014.2","360891998.3","333194000.2","400608001.7","373953000","529306000","562634000","813083000","730896100","921717181.49","909504703.89","897060041.16","1019387921.33","1535489193.84","",
"Brazil","BRA","Current account balance (BoP, current US$)","BN.CAB.XOKA.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","13984655478","13621476250","1550785092","-28192023673","-24305612300","-47273101647","-52480127065","-54246393412","-81108305241","-103981000000","",
"Brazil","BRA","Current account balance (% of GDP)","BN.CAB.XOKA.GD.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1.56760514609709","1.22959468398752","0.111092686309803","-1.66365354514831","-1.46015927149903","-2.13960305537545","-2.00670793869687","-2.24796298341063","-3.39069854286235","-4.43212351320062","",
"Brazil","BRA","Net financial account (BoP, current US$)","BN.FIN.TOTL.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","14446272466","15456047508","-845490103.7","-25327461837","-23523714800","-49692730263","-52178860617","-55738994833","-78978510018","-99704828132","",
"Brazil","BRA","Net primary income (BoP, current US$)","BN.GSR.FCTY.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","-25967387038","-27488974808","-29291166631","-40561764395","-33668750800","-39486409327","-47318912458","-35447573211","-39777676772","-51475921656","",
"Brazil","BRA","Net trade in goods and services (BoP, current US$)","BN.GSR.GNFS.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","36394274085","36804240761","26812962157","8145874251","6025626300","-10688246126","-8145440954","-21644748394","-44696888784","-54540831124","",
"Brazil","BRA","Net trade in goods (BoP, current US$)","BN.GSR.MRCH.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","44889564255","46458612543","40031626580","24835752407","25271419900","20146857897","29806529528","19430645445","2399484638","-6248007747","",
"Brazil","BRA","Net errors and omissions (BoP, current US$)","BN.KAC.EOMS.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","409926988.1","1769605258","-2408504195","2877973836","726343500","-2454840631","288856529.3","-1588932246","2085337408","4044927370","",
"Brazil","BRA","Foreign direct investment, net (BoP, current US$)","BN.KLT.DINV.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","-12549590735","9420275577","-27518241273","-24601090274","-36032806300","-36918923577","-67689141256","-68093253945","-67490979373","-71114873164","",
"Brazil","BRA","Portfolio Investment, net (BoP, current US$)","BN.KLT.PTXL.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","-4884536334","-9573235678","-48390357301","-1133124949","-50283048500","-63010937321","-35310913877","-8273462590","-25689018924","-37892014873","",
"Brazil","BRA","Reserves and related items (BoP, current US$)","BN.RES.INCL.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","27566439296","30569287954","87484243269","2969305577","47577592798","49079977011","58634858697","18899129689","-5923725138","","",
"Brazil","BRA","Net secondary income (BoP, current US$)","BN.TRF.CURR.CD","","","","","","","","","","","","","","","","43000000","38000000","63000000","112000000","-21000000","144000000","186000000","-13000000","111000000","162000000","148000000","80000000","68000000","91000000","221000000","799000000","1514000000","2189000000","1603000000","2423000000","3621000000","2441000000","1814000000","1436000000","1688000000","1521065000","1637524000","2389815000","2866589000","3268212307.09398","3557768431","4306210297","4028989566","4223866471","3337512200","2901553806","2984226347","2845928193","3366260315","2035518721","",
"Brazil","BRA","Net capital account (BoP, current US$)","BN.TRF.KOGT.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","51690000","64966000","12229000","-13412000","55554000","35212014.21","12409918.21","96330825.22","44457814.65","231478557.4","",
"Brazil","BRA","Grants, excluding technical cooperation (BoP, current US$)","BX.GRT.EXTA.CD.WD","","","","","","","","","","","28230000","22640000","13030000","8070000","5630000","9360000","5590000","4639999.99999999","4510000","10080000","13610000","7569999.99999999","24340000","15740000","41110000","34350000","29750000","35190000","45870000","43830000","40660000","50190000","38030000","58900000","69040000","64650000","80360000","72290000","102000000","63830000","53450000","71900000","77280000","85830000","88610000","160680000","124570000","177990000","211030000","196400000","190900000","210150000","245340000","852540000","","",
"Brazil","BRA","Technical cooperation grants (BoP, current US$)","BX.GRT.TECH.CD.WD","","","","","","","","","","","31840000","37470000","35760000","41620000","43190000","42170000","39150000","42590000","55540000","63600000","82680000","81000000","75270000","72480000","70600000","72840000","98390000","120560000","138860000","134580000","140850000","157880000","175320000","183140000","193920000","237300000","228550000","212990000","184340000","209080000","186860000","168550000","176320000","219060000","199630000","194410000","207780000","251690000","243920000","229810000","248420000","222000000","240220000","234980000","","",
"Brazil","BRA","ICT service exports (BoP, current US$)","BX.GSR.CCIS.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","6435168000","7891540000","11483100000","14971477000","14404566000","16422484741.7","20198895520.3","22222660387","21216996011.1","22961099314","",
"Brazil","BRA","ICT service exports (% of service exports, BoP)","BX.GSR.CCIS.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","42.9702816336884","42.6684256235458","47.9376299525992","49.1665619699823","51.9488795506236","51.9716958194124","52.8640726841539","55.7467129996865","54.2254414349994","57.1619801141201","",
"Brazil","BRA","Communications, computer, etc. (% of service exports, BoP)","BX.GSR.CMCP.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","48.9237305100758","52.2430658271335","55.2385763725478","56.4017570570786","59.2039032343644","58.3682046707428","59.2422612346161","61.5657561444923","60.2416731166651","63.8251971911985","",
"Brazil","BRA","Primary income receipts (BoP, current US$)","BX.GSR.FCTY.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","3194314003","6438109643","11492702742","12510818371","8841274000","7405459233","10752880252","10887807937","10070687876","12849188112","",
"Brazil","BRA","Exports of goods and services (BoP, current US$)","BX.GSR.GNFS.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","133005000000","156303000000","184603000000","228393000000","180723000000","233514000000","294249000000","282443000000","281161000000","264813000000","",
"Brazil","BRA","Insurance and financial services (% of service exports, BoP)","BX.GSR.INSF.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","4.28235254262755","5.74301175453877","6.81661567613247","6.78370916013563","7.0073197797959","7.87575184686262","8.28716927128507","8.08863515550955","8.63977278245929","4.59187452576408","",
"Brazil","BRA","Goods exports (BoP, current US$)","BX.GSR.MRCH.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","118029000000","137808000000","160649000000","197942000000","152995000000","201915000000","256040000000","242580000000","242034000000","224645000000","",
"Brazil","BRA","Service exports (BoP, current US$)","BX.GSR.NFSV.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","14975857163","18495034407","23954250578","30450526537","27728347800","31598901061","38209117260","39863624582","39127382737","40168481337","",
"Brazil","BRA","Charges for the use of intellectual property, receipts (BoP, current US$)","BX.GSR.ROYL.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","101660000","150307000","319410000","465444000","433807800","397212729.8","590769563","510711775.9","597237267.2","375097938.4","",
"Brazil","BRA","Exports of goods, services and primary income (BoP, current US$)","BX.GSR.TOTL.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","136199314003","162741109643","196095702742","240903818371","189564274000","240919459233","305001880252","293330807937","291231687876","277662188112","",
"Brazil","BRA","Transport services (% of service exports, BoP)","BX.GSR.TRAN.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","21.0095030204583","18.6785508530468","17.2680391921715","17.8164025256113","14.6583158481588","15.7126565427553","15.3151525123719","13.6766181403931","13.9847035841364","14.5449368946353","",
"Brazil","BRA","Travel services (% of service exports, BoP)","BX.GSR.TRVL.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","25.7844139268384","23.3353715652809","20.6767687591483","18.9981312571745","19.1304611376809","18.0433869392911","17.1554169791359","16.6689905613862","17.1338505134934","17.0348306215329","",
"Brazil","BRA","Foreign direct investment, net inflows (BoP, current US$)","BX.KLT.DINV.CD.WD","","","","","","","","","","","","","","","","1302000000","1555000000","1833000000","2006000000","2419000000","1911000000","2520000000","2910000000","1609000000","1594000000","1441000000","345000000","1169000000","2804000000","1131000000","989000000","1103000000","2061000000","1292000000","3072000000","4859000000","11200000000","19650000000","31913000000","28576000000","32779239699.75","22457353372.251","16590204193.114","10143524670.9901","18165693855.2842","15459981604.1196","19378093068.2773","44579492463.6335","50716402711.4787","31480932200","53344632546.73","71538657409.37","76110663188.77","80842996726.9","96895162915.63","",
"Brazil","BRA","Foreign direct investment, net inflows (% of GDP)","BX.KLT.DINV.WD.GD.ZS","","","","","","","","","","","","","","","","1.05246670553341","1.01848320759466","1.0404646859225","0.998999546922861","1.07525692151625","0.813106376212178","0.956135069019492","1.03307874048642","0.791423641583036","0.762592173992974","0.646354159821192","0.12866546237575","0.397505322708203","0.848675005546146","0.265745409647489","0.214091608374833","0.182961218193279","0.514479245779916","0.295112882039361","0.55042715687456","0.618473934963973","1.31223735424436","2.21700660621436","3.68147005174033","4.74759307391806","4.98758867066591","4.01302318071902","3.26078217560137","1.81455659119701","2.71274411035384","1.73298132079906","1.74923773203872","3.19351507675743","2.99285089097481","1.89121650011928","2.41440343045711","2.73545815865296","3.15401527603383","3.37960743216172","4.13009424677363","",
"Brazil","BRA","Primary income on FDI, payments (current US$)","BX.KLT.DREM.CD.DT","","","","","","","","","","","0","0","0","0","0","535000000","793000000","1335000000","1539000000","1461000000","955000000","1328000000","2419000000","1457000000","1271000000","1682000000","1841000000","1558000000","2255000000","2915000000","1892000000","1053000000","824000000","1979000000","2315000000","2814000000","3975000000","6070000000","6456000000","5150000000","4237935000","5005463544.7","5949601274.3","5983739070.3","6859728499.1","11035332129.663","13883672890.4194","19691708352.4579","28772552056.5726","21028639100","26584284654.55","31715896687.82","24563733909.23","27536064887.11","35802589840.56","",
"Brazil","BRA","Portfolio equity, net inflows (BoP, current US$)","BX.PEF.TOTL.CD.WD","","","","","","","","","","","","","","","","0","0","0","0","-2000000","-11000000","14000000","16000000","-3000000","-3000000","-11000000","9000000","61000000","189000000","-57000000","103000000","578000000","1704000000","6570000000","7280000000","2775000000","5785000000","5099000000","-1768000000","2572000000","3075913756.64063","2481200940","1980742540","2972604810","2080933160","6451252310","7715813474.50958","26217335943.5501","-7565367449.97136","37071238200","37670693754.43","7174276919.39","5599971524.26","11636333957.72","11773000100.8","",
"Brazil","BRA","Secondary income receipts (BoP, current US$)","BX.TRF.CURR.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","4050806431","4847246297","4971775566","5316634471","4735719000","4774732703","4915420714","4626131547","5479800445","4270919313","",
"Brazil","BRA","Personal transfers, receipts (BoP, current US$)","BX.TRF.PWKR.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2479867000","2889836000","2808782000","2912592000","2223780400","2189321433","2133779689","1989616808","1943901918","2124954021","",
"Brazil","BRA","Personal remittances, received (current US$)","BX.TRF.PWKR.CD.DT","","","","","","","","","","","","","","","","82000000","81000000","61000000","113000000","73000000","111000000","124000000","57000000","29000000","46000000","40000000","40000000","42000000","32000000","120000000","573000000","1110000000","1791000000","1247000000","2068000000","3315000000","2527000000","1982000000","1642000000","1862000000","1649354980","1774780029","2448964111","2821291016","3575069092","2805358000","3287162000","3305694000","3642585000","2889159500","2754111178.8","2798456998.91","2582640312.73","2537114311.28","2645117591.01","",
"Brazil","BRA","Personal remittances, received (% of GDP)","BX.TRF.PWKR.DT.GD.ZS","","","","","","","","","","","","","","","","0.066284385448341","0.053052823032262","0.03462539325765","0.0562746504497923","0.0324488446757693","0.0472290987752757","0.0470479160946099","0.0202355629579814","0.0142643167221305","0.0220070514452176","0.0179418226182149","0.0149177347682029","0.0142816283607738","0.00968530676800166","0.0281957994320943","0.124038919715651","0.184122350131042","0.447080217948486","0.284834182587526","0.370534948052276","0.421947127887543","0.296073553051383","0.223618681603912","0.189420418793521","0.309351144444129","0.250960799808213","0.317144824637022","0.481340580795912","0.504695593969312","0.533877081750442","0.314465640169892","0.296728258114152","0.23680807126188","0.214954396996972","0.173566210910247","0.124652381326837","0.107005950440233","0.107024254652048","0.106062995309434","0.112746442814514","",
"Brazil","BRA","S&P Global Equity Indices (annual % change)","CM.MKT.INDX.ZG","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","29.7999992371","21.7630004883","-43.0027999878","66.9000015259","-10.3367166519","-22.5126304626","-32.9599990845","105.3700027466","33.6800003052","47.6437026314","43.0665943776","74.671633487337","-57.1782692388","125.1100585124","6.50041169396876","-24.4143306774468","-0.269773966585163","-19.1393488526925","-18.3777239149514","",
"Brazil","BRA","Market capitalization of listed domestic companies (current US$)","CM.MKT.LCAP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","226152310000","186237610000","126761530000","234560040000","330346580000","474646880000","710247450000","1369711270000","591965550000","1337247680000","1545565660000","1228936230000","1227447020000","1020455330000","843894200000","",
"Brazil","BRA","Market capitalization of listed domestic companies (% of GDP)","CM.MKT.LCAP.GD.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","34.4106425143694","33.2797829585382","24.9148071213929","41.9600168993221","49.3317649416324","53.2053787694269","64.1132042377341","98.1212066314549","34.9327737975176","80.3351330607114","69.9530365727385","46.9914275519714","50.8652334561896","42.6597053187849","35.9704496636273","",
"Brazil","BRA","Listed domestic companies, total","CM.MKT.LDOM.NO","","","","","","","","","","","","","","","","","","","","404","426","477","478","505","522","541","592","590","589","592","579","570","565","550","548","543","550","544","527","478","457","426","396","367","357","342","347","395","383","377","373","366","353","352","351","",
"Brazil","BRA","Stocks traded, total value (current US$)","CM.MKT.TRAD.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","94864610000","64879460000","39581200000","70520070000","113739430000","171066950000","279788220000","648145920000","572096580000","711127060000","918364980000","828716910000","834534950000","743678540000","648488370000","",
"Brazil","BRA","Stocks traded, total value (% of GDP)","CM.MKT.TRAD.GD.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","14.4343083737463","11.5936536517364","7.77963127798533","12.615206447532","16.98509131033","19.1756909256005","25.2561544461329","46.4308508928706","33.7602761165298","42.7209467943683","41.565635608818","31.6880483191211","34.5830120302052","31.0891681738819","27.6414013398038","",
"Brazil","BRA","Stocks traded, turnover ratio of domestic shares (%)","CM.MKT.TRNR","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","31.4651046756914","25.2915710886618","39.0345198599685","40.2684004659036","42.5014508813525","47.2258517770104","62.3229599479744","58.3273018437359","73.7219762897852","63.7131074188799","59.7380677942158","67.9482690659122","66.1664453529309","69.5672522308625","",
"Brazil","BRA","Net bilateral aid flows from DAC donors, Australia (current US$)","DC.DAC.AUSL.CD","","","","","","","","","","","","","","","","","","10000","10000","10000","10000","10000","10000","20000","10000","30000","30000","10000","100000","20000","10000","30000","30000","80000","30000","","","","20000","40000","70000","60000","110000","500000","560000","420000","240000","270000","280000","80000","110000","350000","2660000","780000","","",
"Brazil","BRA","Net bilateral aid flows from DAC donors, Austria (current US$)","DC.DAC.AUTL.CD","-130000","","","","10000","30000","-200000","260000","40000","20000","610000","30000","50000","10000","","-20000","","680000","690000","1070000","1400000","360000","440000","300000","180000","80000","100000","560000","400000","820000","1100000","1410000","1790000","4240000","2480000","2810000","2620000","2220000","2010000","2040000","1730000","1910000","1820000","1560000","1650000","1990000","2770000","2930000","3160000","2510000","1960000","1590000","1340000","1400000","","",
"Brazil","BRA","Net bilateral aid flows from DAC donors, Belgium (current US$)","DC.DAC.BELL.CD","","","2000000","","","","300000","300000","370000","420000","340000","330000","300000","600000","600000","780000","760000","1050000","890000","1100000","1140000","1000000","810000","1430000","1090000","1450000","1300000","1740000","2150000","1310000","2910000","3380000","5320000","5280000","4310000","7070000","4970000","5260000","4870000","3680000","4690000","2720000","2920000","3810000","4780000","4480000","4390000","4940000","4030000","4180000","3960000","4460000","3730000","4750000","","",
"Brazil","BRA","Net bilateral aid flows from DAC donors, Canada (current US$)","DC.DAC.CANL.CD","","","2230000","1050000","4250000","920000","-1690000","-1660000","","770000","690000","2400000","2670000","1850000","1080000","2260000","3350000","1180000","2080000","1890000","1510000","2730000","3810000","2050000","7080000","5800000","4440000","3570000","4040000","3940000","2890000","3460000","4000000","4120000","2740000","2850000","3110000","3720000","3410000","3450000","3240000","3990000","6040000","8130000","9120000","8640000","7110000","9240000","11430000","10820000","7110000","4140000","2540000","2230000","","",
"Brazil","BRA","Net bilateral aid flows from DAC donors, European Union institutions (current US$)","DC.DAC.CECL.CD","","","","","","","","","","","","","80000","","","330000","10000","10000","200000","170000","","","","670000","390000","880000","1390000","2100000","4650000","2540000","4800000","7280000","14710000","16550000","24300000","27630000","30450000","16950000","17730000","30180000","17020000","69660000","15400000","21450000","7270000","17070000","8640000","25670000","48550000","18760000","21300000","154360000","188800000","90270000","","",
"Brazil","BRA","Net bilateral aid flows from DAC donors, Switzerland (current US$)","DC.DAC.CHEL.CD","","","","70000","660000","920000","490000","-150000","-210000","110000","730000","160000","400000","320000","580000","210000","250000","450000","670000","700000","610000","320000","380000","610000","680000","420000","1070000","1380000","1600000","1410000","2070000","1610000","2210000","1880000","2620000","2350000","2290000","1830000","2720000","1520000","1810000","1910000","2790000","4160000","3320000","4490000","3980000","3620000","2130000","4020000","4520000","4020000","3470000","4280000","","",
"Brazil","BRA","Net bilateral aid flows from DAC donors, Czech Republic (current US$)","DC.DAC.CZEL.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","120000","130000","10000","160000","150000","20000","10000","10000","","",
"Brazil","BRA","Net bilateral aid flows from DAC donors, Germany (current US$)","DC.DAC.DEUL.CD","1260000","15270000","4190000","18700000","11660000","47350000","7530000","12590000","17460000","19300000","27340000","26240000","33920000","14630000","19730000","24170000","18550000","26660000","36250000","39580000","47760000","80090000","43890000","41320000","35070000","35680000","51980000","146380000","54640000","33200000","31470000","53960000","35270000","42820000","34670000","31200000","39260000","51710000","57710000","47570000","49460000","47040000","31860000","49200000","51940000","76980000","65620000","76800000","126650000","196100000","247450000","215710000","117710000","217910000","","",
"Brazil","BRA","Net bilateral aid flows from DAC donors, Denmark (current US$)","DC.DAC.DNKL.CD","","","","","","","10000","370000","","2300000","-170000","-230000","-230000","-200000","-260000","-260000","-220000","-270000","-280000","-260000","-250000","-100000","20000","","","","","","390000","","","830000","-1530000","","","90000","5590000","-2390000","200000","","20000","1550000","420000","-30000","-30000","-30000","","300000","-10000","10000","","0","","-80000","","",
"Brazil","BRA","Net bilateral aid flows from DAC donors, Spain (current US$)","DC.DAC.ESPL.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","520000","400000","560000","1070000","1440000","1640000","3670000","6040000","6720000","6130000","5390000","5580000","6520000","6240000","7080000","9850000","10160000","17220000","32800000","36840000","64880000","26390000","21100000","10530000","7440000","","",
"Brazil","BRA","Net bilateral aid flows from DAC donors, Finland (current US$)","DC.DAC.FINL.CD","","","","","","","","","","","","","","30000","60000","40000","20000","","10000","10000","","","10000","10000","20000","30000","230000","300000","360000","230000","240000","300000","150000","80000","40000","260000","250000","360000","450000","330000","220000","320000","1370000","1460000","1670000","240000","270000","590000","-20000","1370000","1380000","1510000","1410000","1370000","","",
"Brazil","BRA","Net bilateral aid flows from DAC donors, France (current US$)","DC.DAC.FRAL.CD","","","3600000","17300000","6400000","15800000","-2000000","-6400000","-8800000","-10000000","-2600000","-4900000","5760000","","18610000","12790000","-1500000","-900000","17750000","5100000","9150000","111900000","74270000","18660000","30230000","21050000","16830000","20870000","11920000","11600000","18860000","20450000","-54000000","37850000","19960000","8160000","12840000","18440000","4270000","21050000","23720000","14640000","20510000","30950000","31090000","28470000","30910000","112910000","41030000","47120000","46580000","59180000","860710000","121360000","","",
"Brazil","BRA","Net bilateral aid flows from DAC donors, United Kingdom (current US$)","DC.DAC.GBRL.CD","","1680000","5320000","","2350000","1960000","860000","-2530000","-2770000","-1150000","-1110000","-760000","210000","1230000","4330000","7440000","4090000","2120000","470000","1160000","1220000","310000","16600000","8100000","8160000","5200000","1290000","1260000","2570000","2290000","2530000","6480000","6750000","7960000","8610000","7340000","6270000","9040000","11610000","11580000","9780000","12110000","16620000","13500000","11050000","6540000","1580000","3050000","13500000","13070000","40730000","49370000","74230000","8560000","","",
"Brazil","BRA","Net bilateral aid flows from DAC donors, Greece (current US$)","DC.DAC.GRCL.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","10000","20000","10000","","","10000","70000","90000","990000","670000","1230000","490000","510000","450000","450000","260000","60000","","",
"Brazil","BRA","Net bilateral aid flows from DAC donors, Ireland (current US$)","DC.DAC.IRLL.CD","","","","","","","","","","","","","","","10000","","","","","","","","","10000","10000","10000","20000","30000","20000","10000","20000","20000","70000","30000","140000","470000","760000","900000","840000","1240000","900000","1480000","1650000","1040000","1150000","1340000","1560000","1440000","2020000","1260000","820000","850000","980000","530000","","",
"Brazil","BRA","Net bilateral aid flows from DAC donors, Iceland (current US$)","DC.DAC.ISLL.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Net bilateral aid flows from DAC donors, Italy (current US$)","DC.DAC.ITAL.CD","2320000","8330000","4380000","8030000","1670000","550000","10450000","-6550000","-6320000","-7500000","-5280000","-3010000","-890000","-100000","310000","170000","630000","1260000","1380000","1740000","1170000","1240000","2370000","2560000","3790000","3780000","7350000","8790000","30500000","18480000","14780000","13340000","14130000","7410000","16780000","16690000","20800000","9200000","4030000","3430000","1720000","5490000","3250000","5410000","12590000","1540000","8120000","6630000","17400000","12420000","9200000","7860000","5260000","4820000","","",
"Brazil","BRA","Net bilateral aid flows from DAC donors, Japan (current US$)","DC.DAC.JPNL.CD","-2150000","-2360000","-2140000","15200000","-2280000","28360000","13010000","-6100000","-7060000","-9080000","-11860000","-12000000","-10720000","-5660000","1920000","23060000","18550000","28280000","34530000","25470000","20500000","31360000","50470000","27130000","35600000","40610000","32290000","82100000","66360000","124180000","64660000","39360000","63350000","79370000","89370000","100500000","65480000","61840000","104550000","149360000","169610000","106110000","117600000","92210000","41710000","30750000","-13060000","-9910000","93280000","-93210000","-62650000","152630000","-253640000","-14350000","","",
"Brazil","BRA","Net bilateral aid flows from DAC donors, Korea, Rep. (current US$)","DC.DAC.KORL.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","10000","10000","","10000","20000","","10000","10000","","10000","","40000","40000","50000","190000","190000","220000","160000","520000","360000","370000","800000","520000","690000","","",
"Brazil","BRA","Net bilateral aid flows from DAC donors, Luxembourg (current US$)","DC.DAC.LUXL.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","270000","220000","280000","570000","730000","830000","490000","1020000","850000","640000","1070000","1000000","520000","1220000","1140000","1210000","1830000","1540000","2170000","1870000","2090000","2850000","2600000","1430000","","",
"Brazil","BRA","Net bilateral aid flows from DAC donors, Netherlands (current US$)","DC.DAC.NLDL.CD","","","","","","1130000","","510000","480000","10000","700000","240000","850000","1410000","1860000","1960000","3660000","2220000","3240000","2780000","6970000","8260000","4510000","3910000","6620000","5690000","4290000","6210000","10350000","9870000","10960000","14770000","16270000","18140000","16420000","19930000","21340000","18000000","18900000","200000","2000000","15150000","14720000","13530000","16300000","15440000","1950000","220000","480000","640000","410000","240000","240000","290000","","",
"Brazil","BRA","Net bilateral aid flows from DAC donors, Norway (current US$)","DC.DAC.NORL.CD","","","","","","","","20000","","140000","10000","20000","30000","60000","140000","120000","","20000","","","60000","","","","290000","340000","340000","100000","570000","500000","580000","640000","1610000","1300000","1770000","2040000","2090000","1890000","2110000","1950000","2310000","2380000","2850000","3880000","3060000","2820000","2800000","9440000","5940000","29470000","37420000","72550000","214640000","678600000","","",
"Brazil","BRA","Net bilateral aid flows from DAC donors, New Zealand (current US$)","DC.DAC.NZLL.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","30000","20000","50000","80000","80000","200000","190000","220000","60000","170000","210000","240000","180000","200000","240000","290000","240000","150000","340000","280000","200000","270000","100000","130000","","",
"Brazil","BRA","Net bilateral aid flows from DAC donors, Poland (current US$)","DC.DAC.POLL.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","140000","50000","200000","150000","110000","70000","80000","80000","70000","","",
"Brazil","BRA","Net bilateral aid flows from DAC donors, Portugal (current US$)","DC.DAC.PRTL.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","140000","250000","470000","70000","830000","340000","930000","860000","620000","860000","1270000","370000","880000","1140000","1200000","3800000","1810000","1420000","8100000","8250000","6470000","4730000","","",
"Brazil","BRA","Net bilateral aid flows from DAC donors, Slovak Republic (current US$)","DC.DAC.SVKL.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","10000","","","30000","20000","","",
"Brazil","BRA","Net bilateral aid flows from DAC donors, Slovenia (current US$)","DC.DAC.SVNL.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","30000","10000","","10000","","","","",
"Brazil","BRA","Net bilateral aid flows from DAC donors, Sweden (current US$)","DC.DAC.SWEL.CD","","","","10000","","","","","","","1500000","990000","990000","210000","70000","","","","","420000","","230000","510000","410000","120000","50000","","","230000","420000","290000","1940000","350000","3660000","1280000","2560000","2610000","2610000","2020000","1630000","1580000","2050000","1990000","2080000","2470000","2360000","3190000","4020000","3150000","1920000","2020000","2050000","870000","1640000","","",
"Brazil","BRA","Net bilateral aid flows from DAC donors, Total (current US$)","DC.DAC.TOTL.CD","40300000","290920000","178580000","198360000","236720000","232310000","318140000","177890000","216700000","133340000","130900000","113510000","87420000","56390000","118040000","116050000","78150000","57770000","75890000","53940000","58250000","206710000","162100000","94190000","140340000","65100000","133950000","258400000","196850000","196340000","146880000","173070000","-263980000","165120000","226460000","231720000","221290000","209900000","236630000","128560000","239510000","226480000","213040000","205750000","154630000","191730000","83760000","296020000","427690000","328290000","424520000","802360000","1275440000","1166980000","","",
"Brazil","BRA","Net bilateral aid flows from DAC donors, United States (current US$)","DC.DAC.USAL.CD","39000000","268000000","159000000","138000000","212000000","135290000","289380000","187230000","223510000","138000000","120000000","104000000","54000000","42000000","69000000","43000000","30000000","-5000000","-22000000","-27000000","-33000000","-31000000","-36000000","-13000000","11000000","-56000000","11000000","-17000000","6000000","-15000000","-12000000","3000000","-376000000","-68000000","-2000000","-5000000","-7000000","","-8810000","-157770000","-57850000","-70750000","-37140000","-56080000","-57460000","-25930000","-67860000","3850000","12330000","8140000","24380000","37660000","29890000","28040000","","",
"Brazil","BRA","PPG, bilateral (AMT, current US$)","DT.AMT.BLAT.CD","","","","","","","","","","","44548000","54445000","59472000","68496000","90924000","136439000","196755000","239984000","267315000","309497000","354414000","434816000","691337000","503801000","564437000","393204000","699784000","487805000","298028000","232656000","438598000","866530000","279604000","258548000","1667323000","2035146000","2382957000","2862385000","3406069000","2730188000","2736312000","479338000","2413443000","1989561000","2013712000","1525831000","3022244000","583668000","637530000","581509000","703420000","646206000","753127000","568848000","441397000","2431445000",
"Brazil","BRA","PPG, bilateral concessional (AMT, current US$)","DT.AMT.BLTC.CD","","","","","","","","","","","39961000","43065000","46422000","51729000","57090000","71055000","84467000","92595000","100093000","99927000","95765000","77554000","76999000","41234000","44230000","5815000","11732000","6159000","4907000","10767000","28922000","71150000","28004000","38135000","274804000","408026000","542620000","302057000","442217000","426546000","225985000","125722000","511042000","402838000","459147000","424522000","261348000","402532000","421820000","344893000","506062000","416398000","536062000","402667000","301224000","",
"Brazil","BRA","IMF repurchases (AMT, current US$)","DT.AMT.DIMF.CD","","","","","","","","","","","75160000","0","0","0","0","0","0","0","0","0","0","0","0","0","0","65460000","616230000","1148684000","929358000","812050000","765276000","567314000","579283000","503229000","133928000","48966000","69992000","32623000","21083000","1977147000","6692955000","0","4646383000","12447327000","4356811000","23809823000","0","0","0","0","0","0","0","0","0","",
"Brazil","BRA","Principal repayments on external debt, long-term + IMF (AMT, current US$)","DT.AMT.DLTF.CD","","","","","","","","","","","537761000","574107000","769808000","1164603000","1938718000","2259920000","2556060000","3711682000","5247707000","6561629000","6884341000","7463455000","7620997000","3717125000","4401384000","2402140000","3876197000","4666690000","4260874000","8945192000","5944805000","4845155000","4884927000","7090872000","9784678000","11095621000","14811016000","26438791000","35955525000","50414781000","41438570000","32863771000","37081866000","41999827000","39006371000","49597458000","47429109000","40466432000","40354816000","30471428000","32026156000","41777623000","30591947000","63771226000","42671524000","",
"Brazil","BRA","Principal repayments on external debt, long-term (AMT, current US$)","DT.AMT.DLXF.CD","","","","","","","","","","","462601000","574107000","769808000","1164603000","1938718000","2259920000","2556060000","3711682000","5247707000","6561629000","6884341000","7463455000","7620997000","3717125000","4401384000","2336680000","3259967000","3518006000","3331516000","8133142000","5179529000","4277841000","4305644000","6587643000","9650750000","11046655000","14741024000","26406168000","35934442000","48437634000","34745615000","32863771000","32435483000","29552500000","34649560000","25787635000","47429109000","40466432000","40354816000","30471428000","32026156000","41777623000","30591947000","63771226000","42671524000","14850462000",
"Brazil","BRA","Principal repayments on external debt, private nonguaranteed (PNG) (AMT, current US$)","DT.AMT.DPNG.CD","","","","","","","","","","","200000000","238900000","339800000","593400000","1285000000","1316000000","1437100000","1988200000","2563000000","2907700000","2969900000","3471700000","3326000000","1555500000","2078300000","756900000","722000000","739900000","656575000","1757162000","1008012000","751809000","1328400000","3205853000","4523193000","4479859000","7289910000","18307631000","23711516000","33076833000","23813366000","24115856000","17395261000","15632006000","21207668000","16306241000","22913564000","26342636000","24002205000","22685229000","22398105000","25925387000","23901154000","48853364000","35885566000","183784000",
"Brazil","BRA","Principal repayments on external debt, public and publicly guaranteed (PPG) (AMT, current US$)","DT.AMT.DPPG.CD","","","","","","","","","","","262601000","335207000","430008000","571203000","653718000","943920000","1118960000","1723482000","2684707000","3653929000","3914441000","3991755000","4294997000","2161625000","2323084000","1579780000","2537967000","2778106000","2674941000","6375980000","4171517000","3526032000","2977244000","3381790000","5127557000","6566796000","7451114000","8098537000","12222926000","15360801000","10932249000","8747915000","15040222000","13920494000","13441892000","9481394000","24515545000","14123796000","16352611000","7786199000","9628051000","15852236000","6690793000","14917862000","6785958000","",
"Brazil","BRA","PPG, IBRD (AMT, current US$)","DT.AMT.MIBR.CD","","","","","","","","","","","14006000","14941000","22782000","24187000","21722000","25797000","44996000","100524000","83858000","73907000","98008000","135766000","214764000","270411000","331454000","405500000","608048000","866985000","969805000","870815000","1250673000","1248122000","1265645000","1278731000","1346052000","1376895000","1222123000","1048625000","994408000","952399000","886868000","828376000","1062732000","1633251000","1563512000","1028574000","742691000","804682000","812168000","1872025000","960449000","6570589000","316105000","343245000","328654000","",
"Brazil","BRA","PPG, IDA (AMT, current US$)","DT.AMT.MIDA.CD","","","","","","","","","","","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","",
"Brazil","BRA","PPG, multilateral (AMT, current US$)","DT.AMT.MLAT.CD","","","","","","","","","","","38188000","43306000","55965000","64782000","65907000","71848000","106485000","173454000","162910000","164320000","200243000","235646000","318005000","401964000","472874000","580498000","811257000","1100202000","1242557000","1144321000","1566270000","1589059000","1614816000","1909434000","1719406000","1727889000","1562514000","1380718000","1311840000","2645238000","4356626000","1158737000","2202510000","3638420000","3462237000","1808434000","1544791000","1710703000","1764554000","2865238000","1961133000","7708410000","1569030000","3907299000","1527997000","1505289000",
"Brazil","BRA","PPG, multilateral concessional (AMT, current US$)","DT.AMT.MLTC.CD","","","","","","","","","","","6451000","9737000","12548000","16610000","19050000","19723000","24740000","26511000","29581000","31737000","34292000","37514000","42778000","46715000","46735000","45729000","47187000","48184000","49805000","49219000","46996000","48909000","44023000","281727000","39460000","39390000","39493000","39344000","40635000","42392000","41175000","36951000","39255000","36651000","38269000","43871000","44005000","43042000","50915000","59193000","69985000","71995000","73632000","142292000","153687000","",
"Brazil","BRA","PPG, official creditors (AMT, current US$)","DT.AMT.OFFT.CD","","","","","","","","","","","82736000","97751000","115437000","133278000","156831000","208287000","303240000","413438000","430225000","473817000","554657000","670462000","1009342000","905765000","1037311000","973702000","1511041000","1588007000","1540585000","1376977000","2004868000","2455589000","1894420000","2167982000","3386729000","3763035000","3945471000","4243103000","4717909000","5375426000","7092938000","1638075000","4615953000","5627981000","5475949000","3334265000","4567035000","2294371000","2402084000","3446747000","2664553000","8354616000","2322157000","4476147000","1969394000","3936734000",
"Brazil","BRA","PPG, bonds (AMT, current US$)","DT.AMT.PBND.CD","","","","","","","","","","","0","0","0","950000","1900000","3722000","7011000","12981000","13538000","21801000","31896000","102540000","270662000","236966000","319954000","215045000","446504000","648237000","565740000","384196000","71022000","248353000","301943000","502445000","603783000","918705000","1271492000","1130953000","3475351000","2888838000","2055543000","2447697000","2171543000","3815234000","5706941000","4187240000","18083097000","8282442000","12001401000","2760231000","5769872000","4280544000","3268963000","4324527000","2935511000","2614520000",
"Brazil","BRA","PPG, commercial banks (AMT, current US$)","DT.AMT.PCBK.CD","","","","","","","","","","","136950000","171541000","195429000","234741000","232200000","396596000","425126000","836339000","1566412000","2230723000","2429671000","2239393000","1970053000","533210000","408145000","66951000","36449000","186862000","32298000","4188102000","1616288000","132843000","162010000","128697000","369894000","1050888000","1547754000","2127089000","3277996000","6811797000","1546302000","4375297000","7388977000","3939419000","2220373000","1923203000","1825042000","3449285000","1863495000","1493669000","1116354000","3181403000","1067801000","6084765000","1855301000","8090208000",
"Brazil","BRA","PNG, bonds (AMT, current US$)","DT.AMT.PNGB.CD","","","","","","","","","","","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","198125000","1506800000","2669500000","2132330000","4966727000","1590937000","1141471000","2775077000","2116968000","3279727000","1560729000","9671447000","7063481000","5479136000","8471134000","2420000000","1585000000","2656379000","3666240000","7153887000","11459277000","9587613000","",
"Brazil","BRA","PNG, commercial banks and other creditors (AMT, current US$)","DT.AMT.PNGC.CD","","","","","","","","","","","200000000","238900000","339800000","593400000","1285000000","1316000000","1437100000","1988200000","2563000000","2907700000","2969900000","3471700000","3326000000","1555500000","2078300000","756900000","722000000","739900000","656575000","1757162000","1008012000","751809000","1328400000","3007728000","3016393000","1810359000","5157580000","13340904000","22120579000","31935362000","21038289000","21998888000","14115534000","14071277000","11536221000","9242760000","17434428000","17871502000","21582205000","21100229000","19741726000","22259147000","16747267000","37394087000","26297953000","",
"Brazil","BRA","PPG, other private creditors (AMT, current US$)","DT.AMT.PROP.CD","","","","","","","","","","","42915000","65915000","119142000","202234000","262787000","335315000","383583000","460724000","674532000","927588000","898217000","979360000","1044940000","485684000","557674000","324082000","543973000","355000000","536318000","426705000","479339000","689247000","618871000","582666000","767151000","834168000","686397000","597392000","751670000","284740000","237466000","286846000","863749000","537860000","38629000","36686000","40371000","97698000","85631000","85552000","77272000","35673000","31872000","32423000","25752000","25216000",
"Brazil","BRA","PPG, private creditors (AMT, current US$)","DT.AMT.PRVT.CD","","","","","","","","","","","179865000","237456000","314571000","437925000","496887000","735633000","815720000","1310044000","2254482000","3180112000","3359784000","3321293000","3285655000","1255860000","1285773000","606078000","1026926000","1190099000","1134356000","4999003000","2166649000","1070443000","1082824000","1213808000","1740828000","2803761000","3505643000","3855434000","7505017000","9985375000","3839311000","7109840000","10424269000","8292513000","7965943000","6147129000","19948510000","11829425000","13950527000","4339452000","6963498000","7497620000","4368636000","10441715000","4816564000","10729944000",
"Brazil","BRA","Principal arrears, long-term DOD (US$)","DT.AXA.DPPG.CD","","","","","","","","","","","2724000","20775000","34994000","40652000","39742000","46242000","60379000","127932000","276778000","343926000","397857000","408101000","408905000","404427000","602432000","592141000","764304000","1305673000","993850000","1519751000","3602530000","4703345000","3893332000","5102674000","3279694000","3917708000","2941971000","2858201000","1899982000","1976686000","1821312000","0","0","0","9000","0","40000","56000","51000","4000","261000","299000","207000","15705000","1772000","",
"Brazil","BRA","Principal arrears, official creditors (current US$)","DT.AXA.OFFT.CD","","","","","","","","","","","0","0","0","0","0","771000","1030000","1293000","1877000","2690000","2689000","7133000","19589000","24713000","88038000","83681000","99982000","424962000","464008000","532845000","788676000","1676895000","733251000","812697000","904464000","883065000","778575000","748165000","383800000","154523000","599322000","0","0","0","0","0","8000","0","0","0","0","0","0","0","0","",
"Brazil","BRA","Principal arrears, private creditors (current US$)","DT.AXA.PRVT.CD","","","","","","","","","","","2724000","20775000","34994000","40652000","39742000","45471000","59349000","126639000","274901000","341236000","395168000","400968000","389316000","379714000","514394000","508460000","664322000","880711000","529842000","986906000","2813854000","3026450000","3160081000","4289977000","2375230000","3034643000","2163396000","2110036000","1516182000","1822163000","1221990000","0","0","0","9000","0","32000","56000","51000","4000","261000","299000","207000","15705000","1772000","",
"Brazil","BRA","Principal forgiven (current US$)","DT.AXF.DPPG.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","21000","0","0","0","0","0","0","0","0","0","0","0","7000","0","0","0","0","0","0","56202000","0","0","0","9000","182000","86000","",
"Brazil","BRA","Principal rescheduled (current US$)","DT.AXR.DPPG.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1161081000","1065788000","313513000","4576565000","920569000","76295000","0","0","0","0","0","0","1046562000","0","25000","19890000","5908000","167957000","18457000","1441000","0","0","0","0","44000","0","",
"Brazil","BRA","Principal rescheduled, official (current US$)","DT.AXR.OFFT.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","231451000","211861000","97553000","1990920000","792309000","322000","0","0","0","0","0","0","40027000","0","0","0","2775000","0","15216000","0","0","0","0","0","0","0","",
"Brazil","BRA","Principal rescheduled, private (current US$)","DT.AXR.PRVT.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","929630000","853927000","215960000","2585645000","128260000","75973000","0","0","0","0","0","0","1006535000","0","25000","19890000","3133000","167957000","3241000","1441000","0","0","0","0","44000","0","",
"Brazil","BRA","Commitments, public and publicly guaranteed (COM, current US$)","DT.COM.DPPG.CD","","","","","","","","","","","1553869000","1529544000","2668118000","2566612000","4368979000","4884350000","7548863000","8246882000","11407254000","11174641000","10726144000","13330578000","14933141000","9652190000","9700921000","3927583000","3485150000","2534030000","5303131000","3419025000","3032986000","4810465000","5908720000","4833841000","7155287000","7670488000","12949963000","20925984000","35044099000","16704469000","30606685000","26416038000","9012812000","18799964000","9988164000","12658617000","9252101000","11068815000","12811691000","25753029000","17959686000","15697779000","34579832000","52068275000","32084545000","",
"Brazil","BRA","Commitments, IBRD (COM, current US$)","DT.COM.MIBR.CD","","","","","","","","","","","205000000","256400000","454700000","199000000","140500000","538000000","486000000","319000000","688000000","674000000","820000000","1039000000","1089500000","2066900000","305500000","1525000000","1620000000","1393500000","627500000","933000000","905000000","1348000000","1344000000","635500000","1023600000","404000000","858000000","1103600000","1290500000","1863120000","1289870000","1654150000","1588650000","1150090000","1215190000","851995000","1557059000","1365260000","3082190000","1860940000","5440204000","1337333000","4210699000","2760000000","1110200000","",
"Brazil","BRA","Commitments, IDA (COM, current US$)","DT.COM.MIDA.CD","","","","","","","","","","","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","",
"Brazil","BRA","Commitments, official creditors (COM, current US$)","DT.COM.OFFT.CD","","","","","","","","","","","546140000","614043000","1116035000","762278000","1007250000","963670000","2349726000","1561673000","1657376000","1593862000","2465491000","3264961000","3050534000","3754624000","1846876000","2674186000","2555615000","2239958000","1043836000","1334703000","1582999000","2704844000","2785318000","1968338000","3004602000","2131263000","3916702000","7805837000","23206905000","7439505000","10551249000","10635613000","4047359000","2633115000","2148808000","3640985000","2428165000","3515655000","4418755000","12087957000","9764351000","2372150000","9889001000","6460664000","3925976000","",
"Brazil","BRA","Commitments, private creditors (COM, current US$)","DT.COM.PRVT.CD","","","","","","","","","","","1007729000","915501000","1552083000","1804334000","3361729000","3920680000","5199137000","6685209000","9749878000","9580779000","8260653000","10065617000","11882607000","5897566000","7854045000","1253397000","929535000","294072000","4259295000","2084322000","1449987000","2105621000","3123402000","2865503000","4150685000","5539225000","9033261000","13120147000","11837194000","9264964000","20055436000","15780425000","4965453000","16166849000","7839356000","9017632000","6823936000","7553160000","8392936000","13665072000","8195335000","13325629000","24690831000","45607611000","28158569000","",
"Brazil","BRA","Currency composition of PPG debt, Deutsche mark (%)","DT.CUR.DMAK.ZS","","","","","","","","","","","6.7834","6.7194","4.9763","3.8849","3.088","2.6996","3.8057","8.1937","9.3752","9.0665","8.0216","6.601","5.9033","4.8466","4.2633","5.1675","5.6669","6.673","6.1158","7.9262","8.8392","9.2418","6.7849","5.7934","4.2238","5.0917","5.6301","5.3793","3.2935","2.6256","3.7074","","","","","","","","","","","","","","","",
"Brazil","BRA","Currency composition of PPG debt, Euro (%)","DT.CUR.EURO.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","14.6896","13.1264","11.6365","12.8228","9.4273","10.3839","9.7641","9.0041","7.2159","6.1046","4.3493","5.0677","4.8827","4.5802","",
"Brazil","BRA","Currency composition of PPG debt, French franc (%)","DT.CUR.FFRC.ZS","","","","","","","","","","","0.145","0.6077","1.8829","2.9023","2.5529","2.1527","1.7693","1.7319","2.1113","2.3321","2.5202","2.283","2.7214","2.1635","1.7624","2.2769","2.5542","3.9906","5.5457","5.9551","6.2852","6.4689","7.5823","6.4344","5.7988","5.9032","4.8687","2.1651","3.1936","2.4109","2.0825","","","","","","","","","","","","","","","",
"Brazil","BRA","Currency composition of PPG debt, Japanese yen (%)","DT.CUR.JYEN.ZS","","","","","","","","","","","0","0.1057","1.1634","2.7681","2.3833","2.3333","3.2454","5.4061","8.097","7.0954","8.3743","6.695","6.5433","5.9747","6.1085","7.4325","8.4667","8.9861","6.6838","5.6472","7.3894","7.5719","8.23","8.8759","7.502","8.6089","8.2102","5.6632","5.8306","7.228","7.3905","8.5495","8.4595","6.6907","6.8965","6.1114","5.3866","4.6511","5.8647","4.9654","4.9862","3.9311","2.6935","1.469","0.9265","",
"Brazil","BRA","Currency composition of PPG debt, Multiple currencies (%)","DT.CUR.MULC.ZS","","","","","","","","","","","8.9016","9.7769","9.8283","10.0365","9.9023","9.7959","8.8675","8.1912","7.074","7.0165","7.102","7.0945","7.334","8.1605","7.742","9.7421","13.9193","16.0762","12.0531","12.2783","12.698","12.7153","11.2302","10.5663","9.9314","9.4196","9.2809","10.1547","7.7023","7.6355","6.4955","5.7035","5.5291","5.5408","5.3546","4.6576","4.8602","4.748","4.4067","3.4913","2.7537","2.4522","1.7286","0.8635","0.5749","",
"Brazil","BRA","Currency composition of PPG debt, all other currencies (%)","DT.CUR.OTHC.ZS","","","","","","","","","","","7.83459999999999","7.2629","6.786","6.54810000000001","5.7808","4.35969999999999","4.43680000000001","3.3784","2.82239999999999","2.38809999999999","2.5857","2.6551","2.6545","2.80709999999999","3.02050000000001","2.78519999999999","2.5433","2.292","1.4157","1.36839999999999","1.27889999999999","1.203","1.25489999999999","1.1662","0.8673","0.835400000000007","0.768299999999996","0.740800000000007","0.6815","0.682199999999995","0.765600000000006","0.618500000000012","0.558399999999992","0.497399999999999","0.445099999999997","0.402000000000001","0.342399999999998","0.352400000000003","0.308599999999998","0.2286","0.844500000000011","0.775800000000004","2.1352","1.5655","0.947100000000006","",
"Brazil","BRA","Currency composition of PPG debt, SDR (%)","DT.CUR.SDRW.ZS","","","","","","","","","","","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0.0045","0.007","",
"Brazil","BRA","Currency composition of PPG debt, Swiss franc (%)","DT.CUR.SWFR.ZS","","","","","","","","","","","2.0576","1.7677","0.9687","0.6561","0.478","0.3032","0.4361","1.0567","1.4435","1.5302","1.2401","1.054","0.8954","0.8333","0.8132","0.9704","1.1709","1.3823","0.625","0.7162","0.9846","0.9897","0.7512","0.6923","0.3414","0.3263","0.1944","0.3363","0.2282","0.1902","0.3186","0.2954","0.1863","0.1723","0.14","0.1064","0.0037","0.0051","0.0038","0.002","0.0005","0.2244","0.187","0.1642","0.116","",
"Brazil","BRA","Currency composition of PPG debt, Pound sterling (%)","DT.CUR.UKPS.ZS","","","","","","","","","","","7.0387","5.6698","7.5076","5.8338","4.4422","3.0246","2.1668","2.9241","2.141","2.7211","2.5032","1.7058","1.1372","1.0135","0.6775","0.885","1.0111","1.3614","1.7371","1.7028","1.8094","1.9316","2.0654","2.1245","2.0465","1.79","2.1485","1.3325","1.6985","1.224","1.0308","0.8268","0.585","0.4958","0.3495","0.2465","0.3328","0.0019","0.099","0.1003","0.0726","0.0738","0.6514","0.5264","0.6014","",
"Brazil","BRA","Currency composition of PPG debt, U.S. dollars (%)","DT.CUR.USDL.ZS","","","","","","","","","","","67.0543","67.7815","64.9085","65.5373","70.1117","74.1466","74.0675","68.0538","65.9445","67.0446","67.0917","71.523","72.5515","74.0021","75.121","70.1132","63.9135","58.1683","65.1969","63.7376","60.0707","59.1472","61.505","63.8486","69.1453","67.8968","67.637","71.7786","73.8496","72.3178","69.9721","69.3167","71.5553","74.9665","73.9915","79.0488","78.6904","80.4774","80.3131","83.9965","85.2379","88.1934","87.5366","90.5242","92.2469","",
"Brazil","BRA","Debt forgiveness or reduction (current US$)","DT.DFR.DPPG.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","-4724021000","-483000000","-690000000","-257000000","0","-3900106000","0","0","-600000000","0","-1180614000","-137160000","-7000","0","0","0","0","0","0","-56202000","0","0","0","-9000","-182000","-579917000","",
"Brazil","BRA","PPG, bilateral (DIS, current US$)","DT.DIS.BLAT.CD","","","","","","","","","","","152332000","140222000","173565000","227261000","493583000","877599000","376167000","408431000","622078000","348053000","809563000","1263919000","951871000","995466000","875938000","742965000","743300000","410020000","256721000","490835000","321302000","260705000","27815000","12514000","98241000","747256000","885497000","293351000","2533277000","1084223000","766239000","1683364000","2139078000","983834000","840953000","1000739000","384333000","77553000","1386398000","3575095000","4307049000","389063000","704152000","649920000","778176000","1646213000",
"Brazil","BRA","PPG, bilateral concessional (DIS, current US$)","DT.DIS.BLTC.CD","","","","","","","","","","","96407000","86705000","119584000","86445000","176958000","394054000","36020000","30680000","95652000","14528000","46874000","98036000","144156000","99431000","16958000","38032000","34811000","150208000","31542000","62136000","86000000","34795000","4779000","9214000","3399000","15677000","3153000","4121000","352568000","525445000","527164000","456445000","807248000","721532000","722619000","496585000","59498000","55246000","1146398000","3429858000","4271264000","336671000","694167000","649920000","778176000","",
"Brazil","BRA","IMF purchases (DIS, current US$)","DT.DIS.DIMF.CD","","","","","","","","","","","0","0","0","0","0","0","0","0","0","0","0","0","550600000","2166830000","1787770000","0","0","0","491048000","0","0","0","179598000","0","0","0","0","0","4638836000","6085088000","0","6718342000","15893223000","17674417000","0","0","0","0","0","0","0","0","0","0","0","",
"Brazil","BRA","Disbursements on external debt, long-term + IMF (DIS, current US$)","DT.DIS.DLTF.CD","","","","","","","","","","","1839454000","2043152000","4402832000","3881493000","8244994000","7557440000","8168021000","9835958000","14846068000","12233772000","11449632000","16207476000","16754612000","10124109000","12279173000","3483692000","4015039000","2867085000","7110897000","4627723000","4113402000","4891863000","9417438000","16065063000","12019642000","20261966000","29747132000","44347072000","66697834000","46703793000","44078605000","45064976000","40621814000","45423945000","27071385000","27414268000","52636218000","59915256000","69558751000","57674545000","85378954000","111458311000","79638485000","107237852000","115769632000","",
"Brazil","BRA","Disbursements on external debt, long-term (DIS, current US$)","DT.DIS.DLXF.CD","","","","","","","","","","","1839454000","2043152000","4402832000","3881493000","8244994000","7557440000","8168021000","9835958000","14846068000","12233772000","11449632000","16207476000","16204012000","7957279000","10491403000","3483692000","4015039000","2867085000","6619849000","4627723000","4113402000","4891863000","9237840000","16065063000","12019642000","20261966000","29747132000","44347072000","62058998000","40618705000","44078605000","38346634000","24728591000","27749528000","27071385000","27414268000","52636218000","59915256000","69558751000","57674545000","85378954000","111458311000","79638485000","107237852000","115769632000","12320913000",
"Brazil","BRA","Disbursements on external debt, private nonguaranteed (PNG) (DIS, current US$)","DT.DIS.DPNG.CD","","","","","","","","","","","900000000","959700000","2151500000","1504600000","4317000000","3194000000","3238600000","3860700000","5048100000","2575800000","3191600000","6061500000","4844200000","235200000","0","0","0","0","169910000","849664000","875000000","1026474000","6947199000","11027984000","8368446000","12095873000","19526072000","33339895000","42378528000","25908899000","24415053000","22458838000","10458044000","15301169000","14104573000","14206935000","41500024000","53630480000","52862965000","43942526000","65422005000","97803087000","51651523000","70894174000","73972131000","",
"Brazil","BRA","Disbursements on external debt, public and publicly guaranteed (PPG) (DIS, current US$)","DT.DIS.DPPG.CD","","","","","","","","","","","939454000","1083452000","2251332000","2376893000","3927994000","4363440000","4929421000","5975258000","9797968000","9657972000","8258032000","10145976000","11359812000","7722079000","10491403000","3483692000","4015039000","2867085000","6449939000","3778059000","3238402000","3865389000","2290641000","5037079000","3651196000","8166093000","10221060000","11007177000","19680470000","14709806000","19663552000","15887796000","14270547000","12448359000","12966812000","13207333000","11136194000","6284776000","16695786000","13732019000","19956949000","13655224000","27986962000","36343678000","41797501000","",
"Brazil","BRA","IDA grants (current US$)","DT.DIS.IDAG.CD","","","","","","","","","","","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","",
"Brazil","BRA","PPG, IBRD (DIS, current US$)","DT.DIS.MIBR.CD","","","","","","","","","","","60920000","101721000","160981000","189080000","247167000","249260000","172658000","298782000","274889000","301642000","343186000","386950000","623170000","1204355000","1299911000","764708000","1619182000","914690000","994044000","818675000","782146000","839751000","580918000","471025000","640412000","837500000","1500338000","1416166000","1239930000","1532754000","1692278000","1638621000","1400376000","1291225000","1447168000","773180000","2202837000","606086000","1726398000","1274175000","4472182000","2017509000","2725076000","2602179000","2326341000","",
"Brazil","BRA","PPG, IDA (DIS, current US$)","DT.DIS.MIDA.CD","","","","","","","","","","","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","",
"Brazil","BRA","PPG, multilateral (DIS, current US$)","DT.DIS.MLAT.CD","","","","","","","","","","","163762000","193385000","304261000","311385000","434987000","415050000","323682000","421543000","468688000","561372000","565909000","638908000","1060653000","1491569000","1702126000","1228340000","1981950000","1232162000","1335638000","1090873000","1027573000","1090259000","909459000","1557787000","983894000","1312268000","2315044000","2782626000","7036892000","4631717000","4505821000","2676265000","3109378000","2353070000","1950040000","2326291000","3929052000","1987039000","2966905000","3270251000","7009908000","2861111000","4280690000","4603155000","4453593000","1766658000",
"Brazil","BRA","PPG, multilateral concessional (DIS, current US$)","DT.DIS.MLTC.CD","","","","","","","","","","","56159000","45331000","62724000","62519000","53500000","52589000","40733000","34362000","50390000","47708000","33604000","42258000","69571000","40840000","48146000","80456000","75279000","40919000","37209000","15813000","21488000","10609000","25710000","696745000","31561000","54025000","50123000","59781000","56466000","88435000","18992000","14851000","18364000","7080000","18876000","89100000","180923000","21442000","29275000","50548000","646026000","132326000","292341000","340333000","437210000","",
"Brazil","BRA","PPG, official creditors (DIS, current US$)","DT.DIS.OFFT.CD","","","","","","","","","","","316094000","333607000","477826000","538646000","928570000","1292649000","699849000","829974000","1090766000","909425000","1375472000","1902827000","2012524000","2487035000","2578064000","1971305000","2725250000","1642182000","1592359000","1581708000","1348875000","1350964000","937274000","1570301000","1082135000","2059524000","3200541000","3075977000","9570169000","5715940000","5272060000","4359629000","5248456000","3336904000","2790993000","3327030000","4313385000","2064592000","4353303000","6845346000","11316957000","3250174000","4984842000","5253075000","5231769000","3412871000",
"Brazil","BRA","PPG, bonds (DIS, current US$)","DT.DIS.PBND.CD","","","","","","","","","","","0","0","96450000","36805000","25000000","0","191044000","780244000","940400000","656768000","377899000","45455000","111995000","0","0","0","0","0","674741000","0","200000000","1037349000","820000000","1319875000","401874000","1661226000","4345375000","4433764000","2934493000","8520491000","10836359000","10019819000","4772210000","8000000000","5743304000","8251716000","5614077000","3363105000","10254437000","5100000000","5433297000","3630889000","6587414000","8679567000","6319006000","",
"Brazil","BRA","PPG, commercial banks (DIS, current US$)","DT.DIS.PCBK.CD","","","","","","","","","","","333127000","506309000","938499000","1278653000","2280963000","2585188000","2907403000","3118181000","6476246000","6573942000","4873451000","7261644000","7073919000","4357389000","7009805000","493360000","290824000","164484000","3282144000","1228454000","863554000","1027817000","340888000","2033410000","1820177000","4340382000","2526479000","3051422000","7158566000","453905000","3531687000","1409455000","4067516000","1042165000","4396343000","1608270000","1189882000","806470000","2079880000","1728442000","3092231000","6744283000","6195386000","22410738000","25801307000","8243475000",
"Brazil","BRA","PNG, bonds (DIS, current US$)","DT.DIS.PNGB.CD","","","","","","","","","","","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","398125000","2405000000","4760898000","3515771000","4563181000","5057634000","5750000000","3488535000","1344688000","2886005000","2929722000","2054502000","5159624000","5199318000","6579497000","9832027000","13929991000","6754000000","17015000000","32384268000","30765054000","8821764000","4780027000","8163429000","",
"Brazil","BRA","PNG, commercial banks and other creditors (DIS, current US$)","DT.DIS.PNGC.CD","","","","","","","","","","","900000000","959700000","2151500000","1504600000","4317000000","3194000000","3238600000","3860700000","5048100000","2575800000","3191600000","6061500000","4844200000","235200000","0","0","0","0","169910000","849664000","875000000","628349000","4542199000","6267086000","4852675000","7532692000","14468438000","27589895000","38889993000","24564211000","21529048000","19529116000","8403542000","10141545000","8905255000","7627438000","31667997000","39700489000","46108965000","26927526000","33037737000","67038033000","42829759000","66114147000","65808702000","",
"Brazil","BRA","PPG, other private creditors (DIS, current US$)","DT.DIS.PROP.CD","","","","","","","","","","","290233000","243536000","738557000","522789000","693461000","485603000","1131125000","1246859000","1290556000","1517837000","1631210000","936050000","2161374000","877655000","903534000","1019027000","998965000","1060419000","900695000","967897000","825973000","449259000","192479000","113493000","347010000","104961000","148665000","446014000","17242000","19470000","23446000","98893000","182365000","69290000","36172000","20317000","18850000","50609000","8166000","58231000","114464000","29878000","10219320000","298000","4445419000","1378000",
"Brazil","BRA","PPG, private creditors (DIS, current US$)","DT.DIS.PRVT.CD","","","","","","","","","","","623360000","749845000","1773506000","1838247000","2999424000","3070791000","4229572000","5145284000","8707202000","8748547000","6882560000","8243149000","9347288000","5235044000","7913339000","1512387000","1289789000","1224903000","4857580000","2196351000","1889527000","2514425000","1353367000","3466778000","2569061000","6106569000","7020519000","7931200000","10110301000","8993866000","14391492000","11528167000","9022091000","9111455000","10175819000","9880303000","6822809000","4220184000","12342483000","6886673000","8639992000","10405050000","23002120000","31090603000","36565732000","8897723000",
"Brazil","BRA","External debt stocks, concessional (DOD, current US$)","DT.DOD.ALLC.CD","","","","","","","","","","","1544814000","1622724000","1779153000","1852029000","2014543000","2270700000","2283373000","2253610000","2312307000","2260825000","2171835000","2135244000","2197553000","2019229000","1937923000","2056832000","2164777000","2545163000","3460822000","3405400000","3495707000","3450263000","6484545000","6334648000","6484718000","6366325000","5600073000","1872745000","4763974000","4777645000","2515820000","3100104000","3630686000","3855828000","4065292000","3718350000","2983810000","2896685000","3992130000","7039531000","11585818000","11606848000","11812717000","12017179000","12540193000","",
"Brazil","BRA","Concessional debt (% of total external debt)","DT.DOD.ALLC.ZS","","","","","","","","","","","25.815","21.0026","14.9991","12.3064","8.9742","8.1874","6.7556","5.3029","4.2019","3.6587","3.0172","2.609","2.3312","2.0407","1.8582","1.9759","1.9756","2.1138","2.9337","2.9648","2.9055","2.8436","5.0063","4.3808","4.2412","3.9561","3.0874","0.9667","1.9688","1.951","1.0377","1.3481","1.5653","1.6344","1.842","1.9741","1.5356","1.2148","1.5181","2.4993","3.288","2.8726","2.6815","2.4838","2.2519","",
"Brazil","BRA","PPG, bilateral (DOD, current US$)","DT.DOD.BLAT.CD","","","","","","","","","","","1406080000","1504006000","1643437000","1753763000","2175854000","2819899000","3024488000","3298763000","3824962000","3769180000","4219301000","4838902000","4986886000","5224777000","5369518000","5372230000","5524634000","8430250000","14097719000","15451466000","17954489000","17693562000","20531115000","19474127000","19316339000","18436086000","15908216000","7324946000","11485256000","9995375000","10940774000","9326411000","9999750000","9096640000","7843630000","6486950000","3453876000","3427119000","4682130000","7641560000","11537485000","11341973000","11098995000","10904595000","10991627000","",
"Brazil","BRA","PPG, bilateral concessional (DOD, current US$)","DT.DOD.BLTC.CD","","","","","","","","","","","1311044000","1353359000","1459610000","1486788000","1614890000","1883831000","1837530000","1799916000","1837804000","1770349000","1682046000","1640710000","1676228000","1508401000","1425683000","1509864000","1589715000","1977377000","2905640000","2883675000","2999510000","2992379000","6044993000","5871641000","6045964000","5907888000","5131028000","1383264000","4258657000","4226287000","1986643000","2593019000","3144499000","3405991000","3634849000","3242254000","2383474000","2312946000","3430031000","6486574000","10456816000","10420213000","10409851000","10416191000","10656464000","",
"Brazil","BRA","External debt stocks, total (DOD, current US$)","DT.DOD.DECT.CD","","","","","","","","","","","5984158000","7726268000","11861681000","15049207000","22448141000","27733954000","33799343000","42497219000","55029134000","61792296000","71981784000","81838434000","94263767000","98946047000","104288291000","104095853000","109572570000","120403983000","117966798000","114857512000","120309909000","121334294000","129525315000","144597613000","152896267000","160921243000","181381552000","193724040000","241970955000","244877277000","242431549000","229959713000","231944164000","235907976000","220693598000","188351368000","194303020000","238444455000","262955670000","281651132000","352364412000","404046105000","440512741000","483814083000","556871157000","",
"Brazil","BRA","Total change in external debt stocks (current US$)","DT.DOD.DECT.CD.CG","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","-3109286000","5452397000","1024385000","8191021000","15072298000","8298654000","8024976000","20460309000","12342488000","48246915000","2906322000","-2445728000","-12471836000","1984451000","3963812000","-15214378000","-32342230000","5951652000","44141435000","24511215000","18695462000","70713280000","51681693000","36466636000","43301342000","73057074000","",
"Brazil","BRA","External debt stocks (% of exports of goods, services and primary income)","DT.DOD.DECT.EX.ZS","","","","","","","","","","","","","","","","279.041694335446","299.559895417885","314.561206513694","379.799392642694","343.328680964552","309.266526315789","303.972194777699","401.652251906771","406.499515221232","345.26830326105","355.166853185029","436.005610600454","419.088002088409","320.361725008826","295.894870804029","331.185919563961","338.525456168741","315.92310788068","322.022165556867","298.555547527923","286.857362116296","313.505171460177","300.244939710486","379.973547840015","414.091715706169","355.447082663396","324.691171408758","316.827276972455","271.56488006078","196.595487714589","138.290779067726","119.393785726255","121.595760853487","109.153812973515","148.578100814044","146.25806504065","132.473449884188","150.175886016502","166.126892717254","200.557015984536","",
"Brazil","BRA","External debt stocks (% of GNI)","DT.DOD.DECT.GN.ZS","","","","","","","","","","","14.3406746005417","15.8701894451624","20.4246406789032","19.2001172224614","21.5173869658371","22.7296473045659","22.4792544884791","24.5289360409417","28.06452061806","28.2227207846062","31.6681982610703","32.3908551469211","35.2744929481829","51.6834008171517","52.899357747163","49.3196006266232","42.7727352742162","42.5522691678778","37.1926904198986","25.6087418535637","26.7550486821722","30.4699677814542","33.8010619157953","33.8137820073314","28.4659545587458","21.2328931012145","21.9187730652036","22.6571035418314","29.3111931959074","43.1070175900151","38.6721794357015","43.0444876840414","47.6760487015494","44.1321859326875","34.2815858018427","21.9845043463381","18.2903944078709","17.8115943375403","16.288152171594","17.7349099724938","16.2175573771154","15.7157745282589","18.5044692990524","20.5350590398283","24.1135013938713","",
"Brazil","BRA","Use of IMF credit (DOD, current US$)","DT.DOD.DIMF.CD","","","","","","","","","","","0","0","0","0","0","0","0","0","0","0","0","0","550200000","2644300000","4185370000","4619300000","4501170000","3976342000","3333055000","2422470000","1820550000","1237527000","799424000","303586000","186131000","141554000","67607000","31448000","4825009000","9318883000","2235038000","8787814000","21314976000","28850329000","25586391000","512636000","539583000","566788000","552449000","4526043000","4446186000","4432444000","4437208000","4446100000","4182827000","",
"Brazil","BRA","External debt stocks, long-term (DOD, current US$)","DT.DOD.DLXF.CD","","","","","","","","","","","5270137000","6803246000","10446634000","13248152000","19746080000","24427849000","29754800000","36496250000","47951485000","53149475000","58442262000","66486052000","76230143000","82039598000","89089117000","90096867000","95641978000","103054505000","104141563000","94421328000","94774211000","93785251000","104639789000","112971403000","120539289000","129558530000","145765159000","159295513000","207265433000","206327971000","209223360000","192898639000","187234188000","182463403000","169840183000","163845732000","173440425000","198631571000","225759125000","237339009000","282425890000","357473331000","403492500000","445861476000","494511390000","",
"Brazil","BRA","External debt stocks, private nonguaranteed (PNG) (DOD, current US$)","DT.DOD.DPNG.CD","","","","","","","","","","","1706300000","2427100000","4238800000","5150000000","8181900000","9592900000","11133300000","13005800000","16151800000","15864100000","16605300000","19791600000","23123600000","21512000000","19303955000","17176533000","14641200000","14434321000","11514120000","6007453000","6671030000","7836905000","13179826000","20915844000","24700613000","30830193000","48975253000","75833027000","108116376000","113536099000","112681696000","96280218000","87547344000","82399047000","72384316000","69504729000","88888766000","118761665000","145842194000","149825820000","184940323000","262761260000","286829874000","309258259000","320238867000","",
"Brazil","BRA","External debt stocks, public and publicly guaranteed (PPG) (DOD, current US$)","DT.DOD.DPPG.CD","","","","","","","","","","","3563837000","4376146000","6207834000","8098152000","11564180000","14834949000","18621500000","23490450000","31799685000","37285375000","41836962000","46694452000","53106543000","60527598000","69785162000","72920334000","81000778000","88620184000","92627443000","88413875000","88103181000","85948346000","91459963000","92055559000","95838676000","98728337000","96789906000","83462486000","99149057000","92791872000","96541664000","96618421000","99686844000","100064356000","97455867000","94341003000","84551659000","79869906000","79916931000","87513189000","97485567000","94712071000","116662626000","136603217000","174272523000","",
"Brazil","BRA","External debt stocks, short-term (DOD, current US$)","DT.DOD.DSTC.CD","","","","","","","","","","","714021000","923022000","1415047000","1801055000","2702061000","3306105000","4044543000","6000969000","7077649000","8642821000","13539522000","15352382000","17483424000","14262149000","11013804000","9379686000","9429422000","13373136000","10492180000","18013714000","23715148000","26311516000","24086102000","31322624000","32170847000","31221159000","35548786000","34397079000","29880513000","29230423000","30973151000","28273260000","23395000000","24594244000","25267024000","23993000000","20323012000","39246096000","36644096000","39786080000","65492336000","42140330000","32583033000","33506507000","58176940000","",
"Brazil","BRA","Short-term debt (% of total reserves)","DT.DOD.DSTC.IR.ZS","","","","","","","","","","","60.0065717960904","52.6279237908601","33.541428212159","27.6707855157201","49.458962690167","79.3499450219166","60.6664432070766","80.6373757810648","58.060958360511","87.845113557553","196.931911828192","205.25641952217","437.374630316342","312.665271640799","92.0823943112325","80.7343966190803","139.619001185598","178.856981281608","129.690442170869","206.371592076598","257.782005132116","300.750076236097","103.531358174923","98.6635329907568","83.5784909960529","60.6502373601554","59.560195089883","66.5249640453794","68.061548772753","80.4308019926723","93.8145451850972","78.8292778406213","61.8389449916777","49.8896501484387","47.7322911994963","44.5972469172573","23.67466757104","21.7630497561111","18.9098255548881","16.6790347799968","22.6951142588906","11.9713363434892","8.73162922017459","9.33806385096819","16.0015679071071","",
"Brazil","BRA","Short-term debt (% of exports of goods, services and primary income)","DT.DOD.DSTC.XP.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","17.6160946004996","12.4879399216227","20.0137460695074","15.2110897402078","20.9881741746338","27.1843279943031","13.8164164644436","11.1079477908089","11.5051034605363","20.952417178436","",
"Brazil","BRA","Short-term debt (% of total external debt)","DT.DOD.DSTC.ZS","","","","","","","","","","","11.9318","11.9465","11.9295","11.9677","12.0369","11.9207","11.9663","14.1208","12.8616","13.9868","18.8096","18.7593","18.5473","14.414","10.5609","9.0106","8.6056","11.1068","8.8941","15.6835","19.7117","21.6851","18.5956","21.6619","21.0409","19.4015","19.5988","17.7557","12.3488","11.9367","12.776","12.2948","10.0864","10.4253","11.4489","12.7384","10.4594","16.4592","13.9354","14.126","18.5865","10.4295","7.3966","6.9254","10.4471","",
"Brazil","BRA","Debt forgiveness grants (current US$)","DT.DOD.MDRI.CD","","","","","","","","","","","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","",
"Brazil","BRA","PPG, IBRD (DOD, current US$)","DT.DOD.MIBR.CD","","","","","","","","","","","205969000","292749000","430949000","595841000","821285000","1044749000","1172511000","1370769000","1561797000","1789535000","2034718000","2285900000","2694305000","3628249000","3969065000","5274417000","7545730000","9383596000","8610994000","8310966000","8426717000","8164643000","7238026000","6574882000","6310906000","6037664000","5876244000","5742737000","6298359000","6822419000","7376553000","7963197000","8584823000","8588160000","8668375000","8083177000","9694176000","9676332000","10670772000","10065337000","13523256000","9033932000","11438808000","13598409000","15288166000","",
"Brazil","BRA","PPG, IDA (DOD, current US$)","DT.DOD.MIDA.CD","","","","","","","","","","","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","",
"Brazil","BRA","PPG, multilateral (DOD, current US$)","DT.DOD.MLAT.CD","","","","","","","","","","","622365000","773194000","1021492000","1267796000","1636382000","1930763000","2189033000","2471125000","2828758000","3201321000","3548683000","3896806000","4588368000","5604513000","6107273000","7901356000","10615499000","12921496000","12032976000","11678581000","11963754000","11604407000","10577253000","10004639000","9878106000","9884506000","9928684000","10608190000","16873993000","19151572000","18824583000","19966165000","21545359000","21036531000","19905735000","19673246000","22276934000","23038966000","24647336000","25013285000","29979789000","25225841000","27906107000","28468857000","31074812000","",
"Brazil","BRA","Multilateral debt (% of total external debt)","DT.DOD.MLAT.ZS","","","","","","","","","","","10.4002","10.0073","8.6116","8.4243","7.2896","6.9617","6.4765","5.8147","5.1404","5.1807","4.9299","4.7615","4.8675","5.6642","5.8561","7.5904","9.688","10.7317","10.2003","10.1678","9.9441","9.5639","8.1661","6.9189","6.4606","6.1424","5.4739","5.4759","6.9735","7.8208","7.7649","8.6824","9.289","8.9172","9.0196","10.4449","11.465","9.6621","9.3731","8.8809","8.5081","6.2433","6.3349","5.8842","5.5802","",
"Brazil","BRA","PPG, multilateral concessional (DOD, current US$)","DT.DOD.MLTC.CD","","","","","","","","","","","233770000","269365000","319543000","365241000","399653000","386869000","445843000","453694000","474503000","490476000","489789000","494534000","521325000","510828000","512240000","546968000","575062000","567786000","555182000","521725000","496197000","457884000","439552000","463007000","438754000","458437000","469045000","489481000","505317000","551358000","529177000","507085000","486187000","449837000","430443000","476096000","600336000","583739000","562099000","552957000","1129002000","1186635000","1402866000","1600988000","1883729000","",
"Brazil","BRA","IBRD loans and IDA credits (DOD, current US$)","DT.DOD.MWBG.CD","","","","","","","","","","","205969000","292749000","430949000","595841000","821285000","1044749000","1172511000","1370769000","1561797000","1789535000","2034718000","2285900000","2694305000","3628249000","3969065000","5274417000","7545730000","9383596000","8610994000","8310966000","8426717000","8164643000","7238026000","6574882000","6310906000","6037664000","5876244000","5742737000","6298359000","6822419000","7376553000","7963197000","8584823000","8588160000","8668375000","8083177000","9694176000","9676332000","10670772000","10065337000","13523256000","9033932000","11438808000","13598409000","15288166000","",
"Brazil","BRA","PPG, official creditors (DOD, current US$)","DT.DOD.OFFT.CD","","","","","","","","","","","2028445000","2277200000","2664929000","3021559000","3812236000","4750662000","5213521000","5769888000","6653720000","6970501000","7767984000","8735708000","9575254000","10829290000","11476791000","13273586000","16140133000","21351746000","26130695000","27130047000","29918243000","29297969000","31108368000","29478766000","29194445000","28320592000","25836900000","17933136000","28359249000","29146947000","29765357000","29292576000","31545109000","30133171000","27749365000","26160196000","25730810000","26466085000","29329466000","32654845000","41517274000","36567814000","39005102000","39373452000","42066439000","",
"Brazil","BRA","PPG, bonds (DOD, current US$)","DT.DOD.PBND.CD","","","","","","","","","","","0","0","98801000","178656000","201842000","192288000","390284000","1258210000","2373186000","2963607000","3233135000","2886802000","2525423000","2230998000","1698023000","1816358000","1787045000","1515539000","1545805000","2182816000","2339336000","3146880000","10766175000","11604150000","53566178000","54615312000","57402998000","51902594000","51689760000","52510520000","54095735000","50830379000","54790820000","60553443000","57498387000","59077117000","50247454000","46825919000","43236615000","47350284000","46806039000","45407824000","48471427000","52125188000","53855386000","",
"Brazil","BRA","PPG, commercial banks (DOD, current US$)","DT.DOD.PCBK.CD","","","","","","","","","","","748025000","1110279000","1866784000","2992037000","5186203000","7473787000","9910443000","12267365000","17615026000","21588301000","24329179000","29210400000","34206580000","41002895000","50487382000","50043526000","54066802000","56068371000","56386411000","51108639000","47460680000","45618138000","44479718000","46409136000","8712348000","12156748000","10724749000","11163052000","17250614000","9605677000","11478301000","14529330000","11859254000","8413371000","11235760000","8318778000","8441802000","6275852000","7131469000","7318644000","8928642000","12508659000","18686536000","34489527000","63678858000","",
"Brazil","BRA","PNG, bonds (DOD, current US$)","DT.DOD.PNGB.CD","","","","","","","","","","","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","398125000","2803125000","7365898000","9390666000","11289705000","14134989000","14819662000","16778705000","16822680000","16846111000","17636790000","16475906000","42018228000","38376120000","35968972000","38764045000","45311485000","37855388000","53342340000","83032010000","79362604000","69053121000","61384023000","55073296000","",
"Brazil","BRA","PNG, commercial banks and other creditors (DOD, current US$)","DT.DOD.PNGC.CD","","","","","","","","","","","1706300000","2427100000","4238800000","5150000000","8181900000","9592900000","11133300000","13005800000","16151800000","15864100000","16605300000","19791600000","23123600000","21512000000","19303955000","17176533000","14641200000","14434321000","11514120000","6007453000","6671030000","7438780000","10376701000","13549946000","15309947000","19540488000","34840264000","61013365000","91337671000","96713419000","95835585000","78643428000","71071438000","40380819000","34008196000","33535757000","50124721000","73450180000","107986806000","96483480000","101908313000","183398656000","217776753000","247874236000","265165571000","",
"Brazil","BRA","PPG, other private creditors (DOD, current US$)","DT.DOD.PROP.CD","","","","","","","","","","","787367000","988667000","1577320000","1905900000","2363899000","2418212000","3107252000","4194987000","5157753000","5762966000","6506664000","5861542000","6799286000","6464415000","6122966000","7786864000","9006798000","9684528000","8564532000","7992373000","8384922000","7885359000","5105702000","4563507000","4365705000","3635685000","2825259000","2463704000","1849434000","1528728000","1202271000","1966136000","1491661000","964371000","972355000","784912000","131593000","302050000","219381000","189416000","233612000","227774000","10499561000","10615050000","14671840000","",
"Brazil","BRA","External debt stocks, long-term private sector (DOD, current US$)","DT.DOD.PRVS.CD","","","","","","","","","","","1816205000","2583238000","4507206000","5524755000","8715034000","10353068000","12172611000","14253019000","17942130000","17785607000","18685165000","21756563000","25043382000","23357611000","20986776000","18853843000","16165630000","15881426000","12061889000","6607817000","7241334000","8338082000","13625679000","21329210000","25166613000","31696635000","49755463000","76460645000","110225965000","115543335000","113127479000","96605794000","88321664000","83683299000","73760736000","70855023000","90089429000","119982737000","147092062000","152435458000","188041687000","266139332000","290146179000","312260553000","322837545000","",
"Brazil","BRA","PPG, private creditors (DOD, current US$)","DT.DOD.PRVT.CD","","","","","","","","","","","1535392000","2098946000","3542905000","5076593000","7751944000","10084287000","13407979000","17720562000","25145965000","30314874000","34068978000","37958744000","43531289000","49698308000","58308371000","59646748000","64860645000","67268438000","66496748000","61283828000","58184938000","56650377000","60351595000","62576793000","66644231000","70407745000","70953006000","65529350000","70789808000","63644925000","66776307000","67325845000","68141735000","69931185000","69706502000","68180807000","58820849000","53403821000","50587465000","54858344000","55968293000","58144257000","77657524000","97229765000","132206084000","",
"Brazil","BRA","External debt stocks, long-term public sector (DOD, current US$)","DT.DOD.PUBS.CD","","","","","","","","","","","3453932000","4220008000","5939428000","7723397000","11031046000","14074781000","17582189000","22243231000","30009355000","35363868000","39757097000","44729489000","51186761000","58681987000","68102341000","71243024000","79476348000","87173079000","92079674000","87813511000","87532877000","85447169000","91014110000","91642193000","95372676000","97861895000","96009696000","82834868000","97039468000","90784636000","96095881000","96292845000","98912524000","98780104000","96079447000","92990709000","83350996000","78648834000","78667063000","84903551000","94384203000","91333999000","113346321000","133600923000","171673845000","",
"Brazil","BRA","Present value of external debt (current US$)","DT.DOD.PVLX.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","151608751221.902","",
"Brazil","BRA","Present value of external debt (% of exports of goods, services and primary income)","DT.DOD.PVLX.EX.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","54.6018560307775","",
"Brazil","BRA","Present value of external debt (% of GNI)","DT.DOD.PVLX.GN.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","6.56492581445086","",
"Brazil","BRA","Residual, debt stock-flow reconciliation (current US$)","DT.DOD.RSDL.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","74435912000","83600957000","81604398000","59744148000","66247500000","8083313000","-12197184000","34790093000","45287515000","56195918000","48811992000","33602609000","24300206000","56009909000","40754479000","33064468000","32376740000","49996292000","39883591000","22496401000","10676447000","24066869000","29089340000","10258621000","17407914000","-17973993000","",
"Brazil","BRA","External debt stocks, variable rate (DOD, current US$)","DT.DOD.VTOT.CD","","","","","","","","","","","2111348000","3268867000","5850286000","7940083000","13172673000","16939878000","21031053000","25178425000","33405180000","37323711000","41556948000","50391177000","58758151000","64469740000","72114630000","69263376000","69927096000","72736464000","78318009000","68672992000","66638224000","66320794000","81123426000","89746133000","88805414000","96241406000","110471475000","129353152000","166687916000","166652582000","157193267000","138131156000","129590652000","122150120000","109785928000","99822194000","114103912000","145183479000","174509450000","181716207000","226468196000","300144293000","329565805000","357726295000","385918967000","",
"Brazil","BRA","Debt buyback (current US$)","DT.DSB.DPPG.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2076000000","776000000","0","0","0","203762000","0","0","2693500000","0","2970539000","6341847000","4531234000","0","0","0","0","0","0","0","0","0","0","0","0","0","",
"Brazil","BRA","Debt stock reduction (current US$)","DT.DSF.DPPG.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","6800000000","1259000000","690000000","257000000","0","4103868000","0","0","3293500000","0","4151153000","6479007000","4531234000","0","0","0","0","0","0","0","0","0","0","0","0","579831000","",
"Brazil","BRA","Debt stock rescheduled (current US$)","DT.DXR.DPPG.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1100000000","0","0","0","0","35757637000","0","0","0","0","0","0","16073000","0","0","0","4271438000","56828000","0","0","47752000","83365000","1367000","1040000","59557000","2385911000","",
"Brazil","BRA","Average grace period on new external debt commitments (years)","DT.GPA.DPPG","","","","","","","","","","","3.4321","3.7394","3.6206","3.9078","3.6926","2.6506","3.6685","4.3763","4.1274","5.4522","3.9134","3.3596","3.3716","2.7867","4.4523","3.3444","3.0151","3.4983","3.9242","3.5785","3.6708","3.8682","4.016","4.2051","3.8938","2.9087","3.6794","7.949","2.4258","4.6575","9.7235","4.8296","6.3112","7.6779","9.8512","11.258","12.1925","7.6402","10.2444","7.1314","6.8176","7.333","7.2654","5.3985","7.985","",
"Brazil","BRA","Average grace period on new external debt commitments, official (years)","DT.GPA.OFFT","","","","","","","","","","","5.624","6.0322","5.2322","4.7361","3.8111","4.6895","6.2009","4.3748","3.669","3.8522","3.9721","3.2132","3.6551","3.3742","2.7413","3.5235","3.3727","3.6664","4.3498","4.4116","4.1273","4.6407","4.5867","5.0444","5.5201","4.9323","2.8965","3.8918","1.1525","3.5715","1.2543","2.052","5.0557","4.2988","3.7831","4.3129","4.4483","3.8799","3.8395","4.9843","4.6817","4.4402","4.7465","4.8449","4.8883","",
"Brazil","BRA","Average grace period on new external debt commitments, private (years)","DT.GPA.PRVT","","","","","","","","","","","2.2442","2.2015","2.4618","3.5578","3.6571","2.1495","2.524","4.3767","4.2054","5.7184","3.8959","3.407","3.2988","2.4127","4.8546","2.9622","2.0316","2.2178","3.8199","3.045","3.1724","2.8759","3.5071","3.6286","2.7166","2.1301","4.0188","10.3628","4.9222","5.5295","14.1793","6.7016","7.3346","8.2282","11.5144","14.0622","14.9481","9.3904","13.6165","9.0307","9.3624","7.8479","8.2742","5.477","8.4167","",
"Brazil","BRA","Average grant element on new external debt commitments (%)","DT.GRE.DPPG","","","","","","","","","","","19.0174","15.195","14.3322","7.0148","0.5951","5.8442","9.2783","13.7415","0.9881","-8.5957","-8.0923","-20.5275","-9.0624","-4.3623","-10.9223","5.1033","7.3805","11.9034","2.4231","5.533","9.1673","12.9153","17.849","14.9071","12.3506","10.2125","8.1384","12.9263","6.5513","3.1249","2.6236","14.0574","15.5993","12.6511","17.6606","14.9498","16.978","13.9266","30.2144","32.8749","45.0085","29.1274","43.7504","34.1681","35.8295","",
"Brazil","BRA","Average grant element on new external debt commitments, official (%)","DT.GRE.OFFT","","","","","","","","","","","31.9055","28.0508","21.2468","18.4949","18.4696","14.9701","14.7055","14.4492","12.6763","9.1062","7.0801","1.7509","0.9562","-2.5474","5.6435","7.0671","8.3204","12.7087","15.3662","12.2387","15.2371","17.8159","17.2819","30.0001","25.1852","26.173","16.381","25.7168","8.1687","15.702","13.8285","21.7866","38.0153","38.1154","40.033","33.0392","24.0933","31.1606","42.2673","44.3106","64.1849","60.4936","61.5942","59.4276","65.7193","",
"Brazil","BRA","Average grant element on new external debt commitments, private (%)","DT.GRE.PRVT","","","","","","","","","","","12.0326","6.5724","9.3603","2.1647","-4.7604","3.6011","6.8255","13.5761","-0.9987","-11.5406","-12.6207","-27.7539","-11.6344","-5.5178","-14.8177","0.9134","4.7963","5.7693","-0.7488","1.239","2.5408","6.62","18.3548","4.5396","3.0599","4.0715","4.5645","5.3167","3.3803","-6.974","-3.2712","8.8481","-2.6721","8.5037","11.5282","7.6459","14.4462","5.9049","23.8687","22.7591","22.1607","23.5438","36.6037","30.5899","31.6622","",
"Brazil","BRA","Average interest on new external debt commitments (%)","DT.INR.DPPG","","","","","","","","","","","6.7313","7.1702","7.0888","8.5966","9.8925","8.6018","7.8985","7.5696","9.6744","11.3563","11.8966","14.9496","12.095","10.9226","12.1976","8.9212","8.2296","7.6954","9.3441","8.8199","8.1677","7.3628","6.7945","7.25","7.8199","7.2049","8.0936","7.3202","7.2356","8.8304","8.4514","6.3222","7.4306","7.0972","6.293","7.5401","7.0742","7.2494","4.8022","4.1106","2.9699","3.9674","2.7944","2.398","2.5708","",
"Brazil","BRA","Average interest on new external debt commitments, official (%)","DT.INR.OFFT","","","","","","","","","","","5.3269","5.917","6.645","6.9741","6.6383","7.3829","7.5991","7.5558","7.7302","8.4533","9.095","10.749","10.4138","10.3754","9.4699","8.6873","8.0435","7.6239","7.2321","7.6847","7.381","7.0223","7.0667","5.4611","6.1661","5.8024","6.6372","5.3268","5.9543","6.3963","5.712","4.7934","3.8768","2.4074","2.9565","4.6406","5.9575","4.5774","3.5785","2.4328","0.9023","0.9466","1.1616","1.1686","0.6125","",
"Brazil","BRA","Average interest on new external debt commitments, private (%)","DT.INR.PRVT","","","","","","","","","","","7.4924","8.0107","7.4079","9.282","10.8675","8.9014","8.0338","7.5728","10.0049","11.8393","12.7328","16.3121","12.5266","11.271","12.839","9.4204","8.7412","8.24","9.8617","9.5469","9.0265","7.8003","6.5518","8.4788","9.017","7.7445","8.7251","8.5062","9.7477","10.785","9.8926","7.3526","10.3274","7.8611","7.2075","8.7108","7.4716","8.4931","5.4464","5.5949","5.4334","4.5052","3.4484","2.5722","2.8438","",
"Brazil","BRA","PPG, bilateral (INT, current US$)","DT.INT.BLAT.CD","","","","","","","","","","","30354000","37878000","41853000","46935000","57757000","94267000","110977000","126907000","143800000","162723000","189125000","270939000","393134000","224431000","253555000","274614000","232658000","287760000","276203000","108186000","307345000","341969000","227259000","168217000","532474000","817053000","818309000","550683000","754553000","607647000","508231000","165235000","449433000","393318000","340836000","240362000","250702000","177637000","172189000","157097000","327236000","350331000","360965000","373456000","319224000","85643000",
"Brazil","BRA","PPG, bilateral concessional (INT, current US$)","DT.INT.BLTC.CD","","","","","","","","","","","27892000","30591000","31084000","34176000","36939000","48117000","48578000","48933000","48168000","49682000","47499000","42332000","40091000","16519000","17956000","30141000","39748000","55299000","33700000","14224000","13328000","17521000","15729000","14780000","66229000","246562000","237356000","41856000","186339000","187886000","73751000","54039000","88043000","92635000","105624000","111440000","121516000","116905000","113677000","116233000","299115000","323589000","340446000","361855000","310948000","",
"Brazil","BRA","Interest payments on external debt, total (INT, current US$)","DT.INT.DECT.CD","","","","","","","","","","","229459000","304756000","433728000","758220000","1485660000","2096236000","1767067000","2073324000","3215232000","4801879000","7927387000","10465207000","11651378000","9649833000","9370497000","9129217000","7805142000","7356768000","12653377000","5239349000","2279034000","3550845000","3823571000","4205933000","6214895000","10538943000","10469052000","12175393000","15470646000","17773922000","17148128000","17206469000","14964730000","16350872000","14757852000","13308357000","14817089000","14542601000","16188425000","14053583000","13855305000","17292537000","14886174000","18298026000","17223789000","",
"Brazil","BRA","Interest payments on external debt (% of exports of goods, services and primary income)","DT.INT.DECT.EX.ZS","","","","","","","","","","","","","","","","21.0910151926753","15.6613223433484","15.3465877128053","22.1908482296915","26.6800700077786","34.0596648764769","38.8708799167998","49.6458221483659","39.6443572573025","31.0229995033935","31.1481695042478","31.0578249970156","25.6065715280195","34.3626999429704","13.4975629234614","6.27366421669832","9.90693878689805","9.32601039049733","9.36670823775694","12.1356225103491","18.7866644087133","18.095015210177","18.870141967081","24.2939746549206","30.0560098755411","25.1421570166121","24.2946405808851","20.4412759293569","18.8222656514554","13.1464036014299","9.77122214286987","9.1046878692511","7.41606104190465","6.71987150832599","7.41362073337074","5.75100671587697","5.66965503513508","5.07486881031171","6.28297998973197","6.20314355011076","",
"Brazil","BRA","Interest payments on external debt (% of GNI)","DT.INT.DECT.GN.ZS","","","","","","","","","","","0.549884687731457","0.625985981142503","0.746836688019119","0.967354152309466","1.42406095541121","1.71799177813355","1.17524026402505","1.19670023085862","1.63974858764534","2.19318748502992","3.48763324910413","4.14202700921116","4.36006818078482","5.04048622334127","4.75310572566308","4.32533404067287","3.04681429434088","2.59997355852945","3.98936939466022","1.16817031542288","0.506821641917505","0.891702825146349","0.997803094402353","0.983546675832341","1.15707807736978","1.39056998285051","1.26511639395288","1.42397990390604","1.87403936051537","3.12883570776376","2.73543392243217","3.22075390203822","3.07599546365623","3.05881867794743","2.29242068720496","1.55336080335301","1.39478224160657","1.08631970336533","1.00275278269693","0.884921099113383","0.637689835189526","0.672610400522421","0.625318462158514","0.776643461662759","0.74582038383296","",
"Brazil","BRA","IMF charges (INT, current US$)","DT.INT.DIMF.CD","","","","","","","","","","","0","0","0","0","0","0","0","0","0","0","0","0","0","68220000","204370000","336960000","362410000","306141000","250322000","257232000","230940000","150230000","89513000","38722000","13933000","9909000","4855000","2082000","1000000","482500000","356762000","143073000","476545000","765284000","1219514000","1094205000","131004000","19384000","4530000","10410000","14228000","4870000","1323000","5726000","2194000","",
"Brazil","BRA","Interest payments on external debt, long-term (INT, current US$)","DT.INT.DLXF.CD","","","","","","","","","","","229459000","304756000","433728000","758220000","1485660000","2096236000","1767067000","2073324000","3215232000","4801879000","6402387000","8091207000","9488378000","7985613000","7544127000","7354257000","6351732000","6211627000","11469055000","3882117000","2048094000","2056926000","2942138000","2997061000","4698412000","8736744000","8604379000","10789311000","13969646000","15986778000","15297301000","15706396000","13723185000","13905588000","11588338000","10314152000","13160130000","13033992000","15045545000","13554021000","13156770000","16614967000","14259047000","17833009000","16448419000","5668100000",
"Brazil","BRA","Interest payments on external debt, private nonguaranteed (PNG) (INT, current US$)","DT.INT.DPNG.CD","","","","","","","","","","","89000000","128100000","203300000","356800000","880000000","1198000000","757500000","829400000","1278900000","1829300000","2131600000","2790200000","3399800000","2667900000","2058700000","1670000000","1450000000","1120000000","1568209000","746990000","459765000","337600000","550580000","1050000000","1148914000","2095408000","3055627000","5560401000","8816652000","9334930000","8354518000","8603242000","6879298000","7102086000","4494379000","3613976000","6014478000","5955844000","8988963000","7897641000","7984593000","11169258000","9239691000","11822739000","10731401000","18253000",
"Brazil","BRA","Interest payments on external debt, public and publicly guaranteed (PPG) (INT, current US$)","DT.INT.DPPG.CD","","","","","","","","","","","140459000","176656000","230428000","401420000","605660000","898236000","1009567000","1243924000","1936332000","2972579000","4270787000","5301007000","6088578000","5317713000","5485427000","5684257000","4901732000","5091627000","9900846000","3135127000","1588329000","1719326000","2391558000","1947061000","3549498000","6641336000","5548752000","5228910000","5152994000","6651848000","6942783000","7103154000","6843887000","6803502000","7093959000","6700176000","7145652000","7078148000","6056582000","5656380000","5172177000","5445709000","5019356000","6010270000","5717018000","",
"Brazil","BRA","Interest payments on external debt, short-term (INT, current US$)","DT.INT.DSTC.CD","","","","","","","","","","","0","0","0","0","0","0","0","0","0","0","1525000000","2374000000","2163000000","1596000000","1622000000","1438000000","1091000000","839000000","934000000","1100000000","0","1343689000","791920000","1170150000","1502550000","1792290000","1859818000","1384000000","1500000000","1304644000","1494065000","1357000000","765000000","1680000000","1950000000","1900000000","1525955000","1489225000","1138350000","489152000","684307000","672700000","625804000","459291000","773176000","",
"Brazil","BRA","PPG, IBRD (INT, current US$)","DT.INT.MIBR.CD","","","","","","","","","","","10990000","15705000","24084000","37736000","52439000","71968000","84631000","103797000","134092000","160300000","176789000","181342000","196354000","236539000","337611000","390886000","556425000","688439000","744345000","604209000","724633000","669142000","647230000","578811000","536511000","491227000","415933000","379693000","378314000","428077000","464338000","533201000","458771000","376940000","287088000","306509000","431785000","548185000","498065000","359086000","180118000","195429000","178331000","178303000","180051000","",
"Brazil","BRA","PPG, IDA (INT, current US$)","DT.INT.MIDA.CD","","","","","","","","","","","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","",
"Brazil","BRA","PPG, multilateral (INT, current US$)","DT.INT.MLAT.CD","","","","","","","","","","","29337000","39097000","52126000","75596000","94261000","121725000","146131000","182305000","230164000","252081000","272763000","283370000","306193000","368343000","477361000","559872000","767223000","938275000","949261000","838056000","985101000","935795000","904509000","1025389000","797741000","767788000","696540000","707263000","756042000","1569242000","1424179000","1407552000","1185342000","1098965000","856733000","817870000","986168000","1186868000","1121521000","927808000","640626000","662171000","601833000","547457000","481136000","249950000",
"Brazil","BRA","PPG, multilateral concessional (INT, current US$)","DT.INT.MLTC.CD","","","","","","","","","","","7709000","9667000","11008000","13063000","14348000","13377000","15520000","16448000","16546000","17080000","17274000","16917000","17037000","17947000","16836000","16892000","17548000","17999000","17846000","17509000","15909000","16135000","14495000","163401000","14554000","14791000","15312000","16092000","16188000","17418000","22495000","21615000","17925000","16749000","15861000","15253000","26975000","31977000","27128000","21153000","15233000","26459000","30286000","33642000","35959000","",
"Brazil","BRA","PPG, official creditors (INT, current US$)","DT.INT.OFFT.CD","","","","","","","","","","","59691000","76975000","93979000","122531000","152018000","215992000","257108000","309212000","373964000","414804000","461888000","554309000","699327000","592774000","730916000","834486000","999881000","1226035000","1225464000","946242000","1292446000","1277764000","1131768000","1193606000","1330215000","1584841000","1514849000","1257946000","1510595000","2176889000","1932410000","1572787000","1634775000","1492283000","1197569000","1058232000","1236870000","1364505000","1293710000","1084905000","967862000","1012502000","962798000","920913000","800360000","335593000",
"Brazil","BRA","PPG, bonds (INT, current US$)","DT.INT.PBND.CD","","","","","","","","","","","0","0","0","8058000","11060000","13715000","13135000","31903000","107841000","168516000","234283000","227905000","196900000","178975000","161980000","135466000","126737000","113775000","89393000","100143000","13566000","38876000","124648000","434785000","1735404000","4415793000","3123214000","3168140000","2467261000","3395397000","4211604000","4433969000","4085985000","4433709000","5060555000","5032932000","5230553000","5082331000","4406247000","4148352000","3863894000","3902048000","3391681000","3805387000","3661644000","3342601000",
"Brazil","BRA","PPG, commercial banks (INT, current US$)","DT.INT.PCBK.CD","","","","","","","","","","","45157000","56093000","79608000","168522000","328083000","534085000","583247000","697658000","1157468000","2024182000","3128166000","4025506000","4730810000","4263928000","4293327000","4451460000","3477490000","3231612000","8106376000","1853130000","46230000","85006000","888343000","136358000","300769000","376343000","705501000","686940000","977127000","1014996000","759295000","1078970000","1082525000","856544000","826341000","602253000","669527000","614721000","343090000","405095000","330101000","524757000","652510000","1162945000","1099089000","1809984000",
"Brazil","BRA","PNG, bonds (INT, current US$)","DT.INT.PNGB.CD","","","","","","","","","","","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84665000","312803000","656071000","837013000","1028103000","1323203000","1399058000","1503144000","1561772000","1632148000","1707135000","1920529000","3046144000","2161401000","3798816000","3453842000","2841563000","2935549000","4206675000","5859040000","3107036000","3721869000","3354241000","",
"Brazil","BRA","PNG, commercial banks and other creditors (INT, current US$)","DT.INT.PNGC.CD","","","","","","","","","","","89000000","128100000","203300000","356800000","880000000","1198000000","757500000","829400000","1278900000","1829300000","2131600000","2790200000","3399800000","2667900000","2058700000","1670000000","1450000000","1120000000","1568209000","746990000","459765000","337600000","465915000","737197000","492843000","1258395000","2027524000","4237198000","7417594000","7831786000","6792746000","6971094000","5172163000","5181557000","1448235000","1452575000","2215662000","2502002000","6147400000","4962092000","3777918000","5310218000","6132655000","8100870000","7377160000","",
"Brazil","BRA","PPG, other private creditors (INT, current US$)","DT.INT.PROP.CD","","","","","","","","","","","35611000","43588000","56841000","102309000","114499000","134444000","156077000","205151000","297059000","365077000","446450000","493287000","461541000","282036000","299204000","262845000","297624000","520205000","479613000","235612000","236087000","317680000","246799000","182312000","183110000","264359000","205188000","115884000","198011000","64566000","39474000","17428000","40602000","20966000","9494000","6759000","8702000","16591000","13535000","18028000","10320000","6402000","12367000","121025000","155925000","161669000",
"Brazil","BRA","PPG, private creditors (INT, current US$)","DT.INT.PRVT.CD","","","","","","","","","","","80768000","99681000","136449000","278889000","453642000","682244000","752459000","934712000","1562368000","2557775000","3808899000","4746698000","5389251000","4724939000","4754511000","4849771000","3901851000","3865592000","8675382000","2188885000","295883000","441562000","1259790000","753455000","2219283000","5056495000","4033903000","3970964000","3642399000","4474959000","5010373000","5530367000","5209112000","5311219000","5896390000","5641944000","5908782000","5713643000","4762872000","4571475000","4204315000","4433207000","4056558000","5089357000","4916658000","5314254000",
"Brazil","BRA","Interest arrears, long-term DOD (US$)","DT.IXA.DPPG.CD","","","","","","","","","","","21000","22000","47000","55000","61000","1105000","2543000","9969000","9649000","8821000","13522000","31382000","32424000","58149000","65804000","110686000","143422000","3143072000","169506000","3187710000","8790144000","10516516000","4288102000","7919624000","2119847000","1529159000","1548786000","897079000","1660513000","264653000","176321000","0","0","244000","24000","0","12000","96000","96000","94000","134000","231000","208000","27078000","17188000","",
"Brazil","BRA","Net change in interest arrears (current US$)","DT.IXA.DPPG.CD.CG","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","3018204000","5602434000","1726372000","-6228414000","3631522000","-5799777000","-590688000","19627000","-651707000","763434000","-1395860000","-88332000","-176321000","0","244000","-220000","-24000","12000","84000","0","-2000","40000","97000","-23000","26870000","-9890000","",
"Brazil","BRA","Interest arrears, official creditors (current US$)","DT.IXA.OFFT.CD","","","","","","","","","","","0","0","0","0","0","0","0","0","0","0","446000","1945000","1207000","3120000","11745000","35211000","57304000","75102000","84210000","268692000","332309000","750411000","338706000","2074132000","1614086000","1177779000","534330000","369027000","246153000","148189000","106591000","0","0","0","19000","0","8000","71000","30000","43000","0","0","0","7381000","575000","",
"Brazil","BRA","Interest arrears, private creditors (current US$)","DT.IXA.PRVT.CD","","","","","","","","","","","21000","22000","47000","55000","61000","1105000","2543000","9969000","9649000","8821000","13076000","29437000","31217000","55029000","54059000","75475000","86118000","3067970000","85296000","2919018000","8457835000","9766105000","3949396000","5845492000","505761000","351380000","1014456000","528052000","1414360000","116464000","69730000","0","0","244000","5000","0","4000","25000","66000","51000","134000","231000","208000","19697000","16613000","",
"Brazil","BRA","Interest forgiven (current US$)","DT.IXF.DPPG.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","",
"Brazil","BRA","Interest rescheduled (capitalized) (current US$)","DT.IXR.DPPG.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","245313000","274574000","115372000","8355369000","490886000","7272760000","0","297465000","288315000","147769000","0","0","62660000","0","270000","0","0","0","9148000","0","0","0","0","0","0","0","",
"Brazil","BRA","Interest rescheduled, official (current US$)","DT.IXR.OFFT.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","81593000","69349000","28121000","971454000","396838000","10000","0","0","0","0","0","0","1292000","0","0","0","0","0","8713000","0","0","0","0","0","0","0","",
"Brazil","BRA","Interest rescheduled, private (current US$)","DT.IXR.PRVT.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","163720000","205225000","87251000","7383915000","94048000","7272750000","0","297465000","288315000","147769000","0","0","61368000","0","270000","0","0","0","435000","0","0","0","0","0","0","0","",
"Brazil","BRA","Average maturity on new external debt commitments (years)","DT.MAT.DPPG","","","","","","","","","","","14.6213","13.46","13.224","13.1479","11.6017","9.2582","11.4095","12.7213","10.465","11.713","11.6901","10.5164","11.6437","11","9.8113","12.6681","13.1017","14.6053","11.5607","11.868","11.9116","12.4247","14.015","11.1973","12.3891","7.9418","8.2738","14.3575","4.9538","7.9594","13.4307","9.4168","12.5322","10.0229","13.6998","15.6379","15.6263","14.6627","17.3817","13.0798","18.3393","11.3246","14.7167","9.4113","11.6702","",
"Brazil","BRA","Average maturity on new external debt commitments, official (years)","DT.MAT.OFFT","","","","","","","","","","","24.3288","23.7081","19.9663","18.667","15.6497","18.8051","18.0313","16.8891","15.3528","14.325","14.5468","14.2174","14.8351","13.4735","11.1347","13.7717","13.9171","15.3565","16.2403","14.7462","15.4808","17.5897","17.6961","20.186","19.7111","20.0098","14.9605","17.1855","4.7143","10.3095","8.6129","10.434","18.2878","11.6973","17.0492","18.5041","17.1284","16.6555","23.605","15.1693","25.1145","22.2096","24.0166","21.7592","23.7447","",
"Brazil","BRA","Average maturity on new external debt commitments, private (years)","DT.MAT.PRVT","","","","","","","","","","","9.3603","6.5865","8.3759","10.8162","10.3888","6.9116","8.4168","11.7477","9.6341","11.2785","10.8375","9.3159","10.8244","9.4253","9.5001","10.3134","10.8598","8.883","10.4139","10.025","8.015","5.7899","10.7323","5.0229","7.0889","3.2985","5.3745","12.675","5.4234","6.0724","15.9654","8.7313","7.8409","9.7501","12.7817","14.4807","15.0919","13.7352","14.1053","11.2314","10.2671","9.3869","10.992","7.6621","9.9867","",
"Brazil","BRA","Net financial flows, bilateral (NFL, current US$)","DT.NFL.BLAT.CD","","","","","","","","","","","107784000","85777000","114093000","158765000","402659000","741160000","179412000","168447000","354763000","38556000","455149000","829103000","260534000","491665000","311501000","349761000","43516000","-77785000","-41307000","258179000","-117296000","-605825000","-251789000","-246034000","-1569082000","-1287890000","-1497460000","-2569034000","-872792000","-1645965000","-1970073000","1204026000","-274365000","-1005727000","-1172759000","-525092000","-2637911000","-506115000","748868000","2993586000","3603629000","-257143000","-48975000","81072000","336779000","",
"Brazil","BRA","PPG, bilateral concessional (NFL, current US$)","DT.NFL.BLTC.CD","","","","","","","","","","","56446000","43640000","73162000","34716000","119868000","322999000","-48447000","-61915000","-4441000","-85399000","-48891000","20482000","67157000","58197000","-27272000","32217000","23079000","144049000","26635000","51369000","57078000","-36355000","-23225000","-28921000","-271405000","-392349000","-539467000","-297936000","-89649000","98899000","301179000","330723000","296206000","318694000","263472000","72063000","-201850000","-347286000","724578000","3084965000","3765202000","-79727000","158105000","247253000","476952000","",
"Brazil","BRA","Portfolio investment, bonds (PPG + PNG) (NFL, current US$)","DT.NFL.BOND.CD","","","","","","","","","","","0","0","96450000","35855000","23100000","-3722000","184033000","767263000","926862000","634967000","346003000","-57085000","-158667000","-236966000","-319954000","-215045000","-446504000","-648237000","109001000","-384196000","128978000","1187121000","2923057000","5380203000","1807062000","2636202000","5999187000","4086084000","1356740000","5834870000","8891744000","8384876000","1375442000","7783661000","-4435766000","3580492000","-8116129000","539520000","2587036000","17769769000","29391314000","26449159000","4986328000","-2324210000","1959311000","",
"Brazil","BRA","Net flows on external debt, total (NFL, current US$)","DT.NFL.DECT.CD","","","","","","","","","","","2015693000","1678045000","4125024000","3102890000","7207276000","5900520000","6348961000","8073276000","10675361000","7238143000","9457291000","10539021000","11263615000","3159984000","6963789000","-597448000","155842000","-855541000","2942633000","185861000","-1732403000","916704000","8535511000","12579191000","8882964000","8807345000","19244116000","17408281000","25462309000","-2965218000","4471095000","9677635000","-1338312000","4623118000","-11261986000","-23457190000","1537109000","38371824000","26601935000","30345103000","79059014000","46328585000","39489264000","44363230000","97778431000","",
"Brazil","BRA","Net flows on external debt, long-term (NFL, current US$)","DT.NFL.DLXF.CD","","","","","","","","","","","1376853000","1469045000","3633024000","2716890000","6306276000","5297520000","5611961000","6124276000","9598361000","5672143000","4565291000","8744021000","8583015000","4240154000","6090019000","1147012000","755072000","-650921000","3288333000","-3505419000","-1066127000","614022000","4932196000","9477420000","2368892000","9215311000","15006108000","17940904000","26124556000","-7818929000","9332990000","5482863000","-7706892000","-1802972000","-7578175000","1626633000","5207109000","19448824000","29203935000","27203117000","53352798000","69680688000","49046538000","43466626000","73098108000","",
"Brazil","BRA","Net flows on external debt, private nonguaranteed (PNG) (NFL, current US$)","DT.NFL.DPNG.CD","","","","","","","","","","","700000000","720800000","1811700000","911200000","3032000000","1878000000","1801500000","1872500000","2485100000","-331900000","221700000","2589800000","1518200000","-1320300000","-2078300000","-756900000","-722000000","-739900000","-486665000","-907498000","-133012000","274665000","5618799000","7822131000","3845253000","7616014000","12236162000","15032264000","18667012000","-7167934000","601687000","-1657018000","-6937217000","-330837000","-7103095000","-2099306000","18586460000","27287844000","28860760000","21257297000","43023900000","71877700000","27750369000","22040810000","38086565000","",
"Brazil","BRA","Net flows on external debt, public and publicly guaranteed (PPG) (NFL, current US$)","DT.NFL.DPPG.CD","","","","","","","","","","","676853000","748245000","1821324000","1805690000","3274276000","3419520000","3810461000","4251776000","7113261000","6004043000","4343591000","6154221000","7064815000","5560454000","8168319000","1903912000","1477072000","88979000","3774998000","-2597921000","-933115000","339357000","-686603000","1655289000","-1476361000","1599297000","2769946000","2908640000","7457544000","-650995000","8731303000","7139881000","-769675000","-1472135000","-475080000","3725939000","-13379351000","-7839020000","343175000","5945820000","10328898000","-2197012000","21296169000","21425816000","35011543000","",
"Brazil","BRA","Net flows on external debt, short-term (NFL, current US$)","DT.NFL.DSTC.CD","","","","","","","","","","","714000000","209000000","492000000","386000000","901000000","603000000","737000000","1949000000","1077000000","1566000000","4892000000","1795000000","2130000000","-3247000000","-914000000","-1679000000","17000000","944064000","92610000","4503330000","99000000","869996000","4003000000","3605000000","6648000000","-359000000","4308000000","-500000000","-5280000000","745770000","1831060000","-2523570000","-4878260000","1199000000","673000000","-1274000000","-3670000000","18923000000","-2602000000","3141986000","25706216000","-23352103000","-9557274000","896604000","24680323000","",
"Brazil","BRA","Net official flows from UN agencies, IAEA (current US$)","DT.NFL.IAEA.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","650000","940000","1090000","1090000","720000","490000","1060000","870000","","",
"Brazil","BRA","Net official flows from UN agencies, IFAD (current US$)","DT.NFL.IFAD.CD","","","","","","","","","","","","","","","","","","","","","","1820000","2590000","980000","-320000","1260000","500000","2540000","-1360000","-1510000","-600000","-1080000","-1060000","-1080000","-1110000","-1200000","1880000","3580000","-1200000","3570000","1420000","4550000","1110000","200000","380000","-1630000","","-250000","7260000","420000","2660000","2040000","-1750000","880000","","",
"Brazil","BRA","Net financial flows, IMF concessional (NFL, current US$)","DT.NFL.IMFC.CD","","","","","","","","","","","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","",
"Brazil","BRA","Net financial flows, IMF nonconcessional (NFL, current US$)","DT.NFL.IMFN.CD","","","","","","","","","","","-75160000","0","0","0","0","0","0","0","0","0","0","0","550600000","2166830000","1787770000","-65460000","-616230000","-1148684000","-438310000","-812050000","-765276000","-567314000","-399685000","-503229000","-133928000","-48966000","-69992000","-32623000","4617753000","4107941000","-6692955000","6718342000","11246840000","5227090000","-4356811000","-23809823000","0","0","0","0","0","0","0","0","0","",
"Brazil","BRA","Net financial flows, IBRD (NFL, current US$)","DT.NFL.MIBR.CD","","","","","","","","","","","46914000","86780000","138199000","164893000","225445000","223463000","127662000","198258000","191031000","227735000","245178000","251184000","408406000","933944000","968457000","359208000","1011134000","47705000","24239000","-52140000","-468527000","-408371000","-684727000","-807706000","-705640000","-539395000","278215000","367541000","245522000","580355000","805410000","810245000","337644000","-342026000","-116344000","-255394000","1460146000","-198596000","914230000","-597850000","3511733000","-4553080000","2408971000","2258934000","1997687000","",
"Brazil","BRA","Net financial flows, IDA (NFL, current US$)","DT.NFL.MIDA.CD","","","","","","","","","","","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","",
"Brazil","BRA","Net financial flows, multilateral (NFL, current US$)","DT.NFL.MLAT.CD","","","","","","","","","","","125574000","150079000","248296000","246603000","369080000","343202000","217197000","248089000","305778000","397052000","365666000","403262000","742648000","1089605000","1229252000","647842000","1170693000","131960000","93081000","-53448000","-538697000","-498800000","-705357000","-351647000","-735512000","-415621000","752530000","1401908000","5725052000","1986479000","149195000","1517528000","906868000","-1285350000","-1512197000","517857000","2384261000","276336000","1202351000","405013000","5048775000","-4847299000","2711660000","695856000","2925596000","",
"Brazil","BRA","PPG, multilateral concessional (NFL, current US$)","DT.NFL.MLTC.CD","","","","","","","","","","","49708000","35594000","50176000","45909000","34450000","32866000","15993000","7851000","20809000","15971000","-688000","4744000","26793000","-5875000","1411000","34727000","28092000","-7265000","-12596000","-33406000","-25508000","-38300000","-18313000","415018000","-7899000","14635000","10630000","20437000","15831000","46043000","-22183000","-22100000","-20891000","-29571000","-19393000","45229000","136918000","-21600000","-21640000","-8645000","576041000","60331000","218709000","198041000","283523000","",
"Brazil","BRA","Net financial flows, others (NFL, current US$)","DT.NFL.MOTH.CD","","","","","","","","","","","0","0","0","0","0","0","0","0","20000000","20000000","0","20000000","102804000","20000000","55450000","-1208000","-1330000","-807000","-11173000","-17119000","-29529000","-38565000","-40999000","-37941000","-30122000","-373000","0","0","4150000000","-1271613000","-3124089000","1828000","7356000","238000","-10090000","72789000","137906000","-41571000","612726000","6516000","598131000","74551000","160738000","137641000","144400000","",
"Brazil","BRA","EBRD, private nonguaranteed (NFL, current US$)","DT.NFL.NEBR.CD","","","","","","","","","","","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","",
"Brazil","BRA","IFC, private nonguaranteed (NFL, current US$)","DT.NFL.NIFC.CD","","","","","","","","","","","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","-8126700","94395000","49872600","-106278500","-74654831.21","241641217.25","-81966358.49","367560432.25","-87983644.94","-91862867.76","-41769942.81","-58462965.06","53604537","-56155805","",
"Brazil","BRA","PPG, official creditors (NFL, current US$)","DT.NFL.OFFT.CD","","","","","","","","","","","233358000","235856000","362389000","405368000","771739000","1084362000","396609000","416536000","660541000","435608000","820815000","1232365000","1003182000","1581270000","1540753000","997603000","1214209000","54175000","51774000","204731000","-655993000","-1104625000","-957146000","-597681000","-2304594000","-1703511000","-744930000","-1167126000","4852260000","340514000","-1820878000","2721554000","632503000","-2291077000","-2684956000","-7235000","-253650000","-229779000","1951219000","3398599000","8652404000","-5104442000","2662685000","776928000","3262375000","",
"Brazil","BRA","PPG, bonds (NFL, current US$)","DT.NFL.PBND.CD","","","","","","","","","","","0","0","96450000","35855000","23100000","-3722000","184033000","767263000","926862000","634967000","346003000","-57085000","-158667000","-236966000","-319954000","-215045000","-446504000","-648237000","109001000","-384196000","128978000","788996000","518057000","817430000","-201909000","742521000","3073883000","3302811000","-540858000","5631653000","8780816000","7572122000","2600667000","4184766000","36363000","4064476000","-12469020000","-4919337000","-1746964000","2339769000","-336575000","-649655000","3318451000","4355040000","3383495000","",
"Brazil","BRA","PPG, commercial banks (NFL, current US$)","DT.NFL.PCBK.CD","","","","","","","","","","","196177000","334768000","743070000","1043912000","2048763000","2188592000","2482277000","2281842000","4909834000","4343219000","2443780000","5022251000","5103866000","3824179000","6601660000","426409000","254375000","-22378000","3249846000","-2959648000","-752734000","894974000","178878000","1904713000","1450283000","3289494000","978725000","924333000","3880570000","-6357892000","1985385000","-2965842000","-3321461000","-2897254000","2175970000","-314933000","-635160000","-2642815000","216385000","234773000","1975877000","3562880000","5127585000","16325973000","23946006000","",
"Brazil","BRA","Commercial banks and other lending (PPG + PNG) (NFL, current US$)","DT.NFL.PCBO.CD","","","","","","","","","","","1143495000","1233189000","3174185000","2275667000","5511437000","4216880000","5031319000","4940477000","8010958000","4601568000","3398473000","7568741000","7738500000","2895850000","4869220000","364454000","-12633000","-56859000","3127558000","-3325954000","-539112000","531526000","2966285000","4694898000","2866424000","8282620000","9751851000","15021946000","19915556000","-13994313000","2262124000","-5623567000","-9714837000","-7295556000","-457453000","-1946624000","13576888000","19139083000","24665680000","6034749000","15309080000","48335971000","41397525000","45013908000","67876422000","",
"Brazil","BRA","PNG, bonds (NFL, current US$)","DT.NFL.PNGB.CD","","","","","","","","","","","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","398125000","2405000000","4562773000","2008971000","1893681000","2925304000","783273000","1897598000","203217000","110928000","812754000","-1225225000","3598895000","-4472129000","-483984000","4352891000","5458857000","4334000000","15430000000","29727889000","27098814000","1667877000","-6679250000","-1424184000","",
"Brazil","BRA","PNG, commercial banks and other creditors (NFL, current US$)","DT.NFL.PNGC.CD","","","","","","","","","","","700000000","720800000","1811700000","911200000","3032000000","1878000000","1801500000","1872500000","2485100000","-331900000","221700000","2589800000","1518200000","-1320300000","-2078300000","-756900000","-722000000","-739900000","-486665000","-907498000","-133012000","-123460000","3213799000","3259358000","1836282000","5722333000","9310858000","14248991000","16769414000","-7371151000","490759000","-2469772000","-5711992000","-3929732000","-2630966000","-1615322000","14233569000","21828987000","24526760000","5827297000","13296011000","44778886000","26082492000","28720060000","39510749000","",
"Brazil","BRA","PPG, other private creditors (NFL, current US$)","DT.NFL.PROP.CD","","","","","","","","","","","247318000","177621000","619415000","320555000","430674000","150288000","747542000","786135000","616024000","590249000","732993000","-43310000","1116434000","391971000","345860000","694945000","454992000","705419000","364377000","541192000","346634000","-239988000","-426392000","-469173000","-420141000","-729207000","-537732000","-151378000","-734428000","-265270000","-214020000","-187953000","-681384000","-468570000","-2457000","-16369000","-21521000","-47089000","-77465000","-27321000","37192000","-5795000","10187448000","-32125000","4419667000","",
"Brazil","BRA","PPG, private creditors (NFL, current US$)","DT.NFL.PRVT.CD","","","","","","","","","","","443495000","512389000","1458935000","1400322000","2502537000","2335158000","3413852000","3835240000","6452720000","5568435000","3522776000","4921856000","6061633000","3979184000","6627566000","906309000","262863000","34804000","3723224000","-2802652000","-277122000","1443982000","270543000","2252970000","828233000","3302808000","3514876000","4075766000","2605284000","-991509000","10552181000","4418327000","-1402178000","818942000","2209876000","3733174000","-13125701000","-7609241000","-1608044000","2547221000","1676494000","2907430000","18633484000","20648888000","31749168000","",
"Brazil","BRA","Net financial flows, RDB concessional (NFL, current US$)","DT.NFL.RDBC.CD","","","","","","","","","","","49708000","35594000","50176000","45909000","34450000","32866000","15993000","7851000","20809000","15971000","-688000","4744000","26793000","-5875000","1411000","34727000","28092000","-7265000","-12596000","-33406000","-25508000","-38300000","-18313000","415018000","-7899000","14635000","10630000","20437000","15831000","-33957000","-22183000","-23560000","-28060000","-30228000","-25329000","-32532000","-28089000","-29439000","-27734000","-29335000","-28384000","-27655000","-25225000","-46540000","-17366000","",
"Brazil","BRA","Net financial flows, RDB nonconcessional (NFL, current US$)","DT.NFL.RDBN.CD","","","","","","","","","","","28952000","27705000","55021000","35801000","109185000","87363000","74032000","42470000","74428000","133836000","121666000","127824000","205135000","142026000","204424000","255115000","132797000","92327000","92611000","49217000","-15133000","-13564000","38682000","78982000","8149000","109512000","463685000","1013930000","1313699000","2711694000","2490057000","729015000","589928000","-913334000","-1366607000","721305000","793232000","535290000","-309700000","1018162000","950502000","-350280000","175238000","-1644960000","804486000","",
"Brazil","BRA","Net official flows from UN agencies, UNAIDS (current US$)","DT.NFL.UNAI.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","590000","630000","690000","480000","250000","630000","820000","850000","730000","","",
"Brazil","BRA","Net official flows from UN agencies, UNICEF (current US$)","DT.NFL.UNCF.CD","","","","","","","","","","","720000","620000","1080000","1010000","1060000","1880000","720000","170000","150000","260000","590000","990000","1150000","1120000","1100000","1140000","1430000","3390000","2220000","5760000","6570000","3560000","6280000","9020000","12200000","15540000","21850000","4830000","6350000","1740000","1320000","1630000","1160000","1130000","1700000","2700000","2200000","2050000","1760000","1090000","960000","750000","820000","840000","","",
"Brazil","BRA","Net official flows from UN agencies, UNHCR (current US$)","DT.NFL.UNCR.CD","","","","","","","","","","","","","","","","","","","","","","","","","20000","","","","","","150000","130000","280000","920000","1670000","2100000","1780000","1620000","1460000","","","","","","310000","1510000","790000","1620000","2110000","1570000","1060000","2940000","170000","","","",
"Brazil","BRA","Net official flows from UN agencies, UNDP (current US$)","DT.NFL.UNDP.CD","","","","","","","","","2970000","3130000","3470000","3950000","4370000","5220000","5370000","8640000","7060000","6730000","8850000","10870000","11570000","9700000","8810000","8800000","6860000","5860000","6920000","7620000","12700000","13240000","5120000","3720000","3020000","2740000","630000","2490000","2970000","1870000","900000","300000","-390000","320000","400000","990000","1110000","670000","960000","370000","500000","920000","1380000","960000","950000","940000","","",
"Brazil","BRA","Net official flows from UN agencies, UNECE (current US$)","DT.NFL.UNEC.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Net official flows from UN agencies, UNFPA (current US$)","DT.NFL.UNFP.CD","","","","","","","","","","","","","","","","","","70000","","","810000","640000","370000","200000","360000","2020000","1430000","2360000","3070000","3370000","1700000","1720000","1340000","940000","2910000","2280000","1800000","2160000","2380000","1320000","850000","1220000","850000","650000","600000","720000","800000","950000","1370000","1640000","1550000","1550000","2430000","2080000","","",
"Brazil","BRA","Net official flows from UN agencies, UNPBF (current US$)","DT.NFL.UNPB.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Net official flows from UN agencies, UNRWA (current US$)","DT.NFL.UNRW.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Net official flows from UN agencies, UNTA (current US$)","DT.NFL.UNTA.CD","","","","","","","","","","1020000","1140000","790000","890000","970000","2320000","1280000","1080000","1040000","1520000","1180000","300000","1360000","1080000","1300000","1320000","2010000","2240000","2270000","1640000","2220000","1990000","2560000","2550000","3020000","2190000","5750000","2000000","3470000","2090000","2550000","3130000","3820000","3790000","3890000","4130000","3720000","3420000","3770000","1530000","","","","","","","",
"Brazil","BRA","Net official flows from UN agencies, WFP (current US$)","DT.NFL.WFPG.CD","","","","","","","","","","910000","620000","1200000","670000","1510000","3020000","3430000","3820000","1780000","500000","6070000","6060000","4280000","1590000","1400000","6430000","9240000","2700000","19960000","3920000","13650000","12570000","12460000","9670000","9210000","7150000","1380000","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Net official flows from UN agencies, WHO (current US$)","DT.NFL.WHOL.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","PPG, bilateral (NTR, current US$)","DT.NTR.BLAT.CD","","","","","","","","","","","77430000","47899000","72240000","111830000","344902000","646893000","68435000","41540000","210963000","-124167000","266024000","558164000","-132600000","267234000","57946000","75147000","-189142000","-365545000","-317510000","149993000","-424641000","-947794000","-479048000","-414251000","-2101556000","-2104943000","-2315769000","-3119717000","-1627345000","-2253612000","-2478304000","1038791000","-723798000","-1399045000","-1513595000","-765454000","-2888613000","-683752000","576679000","2836489000","3276393000","-607474000","-409940000","-292384000","17555000","",
"Brazil","BRA","PPG, bilateral concessional (NTR, current US$)","DT.NTR.BLTC.CD","","","","","","","","","","","28554000","13049000","42078000","540000","82929000","274882000","-97025000","-110848000","-52609000","-135081000","-96390000","-21850000","27066000","41678000","-45228000","2076000","-16669000","88750000","-7065000","37145000","43750000","-53876000","-38954000","-43701000","-337634000","-638911000","-776823000","-339792000","-275988000","-88987000","227428000","276684000","208163000","226059000","157848000","-39377000","-323366000","-464191000","610901000","2968732000","3466087000","-403316000","-182341000","-114602000","166004000","",
"Brazil","BRA","Net transfers on external debt, total (NTR, current US$)","DT.NTR.DECT.CD","","","","","","","","","","","1786234000","1373289000","3691296000","2344670000","5721616000","3804284000","4581894000","5999952000","7460129000","2436264000","1529904000","73814000","-387763000","-6489849000","-2406708000","-9726665000","-7649300000","-8212309000","-9710744000","-5053488000","-4011437000","-2634141000","4711940000","8373258000","2668069000","-1731598000","8775064000","5232888000","9991663000","-20739140000","-12677033000","-7528834000","-16303042000","-11727754000","-26019838000","-36765547000","-13279980000","23829223000","10413510000","16291520000","65203709000","29036048000","24603090000","26065204000","80554642000","",
"Brazil","BRA","Net transfers on external debt, long-term (NTR, current US$)","DT.NTR.DLXF.CD","","","","","","","","","","","1147394000","1164289000","3199296000","1958670000","4820616000","3201284000","3844894000","4050952000","6383129000","870264000","-1837096000","652814000","-905363000","-3745459000","-1454108000","-6207245000","-5596660000","-6862548000","-8180722000","-7387536000","-3114221000","-1442904000","1990058000","6480359000","-2329520000","478567000","6401729000","7151593000","12154910000","-23805707000","-5964311000","-10223533000","-21430077000","-15708560000","-19166513000","-8687519000","-7953021000","6414832000","14158390000","13649096000","40196028000","53065721000","34787491000","25633617000","56649689000","",
"Brazil","BRA","Net transfers on external debt, private nonguaranteed (PNG) (NTR, current US$)","DT.NTR.DPNG.CD","","","","","","","","","","","611000000","592700000","1608400000","554400000","2152000000","680000000","1044000000","1043100000","1206200000","-2161200000","-1909900000","-200400000","-1881600000","-3988200000","-4137000000","-2426900000","-2172000000","-1859900000","-2054874000","-1654488000","-592777000","-62935000","5068219000","6772131000","2696339000","5520606000","9180535000","9471863000","9850360000","-16502864000","-7752831000","-10260260000","-13816515000","-7432923000","-11597474000","-5713282000","12571982000","21332000000","19871797000","13359656000","35039307000","60708442000","18510678000","10218071000","27355164000","",
"Brazil","BRA","Net transfers on external debt, public and publicly guaranteed (PPG) (NTR, current US$)","DT.NTR.DPPG.CD","","","","","","","","","","","536394000","571589000","1590896000","1404270000","2668616000","2521284000","2800894000","3007852000","5176929000","3031464000","72804000","853214000","976237000","242741000","2682892000","-3780345000","-3424660000","-5002648000","-6125848000","-5733048000","-2521444000","-1379969000","-3078161000","-291772000","-5025859000","-5042039000","-2778806000","-2320270000","2304550000","-7302843000","1788520000","36727000","-7613562000","-8275637000","-7569039000","-2974237000","-20525003000","-14917168000","-5713407000","289440000","5156721000","-7642721000","16276813000","15415546000","29294525000","",
"Brazil","BRA","PPG, IBRD (NTR, current US$)","DT.NTR.MIBR.CD","","","","","","","","","","","35924000","71075000","114115000","127157000","173006000","151495000","43031000","94461000","56939000","67435000","68389000","69842000","212052000","697405000","630846000","-31678000","454709000","-640734000","-720106000","-656349000","-1193160000","-1077513000","-1331957000","-1386517000","-1242151000","-1030622000","-137718000","-12152000","-132792000","152278000","341072000","277044000","-121127000","-718966000","-403432000","-561903000","1028361000","-746781000","416165000","-956936000","3331615000","-4748509000","2230640000","2080631000","1817636000","",
"Brazil","BRA","PPG, IDA (NTR, current US$)","DT.NTR.MIDA.CD","","","","","","","","","","","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","",
"Brazil","BRA","PPG, multilateral (NTR, current US$)","DT.NTR.MLAT.CD","","","","","","","","","","","96237000","110982000","196170000","171007000","274819000","221477000","71066000","65784000","75614000","144971000","92903000","119892000","436455000","721262000","751891000","87970000","403470000","-806315000","-856180000","-891504000","-1523798000","-1434595000","-1609866000","-1377036000","-1533253000","-1183409000","55990000","694645000","4969010000","417237000","-1274984000","109976000","-278474000","-2384315000","-2368930000","-300013000","1398093000","-910532000","80830000","-522795000","4408149000","-5509470000","2109827000","148399000","2444460000","",
"Brazil","BRA","PPG, multilateral concessional (NTR, current US$)","DT.NTR.MLTC.CD","","","","","","","","","","","41999000","25927000","39168000","32846000","20102000","19489000","473000","-8597000","4263000","-1109000","-17962000","-12173000","9756000","-23822000","-15425000","17835000","10544000","-25264000","-30442000","-50915000","-41417000","-54435000","-32808000","251617000","-22453000","-156000","-4682000","4345000","-357000","28625000","-44678000","-43715000","-38816000","-46320000","-35254000","29976000","109943000","-53577000","-48768000","-29798000","560808000","33872000","188423000","164399000","247564000","",
"Brazil","BRA","PPG, official creditors (NTR, current US$)","DT.NTR.OFFT.CD","","","","","","","","","","","173667000","158881000","268410000","282837000","619721000","868370000","139501000","107324000","286577000","20804000","358927000","678056000","303855000","988496000","809837000","163117000","214328000","-1171860000","-1173690000","-741511000","-1948439000","-2382389000","-2088914000","-1791287000","-3634809000","-3288352000","-2259779000","-2425072000","3341665000","-1836375000","-3753288000","1148767000","-1002272000","-3783360000","-3882525000","-1065467000","-1490520000","-1594284000","657509000","2313694000","7684542000","-6116944000","1699887000","-143985000","2462015000","",
"Brazil","BRA","PPG, bonds (NTR, current US$)","DT.NTR.PBND.CD","","","","","","","","","","","0","0","96450000","27797000","12040000","-17437000","170898000","735360000","819021000","466451000","111720000","-284990000","-355567000","-415941000","-481934000","-350511000","-573241000","-762012000","19608000","-484339000","115412000","750120000","393409000","382645000","-1937313000","-3673272000","-49331000","134671000","-3008119000","2236256000","4569212000","3138153000","-1485318000","-248943000","-5024192000","-968456000","-17699573000","-10001668000","-6153211000","-1808583000","-4200469000","-4551703000","-73230000","549653000","-278149000","",
"Brazil","BRA","PPG, commercial banks (NTR, current US$)","DT.NTR.PCBK.CD","","","","","","","","","","","151020000","278675000","663462000","875390000","1720680000","1654507000","1899030000","1584184000","3752366000","2319037000","-684386000","996745000","373056000","-439749000","2308333000","-4025051000","-3223115000","-3253990000","-4856530000","-4812778000","-798964000","809968000","-709465000","1768355000","1149514000","2913151000","273224000","237393000","2903443000","-7372888000","1226090000","-4044812000","-4403986000","-3753798000","1349629000","-917186000","-1304687000","-3257536000","-126705000","-170322000","1645776000","3038123000","4475075000","15163028000","22846917000","",
"Brazil","BRA","PNG, bonds (NTR, current US$)","DT.NTR.PNGB.CD","","","","","","","","","","","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","398125000","2320335000","4249970000","1352900000","1056668000","1897201000","-539930000","498540000","-1299927000","-1450844000","-819394000","-2932360000","1678366000","-7518273000","-2645385000","554075000","2005015000","1492437000","12494451000","25521214000","21239774000","-1439159000","-10401119000","-4778425000","",
"Brazil","BRA","PNG, commercial banks and other creditors (NTR, current US$)","DT.NTR.PNGC.CD","","","","","","","","","","","611000000","592700000","1608400000","554400000","2152000000","680000000","1044000000","1043100000","1206200000","-2161200000","-1909900000","-200400000","-1881600000","-3988200000","-4137000000","-2426900000","-2172000000","-1859900000","-2054874000","-1654488000","-592777000","-461060000","2747884000","2522161000","1343439000","4463938000","7283334000","10011793000","9351820000","-15202937000","-6301987000","-9440866000","-10884155000","-9111289000","-4079201000","-3067897000","12017907000","19326985000","18379360000","865205000","9518093000","39468668000","19949837000","20619190000","32133589000","",
"Brazil","BRA","PPG, other private creditors (NTR, current US$)","DT.NTR.PROP.CD","","","","","","","","","","","211707000","134033000","562574000","218246000","316175000","15844000","591465000","580984000","318965000","225172000","286543000","-536597000","654893000","109935000","46656000","432100000","157368000","185214000","-115236000","305580000","110547000","-557668000","-673191000","-651485000","-603251000","-993566000","-742920000","-267262000","-932439000","-329836000","-253494000","-205381000","-721986000","-489536000","-11951000","-23128000","-30223000","-63680000","-91000000","-45349000","26872000","-12197000","10175081000","-153150000","4263742000","",
"Brazil","BRA","PPG, private creditors (NTR, current US$)","DT.NTR.PRVT.CD","","","","","","","","","","","362727000","412708000","1322486000","1121433000","2048895000","1652914000","2661393000","2900528000","4890352000","3010660000","-286123000","175158000","672382000","-745755000","1873055000","-3943462000","-3638988000","-3830788000","-4952158000","-4991537000","-573005000","1002420000","-989247000","1499515000","-1391050000","-1753687000","-519027000","104802000","-1037115000","-5466468000","5541808000","-1112040000","-6611290000","-4492277000","-3686514000","-1908770000","-19034483000","-13322884000","-6370916000","-2024254000","-2527821000","-1525777000","14576926000","15559531000","26832510000","",
"Brazil","BRA","Net official development assistance and official aid received (current US$)","DT.ODA.ALLD.CD","24110000","266570000","166560000","197240000","249000000","236070000","346380000","235320000","264670000","191840000","188130000","157550000","147200000","113210000","167480000","166180000","111950000","78800000","112780000","106570000","85350000","234730000","207540000","100520000","160280000","122380000","178030000","288150000","208950000","202000000","151060000","161560000","-257790000","199830000","251340000","271310000","270080000","259860000","282220000","123100000","231370000","219530000","207730000","198280000","154380000","243070000","113430000","321200000","460360000","336930000","453310000","815490000","1288220000","1150170000","","",
"Brazil","BRA","Net official development assistance and official aid received (constant 2012 US$)","DT.ODA.ALLD.KD","113930000","1650510000","1024720000","1438300000","1515780000","1768090000","2086490000","1303570000","1390240000","1006390000","957280000","739070000","708810000","498670000","680060000","627160000","406160000","276750000","319390000","275850000","201020000","608100000","582190000","285630000","449550000","397480000","375690000","501260000","347730000","334640000","233690000","240050000","-396180000","274960000","332820000","324750000","348180000","365680000","402920000","168430000","323640000","366770000","319200000","268090000","186800000","287140000","128100000","324030000","464980000","322710000","458380000","783230000","1288220000","1118240000","","",
"Brazil","BRA","Net official aid received (current US$)","DT.ODA.OATL.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Net official aid received (constant 2012 US$)","DT.ODA.OATL.KD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Net official development assistance received (current US$)","DT.ODA.ODAT.CD","24110000","266570000","166560000","197240000","249000000","236070000","346380000","235320000","264670000","191840000","188130000","157550000","147200000","113210000","167480000","166180000","111950000","78800000","112780000","106570000","85350000","234730000","207540000","100520000","160280000","122380000","178030000","288150000","208950000","202000000","151060000","161560000","-257790000","199830000","251340000","271310000","270080000","259860000","282220000","123100000","231370000","219530000","207730000","198280000","154380000","243070000","113430000","321200000","460360000","336930000","453310000","815490000","1288220000","1150170000","","",
"Brazil","BRA","Net ODA received (% of gross capital formation)","DT.ODA.ODAT.GI.ZS","0.807898133982803","8.19206128213816","4.26368253640842","4.44844405119845","6.31031448675575","5.41045348690519","6.43403639530603","4.54659180287311","4.12998954159319","2.29120484213865","2.16366991488336","1.51622251264333","1.18774960412194","0.614347033562946","0.627438518086473","0.500508962516861","0.317198360507116","0.202677508775874","0.244480680706667","0.20809139568523","0.155549596431029","0.385810437868171","0.349291611733432","0.296384979350441","0.487150529263624","0.285889855243401","0.347743829434397","0.43929012615367","0.278372021175125","0.176423836432396","0.162151137827394","0.135559657660681","-0.339859759564282","0.218955639075997","0.195855318682122","0.180072748378138","0.180160881367181","0.1624125","0.176337166793192","0.11531926964494","0.184130209624729","0.207893547140338","0.232620709588926","0.207951041276117","0.127802353620432","0.156258643836846","0.0567464344934329","0.115097671576747","0.124618143706564","0.106780492993132","0.0941330213913212","0.142983845041192","0.262412597569472","0.232418877906781","","",
"Brazil","BRA","Net ODA received (% of GNI)","DT.ODA.ODAT.GN.ZS","0.158978529254585","1.74950803468696","0.835880477050229","0.856765174087018","1.17386981297119","1.08338512870852","1.34131155109789","0.796098313163779","0.800436598643486","0.5215350565713","0.450842225876814","0.323616569901894","0.253463830951411","0.144435867634358","0.160535875502921","0.136194528508635","0.0744556644141469","0.0454825093370251","0.0575171078520893","0.0486742773563614","0.0375495100482576","0.0929038479474105","0.07766365062074","0.0525055381963359","0.0813006808186672","0.0579824512767628","0.0694957694327046","0.101835803560784","0.065877965622478","0.0450381151771759","0.0335933896677532","0.0274132518876729","-0.065588347821275","0.0467832009718361","0.0467940333611622","0.0357995325055977","0.0326373998026557","0.0303922973112939","0.0341862673855482","0.0216695376345296","0.0369076640105049","0.0410922254946353","0.0426988350384744","0.0370929799623785","0.0239807192598694","0.0283714176944019","0.0106774151098772","0.023993875391612","0.0285164036305537","0.0212153914905115","0.0208632570901743","0.0317187481137116","0.0541146903295159","0.048818189758675","","",
"Brazil","BRA","Net official development assistance received (constant 2012 US$)","DT.ODA.ODAT.KD","113930000","1650510000","1024720000","1438300000","1515780000","1768090000","2086490000","1303570000","1390240000","1006390000","957280000","739070000","708810000","498670000","680060000","627160000","406160000","276750000","319390000","275850000","201020000","608100000","582190000","285630000","449550000","397480000","375690000","501260000","347730000","334640000","233690000","240050000","-396180000","274960000","332820000","324750000","348180000","365680000","402920000","168430000","323640000","366770000","319200000","268090000","186800000","287140000","128100000","324030000","464980000","322710000","458380000","783230000","1288220000","1118240000","","",
"Brazil","BRA","Net ODA received (% of imports of goods, services and primary income)","DT.ODA.ODAT.MP.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.193261449078461","0.0739313659772282","0.161753407441872","0.168432863588166","0.155119292440122","0.155726399268545","0.226232285141152","0.367618163999144","0.306135351494686","","",
"Brazil","BRA","Net ODA received per capita (current US$)","DT.ODA.ODAT.PC.ZS","0.332581151835711","3.56821180933142","2.16290483417411","2.48511836308565","3.04580442153434","2.80601246681611","4.00462514665734","2.64839906066242","2.90166943182414","2.04988481899797","1.960045759614","1.60108208962808","1.45967463872135","1.09571368247514","1.58229471544742","1.53258353004471","1.00786791479997","0.692586103943621","0.967801564603376","0.892983999757871","0.698446766502847","1.87622821489463","1.62071292673649","0.767244274952901","1.19656096076828","0.894352489236273","1.2746963102092","2.02299283884405","1.43954065652754","1.36669498025653","1.00443409178569","1.05652188026994","-1.65910441609265","1.26625175160707","1.56832149814476","1.66698356414788","1.63384661351442","1.54776379966543","1.65508927166349","0.710931679373208","1.31619935350986","1.23041555414749","1.14739054237786","1.07979563979849","0.829481070398952","1.28963805244546","0.594814086407855","1.66610886773425","2.36361204773868","1.71290176234628","2.28236441171419","4.06692512313534","6.36467350966977","5.6309287578019","","",
"Brazil","BRA","Net ODA received (% of central government expense)","DT.ODA.ODAT.XP.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.0956507423378254","0.114179612711262","-0.225926326501222","0.125017284866469","0.139825439299523","","","0.134869501665352","0.1492375297251","0.0946002936445116","0.165204061313345","0.173795063808284","0.180731700950293","0.143847698793657","0.101607000020501","0.107459070818073","0.038274048840683","0.0877214815313176","0.103867075761848","0.0791366785865608","0.079255853679654","0.125162861806848","0.214888777513431","","","",
"Brazil","BRA","PPG, bilateral (TDS, current US$)","DT.TDS.BLAT.CD","","","","","","","","","","","74902000","92323000","101325000","115431000","148681000","230706000","307732000","366891000","411115000","472220000","543539000","705755000","1084471000","728232000","817992000","667818000","932442000","775565000","574231000","340842000","745943000","1208499000","506863000","426765000","2199797000","2852199000","3201266000","3413068000","4160622000","3337835000","3244543000","644573000","2862876000","2382879000","2354548000","1766193000","3272946000","761305000","809719000","738606000","1030656000","996537000","1114092000","942304000","760621000","",
"Brazil","BRA","PPG, bilateral concessional (TDS, current US$)","DT.TDS.BLTC.CD","","","","","","","","","","","67853000","73656000","77506000","85905000","94029000","119172000","133045000","141528000","148261000","149609000","143264000","119886000","117090000","57753000","62186000","35956000","51480000","61458000","38607000","24991000","42250000","88671000","43733000","52915000","341033000","654588000","779976000","343913000","628556000","614432000","299736000","179761000","599085000","495473000","564771000","535962000","382864000","519437000","535497000","461126000","805177000","739987000","876508000","764522000","612172000","",
"Brazil","BRA","Debt service on external debt, total (TDS, current US$)","DT.TDS.DECT.CD","","","","","","","","","","","767220000","878863000","1203536000","1922823000","3424378000","4356156000","4323127000","5785006000","8462939000","11363508000","14811728000","17928662000","19272375000","13366958000","13771881000","11531357000","11681339000","12023458000","16914251000","14184541000","8223839000","8396000000","8708498000","11296805000","15999573000","21634564000","25280068000","38614184000","51426171000","68188703000","58586698000","50070240000","52046596000","58350699000","53764223000","62905815000","62246198000","55009033000","56543241000","44525011000","45881461000","59070160000","45478121000","82069252000","59895313000","",
"Brazil","BRA","Total debt service (% of exports of goods, services and primary income)","DT.TDS.DECT.EX.ZS","","","","","","","","","","","","","","","","43.8289163899789","38.3154037046885","42.820177646188","58.4094071364483","63.1376152905878","63.6379291084855","66.5923634067526","82.1184328262815","54.9154019966312","45.5947061744744","39.3440820225869","46.4817914129959","41.849836407936","45.933929880781","36.5420846536311","22.6383654031437","23.4250320852631","21.2407570916364","25.1582410974768","31.2418437085058","38.565660094834","43.6948077986726","59.846539164936","80.7559099260376","115.308277529762","85.8983534646369","70.6965783972677","71.0937537810414","67.1702620830321","47.8935670906091","46.1865196765668","38.248552319393","28.0520896216672","23.4712959527755","23.4880702453716","19.0443003849607","19.3671657357295","15.5040172051248","28.180059864833","21.5712828645204","",
"Brazil","BRA","Total debt service (% of GNI)","DT.TDS.DECT.GN.ZS","","","","","","","","","","","1.83859656905974","1.80523408107704","2.07236987260827","2.45318088783941","3.28239503393205","3.57013246196932","2.87522369925625","3.33904301281404","4.31604695166388","5.1901148553367","6.51638112909267","7.09598981105319","7.21192540537672","6.98208638915457","6.98567071034232","5.46344456126375","4.55992609003685","4.2492400035028","5.33274202396728","3.16259896679888","1.82885362168586","1.42462034444727","2.21566389629108","2.64475153207548","2.9787719930228","2.85469491416621","3.05493071073135","4.5161770205534","6.22942680327732","12.003392899336","9.34562892885387","9.37228439234048","10.6981611559145","10.9158831389842","8.35150108814622","7.34244107776266","5.85937137492378","4.10921507850272","3.50249779071959","2.80359581955994","2.11166026894576","2.29755303691847","1.91041470764563","3.48337403817568","2.59361876648317","",
"Brazil","BRA","IMF repurchases and charges (TDS, current US$)","DT.TDS.DIMF.CD","","","","","","","","","","","75160000","0","0","0","0","0","0","0","0","0","0","0","0","68220000","204370000","402420000","978640000","1454825000","1179680000","1069282000","996216000","717544000","668796000","541951000","147861000","58875000","74847000","34705000","22083000","2459647000","7049717000","143073000","5122928000","13212611000","5576325000","24904028000","131004000","19384000","4530000","10410000","14228000","4870000","1323000","5726000","2194000","",
"Brazil","BRA","Debt service on external debt, long-term (TDS, current US$)","DT.TDS.DLXF.CD","","","","","","","","","","","692060000","878863000","1203536000","1922823000","3424378000","4356156000","4323127000","5785006000","8462939000","11363508000","13286728000","15554662000","17109375000","11702738000","11945511000","9690937000","9611699000","9729633000","14800571000","12015259000","7227623000","6334767000","7247782000","9584704000","14349162000","19783399000","23345403000","37195479000","49904088000","64424412000","50042916000","48570167000","46158668000","43458088000","46237898000","36101787000","60589239000","53500424000","55400361000","44025449000","45182926000","58392590000","44850994000","81604235000","59119943000","",
"Brazil","BRA","Debt service on external debt, private nonguaranteed (PNG) (TDS, current US$)","DT.TDS.DPNG.CD","","","","","","","","","","","289000000","367000000","543100000","950200000","2165000000","2514000000","2194600000","2817600000","3841900000","4737000000","5101500000","6261900000","6725800000","4223400000","4137000000","2426900000","2172000000","1859900000","2224784000","2504152000","1467777000","1089409000","1878980000","4255853000","5672107000","6575267000","10345537000","23868032000","32528168000","42411763000","32167884000","32719098000","24274559000","22734092000","25702047000","19920217000","28928042000","32298480000","32991168000","30582870000","30382698000","37094645000","33140845000","60676103000","46616967000","",
"Brazil","BRA","Debt service (PPG and IMF only, % of exports of goods, services and primary income)","DT.TDS.DPPF.XP.ZS","","","","","","","","","","","","","","","","18.5346211892545","18.8649029513427","21.9645151739452","31.89342949824","36.8180242249139","35.1674672395274","34.516071760205","44.2437896800034","31.0075921285075","26.5283264360205","26.1571701525129","33.496064621384","32.4558231813435","37.3556391385819","27.2613133420924","18.5975390205632","16.6363316779198","14.7241347349935","13.0744092822306","17.2321252831368","23.6496969588934","22.5987157771018","20.7094510399554","27.3205555817277","41.3830762987013","36.5440445136429","22.5828978211415","36.8906285212865","39.066040775259","23.260919313161","30.1657450976593","19.5354206741616","10.8219061939663","9.30325679105337","7.09578937152144","6.14835040177692","6.98418957016449","3.99457632504826","7.61260919111245","","",
"Brazil","BRA","Debt service on external debt, public and publicly guaranteed (PPG) (TDS, current US$)","DT.TDS.DPPG.CD","","","","","","","","","","","403060000","511863000","660436000","972623000","1259378000","1842156000","2128527000","2967406000","4621039000","6626508000","8185228000","9292762000","10383575000","7479338000","7808511000","7264037000","7439699000","7869733000","12575787000","9511107000","5759846000","5245358000","5368802000","5328851000","8677055000","13208132000","12999866000","13327447000","17375920000","22012649000","17875032000","15851069000","21884109000","20723996000","20535851000","16181570000","31661197000","21201944000","22409193000","13442579000","14800228000","21297945000","11710149000","20928132000","12502976000","",
"Brazil","BRA","Public and publicly guaranteed debt service (% of GNI)","DT.TDS.DPPG.GN.ZS","","","","","","","","","","","0.965909039291494","1.05139541935699","1.1372054256673","1.24089432811706","1.20716115249055","1.50975790022478","1.41563994648013","1.712754709413","2.35670152998502","3.02655989768366","3.60106972505307","3.67798469671313","3.88564296518382","3.90675156229911","3.96080147541834","3.44162993483496","2.90416000872169","2.78126178679096","3.96490674162051","2.12060560657646","1.28089998083046","0.890024264019683","1.36596009526963","1.24756396578076","1.61547863908108","1.74282168321192","1.57094869676744","1.55873059195148","2.10480422078483","3.87493034883177","2.85138814553755","2.96704642499441","4.49827160330714","3.8769153135385","3.18994997793437","1.88873197606123","2.98033803442297","1.58380075465733","1.38810842085103","0.846435687315255","0.681169534661039","0.828390480318194","0.491912163176702","0.888280444865193","0.541410530578389","",
"Brazil","BRA","Public and publicly guaranteed debt service (% of exports of goods, services and primary income)","DT.TDS.DPPG.XP.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","11.8808013964326","19.4549472284257","10.8120390725212","9.30213275635552","7.09130402915478","6.14322647374295","6.98288973904132","3.99213061947283","7.18607654017057","4.50294513812471","",
"Brazil","BRA","PPG, IBRD (TDS, current US$)","DT.TDS.MIBR.CD","","","","","","","","","","","24996000","30646000","46866000","61923000","74161000","97765000","129627000","204321000","217950000","234207000","274797000","317108000","411118000","506950000","669065000","796386000","1164473000","1555424000","1714150000","1475024000","1975306000","1917264000","1912875000","1857542000","1882563000","1868122000","1638056000","1428318000","1372722000","1380476000","1351206000","1361577000","1521503000","2010191000","1850600000","1335083000","1174476000","1352867000","1310233000","2231111000","1140567000","6766018000","494436000","521548000","508705000","",
"Brazil","BRA","PPG, IDA (TDS, current US$)","DT.TDS.MIDA.CD","","","","","","","","","","","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","",
"Brazil","BRA","Multilateral debt service (TDS, current US$)","DT.TDS.MLAT.CD","","","","","","","","","","","67525000","82403000","108091000","140378000","160168000","193573000","252616000","355759000","393074000","416401000","473006000","519016000","624198000","770307000","950235000","1140370000","1578480000","2038477000","2191818000","1982377000","2551371000","2524854000","2519325000","2934823000","2517147000","2495677000","2259054000","2087981000","2067882000","4214480000","5780805000","2566289000","3387852000","4737385000","4318970000","2626304000","2530959000","2897571000","2886075000","3793046000","2601759000","8370581000","2170863000","4454756000","2009133000","",
"Brazil","BRA","Multilateral debt service (% of public and publicly guaranteed debt service)","DT.TDS.MLAT.PG.ZS","","","","","","","","","","","16.7530888701434","16.0986435823648","16.3666123591082","14.432930333747","12.7180242945327","10.5079591522108","11.8681134888117","11.9888886118044","8.50618226766751","6.28386776262852","5.77877610739738","5.58516402335495","6.01139780855823","10.2991334259797","12.1692215071478","15.6989586294575","21.2182508573438","25.9027466370206","17.4288734375034","20.8391754974538","44.2968502591796","48.1360087698394","46.9327035711199","55.074217687828","29.0092318188602","18.8950034721034","17.3775175836428","15.6667739890468","11.9008489910175","19.1457193543585","32.3401099365864","16.1900058601726","15.4808770144583","22.8594186179152","21.0313660729229","16.2302174634476","7.98550351712855","13.6485503404782","12.8672363483297","28.2075800045206","17.5560582540385","39.2736485455382","18.4733359872503","20.0699484732434","","",
"Brazil","BRA","PPG, multilateral concessional (TDS, current US$)","DT.TDS.MLTC.CD","","","","","","","","","","","14160000","19404000","23556000","29673000","33398000","33100000","40260000","42959000","46127000","48817000","51566000","54431000","59815000","64662000","63571000","62621000","64735000","66183000","67651000","66728000","62905000","65044000","58518000","445128000","54014000","54181000","54805000","55436000","56823000","59810000","63670000","58566000","57180000","53400000","54130000","59124000","70980000","75019000","78043000","80346000","85218000","98454000","103918000","175934000","189646000","",
"Brazil","BRA","PPG, official creditors (TDS, current US$)","DT.TDS.OFFT.CD","","","","","","","","","","","142427000","174726000","209416000","255809000","308849000","424279000","560348000","722650000","804189000","888621000","1016545000","1224771000","1708669000","1498539000","1768227000","1808188000","2510922000","2814042000","2766049000","2323219000","3297314000","3733353000","3026188000","3361588000","4716944000","5347876000","5460320000","5501049000","6228504000","7552315000","9025348000","3210862000","6250728000","7120264000","6673518000","4392497000","5803905000","3658876000","3695794000","4531652000","3632415000","9367118000","3284955000","5397060000","2769754000","",
"Brazil","BRA","PPG, bonds (TDS, current US$)","DT.TDS.PBND.CD","","","","","","","","","","","0","0","0","9008000","12960000","17437000","20146000","44884000","121379000","190317000","266179000","330445000","467562000","415941000","481934000","350511000","573241000","762012000","655133000","484339000","84588000","287229000","426591000","937230000","2339187000","5334498000","4394706000","4299093000","5942612000","6284235000","6267147000","6881666000","6257528000","8248943000","10767496000","9220172000","23313650000","13364773000","16407648000","6908583000","9633766000","8182592000","6660644000","8129914000","6597155000","",
"Brazil","BRA","PPG, commercial banks (TDS, current US$)","DT.TDS.PCBK.CD","","","","","","","","","","","182107000","227634000","275037000","403263000","560283000","930681000","1008373000","1533997000","2723880000","4254905000","5557837000","6264899000","6700863000","4797138000","4701472000","4518411000","3513939000","3418474000","8138674000","6041232000","1662518000","217849000","1050353000","265055000","670663000","1427231000","2253255000","2814029000","4255123000","7826793000","2305597000","5454267000","8471502000","4795963000","3046714000","2525456000","2494569000","4064006000","2206585000","1898764000","1446455000","3706160000","1720311000","7247710000","2954390000","",
"Brazil","BRA","PNG, bonds (TDS, current US$)","DT.TDS.PNGB.CD","","","","","","","","","","","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","84665000","510928000","2162871000","3506513000","3160433000","6289930000","2989995000","2644615000","4336849000","3749116000","4986862000","3481258000","12717591000","9224882000","9277952000","11924976000","5261563000","4520549000","6863054000","9525280000","10260923000","15181146000","12941854000","",
"Brazil","BRA","PNG, commercial banks and other creditors (TDS, current US$)","DT.TDS.PNGC.CD","","","","","","","","","","","289000000","367000000","543100000","950200000","2165000000","2514000000","2194600000","2817600000","3841900000","4737000000","5101500000","6261900000","6725800000","4223400000","4137000000","2426900000","2172000000","1859900000","2224784000","2504152000","1467777000","1089409000","1794315000","3744925000","3509236000","3068754000","7185104000","17578102000","29538173000","39767148000","27831035000","28969982000","19287697000","19252834000","12984456000","10695335000","19650090000","20373504000","27729605000","26062321000","23519644000","27569365000","22879922000","45494957000","33675113000","",
"Brazil","BRA","PPG, other private creditors (TDS, current US$)","DT.TDS.PROP.CD","","","","","","","","","","","78526000","109503000","175983000","304543000","377286000","469759000","539660000","665875000","971591000","1292665000","1344667000","1472647000","1506481000","767720000","856878000","586927000","841597000","875205000","1015931000","662317000","715426000","1006927000","865670000","764978000","950261000","1098527000","891585000","713276000","949681000","349306000","276940000","304274000","904351000","558826000","48123000","43445000","49073000","114289000","99166000","103580000","87592000","42075000","44239000","153448000","181677000","",
"Brazil","BRA","PPG, private creditors (TDS, current US$)","DT.TDS.PRVT.CD","","","","","","","","","","","260633000","337137000","451020000","716814000","950529000","1417877000","1568179000","2244756000","3816850000","5737887000","7168683000","8067991000","8674906000","5980799000","6040284000","5455849000","4928777000","5055691000","9809738000","7187888000","2462532000","1512005000","2342614000","1967263000","3960111000","7860256000","7539546000","7826398000","11147416000","14460334000","8849684000","12640207000","15633381000","13603732000","13862333000","11789073000","25857292000","17543068000","18713399000","8910927000","11167813000","11930827000","8425194000","15531072000","9733222000","",
"Brazil","BRA","Total amount of debt rescheduled (current US$)","DT.TXR.DPPG.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2498755000","1316365000","0","13318028000","12058000","43451325000","233740000","297465000","288315000","147769000","0","0","0","0","0","86161000","4271438000","0","27604000","264552000","4042000","78466000","1455000","1567000","658075000","2350628000","",
"Brazil","BRA","Undisbursed external debt, total (UND, current US$)","DT.UND.DPPG.CD","","","","","","","","","","","1878963000","2343926000","2733523000","2956327000","3428623000","4384984000","6937359000","9694557000","12255886000","13527860000","15050388000","16619690000","19118848000","18561235000","15897688000","17424321000","17658885000","18446234000","16203765000","15457214000","15301658000","15633834000","18289880000","17847064000","21291500000","19542923000","21250288000","29724129000","45665345000","46497765000","39358894000","25947447000","21632067000","30434585000","29376494000","24505446000","9787947000","13634535000","7952541000","22784882000","20100122000","21736156000","28168753000","43270409000","32817567000","",
"Brazil","BRA","Undisbursed external debt, official creditors (UND, current US$)","DT.UND.OFFT.CD","","","","","","","","","","","1038351000","1320914000","1944113000","2174326000","2249072000","2260870000","3918002000","4810954000","5699386000","6160319000","6739337000","7489601000","8102341000","7952360000","7255681000","7997543000","7975407000","8836341000","7902206000","7488610000","7562053000","8468289000","9946863000","10002700000","11994017000","10942314000","11206167000","15152931000","29260573000","30897966000","21064598000","15280770000","14607661000","14734967000","14966615000","13967209000","5234325000","6824528000","5683813000","13731481000","12098893000","11163169000","15878617000","16978099000","15789125000","",
"Brazil","BRA","Undisbursed external debt, private creditors (UND, current US$)","DT.UND.PRVT.CD","","","","","","","","","","","840612000","1023012000","789410000","782001000","1179551000","2124114000","3019357000","4883603000","6556500000","7367541000","8311051000","9130089000","11016507000","10608875000","8642007000","9426778000","9683478000","9609893000","8301559000","7968604000","7739605000","7165545000","8343017000","7844364000","9297483000","8600609000","10044121000","14571198000","16404772000","15599799000","18294296000","10666677000","7024406000","15699618000","14409879000","10538237000","4553622000","6810007000","2268728000","9053401000","8001229000","10572987000","12290136000","26292310000","17028442000","",
"Brazil","BRA","Agriculture value added per worker (constant 2005 US$)","EA.PRD.AGRI.KD","","","","","","","","","","","","","","","","","","","","","1148.45513725842","1241.20366135575","1243.26062686183","1245.9959619544","1304.93228642142","1457.79443653727","1363.88464309275","1588.75637882709","1641.28281883338","1727.73952704685","1711.60783334232","1646.19113146606","1732.50311796392","1759.94186026086","1902.01131398825","2023.58493922445","2110.04688362675","2126.73436577462","2211.71602256629","2369.83723752205","2463.79101722888","2631.33535057532","2866.43082754544","3153.65489973405","3251.46092560313","3335.13136141153","3567.70631999256","3766.98079024908","4069.88294407817","4014.76868178522","4398.83439760628","4770.43288461499","4777.12396714408","5296.80982726033","5470.46667773818","",
"Brazil","BRA","Energy intensity level of primary energy (MJ/$2011 PPP GDP)","EG.EGY.PRIM.PP.KD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","3.92387376322358","3.93852490477719","3.99827979147968","3.91566327836291","3.91333176780674","3.87615706769104","3.9963942417266","4.06217882959337","4.1581572599315","4.24156437023923","4.08282878498668","4.10014641361976","4.09976195618407","4.11990545774165","4.11395916209937","4.08852321681526","4.06967724993185","4.05350120801984","4.06901006923651","3.94896727849804","4.0603748898959","4.01428761388322","4.14538556998154","","","",
"Brazil","BRA","Access to electricity, rural (% of rural population)","EG.ELC.ACCS.RU.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","63.2","","","","","","","","","","80.4","","","","","","","","","","93.6","","97","","","",
"Brazil","BRA","Access to electricity, urban (% of urban population)","EG.ELC.ACCS.UR.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","100","","","","","","","","","","100","","","","","","","","","","98.8172881958854","","99.945633031537","","","",
"Brazil","BRA","Access to electricity (% of population)","EG.ELC.ACCS.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","93","","","","","","","","","","97.4","","","","","","","","","","98","","99.5","","","",
"Brazil","BRA","Electricity production from coal sources (% of total)","EG.ELC.COAL.ZS","","","","","","","","","","","","3.30373415021909","3.46770242844146","2.1614189043043","1.8382404217632","2.06118958636853","1.6660557795475","1.77404664792302","2.71358745309548","2.39796803761024","2.46592050509399","3.16836278984717","3.07122803095556","2.42716654153384","2.71141089246892","2.5536704494997","3.0594474788253","2.69806374827252","2.26334863943205","2.52569710594385","2.13355114643593","2.42557930172329","2.10977446097331","1.98590341937327","1.93431035875112","2.00362117699138","2.09284600965401","2.39786740783552","2.19302062483683","2.93741560009082","3.15439511621908","3.39809076186881","2.66264743064937","2.49575258207329","2.73116997416461","2.66529043527453","2.50395266814042","2.26846412533388","2.60782996844949","2.09859671630328","2.19837322707927","2.32794302660802","2.56430677558379","","","",
"Brazil","BRA","Electricity production from oil, gas and coal sources (% of total)","EG.ELC.FOSL.ZS","","","","","","","","","","","","15.0471131102408","10.0846805234796","9.40271297469332","7.30135706216265","7.32501425223285","6.9485633045661","6.3507306062646","7.67415660566491","6.6409516146844","6.21896972305926","6.71580383579371","5.77227807402245","4.94418255443278","4.62790568036122","4.57450873080617","8.09981793714874","6.48843511318982","5.53950508730059","5.23647657353864","4.49553677615665","4.75899938987187","4.85289494150547","4.56987967107978","4.57350956195369","4.92850171080656","5.60564134606802","5.99320739523738","6.06188694257618","8.6655552767122","8.66785130836032","11.2332119765729","10.1394100170393","9.04597092268464","10.8333139761468","10.2304277813479","9.80881725199541","8.74475173369696","12.6132935406755","8.0993990830707","12.3855781442379","9.82967784157049","14.5743924093479","","","",
"Brazil","BRA","Electricity production from hydroelectric sources (% of total)","EG.ELC.HYRO.ZS","","","","","","","","","","","","83.7547016169685","88.6713555882147","89.4385563761085","91.6037880584109","91.5778805346171","92.0917885664145","92.5434601829486","91.1442485961909","91.9589190212504","92.4860094705123","91.9669168067404","92.7956656957439","93.2188265412877","92.8663805117342","92.0968391487077","90.2492480012665","91.2797359969705","92.6242282981386","92.4012405032435","92.7686349132263","92.9195270867022","92.3928151837572","93.2886465377655","93.3333589703162","92.127749899311","91.2423869979882","90.5806183478255","90.5892188918035","87.5368969514454","87.2439884210828","81.5432196476189","82.7642469284377","83.8823183902904","82.7963649784619","83.729372036533","83.1801152772114","84.0205595005695","79.8061619592845","83.8812239740325","78.1954260341836","80.5505146147582","75.1792408261821","","","",
"Brazil","BRA","Electric power transmission and distribution losses (% of output)","EG.ELC.LOSS.ZS","","","","","","","","","","","","13.0462600333476","12.7668136328644","12.3489787720545","11.7086709717011","11.5778805346171","12.0000444281541","11.9292757296163","12.0315091946172","12.3795099941628","11.8123116659492","11.0396871725263","11.929856860128","11.2841089517151","10.7597970901388","11.3748309083962","12.5420525607536","13.4652364863203","13.4879761057377","14.203039864935","14.2271150385287","15.3914419930283","14.591779325865","15.2220846429819","16.1570675393496","16.7444965729442","17.2058995186729","17.455890279302","16.8212389820605","17.6041778701944","17.6575621220372","17.2379363668465","16.743955958122","16.2680909812016","16.7483539939038","16.5941746705605","16.8241772130768","16.1409601771999","16.6457553658542","17.1869536021763","16.6258519229464","16.4593978076452","17.0809583886155","","","",
"Brazil","BRA","Electricity production from natural gas sources (% of total)","EG.ELC.NGAS.ZS","","","","","","","","","","","","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0.146305779078274","0.1591453086267","0.16133569407443","0.15398291900816","0.18420172203614","0.20319229610923","0.334388453642225","0.382165191472229","0.410569762671407","0.792612244410187","1.16591671204609","3.02001777734484","3.58896175843504","3.59829719025413","4.9719578890859","4.66760786337595","4.35401598237217","3.48109725551335","6.21465144352761","2.86020153565276","7.07229347836625","4.71926086539528","8.46382330954316","","","",
"Brazil","BRA","Electricity production from nuclear sources (% of total)","EG.ELC.NUCL.ZS","","","","","","","","","","","","0","0","0","0","0","0","0","0","0","0","0","0","0","0.915881598751324","1.74564492312141","0.0712419852766564","0.478530081492738","0.282860426058517","0.826099321515147","1.00394487054631","0.615248083216357","0.727665348402363","0.175413531447439","0.0211505108809765","0.914002489105627","0.833224617032526","1.0289562377022","1.01476932257543","1.18817146476416","1.73282508383251","4.34662169566647","4.00264991856418","3.66636566494391","2.99675057361796","2.44520920123166","3.27993952358127","2.77436442343765","3.01662610378196","2.77975032234119","2.81592647529302","2.94476612437636","2.90296831134417","","","",
"Brazil","BRA","Electricity production from oil sources (% of total)","EG.ELC.PETR.ZS","","","","","","","","","","","","11.7433789600217","6.61697809503814","7.24129407038902","5.46311664039945","5.26382466586432","5.2825075250186","4.57668395834158","4.96056915256944","4.24298357707416","3.75304921796528","3.54744104594654","2.70105004306689","2.51701601289894","1.9164947878923","2.02083828130647","5.04037045832344","3.7903713649173","3.27615644786854","2.71077946759479","2.21567985064244","2.17427477952188","2.58178478645773","2.42999333269835","2.45499748116643","2.72168823770596","3.17840688277179","3.21317479592963","3.45829655506794","4.93552743221119","4.34753948009515","4.81510343735921","3.88780082795491","2.95192115035722","3.13018611289627","2.89752948269745","2.95084860148282","2.99519035284973","3.79081212869844","3.14060083111467","3.11491143879243","2.78247394956719","3.54626232422091","","","",
"Brazil","BRA","Renewable electricity output (% of total electricity output)","EG.ELC.RNEW.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","94.500518353297","94.6257525269118","94.4194397100922","95.2547067974728","95.4053399271653","94.1574958000878","93.5611340368994","92.9778363670604","92.9233437348484","90.0369268275195","89.4927058553782","84.2874450546105","85.7381730026528","87.1636031278562","86.0321122820058","87.1246275118911","86.7476516501048","88.2146796451509","84.2664236492775","88.9957757749597","84.7242338752678","87.1209969967485","82.4714146857109","","","",
"Brazil","BRA","Electricity production from renewable sources, excluding hydroelectric (kWh)","EG.ELC.RNWX.KH","","","","","","","","","","","","618000000","711000000","750000000","785000000","866000000","864000000","1117000000","1332000000","1775000000","1805000000","1873000000","2178000000","2985000000","2852000000","3066000000","3193000000","3565000000","3339000000","3403000000","3859000000","3999000000","4899000000","4954000000","5388000000","5594000000","6754000000","7383000000","7510000000","8368000000","7846000000","9015000000","10280000000","11955000000","12537000000","13684000000","14960000000","18670000000","20654000000","23840000000","33672000000","34939000000","40287000000","","","",
"Brazil","BRA","Electricity production from renewable sources, excluding hydroelectric (% of total)","EG.ELC.RNWX.ZS","","","","","","","","","","","","1.19818527279072","1.24396388830569","1.15873064919816","1.09485487942649","1.09710521315006","0.959648129019359","1.10580921078684","1.18159479814422","1.40012936406519","1.29502080642847","1.31727935746587","1.43205623023361","1.83699090427954","1.58983220915324","1.58300719736475","1.57969207630808","1.75329880834698","1.55340618850228","1.53618360170276","1.73188344007073","1.70622544020958","2.02662452633495","1.96606025970727","2.07198095684911","2.02974590077685","2.31874703891128","2.39721801923489","2.33412484304487","2.50002987607404","2.24871743429538","2.74422540699161","2.97392607421508","3.28128473756584","3.23574730354391","3.3952554753581","3.5675363728934","4.19412014458145","4.46026168999302","5.11455180092723","6.52880784108426","6.57048238199027","7.29217385952877","","","",
"Brazil","BRA","Renewable energy consumption (% of total final energy consumption)","EG.FEC.RNEW.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","49.8646775482228","48.9381579154782","48.7011892213837","48.1990921555183","48.351120010407","46.134347076345","44.5328773584286","43.725108140171","43.8615751849275","44.0972827670298","42.7987681959272","41.4778839036625","43.0245618323217","45.3086686424626","45.3899675863294","46.3477210538813","46.9049235289511","47.4176675601042","47.2633035529622","49.1143486334211","47.0080898079932","45.470280030075","43.6265127763827","","","",
"Brazil","BRA","GDP per unit of energy use (PPP $ per kg of oil equivalent)","EG.GDP.PUSE.KO.PP","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","7.12696269766039","7.33678073152433","7.39187768414991","7.72742294623919","7.89658902982874","8.13859112264223","8.04098650474656","8.04719895100231","7.97213843509874","7.9535586768474","8.45706606306342","8.61021081896559","8.77861757472957","8.91662582260958","9.1704295335574","9.5237004631203","9.86591692721937","10.1603082679648","10.3054112667453","10.7092273151084","10.5463681641078","11.0131601169934","10.9348424137709","","","",
"Brazil","BRA","GDP per unit of energy use (constant 2011 PPP $ per kg of oil equivalent)","EG.GDP.PUSE.KO.PP.KD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","11.0267652217697","10.9857320517063","10.8215488204044","11.0498744104314","11.0564779167739","11.1625054851938","10.8309115443802","10.656886479246","10.4441383571101","10.26274436616","10.6696469579358","10.6208202613135","10.6648339548631","10.6207123450139","10.6307065542053","10.6960706323248","10.750141042699","10.7839205459385","10.7274976524841","11.0638305195089","10.7641113779505","11.0131601169934","10.7419993373225","","","",
"Brazil","BRA","Energy imports, net (% of energy use)","EG.IMP.CONS.ZS","","","","","","","","","","","","29.5916029804543","32.656234945869","37.4900328976442","38.591920235533","40.8383545699741","43.3259587101665","43.5009469833003","45.6228505552664","45.8252318090197","43.4837698564728","39.0850170879339","36.0081998186933","29.6351437213593","22.3728991031524","20.8387793677877","24.6711753410133","24.992919898034","26.521543324978","25.942303935049","25.7212361287906","26.6880037080823","27.4567742899731","28.6000131913864","28.9512701698296","30.4417023265223","30.0995214232705","29.1674790542005","26.8935611661908","24.2592541230152","21.233675481688","20.4791257785001","14.509854345803","10.3887976650494","13.130242263878","9.57924262391493","7.40195792432915","8.08406871709725","8.20735754122727","4.09860841514514","7.24344547630414","7.71282910605718","10.584408709056","","","",
"Brazil","BRA","Access to non-solid fuel, rural (% of rural population)","EG.NSF.ACCS.RU.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","63.193342089653","","65.6092613935471","","","",
"Brazil","BRA","Access to non-solid fuel, urban (% of urban population)","EG.NSF.ACCS.UR.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","98.7922895081545","","99.3887134096411","","","",
"Brazil","BRA","Access to non-solid fuel (% of population)","EG.NSF.ACCS.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","76.7072647809982","","","","","","","","","","87.3395338654518","","","","","","","","","","93.2157143950462","","94.2783553153276","","","",
"Brazil","BRA","Alternative and nuclear energy (% of total energy use)","EG.USE.COMM.CL.ZS","","","","","","","","","","","","5.32508556641075","5.82591995075959","6.07354450050972","6.47385773149567","6.8220261692571","7.46043601249726","8.13274640129148","8.40392986920697","8.96815026091091","9.73707692458899","10.2960933790159","10.9297945275331","11.445926901517","12.1806496082182","12.5401298853803","11.6137298265724","11.5277695547454","12.1210076014923","12.4317190530695","13.0948986632777","13.3734829454623","13.6239582264374","13.7407085055928","13.4096991812718","13.9621511763181","13.8443947195588","13.9210004193555","14.1973291266853","14.0634311692842","14.823167717923","14.0578604804332","14.4438347878531","14.9976609032102","14.6193297434059","14.7212300379726","15.1332304988475","15.1084185684028","14.3723854591175","15.5614951126932","14.6779702566335","15.3947383989642","14.4931856384134","","","",
"Brazil","BRA","Fossil fuel energy consumption (% of total)","EG.USE.COMM.FO.ZS","","","","","","","","","","","","43.6414251595878","45.3901918470382","49.2888959455924","50.8156881439337","52.1304158514731","54.1303754068742","54.1400398216543","56.3716618210662","56.3463424084867","54.8022844552039","52.90805340013","52.5505930936778","49.6507445227573","47.400178524694","48.2142163318957","50.0083220760487","49.501235644505","49.9800566172523","49.8329981754572","51.2155814871339","51.9545695513203","52.6844763507444","53.2643162988162","53.2658867562733","54.6082665793607","56.2673746400855","56.681149026942","57.3405083694375","57.2886606582467","58.2320663671263","58.9496880472903","57.1539857877141","54.6412944752863","54.6983032346568","54.2523838370275","53.4229226057547","52.6606315875362","52.5692991884018","51.3184573777256","53.4853599793767","54.5666879379565","56.5464260388131","","","",
"Brazil","BRA","Energy use (kg of oil equivalent) per $1,000 GDP (constant 2011 PPP)","EG.USE.COMM.GD.PP.KD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","90.6884276474606","91.0271609842042","92.4082140732448","90.4987661267867","90.4447155348534","89.5856222714894","92.3283322832475","93.8360375657067","95.747486849332","97.4398235327155","93.7238133503779","94.1546863044575","93.7661105866544","94.1556430035008","94.0671247862092","93.4922771524973","93.0220353414949","92.730653544793","93.218384416839","90.3846094023852","92.901305540969","90.8004595753579","93.0925397216845","","","",
"Brazil","BRA","Combustible renewables and waste (% of total energy)","EG.USE.CRNW.ZS","","","","","","","","","","","","51.035708111016","48.7867620207687","44.6393406734572","42.7064151225736","41.0423684968812","38.4047806516505","37.7377407594521","35.2347979553931","34.6911999289839","35.4766504261165","36.8160896428357","36.5481891309124","38.9216886618964","40.4252773921397","39.1184710301271","37.7242709395002","37.9436669579184","36.8165626488235","36.4281034528934","34.061725587205","33.0417382072782","32.260852314027","31.3936660542339","31.5704592824006","29.5423255856915","28.0351522056974","27.4455856383866","26.6058561453313","26.7679948111817","24.8710276926527","25.2401096043585","26.753259244111","28.710168229771","29.1010313807241","29.3906178403486","29.7898850898672","30.6536035742131","31.5530862878129","31.6425869690265","30.6902176362614","28.8533825470853","27.7110760679625","","","",
"Brazil","BRA","Electric power consumption (kWh per capita)","EG.USE.ELEC.KH.PC","","","","","","","","","","","","455.589407553896","494.167295829076","548.931165226219","598.462256687467","644.196005278329","713.727133090772","780.838097213899","849.885610540466","930.154657756613","1004.12667881623","1008.99721488857","1043.11626627037","1098.46756695033","1194.48556803622","1268.4049308858","1339.41562688606","1353.26040135827","1404.73539499714","1435.4762731738","1447.26013206599","1473.89249158752","1483.29559754111","1528.20865202961","1558.66846497204","1627.01552727204","1680.05867764593","1755.22228079429","1800.58840294395","1823.54842044784","1886.60170894523","1735.95476133099","1791.62053279927","1863.62772484548","1933.98363366901","1990.6436379943","2044.85892452464","2137.76499203481","2198.48369019378","2165.68474296494","2339.44492027479","2394.39848826425","2462.21887275349","","","",
"Brazil","BRA","Energy use (kg of oil equivalent per capita)","EG.USE.PCAP.KG.OE","","","","","","","","","","","","708.991038818238","741.869242881342","793.363246449139","824.301817180641","840.408954301417","860.47130604548","868.815341225176","902.267230916089","936.759999317588","931.700089560761","873.040841027271","867.193937980765","868.699598884357","904.335085564523","945.330069563055","969.500340025223","987.533737521429","982.195145247482","983.996265648049","932.264790822278","934.217956566357","929.005455299306","937.57116527478","971.918271967539","989.798952725609","1026.37403986633","1061.83743435249","1070.58829069673","1078.18291822797","1066.30291809594","1068.89588954779","1081.26718158374","1083.58796725797","1128.55271086508","1142.4714414171","1168.43028457719","1221.3621289647","1276.27029309529","1222.42911177943","1338.58958871663","1346.65249607236","1391.9019675261","","","",
"Brazil","BRA","CO2 intensity (kg per kg of oil equivalent energy use)","EN.ATM.CO2E.EG.ZS","","","","","","","","","","","","1.4711357111526","1.52864062286636","1.61597611787059","1.64421658925857","1.65884280227133","1.62333192244033","1.64856105275489","1.68270997948007","1.6845444460129","1.64325519012851","1.57297401353371","1.55046621196186","1.46409866852297","1.39352812528359","1.40116719347034","1.46880496915492","1.47538403741354","1.46853789244476","1.47160135629012","1.4898552298303","1.53530857345852","1.52898419123342","1.55946437807625","1.55465993618032","1.60369864742112","1.67852218953721","1.68585445668532","1.71067657745699","1.71499245398852","1.74979205656034","1.76933858074268","1.6973291250154","1.61638068338515","1.60837279851186","1.61289851800067","1.56032678747101","1.54256827366472","1.55956692956133","1.52689620811464","1.57883683143754","1.62728957185306","","","","",
"Brazil","BRA","CO2 emissions from gaseous fuel consumption (kt)","EN.ATM.CO2E.GF.KT","113.677","113.677","110.01","165.015","161.348","194.351","245.689","256.69","231.021","234.688","154.014","249.356","275.025","377.701","693.063","781.071","916.75","1133.103","1485.135","1631.815","1884.838","1686.82","2383.55","3380.974","4173.046","4998.121","5991.878","6644.604","6846.289","7311.998","7425.675","7264.327","7803.376","8522.108","8841.137","9486.529","10630.633","11800.406","12383.459","13923.599","18023.305","22900.415","28349.577","29211.322","36097.948","38279.813","40072.976","40579.022","48569.415","39156.226","52702.124","50523.926","","","","",
"Brazil","BRA","CO2 emissions from gaseous fuel consumption (% of total)","EN.ATM.CO2E.GF.ZS","0.242338961851157","0.231032940825756","0.204876049989756","0.296696775895035","0.284384694932782","0.344603381014304","0.382071167883212","0.387790150130187","0.298394354189362","0.278345583438438","0.164261410301537","0.242952588516917","0.240484817391862","0.285136893392022","0.483116484752435","0.516701841205153","0.590862896173572","0.695319531953195","0.839413032664566","0.866500506269959","1.00744805958448","0.981815077264578","1.38436308649075","2.02900464338373","2.47208584958943","2.75760212029862","3.01275905302751","3.20175283598968","3.2700458892353","3.41643108027071","3.55487676427217","3.31204440580486","3.53564723279113","3.69340304816999","3.65103882730632","3.67200363367967","3.7328903825601","3.92630551488531","3.96538362180315","4.34877221916804","5.49518123476666","6.78664188917506","8.53217084207041","9.08251336837425","10.6853656948093","11.02183461441","11.5262103153676","11.1722480792335","12.5283768444949","10.6649887137692","12.5554740189398","11.4980513898973","","","","",
"Brazil","BRA","CO2 emissions (kg per 2005 US$ of GDP)","EN.ATM.CO2E.KD.GD","0.377791676182107","0.359352826665101","0.37271880733793","0.382709104449408","0.37725561826735","0.363900707271308","0.398378896784033","0.390866427402829","0.410284879762916","0.407176554698228","0.416286136919484","0.409439364639557","0.407148735932431","0.413751550410685","0.410933439233689","0.411573992423421","0.384766463457499","0.386331442798969","0.406305032640666","0.405069874217436","0.368816915745432","0.354250477010408","0.352966073464254","0.353658746271287","0.340340904169044","0.338527293201238","0.343985712592515","0.346469445378742","0.349889695275228","0.34632131155792","0.348830128222735","0.360815111858826","0.364780502834669","0.364364588446668","0.363025096603885","0.370919036709766","0.400110661125411","0.408420736773992","0.42287629256083","0.431436364654594","0.423403493197619","0.430101476920902","0.410894199982731","0.392923542567267","0.390609350140105","0.389314721447542","0.374730849687234","0.369305487713149","0.37533895014758","0.356305107428901","0.378684136089907","0.381479261872181","","","","",
"Brazil","BRA","CO2 emissions (kt)","EN.ATM.CO2E.KT","46908.264","49203.806","53695.881","55617.389","56735.824","56398.46","64304.512","66193.017","77421.371","84315.331","93761.523","102635.663","114362.729","132463.041","143456.707","151164.741","155154.437","162961.48","176925.416","188322.452","187090.34","171806.284","172176.651","166632.147","168806.678","181248.809","198883.412","207530.198","209363.698","214024.455","208886.988","219330.604","220705.729","230738.641","242154.012","258347.484","284782.887","300547.32","312289.054","320173.104","327983.814","337433.673","332266.87","321621.569","337826.042","347308.904","347668.27","363212.683","387675.24","367147.374","419754.156","439412.943","","","","",
"Brazil","BRA","CO2 emissions from liquid fuel consumption (kt)","EN.ATM.CO2E.LF.KT","39049.883","41503.106","44865.745","46948.601","47040.276","45800.83","51899.051","53769.221","64033.154","69478.649","78316.119","87124.253","97806.224","115459.162","124938.357","129811.8","132316.361","135403.975","145590.901","154655.725","150335.999","135638.663","133302.784","125840.439","122162.438","127618.934","142492.286","145660.574","147772.766","151703.79","150592.689","155176.439","159573.172","167174.863","176287.358","188043.76","206719.791","218666.877","229066.489","233037.85","234046.275","238820.709","231516.045","219594.628","226484.921","232099.098","230844.984","240217.836","253000.998","251145.496","273884.563","289139.283","","","","",
"Brazil","BRA","CO2 emissions from liquid fuel consumption (% of total)","EN.ATM.CO2E.LF.ZS","83.2473420888055","84.3493814279326","83.5552823874889","84.4135293729808","82.9110651499483","81.2093628088427","80.7082572992701","81.230956733699","82.7073367119784","82.4033401470013","83.5269271383316","84.8869198613741","85.5228139930099","87.1633031586524","87.0913320211651","85.8743905101521","85.280423530524","83.0895589558956","82.2894213231637","82.122828880754","80.3547628381027","78.9486041150858","77.4221029540178","75.5199049316696","72.368249554677","70.4109090173387","71.6461390958035","70.1876524013146","70.5818474795951","70.881521459779","72.0929007794396","70.7500167190531","72.3013275292006","72.4520445624017","72.799685020292","72.7871458581729","72.5885579634566","72.7562225475842","73.350790258566","72.7849551035367","71.3590930435366","70.7756006911616","69.677739763823","68.277332482014","67.0418774287389","66.8278570825239","66.3980592764476","66.1369625135034","65.261066969353","68.4045464533269","65.2488031589615","65.8012668051974","","","","",
"Brazil","BRA","CO2 emissions (metric tons per capita)","EN.ATM.CO2E.PC","0.64706779227431","0.658624757599326","0.697280743216486","0.700749314088307","0.694000897986322","0.67037227038264","0.743447848601908","0.744966530873753","0.848797467036747","0.900942019525067","0.976861083139853","1.04302203609269","1.13405146152353","1.28205605905809","1.3553307223644","1.39410634480728","1.39683053944755","1.43229513357978","1.51825407362035","1.57801385409749","1.53102100781392","1.37327055568951","1.34455490005732","1.27186192607302","1.26021637641491","1.32456548047279","1.42400691702644","1.45699151274645","1.44239078857121","1.44805023911208","1.38893957419322","1.43431283819523","1.42043465472225","1.46210883415746","1.51100239866955","1.5873392417049","1.72279160068058","1.79010337097845","1.83143031299461","1.84907556878028","1.86580837597139","1.89123873617418","1.8352662792254","1.75149065902436","1.81513348184222","1.84269049471974","1.82313307231817","1.88403447079654","1.99042894229295","1.86652237546496","2.11341454484465","2.19139356376845","","","","",
"Brazil","BRA","CO2 emissions (kg per PPP $ of GDP)","EN.ATM.CO2E.PP.GD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.20904490356311","0.209261886056058","0.206846522164721","0.20180911397314","0.196877402421187","0.197048681185064","0.208745803583476","0.209495809280985","0.214581895608515","0.21562580018185","0.206902966526728","0.205493061429504","0.193348110971526","0.181277168689366","0.175386855394977","0.169356283751939","0.158153246067396","0.151822979478724","0.151334758913884","0.142577626115054","0.149704315918987","0.147758640986445","","","","",
"Brazil","BRA","CO2 emissions (kg per 2011 PPP $ of GDP)","EN.ATM.CO2E.PP.GD.KD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.135112628215656","0.139754780676638","0.141290698458105","0.141129602034577","0.140610775681263","0.143668341265167","0.154975154460396","0.158193902127838","0.163792983103523","0.16710856207658","0.163997184111035","0.166591519036201","0.159151950438143","0.152191362582567","0.151295004740359","0.150793555263771","0.145144773568409","0.143043364154392","0.145380309563637","0.138007917368425","0.146676002876714","0.147758640986445","","","","",
"Brazil","BRA","CO2 emissions from solid fuel consumption (kt)","EN.ATM.CO2E.SF.KT","4968.785","4682.759","5672.849","5423.493","6175.228","6948.965","8371.761","8129.739","8540.443","9424.19","8910.81","8991.484","9380.186","9017.153","9548.868","11070.673","11529.048","15067.703","17722.611","18478.013","20003.485","19739.461","21569.294","23945.51","29020.638","34898.839","35151.862","40267.327","39808.952","39962.966","35749.583","41037.397","39442.252","40443.343","42115.495","44403.703","46893.596","47678.334","46607.57","48217.383","51249.992","50644.937","48826.105","52379.428","54480.619","52815.801","52269.418","55346.031","56006.091","44495.378","58543.655","64165.166","","","","",
"Brazil","BRA","CO2 emissions from solid fuel consumption (% of total)","EN.ATM.CO2E.SF.ZS","10.5925578486554","9.51706662691906","10.5647749778051","9.75143403441683","10.8841778697001","12.3211963589077","13.0189324817518","12.2818680405518","11.0311182683655","11.1773148349498","9.50369588173178","8.76058451534531","8.20213550517844","6.80729728981535","6.65627156770021","7.32358149576693","7.43069178227884","9.24617461746175","10.0169955231305","9.81190123841421","10.6918855350843","11.4893707845983","12.5274210380593","14.3702823441386","17.1916409610288","19.2546583850932","17.6746072719227","19.4031169381913","19.0142571898974","18.6721494046089","17.1143178147602","18.710292249047","17.8709688138635","17.5277720388411","17.3920285904658","17.1875887128825","16.4664374653945","15.8638360175695","14.9244968413142","15.0597855964816","15.6257686545471","15.0088568665167","14.6948460434831","16.2860433032711","16.1268263031066","15.2071543204663","15.0342790844848","15.2379125483347","14.4466515323496","12.1192145582389","13.9471293287207","14.6024751938179","","","","",
"Brazil","BRA","Other greenhouse gas emissions, HFC, PFC and SF6 (thousand metric tons of CO2 equivalent)","EN.ATM.GHGO.KT.CE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","8396.7","","","","","","","","","","5025.2","","","","","8617.5","","","10326.6","","10621","","","","","",
"Brazil","BRA","HFC gas emissions (thousand metric tons of CO2 equivalent)","EN.ATM.HFCG.KT.CE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1930.7","","","","","","","","","","147.4","","","","","1793.4","","","2707.5","","3336","","","","","",
"Brazil","BRA","Agricultural methane emissions (thousand metric tons of CO2 equivalent)","EN.ATM.METH.AG.KT.CE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","209521.5","","","","","","","","","","245494.9","","","","","302636.8","","","315909.6","","327166.2","","","","","",
"Brazil","BRA","Agricultural methane emissions (% of total)","EN.ATM.METH.AG.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","65.5495602373057","","","","","","","","","","71.5816639831489","","","","","61.4837270779521","","","74.982091716048","","73.8042842940574","","","","","",
"Brazil","BRA","Methane emissions in energy sector (thousand metric tons of CO2 equivalent)","EN.ATM.METH.EG.KT.CE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","25000.2","","","","","","","","","","27683.4","","","","","37933.2","","","41235.3","","43340.5","","","","","",
"Brazil","BRA","Energy related methane emissions (% of total)","EN.ATM.METH.EG.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","7.82140312972507","","","","","","","","","","8.07195520848337","","","","","7.70651327265347","","","9.78732221666816","","9.77703254017865","","","","","",
"Brazil","BRA","Methane emissions (kt of CO2 equivalent)","EN.ATM.METH.KT.CE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","319638.3","","","","","","","","","","342957.8","","","","","492222.6","","","421313.4","","443288.9","","","","","",
"Brazil","BRA","Agricultural nitrous oxide emissions (thousand metric tons of CO2 equivalent)","EN.ATM.NOXE.AG.KT.CE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","102540","","","","","","","","","","122725.2","","","","","157461.5","","","155716.7","","165031","","","","","",
"Brazil","BRA","Agricultural nitrous oxide emissions (% of total)","EN.ATM.NOXE.AG.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","65.820217218271","","","","","","","","","","73.2057972812643","","","","","66.1053822098198","","","81.6280560714643","","79.5039691524735","","","","","",
"Brazil","BRA","Nitrous oxide emissions in energy sector (thousand metric tons of CO2 equivalent)","EN.ATM.NOXE.EG.KT.CE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","4140.8","","","","","","","","","","5073.4","","","","","5897.3","","","6967.9","","7440.7","","","","","",
"Brazil","BRA","Nitrous oxide emissions in industrial and energy processes (% of total nitrous oxide emissions)","EN.ATM.NOXE.EI.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","5.29707037769276","","","","","","","","","","7.62514159460428","","","","","3.51632278565242","","","4.86156433325627","","4.49522535864007","","","","","",
"Brazil","BRA","Industrial nitrous oxide emissions (thousand metric tons of CO2 equivalent)","EN.ATM.NOXE.IN.KT.CE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","4111.4","","","","","","","","","","7709.7","","","","","2478.5","","","2306.2","","1890.3","","","","","",
"Brazil","BRA","Nitrous oxide emissions (thousand metric tons of CO2 equivalent)","EN.ATM.NOXE.KT.CE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","155788","","","","","","","","","","167644.1","","","","","238197.7","","","190763.7","","207575.8","","","","","",
"Brazil","BRA","PFC gas emissions (thousand metric tons of CO2 equivalent)","EN.ATM.PFCG.KT.CE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","4958.1","","","","","","","","","","4119.1","","","","","5622.1","","","6221.8","","5753","","","","","",
"Brazil","BRA","PM2.5 air pollution, mean annual exposure (micrograms per cubic meter)","EN.ATM.PM25.MC.M3","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","9.68278692259861","","","","","8.85887874758589","","","","","9.1119761177174","","","","","11.1978937778087","","","","","14.2354639866491","14.9355377800217","","16.4988640664765","","",
"Brazil","BRA","PM2.5 air pollution, population exposed to levels exceeding WHO guideline value (% of total)","EN.ATM.PM25.MC.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","28.9545779850195","","","","","25.9911611644189","","","","","28.1065288425492","","","","","36.2248502116676","","","","","44.1027766857629","46.8185220585408","","52.6246016338522","","",
"Brazil","BRA","SF6 gas emissions (thousand metric tons of CO2 equivalent)","EN.ATM.SF6G.KT.CE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1507.9","","","","","","","","","","758.7","","","","","1202","","","1397.3","","1532","","","","","",
"Brazil","BRA","Bird species, threatened","EN.BIR.THRD.NO","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","165",
"Brazil","BRA","Disaster risk reduction progress score (1-5 scale; 5=best)","EN.CLC.DRSK.XQ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","4.5","","","","",
"Brazil","BRA","GHG net emissions/removals by LUCF (Mt of CO2 equivalent)","EN.CLC.GHGR.MT.CE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1329.05","","","","","","","","","","",
"Brazil","BRA","Droughts, floods, extreme temperatures (% of population, average 1990-2009)","EN.CLC.MDAT.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.482451027992547","","","","","","",
"Brazil","BRA","CO2 emissions from residential buildings and commercial and public services (% of total fuel combustion)","EN.CO2.BLDG.ZS","","","","","","","","","","","","6.75975177304965","6.75071167141114","6.31442182763101","5.79017472381102","5.60182796491487","5.46196015510095","5.36537836960052","5.27777777777778","5.35901539820078","5.75482853764288","6.37251926928446","6.93015701136979","7.45616811190582","7.1109433012397","7.45387004445527","7.11425593768855","7.40245857830037","8.05910710542863","8.06260007231031","8.47281422185258","8.300712636756","8.40923637437842","8.34045381182949","8.50772183130769","8.25656917264507","7.70048423290422","7.30264849575727","7.23872073101085","7.33370059220493","6.98003821068582","6.92870556239073","6.87141607542035","6.28405375953505","6.09235182240514","5.88818643857692","5.79139981701738","5.73863802212557","5.45027624309392","5.73734149153144","5.04993307937815","4.87990196078431","4.50663274577503","","","",
"Brazil","BRA","CO2 emissions from electricity and heat production, total (% of total fuel combustion)","EN.CO2.ETOT.ZS","","","","","","","","","","","","13.9849290780142","11.864579097194","11.6327414465136","10.9457024210609","10.7392938748434","10.1885278780586","10.5683663527119","11.660756501182","11.0822893095645","11.4195619122698","12.7207622746859","12.248089995789","12.9311981770998","14.4295513183563","14.4266488033615","17.1027370961549","16.1731694281133","15.4946552085517","14.5498682919271","14.4557646324982","13.9817324099167","14.6078479641574","14.245703977974","13.657132413415","13.312391221293","13.3498681154285","14.0102119531279","13.8956310679612","15.6073543589037","16.529415640029","17.7782814220035","16.2827615252535","16.6562097546478","17.5225267358838","18.1418123218049","17.9536444037816","16.9648851396713","19.1022099447514","17.1795099169401","17.9270050447853","15.5416666666667","18.5807741232055","","","",
"Brazil","BRA","CO2 emissions from manufacturing industries and construction (% of total fuel combustion)","EN.CO2.MANF.ZS","","","","","","","","","","","","30.8399822695035","30.9170394469296","31.0524036379385","32.3826686515709","32.5643104592025","34.142265008691","36.1610912633972","36.5366430260047","37.6786798388432","37.8624922574469","32.7608181100929","32.6655838296336","31.4386986518134","31.2189289534957","30.1016990439072","28.5393011902803","30.5398182789952","31.2146300565919","30.7886989308403","29.0622725855078","29.7350195724179","29.2649303333169","29.4502990600968","29.4800328977428","28.9043596383241","29.057911105862","28.9497851081806","28.958452312964","29.6928797686269","30.9243033137888","29.2527358673833","30.2750510253669","30.3833834164383","29.5793970005924","29.2921780091732","29.3778591033852","30.5204471817625","29.2016574585635","28.5182229316308","29.6329661278699","30.6911764705882","27.5849536616391","","","",
"Brazil","BRA","CO2 emissions from other sectors, excluding residential buildings and commercial and public services (% of total fuel combustion)","EN.CO2.OTHX.ZS","","","","","","","","","","","","1.93927304964539","2.40951606344042","2.7371156344738","2.74230196662227","2.85988059261443","2.9950528145474","3.25430334524196","3.05555555555556","3.45493680666704","4.10496086491357","4.23013898161073","4.54791553871142","5.1395657953035","5.13498206531999","5.77918518969612","5.16153803960287","5.56386958845537","5.65919094529449","5.88812561334642","5.73864227050629","5.28455284552846","5.51425336024814","5.65365992594702","5.75253586767797","5.75625079594176","5.60214164796662","5.89207655291481","5.08280982295831","5.03029885690676","4.6676329138942","5.03140581493233","4.91139404542067","5.04243304824489","4.74854238767811","4.65476633196975","4.61421164989326","4.68490031816457","4.93370165745857","5.12252076497887","4.66127869865129","4.30637254901961","4.15228057423224","","","",
"Brazil","BRA","CO2 emissions from transport (% of total fuel combustion)","EN.CO2.TRAN.ZS","","","","","","","","","","","","46.4871453900709","48.0479869865799","48.2546556951061","48.1391522369349","48.2273162821552","47.2121941436021","44.657356284508","43.4692671394799","42.4250786467244","40.8637873754153","43.9218304302968","43.6082536244962","43.0280397493512","42.1055943615883","42.2385969185799","42.0821677362734","40.3099946552646","39.5776566757493","40.705542069108","42.27570433517","42.7030011040851","42.2037319678992","42.3193771954809","42.5980078589052","43.7746741945069","44.2895948978387","43.848951254454","44.8243860651056","42.3357664233577","40.8986099216022","41.0121090461698","41.6561376227039","41.6306178383912","42.0571820534406","42.0199578529813","42.2659347362001","42.0940482792843","41.3093922651934","43.4453607637965","42.7288170493153","44.5833333333333","45.1776303834272","","","",
"Brazil","BRA","Fish species, threatened","EN.FSH.THRD.NO","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","85",
"Brazil","BRA","Plant species (higher), threatened","EN.HPT.THRD.NO","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","516",
"Brazil","BRA","Mammal species, threatened","EN.MAM.THRD.NO","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","82",
"Brazil","BRA","Population density (people per sq. km of land area)","EN.POP.DNST","","8.9382192688804","9.21347919513193","9.49594682548988","9.781099861931","10.0656439112051","10.3485927491045","10.630795727279","10.9130750382262","11.1969584141926","11.4837096531046","11.7732174861871","12.0654106057089","12.3616961429218","12.6638551160904","12.9731356497977","13.2895671764292","13.6126538918946","13.9423547583553","14.2784691330846","14.6204443811661","14.9683281208499","15.3209633961623","15.6750589245933","16.0263588549606","16.3716362731421","16.7100143094038","17.041767546368","17.3663599796127","17.6835774466568","17.9936137705279","18.2955600169416","18.5901419454568","18.8812606632576","19.1741832512975","19.4726403242827","19.7775049233442","20.0874638376481","20.4012474067197","20.7166984520479","21.0317655602802","21.3467824180978","21.6609906031725","21.9698807390161","22.2676771386935","22.5503808263561","22.8158706362899","23.065481195577","23.3029951639958","23.5340994527491","23.7629673587664","23.9906945803731","24.2161035828546","24.4383770791109","24.6559519223176","",
"Brazil","BRA","Population living in areas where elevation is below 5 meters (% of total population)","EN.POP.EL5M.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","4.745497","","","","","","","","","","4.878794","","","","","","","","","","","","","","","",
"Brazil","BRA","Population in largest city","EN.URB.LCTY","4493182","4681086","4878624","5084497","5299360","5522674","5865661","6262294","6686349","7137833","7620490","8004335","8380068","8772332","9183536","9614016","10065309","10536457","11030355","11547405","12089454","12383528","12628957","12879250","13134858","13394815","13660287","13931020","14207502","14488689","14775840","15068681","15288036","15493544","15702105","15913473","16127983","16344782","16564802","16787782","17014078","17260029","17511506","17766646","18025864","18288134","18554591","18824929","19099587","19377480","19659808","19946249","20236863","20531712","20830857","",
"Brazil","BRA","Population in the largest city (% of urban population)","EN.URB.LCTY.UR.ZS","13.4334096263089","13.2972629332752","13.1712805293735","13.053086854693","12.9492291040483","12.8621351347317","13.037342475974","13.2996292121922","13.5825039503705","13.8825107954217","14.2006860241996","14.2972982666698","14.3573661642629","14.4259356798316","14.5025506449476","14.585631677791","14.6759032347454","14.7723917263669","14.8770192948056","14.9896030556896","15.1114939251363","14.9138454741227","14.6622962371873","14.4263635191579","14.2091746176071","14.0118015623244","13.8336096790295","13.6733989435683","13.5303419410962","13.4029470835407","13.290778993171","13.1934212701488","13.0417130805993","12.8873455227055","12.7405472173677","12.5983249531325","12.4602300528024","12.3155410434762","12.1764420995907","12.0445016394309","11.920920922022","11.8620435655154","11.8129320865212","11.7701078498445","11.7367282880153","11.7137847344191","11.7025096063134","11.7016001515265","11.7090850112851","11.72150446093","11.7371082725738","11.7549383487818","11.7765065675345","11.8018859761105","11.8317793984093","",
"Brazil","BRA","Population in urban agglomerations of more than 1 million","EN.URB.MCTY","15323919","16151906","17033048","17965787","18954852","19999603","21108074","22282991","23530552","24850243","26252510","27453126","28655949","29915112","31239033","32629571","34092561","35625828","37239818","38937012","40724744","41881136","42928130","44006852","45119954","46263895","47444512","48661455","49917744","51209423","52543100","53918431","55142475","56355477","57602402","58882617","60199001","61547140","62933672","64357926","65823164","66845767","67842726","68856319","69888290","70934664","72000049","73083833","74188942","75309662","76450936","77611593","78791996","79992520","81213541","",
"Brazil","BRA","Population in urban agglomerations of more than 1 million (% of total population)","EN.URB.MCTY.TL.ZS","21.1383103760146","21.6203705339727","22.1186730667145","22.6359294164396","23.185852221337","23.7722435503761","24.4038119804562","25.0782986712345","25.797364058015","26.553448641634","27.3513638998161","27.8988945369108","28.4160067960547","28.9536238240229","29.5135877905348","30.0923956595405","30.6929864808046","31.3121236221898","31.9566892409514","32.6265634928969","33.3263805078573","33.4761509117024","33.5232606782425","33.5893406841421","33.6840376266911","33.8096336452162","33.9703108386655","34.1633784462024","34.3903431299994","34.6473571068978","34.9371646551731","35.2599666386017","35.4890119037894","35.7104646268838","35.9429797888822","36.178671907786","36.4173333533773","36.6583680693219","36.9076767605374","37.1682277921663","37.4449608431403","37.4655270103033","37.4727300734281","37.4978580939955","37.5508573633582","37.635266356125","37.7560110793051","37.909595968029","38.0905980363598","38.2863065804477","38.4921787669893","38.705629427492","38.9285471204613","39.1622265645116","39.409146632503","",
"Brazil","BRA","Pump price for diesel fuel (US$ per liter)","EP.PMP.DESL.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.38","","","0.39","","","0.34","","0.34","","0.31","","0.49","","0.84","","1.03","","1.14","","1.02","","1.02","",
"Brazil","BRA","Pump price for gasoline (US$ per liter)","EP.PMP.SGAS.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.53","","","0.63","","","0.8","","0.92","","0.55","","0.84","","1.26","","1.26","","1.58","","1.39","","1.27","",
"Brazil","BRA","GEF benefits index for biodiversity (0 = no biodiversity potential to 100 = maximum)","ER.BDV.TOTL.XQ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","100","","","100","","","","","","","",
"Brazil","BRA","Water productivity, total (constant 2005 US$ GDP per cubic meter of total freshwater withdrawal)","ER.GDP.FWTL.M3.KD","","","","","","","","","","","","","","","","","","","","","","","","","","","","17.0943370246175","","","","","","","","","","13.4112764571292","","","","","","","","","","16.9364903130853","","","","","15.6644043838064","16.0941881220495","","",
"Brazil","BRA","Annual freshwater withdrawals, agriculture (% of total freshwater withdrawal)","ER.H2O.FWAG.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","60.93","","","","","","","","","","54.59","","","","","60","60","","",
"Brazil","BRA","Annual freshwater withdrawals, domestic (% of total freshwater withdrawal)","ER.H2O.FWDM.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","20.96","","","","","","","","","","27.95","","","","","23","23","","",
"Brazil","BRA","Annual freshwater withdrawals, industry (% of total freshwater withdrawal)","ER.H2O.FWIN.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","18.12","","","","","","","","","","17.46","","","","","17","17","","",
"Brazil","BRA","Annual freshwater withdrawals, total (billion cubic meters)","ER.H2O.FWTL.K3","","","","","","","","","","","","","","","","","","","","","","","","","","","","35.04","","","","","","","","","","54.87","","","","","","","","","","58.07","","","","","74.83","74.83","","",
"Brazil","BRA","Annual freshwater withdrawals, total (% of internal resources)","ER.H2O.FWTL.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.646733111849391","","","","","","","","","","0.969263381028087","","","","","","","","","","1.02579049637873","","","","","1.32185126302773","1.32185126302773","","",
"Brazil","BRA","Renewable internal freshwater resources, total (billion cubic meters)","ER.H2O.INTR.K3","","","5418","","","","","5418","","","","","5418","","","","","5418","","","","","5418","","","","","5418","","","","","5661","","","","","5661","","","","","5661","","","","","5661","","","","","5661","5661","","",
"Brazil","BRA","Renewable internal freshwater resources per capita (cubic meters)","ER.H2O.INTR.PC","","","70356.7386620758","","","","","60976.6535384539","","","","","53726.339623589","","","","","47619.6892280018","","","","","42310.0252339708","","","","","38037.7414570782","","","","","36433.4927634916","","","","","33717.7359728545","","","","","31268.3669205268","","","","","29364.3907230498","","","","","27969.148699943","27714.7619029505","","",
"Brazil","BRA","Terrestrial protected areas (% of total land area)","ER.LND.PTLD.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","7.02455206318194","9.19996373641054","9.55426821694466","9.65509720011936","10.7028077211742","11.1164020910522","11.8628287421482","12.9077148992662","14.2227538984687","15.0477980830352","14.3515273948999","17.8145079517956","20.4430638931568","21.1485137590569","22.9368052048358","25.0105143734341","26.2740531705311","26.2785248462458","26.2785248462458","26.2785599015883","26.2616241695997","","26.2616241694825","","","",
"Brazil","BRA","Marine protected areas (% of territorial waters)","ER.MRN.PTMR.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","8.15337363730977","8.9554136665123","10.1926825819881","11.490117078611","11.5236014676583","11.5238807164085","11.7445751129126","13.0297695750963","13.044485966035","13.4204459755153","14.3892728728683","14.2682794559428","14.352792154231","15.7216538786583","16.124436702173","16.1258370914497","16.4693672271195","16.4799420040554","16.4799420040554","16.4799420040554","16.3363912600521","","16.3363912600521","","","",
"Brazil","BRA","Terrestrial and marine protected areas (% of total territorial area)","ER.PTD.TOTL.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","7.05719002246382","9.19289298634103","9.57272688439825","9.70815368437547","10.7265395787951","11.1281836436797","11.859409639232","12.9112439029912","14.1886862816873","15.0007459597946","14.3526187413104","17.71197477569","20.2669740260011","20.9916053194377","22.7398371357458","24.7536290143939","25.9905673230533","25.9952154595779","25.9952154595779","25.9952495013546","25.974652911263","","25.9746529111492","","","",
"Brazil","BRA","Bank nonperforming loans to total gross loans (%)","FB.AST.NPER.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","6.3","10.2","8.7","8.3","5.6","4.5","4.1","2.9","3.526","3.461","2.983","3.10639256827815","4.21499469701351","3.10772417173934","3.46686409051456","3.44682339262827","2.85728229301093","2.85479995510717","3.06587591704676",
"Brazil","BRA","Automated teller machines (ATMs) (per 100,000 adults)","FB.ATM.TOTL.P5","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","105.190918689113","108.877058270063","107.681892433229","110.08616720973","112.798304852939","115.551356676453","120.263241620906","117.769593940738","116.875983328991","128.797452436514","129.253322279161","",
"Brazil","BRA","Bank capital to assets ratio (%)","FB.BNK.CAPA.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","12.1","8.9","9.2","9.6","","10.2","10.4","10.7","10.4","11.4586566685315","10.3327210125054","10.0817619838262","10.1413105048851","9.26520547533495","9.03441159348199","9.06116100962981",
"Brazil","BRA","Commercial bank branches (per 100,000 adults)","FB.CBK.BRCH.P5","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","40.8843013490542","43.0879624794353","43.8811717903616","43.9938503592415","45.4329819536369","46.5230998108965","46.9937006154012","47.3211390049223","",
"Brazil","BRA","Borrowers from commercial banks (per 1,000 adults)","FB.CBK.BRWR.P3","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","96.8694445877606","105.778409218789","151.739950486088","206.974503274495","237.569315293153","374.594336699712","399.143224893265","405.030199356193","",
"Brazil","BRA","Depositors with commercial banks (per 1,000 adults)","FB.CBK.DPTR.P3","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","434.027817013619","444.804408528286","473.421840878343","482.739284960287","540.792604204976","625.531561699534","652.038424330308","632.765037617675","627.31390349946","",
"Brazil","BRA","Point-of-sale terminals (per 100,000 adults)","FB.POS.TOTL.P5","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1471.05","","","","","","",
"Brazil","BRA","Domestic credit to private sector by banks (% of GDP)","FD.AST.PRVT.GD.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","28.9916210389849","29.5975138541467","27.6515695914762","29.3584672509178","31.8229020846033","35.4199909652504","40.7243517029361","45.8157446945281","47.5637202880745","52.7512453059446","58.0999580682697","63.8678813203222","66.3981321003343","69.1102999439369","",
"Brazil","BRA","Bank liquid reserves to bank assets ratio (%)","FD.RES.LIQU.AS.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","35.3201139366919","38.8878430498991","29.7757873977729","24.9157917929543","20.6943993491543","18.4656348288987","24.2287265782534","23.5135353763854","28.666546124567","26.7833574764402","25.2541624176836","25.0673370063612","21.6778711286839","24.2732831603592","",
"Brazil","BRA","Total reserves (includes gold, current US$)","FI.RES.TOTL.CD","349848799.991802","471156150","336000899.99213","355042319.991846","245487599.997395","484251119.998199","425796619.986582","200149599.986242","266422899.986379","656773199.986379","1189904669.81905","1753863602.27325","4218803656.92668","6508868347.72652","5463238315.22087","4166486818.72035","6666853677.56687","7441920005.3","12190031304.7773","9838704339.92612","6875230060.12973","7479611130.18527","3997356679.63976","4561475255.99992","11960814097.3985","11617955162.5995","6753681031.9","7476999725.8","8090172124","8728776000","9199691028.8","8748631531.3","23264547500","31746910991.86","38491777748.7982","51477389634.2753","59685476090.79","51705520617.097","43902193733.1553","36342324427.7274","33015297296.2664","35866445532.0312","37832146074.207","49297286965.9814","52934865193.0344","53799285064.6476","85842861104.6689","180333622538.264","193783363541.012","238539463013.264","288574603559.637","352010241721.417","373160978076.306","358816426346.517","363570247226.591","",
"Brazil","BRA","Total reserves (% of total external debt)","FI.RES.TOTL.DT.ZS","","","","","","","","","","","","22.7000099177669","35.5666592022385","43.2505735865453","24.3371525295608","15.0230537582934","19.7248025725437","17.5115458856261","22.1519591872503","15.9222184265918","9.55134712989293","9.13948467071751","4.24060782510395","4.61006315492313","11.4689904136971","11.1608242093943","6.16366033205208","6.20992722956682","6.85800772858139","7.59965617224932","7.64666111483801","7.21035351415157","17.9613904046479","21.9553492849567","25.1750932210779","31.9891822077681","32.9060345071863","26.6902964738382","18.1435799735366","14.8410358335238","13.6183996812504","15.5968387088878","16.3108850948313","20.8968292644677","23.9856822638935","28.5632568724681","44.1798903098207","75.6291952934129","73.6943088319838","84.6932378078509","81.8966370416649","87.1213055553195","84.7105982063538","74.1641136449757","65.2880370362926","",
"Brazil","BRA","Total reserves in months of imports","FI.RES.TOTL.MO","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","5.13300421655277","6.71407562111785","10.8977252510214","8.50799031287494","13.178549629299","11.8961462838296","11.7185125082184","12.7786328704603","11.4605381258414","11.3710724812648","",
"Brazil","BRA","Total reserves minus gold (current US$)","FI.RES.XGLD.CD","58000000","185000000","60000000","69000000","154000000","421000000","380119999.98788","154459999.98754","212329999.98767","611329999.98767","1141659999.82034","1696184742.27325","4132746256.92668","6359912597.72652","5215752815.22087","3980375068.72035","6488040427.56687","7192020755.3","11826397304.7773","8966256339.92612","5769328060.12973","6603521130.18527","3927907879.63991","4355083755.99992","11507921397.4","10604582162.5995","5803012231.9","6299184425.8","6971830624","7535400000","7440626028.8","8032945131.3","22521400000","30603869121.12","37069536998.7982","49708008384.2753","58322943590.79","50826504786.807","42579752779.1053","35279324427.7274","32433984751.2664","35563040399.8486","37461989795.786","48846596456.7461","52461784867.3249","53245209848.7475","85156183453.2771","179432865858.056","192843633608.81","237364462954.316","287056017276.555","350356057730.383","369565972929.21","356214152493.327","360964732683.671","",
"Brazil","BRA","Claims on central government (annual growth as % of broad money)","FM.AST.CGOV.ZG.M3","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","16.8908784220454","17.6887582811805","6.40149709661007","7.85012600160589","9.81532649558536","3.7222587772577","-4.35331186168648","9.01082994036553","3.48046516776243","-0.600414189354999","5.15116470920739","-0.633914274292644","3.69623785024308","",
"Brazil","BRA","Claims on other sectors of the domestic economy (annual growth as % of broad money)","FM.AST.DOMO.ZG.M3","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","8.29918171912553","4.65820926447551","11.5689060466949","15.2619228549111","19.6084942610568","23.73478487213","22.5164318824675","8.88698718120999","23.9615239054003","21.2836113041629","17.7190615771007","13.7977179684381","12.9256143290791","",
"Brazil","BRA","Net domestic credit (current LCU)","FM.AST.DOMS.CN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","958727175941.715","1119295077310.02","1275787496000.15","1427372425868.58","1654749257974.49","1997677103717.3","2375206601646.72","2671593851551.93","3015565742436.77","3628942111904.89","4164365848153.48","4865991414655.67","5334068274223.51","5977780008572.64","",
"Brazil","BRA","Net foreign assets (current LCU)","FM.AST.NFRG.CN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","-11271211519.1196","-55125437756.371","-11465626982.809","7414156164.47","78694465994.777","132220689858.799","235267913604.485","343073611661.333","349590928939.666","376382781801.415","486299970617.54","551275377529.829","667191933346.021","730653199697.734","",
"Brazil","BRA","Claims on private sector (annual growth as % of broad money)","FM.AST.PRVT.ZG.M3","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","9.37064268908548","4.89414894724112","11.7862105464098","11.7974590308584","13.9378330286493","18.4256079531126","19.4163469362783","8.28702106103368","20.9089031993178","18.9819126446482","15.2685562531838","11.6535529842614","10.1022223960198","",
"Brazil","BRA","Broad money (current LCU)","FM.LBL.BMNY.CN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","637425637209.473","700284807638.476","843525482759.727","983802143710.817","1165476939854.59","1374982327851","1631808023985.44","1921865043923.08","2235174599890.72","2588689423963.67","3067855812700.2","3555787297071.39","3872683545759.81","4396706047944.84","",
"Brazil","BRA","Broad money (% of GDP)","FM.LBL.BMNY.GD.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","48.4248603271299","46.9616946839171","49.0402119193897","50.2271727345781","53.6656821940876","57.0578963687058","60.0364022332873","61.8454220529836","67.1591869863391","66.6014745664189","70.1261853539607","75.4448466893069","75.0873821709377","79.6323526376035","",
"Brazil","BRA","Broad money to total reserves ratio","FM.LBL.BMNY.IR.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","7.55556493096872","6.31557251219198","5.56093337576317","6.35389571708451","8.89887776294686","7.36332165717359","4.64733629743201","5.40822099096538","4.68653137148306","5.09925376654683","5.20997482714696","4.87882309932788","5.00576888203423","5.13858264985622","",
"Brazil","BRA","Broad money growth (annual %)","FM.LBL.BMNY.ZG","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","9.86141233731801","20.4546312527173","16.6298071389797","18.4665989299953","17.9759359307915","18.678472510686","17.7751926497592","16.302370291729","15.8159825228075","18.5099990868296","15.9046420092909","8.91212612603182","13.5312502556213","",
"Brazil","BRA","Money (current LCU)","FM.LBL.MONY.CN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","83256968000","107428182000","109250307000","129272209000","146176723000","176149679000","235636001000","226089758000","253388226000","286865191000","291197386000","331906216000","353655330198.93","362150189025.09","",
"Brazil","BRA","Money and quasi money (M2) (current LCU)","FM.LBL.MQMY.CN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","637425637209.473","700284807638.476","843525482759.727","983802143710.817","1165476939854.59","1374982327851","1631808023985.44","1921865043923.08","2235174599890.72","2588689423963.67","3067855812700.2","3555787297071.39","3872683545759.81","4396706047944.84","",
"Brazil","BRA","Money and quasi money (M2) as % of GDP","FM.LBL.MQMY.GD.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","48.4248603271299","46.9616946839171","49.0402119193897","50.2271727345781","53.6656821940876","57.0578963687058","60.0364022332873","61.8454220529836","67.1591869863391","66.6014745664189","70.1261853539607","75.4448466893069","75.0873821709377","79.6323526376035","",
"Brazil","BRA","Money and quasi money (M2) to total reserves ratio","FM.LBL.MQMY.IR.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","7.55556493096872","6.31557251219198","5.56093337576317","6.35389571708451","8.89887776294686","7.36332165717359","4.64733629743201","5.40822099096538","4.68653137148306","5.09925376654683","5.20997482714696","4.87882309932788","5.00576888203423","5.13858264985622","",
"Brazil","BRA","Money and quasi money growth (annual %)","FM.LBL.MQMY.ZG","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","9.86141233731801","20.4546312527173","16.6298071389797","18.4665989299953","17.9759359307915","18.678472510686","17.7751926497592","16.302370291729","15.8159825228075","18.5099990868296","15.9046420092909","8.91212612603182","13.5312502556213","",
"Brazil","BRA","Quasi money (current LCU)","FM.LBL.QMNY.CN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","554168669209.473","592856625638.476","734275175759.727","854529934710.817","1019300216854.59","1198832648851","1396172022985.44","1695775285923.08","1981786373890.72","2301824232963.67","2776658426700.2","3223881081071.39","3519028215560.88","4034555858919.75","",
"Brazil","BRA","Consumer price index (2010 = 100)","FP.CPI.TOTL","","","","","","","","","","","","","","","","","","","","","3.57278713800741E-10","7.20719845191827E-10","1.44535678898609E-09","3.39698730191299E-09","9.92333941778277E-09","3.23492486085335E-08","7.99486336558445E-08","2.6249945394647E-07","1.91392217753156E-06","2.92968514009874E-05","0.000892889787534097","0.00475717929679446","0.0500288028109281","1.01457586522235","22.0760262042271","36.6479422747891","42.4227183595034","45.3606260625374","46.8115273695875","49.0856155662163","52.5435511291288","56.1363902291295","60.8800390944944","69.8387352105115","74.4474805387882","79.560049281088","82.8885875737324","85.903268657641","90.7680553930442","95.2033533164933","100","106.63619865693","112.396648518929","119.367375827948","126.925828291658","",
"Brazil","BRA","Inflation, consumer prices (annual %)","FP.CPI.TOTL.ZG","","","","","","","","","","","","","","","","","","","","","","101.724820805804","100.543498091327","135.027595109991","192.121769551347","225.991556335997","147.142165876318","228.335134627133","629.11472719553","1430.72323132659","2947.73292977144","432.784601550031","951.648459931689","1927.98349793957","2075.88718211713","66.0078763077921","15.7574360967243","6.92531694489082","3.19859189123576","4.85796624125156","7.04470245106279","6.83783075713916","8.45022069641983","14.715325826437","6.59912484724241","6.86734958026696","4.18368053152479","3.63702793370308","5.66309851932564","4.88640844429615","5.03831694621171","6.63619865693002","5.40196474982338","6.20189961255389","6.33209234205205","",
"Brazil","BRA","Wholesale price index (2010 = 100)","FP.WPI.TOTL","2.44835698389318E-13","3.38684448569935E-13","5.18980627939241E-13","9.01184843941717E-13","1.72687621381905E-12","2.61029788741566E-12","3.57069329932243E-12","4.47691104157417E-12","5.55424732515932E-12","6.67125468926416E-12","8.14382151382423E-12","9.77258581658908E-12","1.15892844619806E-11","1.35312726691233E-11","1.74778938642843E-11","2.22388972108277E-11","3.18606241673491E-11","4.53855045118933E-11","6.24504542079113E-11","9.73632535539122E-11","2.0098592460543E-10","4.18469480100366E-10","8.08276667043172E-10","2.16113690407997E-09","7.26875754475704E-09","2.39167728204394E-08","5.74478341756961E-08","1.76397783894225E-07","1.40619933148836E-06","1.92427276940512E-05","0.000539536480344744","0.00270508345083682","0.0294258311687609","0.632689785006735","15.2579411761508","24.0354003980555","25.5400162792998","28.1135991261606","29.1097760786455","33.9333697433097","40.0764609503004","45.1316220644457","52.6553795740033","67.1698525395959","74.204259967231","78.3440742763517","78.9776078645549","83.3817586018569","94.798470780994","94.590933915893","100","109.428181321682","115.873766612052","122.745949390133","128.389604951757","",
"Brazil","BRA","Deposit interest rate (%)","FR.INR.DPST","","","","","","","","","","","","","","","","","","","","","115","108","156.1","154.558333332833","267.633333333333","295.416666666667","109.475","401.025","859.426666666667","5844.98358427711","9394.29317092605","913.467317036309","1560.18159815396","3293.50232545708","5175.2405527538","52.2464852077134","26.4484334127904","24.3506463193582","28.0033333333333","26.0225","17.1991666666667","17.8566666666667","19.1427279084507","21.9706904803307","15.4161509661468","17.6287476682326","13.9324026747455","10.5772525709938","11.6553322573294","9.2788317677565","8.87043931667786","10.9923648153523","7.90746650160068","7.80710378657161","10.0236351018781","",
"Brazil","BRA","Lending interest rate (%)","FR.INR.LEND","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","78.1933333333333","86.3633333333333","80.4433333333333","56.83","57.6166666666667","62.875","67.0833333333333","54.925","55.3833333333333","50.8083333333333","43.7166666666667","47.25","44.65","39.9916666666667","43.8833333333333","36.6366666666666","27.3916666666667","32.0083333333333","",
"Brazil","BRA","Interest rate spread (lending rate minus deposit rate, %)","FR.INR.LNDP","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","53.8426870139751","58.36","54.4208333333333","39.6308333333333","39.76","43.7322720915493","45.1126428530026","39.5088490338532","37.7545856651007","36.8759306585878","33.1394140956729","35.5946677426706","35.3711682322435","31.1212273499888","32.890968517981","28.7292001650659","19.5845628800951","21.9846982314552","",
"Brazil","BRA","Real interest rate (%)","FR.INR.RINR","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","65.4105986238885","77.6321782876652","67.0029843924765","48.7137577584914","45.8146497894103","48.1918019094912","46.6217139493726","43.7512786787537","44.554307117976","41.3453507637932","35.0715009524176","35.2581878471284","34.7415979407529","28.9471112011313","32.8421466509027","29.0635224133362","19.6072082741235","23.4913426062426","",
"Brazil","BRA","Risk premium on lending (lending rate minus treasury bill rate, %)","FR.INR.RISK","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","53.4007951333333","57.7966666666666","54.0570833333333","38.3241666666667","37.5591666666667","43.4441666666667","44.9783375563842","37.788","36.62375","36.4315833333333","32.2158833333334","33.5660857142857","34.9477416666667","29.0608333333334","32.2209","28.5692333333333","18.4021583333334","20.4680833333333","",
"Brazil","BRA","Claims on central government, etc. (% GDP)","FS.AST.CGOV.GD.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","39.3072575112872","41.9181071948916","43.5417053219958","40.9936991330001","40.5286527686067","41.2718849668277","38.4745836141122","31.3661788457193","34.4900659723807","31.5342401121604","27.6618520776243","29.0291481287108","26.0904058822527","26.9644131841695","",
"Brazil","BRA","Claims on other sectors of the domestic economy (% of GDP)","FS.AST.DOMO.GD.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","33.5266965638052","33.142772476485","30.6290108527712","31.8795730477818","35.6661175890468","41.6260918676717","48.9124477202147","54.6054401427356","56.117148146736","61.8307242329916","67.5287661190898","74.214928526983","77.3317349407496","81.3040679109407","",
"Brazil","BRA","Domestic credit provided by financial sector (% of GDP)","FS.AST.DOMS.GD.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","72.8339540750924","75.0608796713763","74.1707161747668","72.8732721807817","76.1947703576535","82.8979768344993","87.3870313343269","85.9716189884548","90.6072141191167","93.364964345152","95.1906181967141","103.244076655694","103.422140823002","108.26848109511","",
"Brazil","BRA","Domestic credit to private sector (% of GDP)","FS.AST.PRVT.GD.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","28.9916210389849","29.5975138541467","27.6515695914762","29.3584672509178","31.8229020846033","35.4199909652504","40.7243517029361","45.8157446945281","47.5637202880745","52.7512453059446","58.0999580682697","63.8678813203222","66.3981321003343","69.1102999439369","",
"Brazil","BRA","Liquid liabilities (M3) as % of GDP","FS.LBL.LIQU.GD.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Quasi-liquid liabilities (% of GDP)","FS.LBL.QLIQ.GD.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Research and development expenditure (% of GDP)","GB.XPD.RSDV.GD.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.99886","1.03166","0.9759","0.99816","0.96296","1.00193","0.98792","1.08227","1.12986","1.12029","1.15963","1.14008","1.15115","","","",
"Brazil","BRA","Cash surplus/deficit (current LCU)","GC.BAL.CASH.CN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","-390981.818154546","909090.909136349","-13540909.0909101","-976945454.545461","-9500800000","","","-66500000","-35943546022.803","-26894747207.113","-21633131584.462","-27078676441.789","-17243331397.778","-73749711058.2545","-36016458289.305","-77173838328.998","-68363588156.021","-49787210926.7177","-36650079142.7882","-112405942517.806","-62910472908.6689","-106982083355.379","-86703382796.8701","","","",
"Brazil","BRA","Cash surplus/deficit (% of GDP)","GC.BAL.CASH.GD.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","-3.38547730208384","1.50796355561216","-2.1126021034285","-6.9301095294061","-2.66277280613003","","","-0.00695996918774543","-3.57297037458839","-2.46226435300871","-1.79919705587033","-2.05715152951442","-1.15635246631554","-4.28760189610152","-1.83878931688565","-3.55355523548894","-2.83689648178651","-1.83173815628731","-1.17939582700049","-3.37740582426899","-1.61855270184273","-2.44543611726296","-1.8396273106498","","","",
"Brazil","BRA","Central government debt, total (current LCU)","GC.DOD.TOTL.CN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Central government debt, total (% of GDP)","GC.DOD.TOTL.GD.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Net incurrence of liabilities, domestic (current LCU)","GC.FIN.DOMS.CN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","109048547092.237","239513849585.835","171476698128.475","265675952085.381","34669156692.7134","226222936845.846","311155246420.136","","","",
"Brazil","BRA","Net incurrence of liabilities, domestic (% of GDP)","GC.FIN.DOMS.GD.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","4.52520775948551","8.81203524116668","5.51810274167828","7.98263408359602","0.891963684918794","5.17108774633257","6.60193029039593","","","",
"Brazil","BRA","Net incurrence of liabilities, foreign (current LCU)","GC.FIN.FRGN.CN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","-30328097993.3997","-15821188415.9","-5452647929.59386","-3809473527.24663","-5499522858.69318","-13723901334.133","-186765394.525524","","","",
"Brazil","BRA","Net incurrence of liabilities, foreign (% of GDP)","GC.FIN.FRGN.GD.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","-1.25853070058867","-0.582082706779283","-0.175465656955648","-0.11446136912453","-0.141491029557292","-0.313706023846607","-0.00396269106660324","","","",
"Brazil","BRA","Grants and other revenue (current LCU)","GC.REV.GOTR.CN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","437818.181818181","3065381.81818182","45289236.3636363","995890909.090909","24034000000","","","34967200000","15698296885.151","14759650959.3514","11254627123.6832","13355137485.4272","11667067992.9441","10236021691.4353","12772508959.2104","14817323882.7328","73299677649.2862","105703148914.212","148832332523.424","100559047672.129","212122188095.251","124199823472.943","176788845281.002","","","",
"Brazil","BRA","Grants and other revenue (% of revenue)","GC.REV.GOTR.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","16.6098748741153","24.3838096918543","30.6696952518948","27.9174311926606","25.5320143456903","","","17.076538024833","8.55514959705279","7.06056975552522","4.79985611213339","4.94892756441848","3.65170885638504","2.87866387751655","3.05386196152537","3.04415989933156","12.3507578169976","15.4312295477791","18.5075154175661","13.0124101643786","21.4710982728073","11.994681292554","15.4590663166066","","","",
"Brazil","BRA","Social contributions (current LCU)","GC.REV.SOCL.CN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","813163.636363636","3832181.81818182","43332618.1818182","1127636363.63636","28711300000","","","75408000000","47993117252.49","51057477383.0036","58050595948.0398","64933201547.7898","73790511657.7736","83455415859.1708","97068632509.6592","113153316477.727","130277129251.66","148655760948.8","173040391302.469","192844509875.819","224236000537.642","259225255118.013","289471945822.739","","","",
"Brazil","BRA","Social contributions (% of revenue)","GC.REV.SOCL.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","30.8496695959275","30.4833778307441","29.3446810061509","31.6106014271151","30.5008456138562","","","36.8261564945609","26.1549581287587","24.4243499793229","24.7573291155823","24.0618796576558","23.0959025095969","23.4700646656436","23.2087685689013","23.2468960808286","21.9512735128189","21.7017297437605","21.5178224757586","24.9542126595557","22.6972635304094","25.0348529585386","25.3124907295933","","","",
"Brazil","BRA","Revenue, excluding grants (current LCU)","GC.REV.XGRT.CN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2627672.72727273","12531490.9090909","147552581.818182","3565418181.81817","94007600000","","","204759000000","183495293765.044","209043341690.68","234478427285.206","269858638648.569","319495530311.214","355570633673.522","418218885445.285","486728570569.273","593442760963.733","684510458100.675","803485230458.779","772176798469.402","987170688052.225","1034385484037.76","1142957973324.12","","","",
"Brazil","BRA","Revenue, excluding grants (% of GDP)","GC.REV.XGRT.GD.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","22.7527878853185","20.7867347461946","23.0206031679699","25.2918301663341","26.3473476812004","","","21.4303207656175","18.2403608170146","19.1383084776737","19.5012402337375","20.5010061123914","21.425641944095","20.671881981102","21.3518056800429","22.4119584778846","24.6262041845651","25.1840563297724","25.8560731661087","23.2012147943407","25.3978027894733","23.6443668182807","24.2506882064571","","","",
"Brazil","BRA","Taxes on exports (current LCU)","GC.TAX.EXPT.CN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1018.18181818182","1527.27272727273","1200","","400000","","","2900000","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Taxes on exports (% of tax revenue)","GC.TAX.EXPT.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.0734137388568434","0.0265839610101906","0.00192339692880138","","0.000962887893369795","","","0.00298752553561697","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Taxes on goods and services (current LCU)","GC.TAX.GSRV.CN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","637090.909090909","2670181.81818182","26576690.9090909","682181818.181818","22928300000","","","46881800000","51704031911.033","69741336217.8651","78785173899.82","92151731396.3228","109502283451.022","125776108262.577","153806012272.492","172880737962.415","182370195578.257","180273208675.78","206439673895.11","205604750387.458","245218642081.981","277984165218.298","287529243006.31","","","",
"Brazil","BRA","Taxes on goods and services (% of revenue)","GC.TAX.GSRV.RV.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","24.1698511457227","21.2401616369648","17.9976320298498","19.1233435270133","24.3573972090493","","","22.8951371677634","28.1773068126953","33.3621418667622","33.6001801154996","34.1480755337624","34.2734317237469","35.3718612977385","36.7744764817064","35.5176558221368","30.728786140132","26.3174493188311","25.6710714844823","26.6053965875792","24.8211354490758","26.8465072890909","25.1426136560432","","","",
"Brazil","BRA","Taxes on goods and services (% value added of industry and services)","GC.TAX.GSRV.VA.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","7.07406271536676","5.51175723948259","5.11627320086431","6.02964397805623","8.22534008724601","","","5.89358267795724","6.17050655204577","7.78448270211084","8.05905637080068","8.71228275447828","9.19630840592431","9.20161946070148","9.91081978687364","9.91801027723698","9.37953762114038","8.20508985411522","8.3158611846419","7.62785074642353","7.80080082818296","7.87875339736171","7.5985187964618","","","",
"Brazil","BRA","Customs and other import duties (current LCU)","GC.TAX.IMPT.CN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","54109.0909090909","290945.454545454","2620509.09090909","64000000","1830200000","","","5139700000","6544106608","7916305614","8510120052","9087343003","7970088105","8142559331","9202325714","9085916081","10035550501.06","12216324714.8","17171274252.29","15967904779.9","21093346541","26680657291.14","31067553560.22","","","",
"Brazil","BRA","Customs and other import duties (% of tax revenue)","GC.TAX.IMPT.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","3.90141583639224","5.06424457244129","4.20023261445887","4.32368692576034","4.4056935561135","","","5.29482241221053","5.46234949014385","5.5271346137928","5.15224009398089","4.74359297306942","3.40545971707251","3.10914118609366","2.98389232280854","2.53248113352691","2.57383557969945","2.83680939632603","3.56029141028284","3.33088087736195","3.82413555210237","4.09192206301938","4.58675075464011","","","",
"Brazil","BRA","Taxes on international trade (current LCU)","GC.TAX.INTT.CN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","55127.2727272727","292472.727272727","2621709.09090909","64000000","1830600000","","","5142600000","6544106608","7916305614","8510120052","9087343003","7970088105","8142559331","9202325714","9085916081","10035550501.06","13022216568.936","17975643272.177","16986329406.864","22067167417.1294","27886879718.0918","31067553560.22","","","",
"Brazil","BRA","Taxes on international trade (% of revenue)","GC.TAX.INTT.RV.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2.09140949411618","2.32649625556459","1.77541123042349","1.7940876656473","1.94469940339605","","","2.51143369919543","3.56636209775461","3.78692071700313","3.62938294602632","3.36743836025238","2.49458058672488","2.28992201494625","2.20024370664357","1.86666510102435","1.69095769277299","1.90106742476737","2.23529719221543","2.1980427474814","2.23364808967046","2.69319412144873","2.71666105414502","","","",
"Brazil","BRA","Other taxes (current LCU)","GC.TAX.OTHR.CN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","155890.909090909","632509.090909091","8281418.18181818","185563636.363636","4049000000","","","10687500000","11580599848.37","11458275308.06","18907724986.6629","22154020125.2896","25838589032.9513","29677576689.6971","34743229360.6088","38750747454.293","42750229681.4401","54855630873.6804","34021711676.0681","32952900150.7988","43256207144.0745","51399938994.2079","55540844129.33","","","",
"Brazil","BRA","Other taxes (% of revenue)","GC.TAX.OTHR.RV.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","5.91416391904756","5.03134102564845","5.60814428069706","5.20183486238532","4.30136997943331","","","5.21933412284664","6.31111545737971","5.48129168591972","8.06373754958047","8.20947301967969","8.08729360840143","8.34618864283387","8.30698392177707","7.96118600113416","7.20327497131401","8.00817989525556","4.23064896384472","4.26412802024627","4.3784117203349","4.96398359878953","4.85669551894454","","","",
"Brazil","BRA","Tax revenue (current LCU)","GC.TAX.TOTL.CN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1386909.09090909","5745090.9090909","62389618.1818182","1480218181.81818","41541700000","","","97070300000","119803879627.403","143226213348.325","165173204213.483","191570884234.612","234038537147.973","261890948131.254","308400060004.124","358775272230.61","389906433037.648","430636077651.936","482299684871.185","479389848145.711","551584698126.185","652032391629.978","677332500110.04","","","",
"Brazil","BRA","Tax revenue (% of GDP)","GC.TAX.TOTL.GD.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","12.0091242848293","9.52972648557028","9.73379539867745","10.5001503202562","11.6428205077901","","","10.1594931886497","11.9091119278521","13.1126274148705","13.7372225361499","14.553530279105","15.6948233146417","15.2256071199036","15.7450999514538","16.5202065182237","16.180019480341","15.8436779290573","15.5203549079554","14.4039899400005","14.1911014521117","14.904398102069","14.3712889324327","","","",
"Brazil","BRA","Taxes on income, profits and capital gains (current LCU)","GC.TAX.YPKG.CN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","538800","2149927.27272727","24909800","548472727.272727","12733800000","","","34358400000","49975141260","54110296208.4","58970185275","68177789709.9995","90727576559","98294703847.98","110648492657.023","138057870732.902","154750457276.891","182485021533.54","223862656027.83","223845868200.59","241042681483","294761407699.38","303194859414.18","","","",
"Brazil","BRA","Taxes on income, profits and capital gains (% of revenue)","GC.TAX.YPKG.RV.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","20.4409066453295","17.1017578164547","16.8688199697503","15.375127420999","13.5274845749834","","","16.7792252188458","27.2351079063589","25.8847259954668","25.1495141611779","25.2642058642312","28.3970827151448","27.6432995013213","26.4556653594464","28.3634370955445","26.0749498659647","26.6403440696065","27.8376444661329","28.9658098207587","24.398442937702","28.4667807395786","26.5124727246674","","","",
"Brazil","BRA","Taxes on income, profits and capital gains (% of total taxes)","GC.TAX.YPKG.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","38.8489774514945","37.4219887334642","39.9261940142139","37.0535056257063","30.6530546414807","","","35.3953784010145","41.7141259660585","37.7796039868793","35.702029003919","35.5888056697091","38.7660842802297","37.5326847107052","35.878233180481","38.4803194140321","39.68912645818","42.3756928422134","46.4156753674057","46.6939108256944","43.7000305305527","45.2065589812989","44.7630756482116","","","",
"Brazil","BRA","Compensation of employees (current LCU)","GC.XPN.COMP.CN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","379236.363636364","1520981.81818182","15697890.9090909","379054545.454545","9540600000","","","24096100000","44664708183.64","47654273955.23","53857681075.35","62494217769.14","71091425276.79","75842059536.88","83656030761.51","92230788379.56","105496464730.85","116371965767.15","130829102487.25","151652813180.15","166486428406.4","179277048525.15","186097497065.07","","","",
"Brazil","BRA","Compensation of employees (% of expense)","GC.XPN.COMP.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","9.60525346307844","10.7492643563302","8.59848817571432","7.36470255758089","8.30224538118746","","","11.6011839937449","20.3521183882991","20.1804780302892","21.0198159737463","21.033384000247","21.1033467650295","17.8816104756212","18.8236559567186","16.749262984464","16.3642166699555","16.3226449901996","16.0965468174642","17.8151268866032","16.546253310368","16.4489249328083","15.894239391229","","","",
"Brazil","BRA","Goods and services expense (current LCU)","GC.XPN.GSRV.CN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","253018.181818182","1383781.81818182","8478181.81818182","277818181.818182","6111700000","","","18789700000","41799198577.3093","39813092547.91","44911779254.35","53513145935.77","62475609190.224","48605852279.5976","58519297751.63","66695218186.668","43324348749.365","51868850304.98","53576946445.7096","60501492206.4096","72328304952.458","119209431880.99","136717629975.8","","","",
"Brazil","BRA","Goods and services expense (% of expense)","GC.XPN.GSRV.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","6.40841438259658","9.7796281305327","4.64390704059328","5.39776741557157","5.31841111630331","","","9.04639202556718","19.0464076130027","16.8599198518015","17.5283695125899","18.0106670298082","18.5457590695992","11.4600120646342","13.1675758182431","12.111961405095","6.72031078793109","7.27526448485061","6.59183477073983","7.10729816271619","7.18834842400227","10.9376354219601","11.6767972385842","","","",
"Brazil","BRA","Interest payments (current LCU)","GC.XPN.INTP.CN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","3122000","4944545.45454545","89501018.1818182","2724472727.27273","51919400000","","","29788600000","43674756124.7137","47802388039.1597","43092682874.8309","49507396653.43","49598025476.887","113024448787.374","85694321853.5753","130159048862.797","169141365693.629","175578036649.459","198094593125.335","188270696478.793","212956244479.228","249418761432.182","247708490015.138","","","",
"Brazil","BRA","Interest payments (% of revenue)","GC.XPN.INTP.RV.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","118.441927518038","39.3317578453804","60.609742463546","76.3741080530074","55.1554824673228","","","14.5475234106975","23.8015674563495","22.8672138765809","18.3781012921992","18.3456381641976","15.5238273234281","31.7857276790131","20.4892109031274","26.7406557499226","28.4997712338313","25.6320177300024","24.6333486430215","24.3623580496007","21.5555218154184","24.087784250469","21.6605406763297","","","",
"Brazil","BRA","Interest payments (% of expense)","GC.XPN.INTP.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","79.073644268156","34.944682163483","49.0240027152364","52.9341528896426","45.1803449305101","","","14.3418656760252","19.9010324566689","20.2432009042024","16.8184044644753","16.6624708946807","14.7230742163955","26.6482632430998","19.2822970123295","23.6370975193121","26.236575444725","24.6270477723113","24.3725503875503","22.1167433459643","21.1646558755927","22.8845271460192","21.1563191425612","","","",
"Brazil","BRA","Other expense (current LCU)","GC.XPN.OTHR.CN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","127490.909090909","1119054.54545455","","","","","","","","","","","524962694.9","622058136.95","1743895611.39","2177823736.71","1019427136.67","15911238438.91","1744766903.51463","44687796846.3179","2672982018.89","2984160698.55","","","",
"Brazil","BRA","Other expense (% of expense)","GC.XPN.OTHR.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.901018978967982","0.612959876762677","","","","","","","","","","","0.123772725605763","0.139970881339156","0.316694313534645","0.337815865085315","0.142987592720869","1.95763778537509","0.204963186121281","4.4412965884312","0.245249913121478","0.254871587596186","","","",
"Brazil","BRA","Expense (current LCU)","GC.XPN.TOTL.CN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","3948218.18179091","14149636.3635909","182565709.09091","5146909090.90909","114915900000","","","207703800000","219459750240.637","236140461507.923","256223371044.818","297119178580.138","336872753257.299","424134390133.812","444419675720.068","550655801781.306","644677755486.704","712947967912.195","812777448299.064","851258675537.088","1006188079461.34","1089901311225.34","1170848711186.3","","","",
"Brazil","BRA","Expense (% of GDP)","GC.XPN.TOTL.GD.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","34.1872752580131","23.4708495564325","28.4832206205625","36.5103738104717","32.2072808091906","","","21.7385270402653","21.8154097964321","21.6191004212231","21.3097365505842","22.5719737069918","22.590973291494","24.6579869838833","22.6894645043571","25.3555589528979","26.7523122433588","26.2303103942595","26.1550957930918","25.5773488867195","25.8870798338839","24.9133681746412","24.8424593857391","","","",
"Brazil","BRA","Subsidies and other transfers (current LCU)","GC.XPN.TRFT.CN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1564836.36363636","7894690.9090909","90525963.6363636","2094145454.54545","51456600000","","","137186100000","89321087354.9739","100870706965.623","114361227840.287","131604418221.798","153707693313.398","186137066835.061","215927967216.403","259826850740.891","324537752576.15","368109688053.937","414365567801.86","449088906768.221","509729304776.941","539323087368.124","597340933431.741","","","",
"Brazil","BRA","Subsidies and other transfers (% of expense)","GC.XPN.TRFT.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","39.6339890954698","55.7943024557515","49.5854145267146","40.6874381800197","44.777615630213","","","66.0489119602049","40.7004415420293","42.7164012137066","44.6334100491883","44.2934780752639","45.6278199489759","43.8863414910392","48.5865003313696","47.1849837775943","50.3410812323031","51.6320551599177","50.9814302388706","52.755868418595","50.6594458016063","49.4836625860906","51.0177726400294","","","",
"Brazil","BRA","Distance to frontier score (0=lowest performance to 100=frontier)","IC.BUS.DFRN.XQ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","53.16","57.66","57.67",
"Brazil","BRA","Business extent of disclosure index (0=less disclosure to 10=more disclosure)","IC.BUS.DISC.XQ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","5","5","5",
"Brazil","BRA","Ease of doing business index (1=most business-friendly regulations)","IC.BUS.EASE.XQ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","111","116",
"Brazil","BRA","New business density (new registrations per 1,000 people ages 15-64)","IC.BUS.NDNS.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1.90296250308925","2.00040654196832","2.07003238235391","2.19481484180975","2.43696966878718","2.18734069541083","2.7647685057152","2.63447332311785","2.16748064531027","","2.88","",
"Brazil","BRA","New businesses registered (number)","IC.BUS.NREG","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","236072","246722","46456","50168","56704","51717","66512","64476","53876","","73614","",
"Brazil","BRA","Depth of credit information index (0=low to 8=high)","IC.CRD.INFO.XQ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","7","7","7",
"Brazil","BRA","Private credit bureau coverage (% of adults)","IC.CRD.PRVT.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","63.4","63.6","79",
"Brazil","BRA","Public credit registry coverage (% of adults)","IC.CRD.PUBL.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","50.4","52.5","55.1",
"Brazil","BRA","Average time to clear exports through customs (days)","IC.CUS.DURS.EX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","16.4","","","","","","",
"Brazil","BRA","Delay in obtaining an electrical connection (days)","IC.ELC.DURS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","27.7","","","","","","",
"Brazil","BRA","Power outages in firms in a typical month (number)","IC.ELC.OUTG","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1.6","","","","","","",
"Brazil","BRA","Time required to get electricity (days)","IC.ELC.TIME","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","43.6","43.6","43.6",
"Brazil","BRA","Cost to export (US$ per container)","IC.EXP.COST.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","630","630","825","975","1135","1650","2075","2075","2414.3","2322.8","",
"Brazil","BRA","Documents to export (number)","IC.EXP.DOCS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","6","6","6","6","6","6","6","6","6","6","",
"Brazil","BRA","Time to export (days)","IC.EXP.DURS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","18","18","18","14","12","13","13","13","13.4","13.4","",
"Brazil","BRA","Firms using banks to finance working capital (% of firms)","IC.FRM.BKWC.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","52.3","","","","","","",
"Brazil","BRA","Firms using banks to finance investment (% of firms)","IC.FRM.BNKS.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","43.7","","","","","","",
"Brazil","BRA","Bribery incidence (% of firms experiencing at least one bribe payment request)","IC.FRM.BRIB.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","11.7","","","","","","",
"Brazil","BRA","Firms competing against unregistered firms (% of firms)","IC.FRM.CMPU.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","69.8","","","","","","",
"Brazil","BRA","Informal payments to public officials (% of firms)","IC.FRM.CORR.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","12.4","","","","","","",
"Brazil","BRA","Losses due to theft, robbery, vandalism, and arson (% sales)","IC.FRM.CRIM.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2.5","","","","","","",
"Brazil","BRA","Time required to obtain an operating license (days)","IC.FRM.DURS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","79.7","","","","","","",
"Brazil","BRA","Firms with female top manager (% of firms)","IC.FRM.FEMM.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","19.4","","","","","","",
"Brazil","BRA","Firms with female participation in ownership (% of firms)","IC.FRM.FEMO.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","50.2","","","","","","",
"Brazil","BRA","Firms formally registered when operations started (% of firms)","IC.FRM.FREG.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","94.9","","","","","","",
"Brazil","BRA","Firms that do not report all sales for tax purposes (% of firms)","IC.FRM.INFM.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Internationally-recognized quality certification (% of firms)","IC.FRM.ISOC.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","13.1","","","","","","",
"Brazil","BRA","Value lost due to electrical outages (% of sales)","IC.FRM.OUTG.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","3.4","","","","","","",
"Brazil","BRA","Firms offering formal training (% of firms)","IC.FRM.TRNG.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","42.2","","","","","","",
"Brazil","BRA","Time spent dealing with the requirements of government regulations (% of senior management time)","IC.GOV.DURS.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","14.2","","","","","","",
"Brazil","BRA","Cost to import (US$ per container)","IC.IMP.COST.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1090","1090","1185","1220","1185","1775","2075","2075","2414.3","2322.8","",
"Brazil","BRA","Documents to import (number)","IC.IMP.DOCS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","8","8","8","8","8","8","8","8","8","8","",
"Brazil","BRA","Time to import (days)","IC.IMP.DURS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","24","24","22","19","16","17","17","17","17","17","",
"Brazil","BRA","Time to resolve insolvency (years)","IC.ISV.DURS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","4","4","4",
"Brazil","BRA","Strength of legal rights index (0=weak to 12=strong)","IC.LGL.CRED.XQ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2","2","2",
"Brazil","BRA","Time required to enforce a contract (days)","IC.LGL.DURS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","731","731","731",
"Brazil","BRA","Procedures to enforce a contract (number)","IC.LGL.PROC","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Time required to register property (days)","IC.PRP.DURS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","31.7","31.7","31.7",
"Brazil","BRA","Procedures to register property (number)","IC.PRP.PROC","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","13.6","13.6","13.6",
"Brazil","BRA","Cost of business start-up procedures (% of GNI per capita)","IC.REG.COST.PC.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","4.7","4.3","3.8",
"Brazil","BRA","Time required to start a business (days)","IC.REG.DURS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","86.6","83.6","83",
"Brazil","BRA","Start-up procedures to register a business (number)","IC.REG.PROC","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","12.2","11.6","11",
"Brazil","BRA","Time to prepare and pay taxes (hours)","IC.TAX.DURS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2600","2600","2600",
"Brazil","BRA","Firms expected to give gifts in meetings with tax officials (% of firms)","IC.TAX.GIFT.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","8.3","","","","","","",
"Brazil","BRA","Labor tax and contributions (% of commercial profits)","IC.TAX.LABR.CP.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Number of visits or required meetings with tax officials","IC.TAX.METG","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.7","","","","","","",
"Brazil","BRA","Other taxes payable by businesses (% of commercial profits)","IC.TAX.OTHR.CP.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Tax payments (number)","IC.TAX.PAYM","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","9.6","9.6","9.6",
"Brazil","BRA","Profit tax (% of commercial profits)","IC.TAX.PRFT.CP.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Total tax rate (% of commercial profits)","IC.TAX.TOTL.CP.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","69.2","69.2","69.2",
"Brazil","BRA","Time required to build a warehouse (days)","IC.WRH.DURS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","425.7","425.7","425.7",
"Brazil","BRA","Procedures to build a warehouse (number)","IC.WRH.PROC","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","18.2","18.2","18.2",
"Brazil","BRA","Investment in energy with private participation (current US$)","IE.PPI.ENGY.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","212000000","401630000","3071300000","13910250000","9916600000","5757500000","8587690000","3961690000","3909710000","3650440000","1976840000","4215890000","5966000000","8504400000","9436900000","23518310000","10709800000","17742400000","30437600000","9524600000","9651800000","",
"Brazil","BRA","Investment in telecoms with private participation (current US$)","IE.PPI.TELE.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","705000000","5623300000","28280400000","10526500000","10107200000","13212400000","4117300000","3157800000","4660800000","5798300000","6061500000","6917800000","10828200000","7135600000","9068050000","12780500000","13409100000","10209900000","","",
"Brazil","BRA","Investment in transport with private participation (current US$)","IE.PPI.TRAN.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","328100000","989300000","4357200000","4048300000","7808700000","53900000","1374500000","917200000","181000000","172900000","433600000","713400000","450400000","3696500000","10476700000","8990300000","3699800000","6144900000","21979500000","11768100000","32556600000","",
"Brazil","BRA","Investment in water and sanitation with private participation (current US$)","IE.PPI.WATR.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","3500000","152800000","58000000","473000000","649900000","516300000","711280000","26930000","207460000","48200000","255330000","3164000","382600000","140570000","828400000","14800000","230400000","127500000","4572800000","2947100000","1949000000","",
"Brazil","BRA","Scientific and technical journal articles","IP.JRN.ARTC.SC","","","","","","","","","","","","","","","","","","","","","","1438","","","","1465","1777","1766","1766","2117","2374","2640","3107","2885","3073","3436.1","3813.4","4497.6","5234.1","5859.3","6407.3","7052.3","7881.1","8330.2","9573","9896.7","10799.5","11890.8","12909.3","12307.3","12529.5","13148.1","","","","",
"Brazil","BRA","Patent applications, nonresidents","IP.PAT.NRES","","","","","","4364","4910","5354","5447","","5385","5196","5493","6632","7515","","","7071","","6644","6228","6113","5562","4900","4657","4565","4413","4702","4546","4657","5148","4625","4374","4221","4228","4741","5446","13479","13546","14693","14104","14410","13204","12545","12669","14444","15886","17469","18890","18135","20771","23954","25637","25925","","",
"Brazil","BRA","Patent applications, residents","IP.PAT.RESD","","","","","","10003","2360","2824","2763","","3839","3426","2840","2495","3421","","","1645","","1958","2149","2171","2116","2302","2062","1954","1855","2451","2338","2323","2389","2319","2100","2429","2269","2707","2611","2756","2491","2816","3179","3439","3481","3866","4044","4054","3956","4194","4280","4271","4228","4695","4798","4959","","",
"Brazil","BRA","Trademark applications, direct nonresident","IP.TMK.NRES","","","","","","","1526","2330","2204","","3101","1921","2775","4994","4748","3214","","3776","3980","3961","4279","2995","4117","3492","3135","3691","3971","5119","5137","","6111","6138","6627","7236","8599","11994","12910","","17584","17396","21269","16972","13529","13748","13871","16219","18197","20275","22342","18450","23524","30028","31181","31092","","",
"Brazil","BRA","Trademark applications, direct resident","IP.TMK.RESD","","","","","","","37345","47099","33390","","29243","20870","21426","21233","19823","26181","","34140","38004","29066","42432","29630","27894","24441","28443","49254","72904","99485","76092","","57769","50621","41064","55257","48742","64822","56481","","60511","75882","86960","84643","80782","81832","80169","83099","77645","83944","99570","94361","104168","122671","120530","132330","","",
"Brazil","BRA","Trademark applications, total","IP.TMK.TOTL","","","","","57733","","38871","49429","35594","","32344","22791","24201","26227","24571","29395","","37916","41984","33027","46711","32625","32011","27933","31578","52945","76875","104604","81229","","63880","56759","47691","62493","57341","76816","69391","77710","78095","93278","108229","101615","94311","95580","94040","99318","95842","104219","121912","112811","127692","152699","151711","163422","","",
"Brazil","BRA","CPIA business regulatory environment rating (1=low to 6=high)","IQ.CPA.BREG.XQ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","CPIA debt policy rating (1=low to 6=high)","IQ.CPA.DEBT.XQ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","CPIA economic management cluster average (1=low to 6=high)","IQ.CPA.ECON.XQ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","CPIA policy and institutions for environmental sustainability rating (1=low to 6=high)","IQ.CPA.ENVR.XQ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","CPIA quality of budgetary and financial management rating (1=low to 6=high)","IQ.CPA.FINQ.XQ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","CPIA financial sector rating (1=low to 6=high)","IQ.CPA.FINS.XQ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","CPIA fiscal policy rating (1=low to 6=high)","IQ.CPA.FISP.XQ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","CPIA gender equality rating (1=low to 6=high)","IQ.CPA.GNDR.XQ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","CPIA building human resources rating (1=low to 6=high)","IQ.CPA.HRES.XQ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","IDA resource allocation index (1=low to 6=high)","IQ.CPA.IRAI.XQ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","CPIA macroeconomic management rating (1=low to 6=high)","IQ.CPA.MACR.XQ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","CPIA quality of public administration rating (1=low to 6=high)","IQ.CPA.PADM.XQ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","CPIA equity of public resource use rating (1=low to 6=high)","IQ.CPA.PRES.XQ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","CPIA property rights and rule-based governance rating (1=low to 6=high)","IQ.CPA.PROP.XQ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","CPIA social protection rating (1=low to 6=high)","IQ.CPA.PROT.XQ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","CPIA public sector management and institutions cluster average (1=low to 6=high)","IQ.CPA.PUBS.XQ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","CPIA efficiency of revenue mobilization rating (1=low to 6=high)","IQ.CPA.REVN.XQ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","CPIA policies for social inclusion/equity cluster average (1=low to 6=high)","IQ.CPA.SOCI.XQ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","CPIA structural policies cluster average (1=low to 6=high)","IQ.CPA.STRC.XQ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","CPIA trade rating (1=low to 6=high)","IQ.CPA.TRAD.XQ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","CPIA transparency, accountability, and corruption in the public sector rating (1=low to 6=high)","IQ.CPA.TRAN.XQ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Methodology assessment of statistical capacity (scale 0 - 100)","IQ.SCI.MTHD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","90","100","100","100","90","90","90","90","80","80","90","70",
"Brazil","BRA","Overall level of statistical capacity (scale 0 - 100)","IQ.SCI.OVRL","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","83.3333333333333","86.6666666666667","90","91.1111111111111","86.6666666666667","86.6666666666667","83.3333333333333","84.4444444444444","78.8888888888889","75.5555555555556","75.5555555555556","65.5555666666667",
"Brazil","BRA","Periodicity and timeliness assessment of statistical capacity (scale 0 - 100)","IQ.SCI.PRDC","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","80","80","90","93.33333","90","90","80","83.33333","76.66667","76.6666666666667","76.6666666666667","66.6667",
"Brazil","BRA","Source data assessment of statistical capacity (scale 0 - 100)","IQ.SCI.SRCE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","80","80","80","80","80","80","80","80","80","70","60","60",
"Brazil","BRA","Burden of customs procedure, WEF (1=extremely inefficient to 7=extremely efficient)","IQ.WEF.CUST.XQ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2.50381679389313","2.48635390668859","2.8891364665","3.3091823656","3.1","3.1","3","2.7","",
"Brazil","BRA","Quality of port infrastructure, WEF (1=extremely underdeveloped to 7=well developed and efficient by international standards)","IQ.WEF.PORT.XQ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2.63247411629852","2.51819277818452","2.6486275202","2.9384436332","2.7","2.6","2.7","2.7","",
"Brazil","BRA","Air transport, registered carrier departures worldwide","IS.AIR.DPRT","","","","","","","","","","","137700","149300","156700","173200","204800","209100","206100","194900","193000","211100","232500","236900","240200","259900","337100","335100","367900","386200","401900","398700","415900","457700","405500","400100","408300","453500","483600","568600","609900","692600","628081","654106","627878","486777","486025","514700","560838","649738","647753","752225","841793","970561","1002565","952307","937437","",
"Brazil","BRA","Air transport, freight (million ton-km)","IS.AIR.GOOD.MT.K1","","","","","","","","","","","164.1000061035","180.1999969482","254.3000030518","316.700012207","407.1000061035","460.5","471.6000061035","499.299987793","571.299987793","570.5","588.200012207","644.9000244141","734.700012207","692.0999755859","831.700012207","909.200012207","1014.4000244141","1013.700012207","975.799987793","1147.9000244141","1082","1005.299987793","1143.3000488281","1284.3000488281","1468.5","1581.9000244141","1644.8000488281","1789.9000244141","1642.8000488281","1462.9000244141","1727.901","1467.445","1539.738","1478.37","1499.485","1530.675","1412.26","1477.828","1807.062","1782.3","1302.474647875","1294.49545","1363.447091","1637.382","1596.774","",
"Brazil","BRA","Air transport, passengers carried","IS.AIR.PSGR","","","","","","","","","","","3339800","3911000","4671400","5842400","6855500","7772900","8799000","9514400","10621300","11856900","13008100","12594600","13168300","12605900","12948400","13402900","17194700","17068600","17010900","19410800","19149600","19153100","16388500","16535600","17898600","20196100","22011500","24307000","28091100","28205300","31287784","34285574","35889538","32372040","35263795","37661733","40945038","45286990","58763225","67945578","74627064","87860363","94752568","95591641","100403628","",
"Brazil","BRA","Railways, goods transported (million ton-km)","IS.RRS.GOOD.MT.K6","","","","","","","","","","","","","","","","","","","","","40603","","","","","99881","","","","","120432","","","124738","133689","136437","128976","137200","141515","138872","153863","161808","167731","180461","202533","221211","232300","257400","267700","267700","267700","267700","267700","267700","267700","",
"Brazil","BRA","Railways, passengers carried (million passenger-km)","IS.RRS.PASG.KM","","","","","","","","","","","","","","","","","","","","","2407","2560","2373","2327","2572","2532","2941","2804","2462","2564","2740","2521","2098.2","1108.800047","1138.34396","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Rail lines (total route-km)","IS.RRS.TOTL.KM","","","","","","","","","","","","","","","","","","","","","5054","5052","5063","5072","5072","5072","5035","4899","4994","5123","4916","4915","4915","4933","4933","4651","4651","4183","","","","","","","","29314","29314","29487","29817","29817","29817","29817","29817","29817","29817","",
"Brazil","BRA","Liner shipping connectivity index (maximum value in 2004 = 100)","IS.SHP.GCNW.XQ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","25.83","31.49","31.61","31.64","30.87","31.08","31.65","34.62","38.53","36.88","42.2812379791","",
"Brazil","BRA","Container port traffic (TEU: 20 foot equivalent units)","IS.SHP.GOOD.TU","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2413098","2323801","3570260","4230474","5056814","5652149","6294286","6464724","7256291.688","6590363.8866672","8138608.424699","8714405.71690684","9322769.27067485","10176613.0280582","","",
"Brazil","BRA","Mobile cellular subscriptions","IT.CEL.SETS","0","","","","","0","","","","","0","","","","","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","667","6700","32000","182000","574009","1285533","2498154","4550000","7368218","15032698","23188171","28745769","34880964","46373266","65605000","86210336","99918621","120980103","150641403","169385584","196929978","234357507","248323703","271099799","280728796","",
"Brazil","BRA","Mobile cellular subscriptions (per 100 people)","IT.CEL.SETS.P2","0","","","","","0","","","","","0","","","","","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0.000445711589946727","0.00440344670523898","0.0206988467540505","0.115915348702252","0.360031692076822","0.794074075208812","1.51962843202329","2.72576758618669","4.34774057858537","8.73961743345284","13.2879771661194","16.2434653162697","19.443799184819","25.5144501065075","35.6528988110952","46.3141845224809","53.1102584874003","63.6747518549979","78.5549801023455","87.5418765124288","100.881011548201","119.002385323484","125.001852070739","135.305048102328","138.951490610451","",
"Brazil","BRA","Fixed telephone subscriptions","IT.MLT.MAIN","650000","","","","","850000","","","","","1250000","","","","","2201242","2510000","3060000","3720000","4290073","4950000","5330000","5822397","6300000","6700000","7201516","7451000","7810000","8270000","8790000","9409000","10075924","10841000","11303000","12269000","13263000","15105886","17038823","19986556","24985000","30926272","37430779","38810685","39205000","39578903","39852600","38800200","39399622","41235247","41496998","42141418","43025835","44305294","45038117","44128188","",
"Brazil","BRA","Fixed telephone subscriptions (per 100 people)","IT.MLT.MAIN.P2","0.893153024333624","","","","","1.00735524580659","","","","","1.30126514931586","","","","","2.03405006171845","2.26517323584653","2.69709725700978","3.20245237604663","3.60740315664268","4.06602775652902","4.27731820013339","4.56567561196819","4.8292270709391","5.02383408114603","5.28656227419615","5.35952963427148","5.50901515413681","5.72506049769038","5.97639389681952","6.28740682130248","6.62220811045348","7.01238117689568","7.19885267242614","7.69539995033271","8.19255861926102","9.18891864012492","10.2074442725653","11.7934024953345","14.5256255114564","17.7222945341053","21.1511322047935","21.6343552134988","21.5704888334935","21.5090713164112","21.4097375760213","20.6236698499155","20.7369732031946","21.5029463553277","21.4464831585225","21.5877182290425","21.8477191581265","22.3025178008827","22.4783810596749","21.8419969305116","",
"Brazil","BRA","Fixed broadband subscriptions","IT.NET.BBND","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1000","7000","100000","331000","731000","966252","3157466","3233800","4767007","7609452","10016914","11729995","14100890","17833051","19119646","21360635","23162259","",
"Brazil","BRA","Fixed broadband subscriptions (per 100 people)","IT.NET.BBND.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.00059006676764794","0.0040696169133558","0.0573049817776462","0.187039248095442","0.407483497420044","0.531629332389767","1.71591823485213","1.73727208195545","2.53383174674966","4.00503848019139","5.22352065425802","6.06229733093111","7.22344084621746","9.05529177947496","9.62449871705121","10.6610250425574","11.4645539033172","",
"Brazil","BRA","Secure Internet servers","IT.NET.SECR","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1028","","1580","2001","2637","3044","3857","4590","5026","7941","10658","10784","11510","14144","",
"Brazil","BRA","Secure Internet servers (per 1 million people)","IT.NET.SECR.P6","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","5.76170541458396","","8.60438325036121","10.7513383979033","13.9909307783711","15.9623915985675","20.0067929727615","23.5662944198465","25.5514328126091","39.9820339137067","53.1524457226654","53.2802154354681","56.3499221874157","68.6342404365945","",
"Brazil","BRA","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","0.00328817070330394","0.0129462623564468","0.0254982532389746","0.0376727093587832","0.105138167818006","0.450789178949525","0.786079155026595","1.47787495863132","2.03873218351945","2.87068515854108","4.52849486902851","9.14942508560748","13.2075861035303","19.073672274442","21.022747248827","28.1783801797929","30.88","33.83","39.22","40.65","45.69","48.56","51.04","57.6","",
"Brazil","BRA","Lead time to export, median case (days)","LP.EXP.DURS.MD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","3.4","","","2.8","","2","","2","",
"Brazil","BRA","Lead time to import, median case (days)","LP.IMP.DURS.MD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","7","","","3.88","","2","","3","",
"Brazil","BRA","Logistics performance index: Efficiency of customs clearance process (1=low to 5=high)","LP.LPI.CUST.XQ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2.39","","","2.37","","2.51","","2.481013","",
"Brazil","BRA","Logistics performance index: Quality of trade and transport-related infrastructure (1=low to 5=high)","LP.LPI.INFR.XQ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2.75","","","3.1","","3.07","","2.927419","",
"Brazil","BRA","Logistics performance index: Ease of arranging competitively priced shipments (1=low to 5=high)","LP.LPI.ITRN.XQ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2.61","","","2.91","","3.12","","2.80475","",
"Brazil","BRA","Logistics performance index: Competence and quality of logistics services (1=low to 5=high)","LP.LPI.LOGS.XQ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2.94","","","3.3","","3.12","","3.050503","",
"Brazil","BRA","Logistics performance index: Overall (1=low to 5=high)","LP.LPI.OVRL.XQ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2.75","","","3.2","","3.13","","2.943951","",
"Brazil","BRA","Logistics performance index: Frequency with which shipments reach consignee within scheduled or expected time (1=low to 5=high)","LP.LPI.TIME.XQ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","3.1","","","4.14","","3.55","","3.387455","",
"Brazil","BRA","Logistics performance index: Ability to track and trace consignments (1=low to 5=high)","LP.LPI.TRAC.XQ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2.77","","","3.42","","3.42","","3.027022","",
"Brazil","BRA","Arms imports (SIPRI trend indicator values)","MS.MIL.MPRT.KD","236000000","212000000","57000000","131000000","25000000","150000000","56000000","218000000","236000000","110000000","219000000","181000000","514000000","601000000","254000000","515000000","572000000","553000000","895000000","407000000","367000000","64000000","75000000","92000000","125000000","89000000","150000000","246000000","127000000","742000000","150000000","168000000","90000000","58000000","313000000","248000000","545000000","473000000","244000000","367000000","124000000","630000000","213000000","100000000","81000000","224000000","179000000","189000000","179000000","184000000","318000000","313000000","331000000","259000000","352000000","",
"Brazil","BRA","Armed forces personnel, total","MS.MIL.TOTL.P1","","","","","","","","","","","","","","","","","","","","","","","","","","276000","","","","319000","295000","295000","296000","296000","296000","680600","680600","700300","698850","676600","673200","673200","673200","673200","687000","673000","754000","721000","721000","713480","713480","713480","713480","713480","","",
"Brazil","BRA","Armed forces personnel (% of total labor force)","MS.MIL.TOTL.TF.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.469851051642125","0.442624558977142","0.419111804105557","0.410351248885311","0.399958739391669","0.896150673396794","0.900387222068615","0.894961020568921","0.872072977552516","0.816357359408506","0.79854475064592","0.786725817883701","0.761472125601366","0.744974542497987","0.738060890152357","0.701753917653338","0.776046567240349","0.734022543512113","0.720196009185146","0.700515799283196","0.687744391663202","0.677424578123561","0.66710223851379","0.658285183519922","","",
"Brazil","BRA","Military expenditure (current LCU)","MS.MIL.XPND.CN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","670","10700","731000","1178000","9753000","271760000","7040000000","13140000000","14145000000","15021000000","16662000000","17898000000","20753000000","25682000000","28224000000","25829000000","28608000000","33080000000","35686000000","39887000000","44841000000","51283000000","59819000000","61788000000","66379000000","71060000000","74217102000","",
"Brazil","BRA","Military expenditure (% of GDP)","MS.MIL.XPND.GD.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2.12849101627132","2.51412544936174","6.32966494325592","1.95401917526457","1.52162666305541","1.92777043687424","1.97308864044664","1.82250670957093","1.64887621130328","1.57211574690412","1.65628712157736","1.63859533799576","1.72599775278469","1.95104682071747","1.89272544013713","1.5016258068717","1.46055684750894","1.52320539881459","1.48086855268607","1.46749613966875","1.44297882884477","1.5408749662728","1.53901567727984","1.4123730074644","1.4083951204039","1.37778088863183","1.34420686162714","",
"Brazil","BRA","Military expenditure (% of central government expenditure)","MS.MIL.XPND.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","18.5146809609295","8.32530228855328","5.34218613592075","5.28006217323725","6.12621926121625","","","7.23193316636479","7.59228058071248","7.57938723660853","8.09957339776391","8.64366956139559","8.37823769571619","6.08981506825021","6.43715874047387","6.00738245070517","5.53547872503505","5.59465792669352","5.51700838819295","6.02437325735844","5.94511117961405","5.66913713779588","5.66930632162929","","","",
"Brazil","BRA","Arms exports (SIPRI trend indicator values)","MS.MIL.XPRT.KD","2000000","12000000","","","","","","","","3000000","","0","","","32000000","58000000","103000000","144000000","178000000","70000000","156000000","62000000","122000000","196000000","269000000","205000000","151000000","179000000","216000000","47000000","96000000","114000000","91000000","36000000","54000000","33000000","23000000","23000000","16000000","","","","26000000","","46000000","1000000","44000000","53000000","92000000","43000000","151000000","31000000","33000000","40000000","47000000","",
"Brazil","BRA","General government final consumption expenditure (current US$)","NE.CON.GOVT.CD","2138974629.37547","2231397941.40397","2326350972.23237","2966120462.55023","2484615117.43754","2369143212.96947","3017566424.24558","3529668109.99594","3771368224.9048","4051070562.89625","4793453718.79043","5423630148.39019","6294656311.57992","8281010087.40018","10243651651.0189","13159614701.0133","16062972517.3168","16622737159.8975","19388031460.2157","21913453012.1884","21617804789.319","24559797774.6854","28184385846.1171","19640729543.5582","17317201192.6828","22002970828.7361","28621223440.4954","35771188291.3845","41603302534.6565","65963601562.5","89120000000","107910000000","68354375000","77332826086.9565","88359142812.4511","146450909883.404","167036115809.372","171579777365.492","172392934080.138","117918113186.753","122326865263.733","107526145735.907","100093486642.328","105756906077.348","122648888888.889","167027604337.824","208429182181.768","261478095629.398","315537136001.745","323465539661.899","420057980900.409","488622668579.627","465727817316.062","468602569454.107","473740545593.609","",
"Brazil","BRA","General government final consumption expenditure (current LCU)","NE.CON.GOVT.CN","0.0001453545","0.000218533","0.0003277995","0.000619511","0.0011297555","0.001636","0.0024359999","0.003418","0.0046549998","0.0060000001","0.0080019999","0.0104240002","0.013576","0.0184380002","0.0252800006","0.0388710015","0.0623110011","0.0854530036","0.1273339987","0.2146140039","0.4141820073","0.8312730193","1.8389099836","4.1192698479","11.6316003799","49.6166992188","142.1329956055","510.2760009766","3963.6398925781","65963.6015625","2228000","10791000","109367000","2490117000","56488000000","134398000000","167888000000","184963000000","200062000000","213986000000","223797000000","252923000000","293364000000","325414000000","358748000000","406612000000","453396000000","509124000000","578632000000","646737000000","738966000000","817368000000","909613000000","1010354000000","1114901000000","",
"Brazil","BRA","General government final consumption expenditure (constant 2005 US$)","NE.CON.GOVT.KD","30116901177.4779","32517446160.2917","33172048860.2869","35572788361.1563","34699917211.1355","32517447461.4158","34045119797.916","37318537101.7622","39501009258.5615","42556351004.0327","45398699446.9903","49440149369.6485","53659647914.0434","60246302969.9766","60355826588.9099","69504487152.9557","74856703304.0965","70751609936.101","74620282611.2746","80711445727.4104","80860603538.6669","78347413605.2169","84445605198.67","77509677815.7124","69175130807.526","87973989028.1802","105495073689.671","127431657777.312","125798950700.086","149084378868.919","134532749205.258","130642923960.128","134354394298.904","137454392380.626","137911956682.493","139767171857.627","137212091257.352","138924837635.265","143396488634.081","145814299924.279","145593837128.428","149406179586.595","155140292060.56","157617378727.262","163721702323.515","167027604337.824","172957221574.919","180018270452.738","183725581162.764","189111320776.808","196551940087.977","200925838737.756","207315100123.621","211896982487.835","214756759293.186","",
"Brazil","BRA","General government final consumption expenditure (annual % growth)","NE.CON.GOVT.KD.ZG","","7.97075691375883","2.01308152174195","7.23723611701151","-2.45376083864683","-6.28955318953716","4.69800816411838","9.61493842076769","5.84822537616643","7.73484476174227","6.6790229328832","8.9021270914978","8.53455864958461","12.2748756504781","0.18179309523407","15.1578746926264","7.70053326105742","-5.48393555526881","5.46796416175903","8.16287864770899","0.184803790729092","-3.10805240557998","7.78352636397315","-8.21348531594963","-10.7529114338505","27.1757465453306","19.9162102969753","20.7939416698936","-1.28124133806622","18.5100337000008","-9.76066692839458","-2.89135936648054","2.84092718248459","2.30732913344463","0.332884452757497","1.34521706439514","-1.82809780459596","1.24824741188453","3.21875560549955","1.6861021585876","-0.151194221667694","2.61847790631691","3.83793527806621","1.59667526327414","3.87287470807132","2.01922040107836","3.55008219186435","4.08254064994904","2.05940802603138","2.93140431504315","3.93451818780892","2.22531441196745","3.17991027236873","2.21010546818891","1.34960714011822","",
"Brazil","BRA","General government final consumption expenditure (constant LCU)","NE.CON.GOVT.KN","46293663700","49983619100","50989830100","54680084500","53338366000","49983621100","52331855700","57363531400","60718280000","65414744700","69783810500","75996054000","82481981800","92606542500","92774894800","106837597100","115064661800","108754589900","114701251900","124064175900","124293451200","120430345600","129804073300","119142634800","106331332800","135227666300","162159892700","195879326200","193369639300","229162424700","206794643700","200815467400","206520488600","211285596000","211988932900","214840644200","210913147100","213545865000","220419384500","224135880500","223797000000","229657075000","238471164900","242278775000","251661928400","256743537400","265858144000","276711910800","282410538100","290689132800","302126349600","308849610800","318670751300","325713711000","330109566500","",
"Brazil","BRA","General government final consumption expenditure (% of GDP)","NE.CON.GOVT.ZS","14.1041493442962","14.6447410701511","11.6747800219492","12.8841447701273","11.7133119807703","10.8725993337223","11.1502716867255","11.5379421311238","11.1329005062325","10.814708261101","11.3246527269795","11.0226400454096","10.7529260267313","10.4453941865911","9.74323820334986","10.6375240633368","10.5208152880654","9.43555428163941","9.6553512684355","9.7406333301681","9.19810304233671","9.31844600809667","10.005735337213","9.66074437458691","8.28479429422943","9.86933499207352","10.6740955006695","12.1635908857337","12.5918983628166","15.4991373289569","19.2920567627554","17.8996782005772","17.0630311963889","17.6640194913084","15.8317941934019","18.6408871197043","19.5706277386557","19.3584478326761","19.8871752560923","19.5908180800291","18.6128809849157","19.2144153506863","19.673239300609","18.9186596584207","18.3155707469987","18.7229018628415","18.8146578017613","18.7313536894907","18.6203190315138","19.4321871392541","19.012023921777","18.6837007244961","19.2996958474209","19.5897330699793","20.1928872705776","",
"Brazil","BRA","Household final consumption expenditure, etc. (current US$)","NE.CON.PETC.CD","10051140443.9887","9760602842.81603","13956530327.8921","15638608495.2289","14631216792.0526","14582684546.2642","18436143163.4651","21886420897.9484","23902617759.0537","25009958746.5988","29017109730.6752","34238484359.7161","40778952637.0697","53545407897.4552","74371824285.7201","82255119455.8892","104981221085.954","121841255171.931","137669578129.806","156458577444.094","163832176368.656","179159678215.73","195953130226.207","144841722361.024","147051349196.566","146645673256.984","181718698010.713","183109907864.942","196566270295.439","230373608828.125","273951782000","371170000000","246445500000","263039881987.578","341439073987.174","503355126947.804","555066162570.888","577801484230.056","554960792761.741","388350691574.365","424079256627.494","358765836238.415","315116175918.66","345512512187.195","403367179487.18","539219109431.482","669526042384.959","836376662729.187","1012869996728.11","1032308192457.74","1330807185084.13","1576403634624.58","1489124468793.2","1484503965493.25","1465882127985.04","",
"Brazil","BRA","Household final consumption expenditure, etc. (current LCU)","NE.CON.PETC.CN","0.0006830275","0.0009559092","0.001966575","0.0032663171","0.0066528202","0.0100699999","0.0148830006","0.0211940002","0.0295030011","0.0370419998","0.0484400023","0.0658049974","0.0879500061","0.1192209925","0.183539994","0.2429659944","0.4072400034","0.6263529957","0.9041669815","1.5323099345","3.1389098167","6.0639997126","12.7850991488","30.3777992725","98.771303177","330.6859931945","902.4150543212","2612.0628356934","18727.3092041015","230373.608828125","6848794.55","37117000","394312800","8469884200","218282000000","461929000000","557897000000","622870000000","644032000000","704740000000","775853000000","843889000000","923574000000","1063142000000","1179849000000","1312675000000","1456420000000","1628509000000","1857401000000","2063997000000","2341156000000","2637008000000","2908409000000","3200739000000","3449807000000","",
"Brazil","BRA","Household final consumption expenditure, etc. (constant 2005 US$)","NE.CON.PETC.KD","78772578568.5496","86708486440.614","92351265982.1672","92000562258.7931","95799206975.0329","99022234064.913","104490055251.532","112641177577.173","125438281405.87","132470069811.785","150183795387.46","169516322498.516","192077855663.289","216055320123.4","241021595866.328","239374312634.257","273604844558.787","293707199128.701","297693482728.127","317664211717.557","346327586155.279","323331156650.65","327552716838.356","328832309801.827","355993560651.405","355171288225.437","384389107990.345","358963658432.415","353353253288.241","337162515401.92","356589105196.443","364092968278.721","359034821489.485","382680916136.996","409361677029.64","447661849335.663","467652470353.434","484916707377.335","478182304319.063","470587645592.33","484977582578.017","495087212294.086","498219158546.163","500422186418.963","524166112992.519","539219109431.482","567838110391.447","608542553105.864","650193474518.271","654261326802.013","722132798422.857","750685125229.43","763735021297.822","790839738620.848","811737518334.171","",
"Brazil","BRA","Household final consumption expenditure, etc. (annual % growth)","NE.CON.PETC.KD.ZG","","10.0744548626886","6.50775924386353","-0.379749773481038","4.12893641405631","3.36435675372559","5.52181157924025","7.80085942726284","11.3609464176004","5.6057754675092","13.3718700389022","12.872578603557","13.3093573717485","12.4832008235988","11.5555014931681","-0.683458768974575","14.3000021797788","7.34722172128619","1.35723047009124","6.70848713462351","9.02316766586469","-6.64008020842977","1.30564596107511","0.390652526354202","8.25990939453212","-0.230979578524781","8.22640250874167","-6.61450832747555","-1.56294516516628","-4.58202598551242","5.7617881309743","2.10434446059257","-1.38924594263625","6.5860170747265","6.97206465427523","9.35607177103928","4.46556280090371","3.69168092084571","-1.38877521764425","-1.5882350011984","3.05786544131959","2.08455608655724","0.632604958137591","0.442180481221982","4.7447789522421","2.87179885647768","5.30749012032217","7.16831821773218","6.84437287085846","0.625637205411266","10.3737556906497","3.95388865717381","1.73839811524219","3.5489687610458","2.64247972032443","",
"Brazil","BRA","Household final consumption expenditure, etc. (constant LCU)","NE.CON.PETC.KN","123271465000","135690393100","144520797200","143971979800","149916491300","154960216900","163516828100","176272546000","196298775500","207302844100","235023111000","265276645700","300583262500","338105674800","377175481100","374597642200","428165113200","459623353400","465861501600","497113760500","541969168600","505981981100","512588314400","514590753600","557095483600","555808706800","601531768200","561743399300","552963658000","527626719500","558027453200","569770273000","561854762600","598858613200","640611422900","700547487400","731830875400","758847736200","748309046900","736424140700","758943000000","774763592500","779664785400","783112310900","820269259000","843825742200","888611710100","952310225200","1017489887900","1023855683200","1130067970400","1174749599700","1195171424600","1237587685100","1270290688700","",
"Brazil","BRA","Household final consumption expenditure, etc. (% of GDP)","NE.CON.PETC.ZS","66.2760483250349","64.0591705626853","70.0407734656848","67.9305167810458","68.9764808001115","66.9236394885843","68.1237713530687","71.5433434273336","70.5593963466052","66.7664024280202","68.5536379651275","69.5841122038075","69.6611601093007","67.5404191599432","70.7386803378242","66.4906102818718","68.7598783207887","69.1606782841605","68.5602423612848","69.5465764065101","69.7085228854383","67.9765282921854","69.5652965527356","71.2437311150534","70.3514479751625","65.7772664326379","67.7707834836742","62.2644679357769","59.4938946266644","54.1297339080464","59.3031118559469","61.5681916199449","61.5192115312248","60.0823975732565","61.1775191213029","64.0691553915823","65.033799339517","65.1903159093383","64.0200400602395","64.5202636327598","64.5266002260522","64.10976366671","61.935657796528","61.8081018842849","60.2361764533199","60.4435806193755","60.4373305358698","59.9150267233891","59.7709756623428","62.0158982072452","60.232965896417","60.2777063453694","61.70911046775","62.0590630973623","62.482286639127","",
"Brazil","BRA","Household final consumption expenditure (current US$)","NE.CON.PRVT.CD","10051138972.4315","9760602842.81603","13956529618.205","15638607058.8764","14631217231.9027","14582684401.451","18436142915.7175","21886420484.8802","23902617597.0186","25009958476.5274","29017107274.6442","34238487325.4386","40778949205.9812","53545412119.2523","74371827324.778","82255120099.1262","104981221085.954","121841260949.32","137669580413.724","156458585051.017","163832188816.919","179159690538.868","195953143014.789","144841725771.584","147051346356.667","146645678332.018","181718682647.463","183109918561.605","196566284389.508","230373609375","273960000000","371170000000","246445625000","263039872670.808","341439073987.174","503355126947.804","555066162570.888","577803339517.625","554961654459.285","388350140519.094","424079256627.494","358764985970.581","315116517110.785","345512512187.195","403367521367.521","539218287873.809","669526042384.959","836377176313.492","1012869996728.11","1032307692307.69","1330806616643.93","1576404232424.68","1489125492806.31","1484503037892.49","1465882127985.04","",
"Brazil","BRA","Household final consumption expenditure (current LCU)","NE.CON.PRVT.CN","0.0006830274","0.0009559092","0.0019665749","0.0032663168","0.0066528204","0.0100699998","0.0148830004","0.0211939998","0.0295030009","0.0370419994","0.0484399982","0.0658050031","0.0879499987","0.1192210019","0.1835400015","0.2429659963","0.4072400034","0.6263530254","0.9041669965","1.532310009","3.1389100552","6.0640001297","12.7850999832","30.3777999878","98.7713012695","330.6860046387","902.4149780273","2612.0629882813","18727.310546875","230373.609375","6849000","37117000","394313000","8469883900","218282000000","461929000000","557897000000","622872000000","644033000000","704739000000","775853000000","843887000000","923575000000","1063142000000","1179850000000","1312673000000","1456420000000","1628510000000","1857401000000","2063996000000","2341155000000","2637009000000","2908411000000","3200737000000","3449807000000","",
"Brazil","BRA","Household final consumption expenditure (constant 2005 US$)","NE.CON.PRVT.KD","75182652998.2102","82127459075.7655","87359030835.8036","86749690135.1494","89700395180.4203","90618021799.9067","94457626635.5939","102755932707.716","114811590430.774","109994391153.963","130188793900.174","147086388155.959","164049186488.695","179061014113.009","200559115072.034","189974851560.631","223200573986.848","248852269429.813","253577179349.996","280276151220.88","305291701218.709","298162466968.259","307839441429.828","323664346726.175","354353778125.283","349979158625.32","352981416070.576","339130359114.912","343630005172.898","330266025923.206","339907738620.294","368040193833.876","365664370205.082","382259401802.384","410712304490.498","446122700498.292","460555346286.794","474540835021.821","471117137940.054","472901903024.552","491984789003.201","495195048264.975","501029337140.121","497515822379.108","517067112591.215","539218287873.809","568204302228.657","604150707202.674","643087173189.585","670032490216.561","713004959072.933","746943503350.67","776075350729.334","798414853522.537","805518179929.445","",
"Brazil","BRA","Household final consumption expenditure (annual % growth)","NE.CON.PRVT.KD.ZG","","9.23724529609333","6.37006406738065","-0.69751311893495","3.40140125074093","1.02299060961852","4.23713159857478","8.78521551693889","11.7323228015934","-4.1957430070747","18.3594840921883","12.9793000991627","11.5325412129572","9.15080894067654","12.0060198840699","-5.2773784465502","17.489537248362","11.4926655361004","1.89868066343533","10.528933218408","8.92532236112883","-2.33522045374642","3.24553742795509","5.14063604807886","9.48186963115596","-1.23453445963156","0.857838923051403","-3.92401875142764","1.32681900544974","-3.88906063164313","2.91937769564296","8.27649741890933","-0.645533740226938","4.53832337780014","7.44334934705493","8.62170322647673","3.23512920826066","3.0366575587027","-0.721475757004015","0.378836798911891","4.03527367020516","0.652511893361236","1.17817997081917","-0.701259287743156","3.92978259839332","4.28400390262406","5.37556218078998","6.32631693090421","6.44482668359254","4.1899944751397","6.41349031335518","4.7599310279504","3.90014067302049","2.87852239762658","0.889678639565531","",
"Brazil","BRA","Household final consumption expenditure (constant LCU)","NE.CON.PRVT.KN","118561972200","129513832400","137763946500","136803024900","141456244700","142903328800","148958330900","162044641300","181056241700","173459587100","205305872400","231953137700","258703228900","282376667100","316278865900","299587633200","351984123900","392436482000","399887597600","441991495700","481440661500","470197960700","485458411500","510414061600","558810857500","551912144900","556646662100","534803742700","541899620400","520824815600","536029659100","580394140000","576647500000","602817628300","647687450300","703529140100","726289216800","748344133200","742945011700","745759560800","775853000000","780915533100","790116123500","784575360800","815407466800","850339554500","896050086000","952737054300","1014139306200","1056631687100","1124398658000","1177919258600","1223859766700","1259088844200","1270290688700","",
"Brazil","BRA","Household final consumption expenditure per capita (constant 2005 US$)","NE.CON.PRVT.PC.KD","1037.09387524717","1099.32914185591","1134.42165047746","1092.99963469301","1097.22835443334","1077.11822293706","1092.05897256906","1156.4623307012","1258.71947093395","1175.33273874809","1356.38119084302","1494.74694829952","1626.75568628001","1733.05894498277","1894.81506993845","1752.0298990523","2009.43900925664","2187.20334697871","2176.02758399218","2348.52321060302","2498.30113129889","2383.25238848223","2403.96724527639","2470.44983119805","2645.40739459357","2557.64611617398","2527.34993336843","2380.90677745646","2367.40542354227","2234.51940484416","2260.12790104596","2406.79944048205","2353.3704620621","2422.24209128029","2562.77924996031","2741.06818519007","2786.12556600504","2826.43394870229","2762.88328503079","2731.12058567044","2798.76414929636","2775.45524403061","2767.42080050268","2709.37772713195","2778.19265462014","2860.88954875778","2979.59907364146","3133.81335840067","3301.78249695263","3406.34503701425","3589.89906237188","3725.07731466917","3834.33437323956","3908.8283987204","3908.80432956204","",
"Brazil","BRA","Household final consumption expenditure per capita growth (annual %)","NE.CON.PRVT.PC.KD.ZG","","6.00092895099837","3.19217487151332","-3.65137740160473","0.386891230893909","-1.8328118677414","1.38710397000376","5.89742493307257","8.84223701179683","-6.6247272812891","15.4040167627574","10.2010967411377","8.83151078720542","6.53467878424001","9.33356164393422","-7.53557289845655","14.6920500810846","8.84646594911243","-0.510961315141174","7.92708823545243","6.37753631812797","-4.60507908255411","0.869184350523383","2.76553626312041","7.08201240057858","-3.31749577017705","-1.18453380293546","-5.79433635123078","-0.567067725709663","-5.61315004927528","1.14604044817339","6.48952386138031","-2.21991818351275","2.92651031057115","5.80194519721782","6.956858856748","1.64378912784477","1.44675398657822","-2.24843972386746","-1.14962146727107","2.47676957146597","-0.83282849223329","-0.289482006428216","-2.09737071283793","2.53987942689098","2.97664361037427","4.14939209852514","5.17567232865107","5.35989605448893","3.16685124347597","5.38859168296455","3.76551680001786","2.93301452133994","1.9428150554826","-0.000615764006568043","",
"Brazil","BRA","Household final consumption expenditure, PPP (current international $)","NE.CON.PRVT.PP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","286428690275.03","303685442470.096","316067860631.257","344655824932.573","418859697794.551","548925233747.067","589508603791.287","629926666370.558","640936802003.055","683492854576.092","726680091939.096","760723300084.811","779862693720.401","800321471744.916","855501002834.078","920863614692.782","1012312414564.05","1123360086688.67","1259133587888.79","1329256833273.47","1458973171033.52","1589725466521.27","1697903042039.53","1785214298510.48","1838905859011.9","",
"Brazil","BRA","Household final consumption expenditure, PPP (constant 2011 international $)","NE.CON.PRVT.PP.KD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","723428192264.032","783302707924.427","778246224656.664","813565555007.104","874122081433.589","949486293131.894","980203401529.436","1009968822212.64","1002682142007.08","1006480670937.12","1047094920447.15","1053927339337.85","1066344500156.91","1058866660310.22","1100477818067.28","1147622330740.8","1209313482730.4","1285818486336.08","1368687259246.04","1426035179790.39","1517493807911.28","1589725466521.27","1651726996030.43","1699272327558.82","1714390390485.15","",
"Brazil","BRA","Final consumption expenditure, etc. (current US$)","NE.CON.TETC.CD","12190115073.3641","11992000784.22","16282881300.1245","18604728957.7791","17115831909.4902","16951827759.2337","21453709587.7107","25416089007.9443","27673985983.9585","29061029309.495","33810563449.4657","39662114508.1063","47073608948.6496","61826417984.8554","84615475936.739","95414734156.9024","121044193603.271","138463992331.828","157057609590.021","178372030456.283","185449981157.975","203719475990.416","224137516072.324","164482451904.583","164368550389.248","168648644085.721","210339921451.208","218881096156.327","238169572830.096","296337210390.625","363071782000","479080000000","314799875000","340372708074.534","429798216799.625","649806036831.209","722102278380.261","749381261595.547","727353726841.878","506268804761.118","546406121891.227","466291981974.322","415209662560.988","451269418264.543","526016068376.068","706246713769.307","877955224566.726","1097854758358.58","1328407132729.85","1355773732119.64","1750865165984.54","2065026303204.21","1954852286109.26","1953106534947.36","1939622673578.65","",
"Brazil","BRA","Final consumption expenditure, etc. (current LCU)","NE.CON.TETC.CN","0.000828382","0.0011744422","0.0022943745","0.0038858281","0.0077825757","0.0117059999","0.0173190005","0.0246120002","0.0341580009","0.0430419999","0.0564420022","0.0762289976","0.1015260061","0.1376589927","0.2088199946","0.2818369959","0.4695510045","0.7118059993","1.0315009802","1.7469239384","3.553091824","6.8952727319","14.6240091324","34.4970691204","110.4029035569","380.3026924133","1044.5480499267","3122.33883667","22690.9490966796","296337.210390625","9076794.55","47908000","503679800","10960001200","274770000000","596327000000","725785000000","807833000000","844094000000","918726000000","999650000000","1096812000000","1216938000000","1388556000000","1538597000000","1719287000000","1909816000000","2137633000000","2436033000000","2710734000000","3080122000000","3454376000000","3818022000000","4211093000000","4564708000000","",
"Brazil","BRA","Final consumption expenditure, etc. (constant 2005 US$)","NE.CON.TETC.KD","107807666792.351","118049519862.604","124303532948.764","126300824467.024","129227230191.372","130301065772.545","137234248333.265","148543280018.115","163408651772.6","173390880412.457","193792929483.822","216977475188.649","243548720913.654","273842148744.185","298789343853.74","306091295176.483","345379589682.603","361368521959.485","369115491790.365","394938183927.267","423602535865.012","398266152417.309","408426101541.499","402920803978.934","421799562869.446","439353419152.273","485546861732.919","481688298661.36","474510602724.97","481158316662.676","493569697927.06","487572214758.411","486863343949.277","513665913349.993","540014902578.901","580748938221.081","599089349780.921","618177599920.401","617892475895.098","615538642857.177","635566610512.492","645892365114.698","653308001320.766","658134520736.984","686858640286.841","706246713769.307","744157633990.289","795148244082.288","844938498780.17","846688356679.677","925376261688.496","965475198470.231","987607333861.267","1018270807245.56","1030522204190.11","",
"Brazil","BRA","Final consumption expenditure, etc. (annual % growth)","NE.CON.TETC.KD.ZG","","9.5001156921246","5.29778782110995","1.60678580156137","2.31701236844386","0.830966956099871","5.32089474450113","8.24067739809865","10.0074347036579","6.10875160621735","11.7665064176577","11.9635663522818","12.2460848536939","12.4383440475021","9.11006403651187","2.4438459647067","12.835482460704","4.62937960276571","2.14378656692962","6.9958299532896","7.25793379933705","-5.98116897387435","2.55104508945163","-1.34792990501495","4.68547632787381","4.1616582443591","10.5139599618401","-0.794683968873329","-1.49011216513593","1.40096214911311","2.57947973350439","-1.21512386069041","-0.145387860029217","5.50515246913088","5.12959660045699","7.54313176315129","3.15806200455914","3.18621089599735","-0.0461233188228505","-0.38094541198474","3.25373035271204","1.62465340869305","1.14812259853099","0.738781617010687","4.36447544457805","2.82271669092906","5.36794288480975","6.85212484061739","6.26175748590715","0.207098848263328","9.29360896344403","4.33325755607432","2.29235669917809","3.10482439052096","1.20315704401723","",
"Brazil","BRA","Final consumption expenditure, etc. (constant LCU)","NE.CON.TETC.KN","169565128700","185674012100","195510627300","198652064300","203254857200","204943837900","215848683800","233636077500","257017055400","272717588900","304806921500","341272699800","383065244200","430712217200","469950376000","481435239300","543229775000","568377943400","580562753400","621177936400","666262619800","626412326700","642392387600","633733388500","663426816400","691036373200","763691660800","757622725600","746333297200","756789144200","776310366800","766877234300","765762287900","807918669400","849361638000","913430105500","942276794600","972299720500","971851263600","968149040800","999650000000","1015890847800","1027554520200","1035145904100","1080324592900","1110819095500","1170447230100","1250647735500","1328960263700","1331712525100","1455476679700","1518546232900","1553356729200","1601585727800","1620855319300","",
"Brazil","BRA","Final consumption expenditure, etc. (% of GDP)","NE.CON.TETC.ZS","80.3801976693312","78.7039116328364","81.7155534876339","80.8146615511731","80.6897927808817","77.7962388223066","79.2740430397942","83.0812855584574","81.6922968528377","77.5811106891212","79.8782906921069","80.606752249217","80.414086136032","77.9858133465342","80.4819185411741","77.1281343452086","79.2806936088541","78.5962325657999","78.2155936297203","79.2872097366782","78.9066259277751","77.2949743002821","79.5710318899486","80.9044754896403","78.6362422693919","75.6466014247114","78.4448789843437","74.4280588215106","72.085792989481","69.6288712370033","78.5951686187023","79.4678698205222","78.5822427276137","77.7464170645649","77.0093133147048","82.7100425112866","84.6044270781727","84.5487637420144","83.9072153163318","84.111081712789","83.1394812109679","83.3241790173962","81.608897097137","80.7267615427055","78.5517472003186","79.166482482217","79.251988337631","78.6463804128798","78.3912946938565","81.4480853464993","79.244989818194","78.9614070698655","81.0088063151708","81.6487961673416","82.6751739097046","",
"Brazil","BRA","Final consumption expenditure (current US$)","NE.CON.TOTL.CD","12190115073.3641","11992000784.22","16282880590.4373","18604727521.4267","17115832349.3402","16951827614.4205","21453709339.9631","25416088594.8761","27673985821.9234","29061029039.4237","33810560993.4346","39662117473.8288","47073605517.5611","61826422206.6525","84615479016.3177","95414734766.2849","121044193603.271","138463998128.67","157057611873.94","178372038063.206","185449993606.238","203719488313.553","224137528862.438","164482455315.142","164368547549.499","168648649160.71","210339906087.958","218881106852.983","238169586924.164","296337210937.5","363080000000","479080000000","314800000000","340372698757.764","429798216799.625","649806036831.209","722102278380.261","749383116883.117","727354588539.423","506268253705.847","546406121891.227","466291131706.488","415210003753.113","451269418264.543","526016410256.41","706245892211.633","877955224566.726","1097855271942.89","1328407132729.85","1355773231969.59","1750864597544.34","2065026901004.3","1954852798115.82","1953105607346.6","1939622673578.65","",
"Brazil","BRA","Final consumption expenditure (current LCU)","NE.CON.TOTL.CN","0.000828382","0.0011744422","0.0022943744","0.0038858278","0.0077825759","0.0117059998","0.0173190003","0.0246119998","0.0341580007","0.0430419995","0.0564419981","0.0762290033","0.1015259987","0.1376590021","0.2088200022","0.2818369977","0.4695510045","0.7118060291","1.0315009952","1.7469240129","3.5530920625","6.895273149","14.6240099669","34.4970698357","110.4029016495","380.3027038574","1044.5479736328","3122.3389892578","22690.9504394531","296337.2109375","9077000","47908000","503680000","10960000900","274770000000","596327000000","725785000000","807835000000","844095000000","918725000000","999650000000","1096810000000","1216939000000","1388556000000","1538598000000","1719285000000","1909816000000","2137634000000","2436033000000","2710733000000","3080121000000","3454377000000","3818023000000","4211091000000","4564708000000","",
"Brazil","BRA","Final consumption expenditure (constant 2005 US$)","NE.CON.TOTL.KD","105167007413.255","114507518642.316","120412442696.057","122153576755.986","124266095867.957","123049134274.387","128409844273.554","139967922751.938","154236176165.43","152386046560.44","175489048617.387","196451244932.989","217653629888.515","239214520966.489","260949282218.999","259272453368.699","297946277724.248","319726801296.404","328273698511.252","361106131739.846","386418356551.055","376781849709.586","392496828622.685","401615591458.232","424316786222.271","438349815461.649","458551106359.189","466127538000.962","469053224695.888","478442324292.004","473872843263.383","498360132396.434","499609450191.439","519344087363.277","548416752733.855","585859266064.687","597873207998.731","613622288117.799","614562856661.031","618729232073.564","637710675300.54","644678577853.928","656170754118.828","655065117167.179","680719796534.318","706245892211.633","741220709238.789","784307237378.325","827113166377.595","859501695498.331","910028735987.299","948460340840.189","984032589711.871","1010999357469.73","1020949659875.71","",
"Brazil","BRA","Final consumption expenditure (constant LCU)","NE.CON.TOTL.KN","164855636000","179497451500","188753776600","191483109400","194794610700","192886949900","201290186600","219408172700","241774521700","238874331800","275089682900","307949191700","341185210700","374983209700","409053760700","406425230200","467048785700","501191071900","514588849500","566055671600","605734112800","590628306300","615262484900","629556696400","665142190300","687139811200","718806554800","730683069000","735269259600","749987240300","742824302800","781209607500","783167988600","814103224300","859676383200","918369784300","937202363900","961889998200","963364396200","969895441300","999650000000","1010572608100","1028587288500","1026854135800","1067069395200","1107083091900","1161908230000","1229448965200","1296549844300","1347320819900","1426525007600","1486768869400","1542530518000","1584802555200","1600400255200","",
"Brazil","BRA","Gross national expenditure deflator (base year varies by country)","NE.DAB.DEFL.ZS","5.15259898726091E-13","6.81484941271884E-13","1.23399552937468E-12","2.08886616318975E-12","4.02877446994669E-12","6.05850799003178E-12","8.49039413876719E-12","1.10239948376446E-11","1.39885180671885E-11","1.6831586622413E-11","1.96303418558163E-11","2.36887909507678E-11","2.81330604830585E-11","3.42419676011363E-11","4.74847726148589E-11","6.30922654127771E-11","9.22541025122769E-11","1.3360271835329E-10","1.89806804294857E-10","2.99485939586102E-10","5.67534734603756E-10","1.17281053106326E-09","2.40770398326068E-09","5.7001252541609E-09","1.7456694065499E-08","5.83689720729039E-08","1.44489939961876E-07","4.40502354115566E-07","3.26928323675381E-06","4.35132762531777E-05","0.00123657845837955","0.00636492212818064","0.0674002428981769","1.41861694800379","34.1224738469481","65.3520063469576","75.8546351626858","81.4606367743557","85.6342421916216","94.4016070256675","100","108.605445451158","118.592865408746","134.998707797354","144.555482909989","156.027115606475","165.293699655133","175.402971081022","189.608582633864","203.889555113345","216.099520140847","231.505484044169","246.633450020215","262.787625378015","282.282961171317","",
"Brazil","BRA","Gross national expenditure (current US$)","NE.DAB.TOTL.CD","15174402198.9132","15246004762.2081","20189363515.3859","23038638831.2069","21061752521.2538","21315047969.3575","26837266327.5001","30591834053.9653","34082476788.4631","37433916642.4728","42505512651.5551","50053069574.809","59466793462.3855","80254113377.7071","111308131100.909","128616936803.654","156337566438.181","177343491332.943","203188043976.089","229585104235.269","240319940295.313","264560235327.312","283554917758.565","198397800860.626","197270085001.615","211455339655.876","261535653749.195","284475559324.206","313230995712.3","410834210390.625","456231782000","598260000000","390651750000","431637770186.335","558127639605.819","800472921434.02","872012735051.239","909381261595.547","887399396811.719","613015925497.328","672061765509.702","571889295127.965","504509536319.902","546618784530.387","646811965811.966","861802908314.164","1077844435250.31","1376922089260.95","1697823644890.39","1671308892667.8","2232428376534.79","2635363462458.15","2445766217807.59","2447975975140.3","2410755927594.12","",
"Brazil","BRA","Gross national expenditure (current LCU)","NE.DAB.TOTL.CN","0.0010311799","0.0014931246","0.0028448258","0.0048119051","0.0095767874","0.0147189998","0.0216650005","0.0296240002","0.0420680011","0.0554429996","0.0709570026","0.0961999976","0.1282550068","0.1786889936","0.2746939975","0.3799099941","0.6064599976","0.9116750062","1.3344699889","2.2484899312","4.6043618321","8.9545438291","18.5007390976","41.6101691723","132.5021734238","476.831790924","1298.7860565185","4058.0438537598","29842.2191162109","410834.210390625","11405794.55","59826000","625042800","13898736200","356811000000","734594000000","876460000000","980313000000","1029827000000","1112440000000","1229537000000","1345198000000","1478667000000","1681946000000","1891925000000","2097973000000","2344635000000","2681005000000","3113469000000","3341615000000","3927288000000","4408436000000","4776826000000","5278081000000","5673473000000","",
"Brazil","BRA","Gross national expenditure (constant 2005 US$)","NE.DAB.TOTL.KD","128999158397.354","141194419863.879","148581902766.515","148382710991.435","153125071330.114","156448470976.304","164363310573.463","173129413865.035","193777504465.813","212217670134.784","232960757998.601","261831342119.447","293925757596.305","336502219561.507","373278505803.501","388373022406.434","423941988849.225","439953547648.501","453224836082.433","483977571652.745","522732585609.201","491510854179.651","494731136910.919","469589955550.024","487921504842.068","525080851658.844","578354022829.956","592359368431.275","586624854250.761","606791681319.735","593003987615.882","604294692054.048","595799073994.74","629595828562.424","672349004316.206","723682790636.58","744102315186.324","775097951369.046","774357500915.585","757944708755.486","790652699474.332","796144058365.542","800576794400.5","799290311190.414","839183001438.74","861802908314.164","909664666693.505","980897947916.573","1054959165573.28","1053327970780.13","1169272690987.22","1225547162304.96","1246530658986.04","1293163556355.77","1294049641282.81","",
"Brazil","BRA","Gross national expenditure (constant LCU)","NE.DAB.TOTL.KN","200128110600","219098693100","230537772000","230359665200","237709692400","242947600700","255170727600","268722914300","300732364200","329398534100","361465954700","406099229800","455887147000","521842073100","578488602500","602149869900","657379976700","682377587400","703067518500","750783136700","811291635800","763511547000","768397578200","729986926900","759033600100","816926826000","898876459400","921230911900","912806170500","944158302400","922367236200","939932944900","927359862700","979738485400","1045677407800","1124057303000","1155446859800","1203419269500","1202587859300","1178412142600","1229537000000","1238610084800","1246843134200","1245897851500","1308788128900","1344620767900","1418466042500","1528483231200","1642050669200","1638933881700","1817351559800","1904246898600","1936811896200","2008496782300","2009853154600","",
"Brazil","BRA","Gross national expenditure (% of GDP)","NE.DAB.TOTL.ZS","100.058239066809","100.060051124878","101.320213776304","100.07454577645","99.2921907348179","97.8201634587647","99.1669341480856","100","100.609858402653","99.933309300168","100.420322798602","101.724666689287","101.584899873182","101.229903173406","105.870608668929","103.967007491199","102.396904265918","100.665379165374","101.188815489659","102.051662838364","102.253100881763","100.379094787497","100.664796321907","97.5865196017295","94.3768023746303","94.8473548945027","97.5379878764756","96.7327194283706","94.8043213350075","96.5316583001408","98.7617755309363","99.2369704408984","97.5168450764698","98.5927758179046","100.002802682728","101.887556606587","102.168543242055","102.600725930019","102.370015457487","101.845960319589","102.258858910309","102.193921078401","99.1606663970821","97.7836354239278","96.590604506549","96.6035006096505","97.2957529290788","98.6377638812802","100.191116417219","100.403855086904","101.04076967507","100.769664199106","101.352211232746","102.336604706597","102.756927047034","",
"Brazil","BRA","Exports of goods and services (current US$)","NE.EXP.GNFS.CD","1070544628.54537","1109152823.34559","770900519.674771","2080325261.99351","1354466134.88626","1685625122.1861","1846958711.61305","1764834054.99797","2032731102.64928","2479930321.58748","2975391707.00149","3155632739.4951","4249449495.7691","6557708237.89377","8424673828.03794","9325921437.05926","10741988183.0392","12776590678.7557","13404621904.9098","16026612550.3001","21276141967.6084","24828388398.9376","21435129573.2899","23221079048.8769","28317692072.5525","27305943051.3526","23640556197.1808","27820190044.6057","35974382968.3631","38004000000","37880000000","52310000000","43538125000","45983167701.8634","53941811356.1708","57921978860.194","57235100984.9766","61679962894.2486","60724687634.6402","57330688268.0333","66775075157.1468","69203724173.1145","72286328431.5398","84757556061.0985","110743589743.59","135918090699.967","159215740357.652","186198962559.704","229512487730.396","180894268280.484","237193042291.951","299977283596.365","288553069479.289","287518667965.308","270209059233.449","",
"Brazil","BRA","Exports of goods and services (current LCU)","NE.EXP.GNFS.CN","7.27491E-05","0.0001086254","0.0001086254","0.0004345017","0.0006158763","0.001164","0.0014909999","0.001709","0.002509","0.003673","0.0049669999","0.0060649999","0.0091650002","0.0146009997","0.0207909998","0.027547","0.0416699983","0.065681003","0.0880369991","0.1569599956","0.4076359868","0.8403639793","1.3985500336","4.87018013","19.0203990936","61.5749015808","117.3990020752","396.8550109863","3427.3601074219","38004","947000","5231000","69661000","1480658000","34485000000","53155000000","57527000000","66491000000","70471000000","104038000000","122165000000","162781000000","211864000000","260799000000","323925000000","330879000000","346342000000","362548000000","420880000000","361680000000","417270000000","501802000000","563573000000","619919000000","635910000000","",
"Brazil","BRA","Exports of goods and services (constant 2005 US$)","NE.EXP.GNFS.KD","4550528303.73568","4786886653.58637","4432323350.05729","5673371836.75737","4905091675.91657","5082501397.62466","5673486553.92472","5496175484.86143","6382678586.15372","7623752268.0665","8096530205.17858","8542647282.19506","10606821582.7103","12118799820.9732","12401626655.8583","13836795331.6425","13792430337.935","13743560275.4333","15564821900.9031","17012322775.1542","20859532689.202","25306837922.8193","22980866345.8476","26274497687.5797","32042961680.5425","34294526370.9318","30665975684.7046","36564669201.0714","41346945611.2971","43449650875.0706","41311122343.9079","45703628264.5197","53266353471.0257","59488040483.4587","61872488364.1497","60614694946.8671","60360399459.176","67011994170.7792","70301870876.6052","74312441469.537","83868478445.401","91609096407.7201","97543418220.3479","108289968539.515","123962781447.094","135918090699.967","142492142373.199","151295555850.381","151914759644.9","137865788905.227","154024385971.814","161403516684.088","162284998317.703","165676365184.768","163903138747.19","",
"Brazil","BRA","Exports of goods and services (annual % growth)","NE.EXP.GNFS.KD.ZG","","5.19408591869781","-7.40697094349291","27.9999537191718","-13.5418615762707","3.61684823505244","11.6278405073584","-3.12525758857453","16.1294540855557","19.4444019882986","6.20138116360884","5.50997854279771","24.163169007545","14.2547720490323","2.33378584565477","11.5724228410492","-0.320630555299289","-0.354325244386715","13.2517454645675","9.29982291777516","22.6142541785445","21.320253429836","-9.19107943894632","14.3320590797796","21.954611888507","7.02670593572647","-10.580553429957","19.2353035723199","13.0789543970101","5.08551534505364","-4.92185434886827","10.6327440926078","16.5473190940884","11.6803321553018","4.0082810953473","-2.03287996092844","-0.41952778598332","11.019799025853","4.90938487435815","5.70478501201086","12.8592693052365","9.22947227110873","6.47787397248869","11.0171967675876","14.4730053198426","9.64427315466065","4.83677458929603","6.17817469129255","0.409267668860906","-9.24793007112166","11.7205270393042","4.79088468083471","0.546135333185305","2.08975992988911","-1.0702953529912","",
"Brazil","BRA","Exports of goods and services (constant LCU)","NE.EXP.GNFS.KN","6628417500","6972703200","6456237100","8263980500","7144883700","7403303300","8264147600","8005871700","9297175100","11104955200","11793615800","12443441500","15450171300","17652558000","18064530900","20155034800","20090411600","20019226200","22672123100","24780590400","30384536100","36862596200","33474525700","38272114500","46674608700","49954296200","44668855200","53261045100","60227032900","63289887900","60174851800","66573089800","77589151400","86651822000","90125070600","88292936100","87922522700","97611408000","102403527700","108245428800","122165000000","133440184800","142084271800","157737975600","180567401200","197981814600","207557748700","220381029000","221282977300","200818882300","224355913700","235104546800","236388535800","241328488700","238745561100","",
"Brazil","BRA","Exports of goods and services (% of GDP)","NE.EXP.GNFS.ZS","7.05904647646368","7.27940794590105","3.86876017137378","9.03645424482606","6.38540927082227","7.73576138413985","6.82473507896306","5.7689710655619","6.00052600864501","6.6204037968306","7.02943634908589","6.41330674313925","7.259175691336","8.27167782462644","8.01311941176138","7.53857281945099","7.03571355665957","7.25236847121218","6.67557886823388","7.12390494963595","9.05272982472942","9.42035430772259","7.60968270162801","11.4218215925107","13.547584918489","12.2479596662611","8.81658867805845","9.4599432176942","10.8882167136928","8.92960968014427","8.19999001540815","8.67697309491424","10.8682492540862","10.5032702366843","9.66505138718782","7.37255282703524","6.70589620414591","6.95902723702829","7.00517403341004","9.52487326932637","10.1602908239263","12.3663792743248","14.2077799974919","15.1621243101294","16.5377124171327","15.235691631027","14.3722181324441","13.338626380641","13.5438756826161","10.8672202835549","10.7354698617255","11.4703761230603","11.9575989875018","12.0195968294365","11.5174880498205","",
"Brazil","BRA","Gross fixed capital formation, private sector (current LCU)","NE.GDI.FPRV.CN","","","","","","","","","","","","","","","","","","","","","0.9247270227","1.8145500422","3.507639885","6.9512701035","21.0422000885","73.5395965576","213.2299957275","800.9959716797","6156.9799804688","100987","1955000","9179000","95895000","2265158000","59844316000","112914020000","124409049000","145928000000","140543000000","149858000000","177234000000","191355611500","210657028400","241071011300","287009798500","307527925800","345369742800","417798268600","514017843400","515918454600","644555209500","708048162500","692400428600","","","",
"Brazil","BRA","Gross fixed capital formation, private sector (% of GDP)","NE.GDI.FPRV.ZS","","","","","","","","","","","","","","","","","","","","","20.536223908604","20.3408341238704","19.0854999214559","16.3025113741594","14.9876451681138","14.6278757965803","16.0134339553357","19.093563643961","19.5598157847615","23.7284099770742","16.9281736854519","15.2257572238994","14.9611800321643","16.0682389875227","16.7724630816618","15.6610775536246","14.5023062118745","15.2729982500649","13.9706854475961","13.719779872688","14.7403019186162","14.5371761328371","14.1268394556537","14.0151942334871","14.6530385382178","14.1604654433136","14.331872195309","15.3713577438962","16.5410420301654","15.5015469323419","16.5830350272137","16.1848273564409","14.6909924073247","","","",
"Brazil","BRA","Gross fixed capital formation (current US$)","NE.GDI.FTOT.CD","","","","","","","","","","","7971917261.70508","9729130523.00776","11880838993.8565","17026417445.9026","23985056668.301","30141749198.4928","34337500831.3634","37641541979.4465","44592290846.3593","51706247744.726","53826080660.5669","60453985735.769","60381604384.6568","36859357044.4999","35296622617.5003","37785143122.7051","51195732297.9863","65594531626.5194","75059639341.9826","114497000000","95440000000","109170000000","73803750000","84421211180.1242","127273580478.649","158223820420.617","159162272410.705","169574211502.783","160798793623.438","102407009423.045","120458048647.171","103172774423.944","91354191545.2591","93187520311.9922","116414017094.017","153580348340.453","191210867466.556","252228442298.803","330277565710.546","319691407422.227","454952819463.392","539745337159.254","487698530541.191","491177125365.243","463208974250.021","",
"Brazil","BRA","Gross fixed capital formation (current LCU)","NE.GDI.FTOT.CN","","","","","","","","","","","0.0133079998","0.0186989997","0.0256239995","0.0379099995","0.0591920018","0.0890330002","0.1332010031","0.1935050041","0.2928670049","0.5063959956","1.0312700272","2.0461800098","3.9396400452","7.7305498123","23.7080001831","85.2054977417","254.2380065918","935.7059936523","7151.1000976563","114497","2386000","10917000","118086000","2718363000","81366000000","145202000000","159974000000","182801000000","186607000000","185838000000","220378000000","242683000000","267750000000","286738000000","340511000000","373876000000","415941000000","491114000000","605663000000","639191000000","800353000000","902886000000","952524000000","1059027000000","1090116000000","",
"Brazil","BRA","Gross fixed capital formation (constant 2005 US$)","NE.GDI.FTOT.KD","","","","","","","","","","","50878942199.8842","58688077948.0846","68497608780.2145","82875716733.4051","93863894014.045","103000928637.769","110239007600.477","108948509739.077","114121043960.062","118555427106.118","129428741362.292","113392058899.399","105768588968.717","88741574558.5403","89837117225.525","97734377443.539","120193776516.117","118824196639.473","113072446160.579","114441906287.448","105175193365.344","113677357580.153","106150702747.311","112865519404.525","128956495482.315","138357429311.628","140027795922.529","151818507024.967","151566951505.247","138118261029.121","144762565892.46","146300484720.485","144046966728.264","138439375402.521","150073817187.852","153580348340.453","162919346180.766","182505419114.139","205663770687.142","201808492128.881","237709463627.506","253360217595.051","251885187630.535","267292961817.545","255526072315.026","",
"Brazil","BRA","Gross fixed capital formation (annual % growth)","NE.GDI.FTOT.KD.ZG","","","","","","","","","","","","15.3484632552328","16.7146909135573","20.9906713668284","13.2586211181577","9.73434430746775","7.02719777232592","-1.17063631965645","4.74768698844348","3.88568400023381","9.1715027490401","-12.3903564958603","-6.72310742452042","-16.098365853413","1.23453147235068","8.79064295684029","22.980040043282","-1.13947653226427","-4.84055490511366","1.21113513801956","-8.09730737867062","8.08381134634688","-6.62106772453424","6.3257392399926","14.2567687303309","7.29000411662292","1.20728364151546","8.42026472298514","-0.165694897578732","-8.8731021786502","4.81059116573918","1.06237328589968","-1.54033528769676","-3.89289094599322","8.40399759931232","2.33653759083903","6.08085470649525","12.0219442273243","12.6891309230219","-1.87455405751807","17.7896237764351","6.58398438527041","-0.582186887317064","6.11698303181296","-4.40224442218984","",
"Brazil","BRA","Gross fixed capital formation (constant LCU)","NE.GDI.FTOT.KN","","","","","","","","","","","77455103500","89343271600","104276723300","126165107600","142892861200","156802544300","167821369200","165856791300","173731152600","180481796200","197034689100","172621388700","161015867300","135094943900","136762733500","148785057100","182975922800","180890955100","172134829100","174219614500","160112516800","173055710600","161597574800","171819816000","196315769800","210627197500","213170065200","231119549000","230736595700","210263101800","220378000000","222719237000","219288614000","210751947400","228463536000","233801672400","248018812400","277835495700","313090405500","307221356600","361874880100","385700665700","383455167000","406911054500","388997835300","",
"Brazil","BRA","Gross fixed capital formation (% of GDP)","NE.GDI.FTOT.ZS","","","","","","","","","","","18.8338513008119","19.7728644424164","20.2955930415807","21.476563840745","22.8133607429785","24.3649673409771","22.4901401848947","21.3664458010275","22.2072175233127","22.98367125802","22.9023178396745","22.9373713587194","21.4360659128008","18.1301221743738","16.8864041257774","16.9483583877859","19.0931088921319","22.3046838854517","22.7179885288334","26.9027870631375","20.6601649173853","18.1086819493746","18.4233370381996","19.2831168240093","22.8043082838893","20.1393926364626","18.6480963610485","19.1321703381812","18.5496801642172","17.0138160924381","18.3285275749619","18.4364884196004","17.9555426798723","16.670145209291","17.3844963891959","17.215536326699","17.2603807283752","18.0687416736601","19.4901738679916","19.2054562051143","20.5913809050294","20.6385028681541","20.2101591417105","20.5334528728554","19.7439857887408","",
"Brazil","BRA","Changes in inventories (current US$)","NE.GDI.STKB.CD","","","","","","","","","","","723031940.384339","661824595.725197","512345519.879448","1401277946.94908","2707598495.86891","3060453482.11293","955872029.325861","1237957021.66813","1538143539.70821","-493173965.739235","1043878476.77107","386773598.172949","-964202698.415375","-2944008088.45617","-2395088005.1334","5021552447.45011","0","-68458.6400280407","1783540.22173365","0","-2280000000","10010000000","2048125000","6843850931.67702","1055842327.54575","-7556935817.80538","-9251815739.72739","-9574211502.78293","-753123653.597587","4340111313.16471","5197594971.30364","2424538729.69986","-2054317786.34549","2161845953.85115","4381880341.88034","1975846204.40355","8678343217.02754","26838888603.5643","39138946449.9945","-4156246874.06222","26610391086.8577","30591822094.6915","3215401157.13481","3692314827.69816","7924704682.5869","",
"Brazil","BRA","Changes in inventories (current LCU)","NE.GDI.STKB.CN","","","","","","","","","","","0.0012070006","0.0012720004","0.0011050012","0.0031200014","0.0066820011","0.0090399981","0.0037079901","0.0063640028","0.0101020038","-0.0048300028","0.0199999809","0.0130910873","-0.06291008","-0.6174497604","-1.6087303162","11.323600769","0","-0.0009765625","0.169921875","0","-57000","1001000","3277000","220372000","675000000","-6935000000","-9299000000","-10321000000","-874000000","7876000000","9509000000","5703000000","-6021000000","6652000000","12817000000","4810000000","18878000000","52258000000","71773000000","-8310000000","46813000000","51174000000","6280000000","7961000000","18650000000","",
"Brazil","BRA","Changes in inventories (constant LCU)","NE.GDI.STKB.KN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","0","0","0","0","0","9509000000","0","0","0","0","0","0","0","0","0","0","0","0","0","","",
"Brazil","BRA","Gross capital formation (current US$)","NE.GDI.TOTL.CD","2984287125.54907","3254003977.98811","3906482215.26138","4433909873.4278","3945920611.76361","4363220210.12389","5383556739.78939","5175745046.02096","6408490804.50458","8372887332.97774","8694949202.08942","10390955066.7027","12393184513.7359","18427695392.8517","26692655164.1699","33202202646.7511","35293372834.9106","38879499001.1146","46130434386.0675","51213073778.9867","54869959137.338","60840759336.8964","59417401686.2414","33915348956.0437","32901534612.3669","42806695570.1552","51195732297.9863","65594463167.8794","75061422882.2044","114497000000","93160000000","119180000000","75851875000","91265062111.8013","128329422806.194","150666884602.811","149910456670.978","160000000000","160045669969.841","106747120736.21","125655643618.475","105597313153.643","89299873758.9136","95349366265.8434","120795897435.897","155556194544.857","199889210683.584","279067330902.368","369416512160.541","315535160548.164","481563210550.25","570337159253.945","490913931698.326","494869440192.941","471133254015.467","",
"Brazil","BRA","Gross capital formation (current LCU)","NE.GDI.TOTL.CN","0.0002027979","0.0003186824","0.0005504513","0.000926077","0.0017942117","0.0030129999","0.004346","0.005012","0.0079100002","0.0124009997","0.0145150004","0.019971","0.0267290007","0.0410300009","0.0658740029","0.0980729982","0.1369089931","0.1998690069","0.3029690087","0.5015659928","1.0512700081","2.0592710972","3.8767299652","7.1131000519","22.0992698669","96.5290985107","254.2380065918","935.7050170898","7151.2700195313","114497","2329000","11918000","121363000","2938735000","82041000000","138267000000","150675000000","172480000000","185733000000","193714000000","229887000000","248386000000","261729000000","293390000000","353328000000","378686000000","434819000000","543372000000","677436000000","630881000000","847166000000","954060000000","958804000000","1066988000000","1108765000000","",
"Brazil","BRA","Gross capital formation (constant 2005 US$)","NE.GDI.TOTL.KD","20334590037.378","22238575656.2954","23304749189.228","21096143939.0931","22923972238.3705","25285194322.474","26162291451.8305","23344464371.0104","29085279889.0471","37711758209.466","37697179411.5478","43131292470.3785","48450885585.2114","60631788676.74","72214168973.5311","80315544235.7057","75948006704.5914","75847835552.5589","81506581526.7779","86230742256.6237","96492730766.049","91216768323.4032","83835533516.2068","64040748687.9092","63610440816.6982","83759194560.3933","89943038536.3185","108854083873.585","110760057443.867","124663065603.74","97176596547.7293","115139842708.807","107516355745.135","114317560049.915","130615550204.388","140137429191.238","141829285449.504","153771686739.071","153516894900.223","139895183954.235","152951630021.503","148182673819.292","145900163804.201","140220429537.278","152004551069.336","155556194544.857","165015340722.083","184853392950.221","208309681997.323","204404804401.239","240767650085.177","256619754571.568","255125748010.187","270731746725.756","258813473506.424","",
"Brazil","BRA","Gross capital formation (annual % growth)","NE.GDI.TOTL.KD.ZG","","9.36328500066938","4.7942527858381","-9.47706080079087","8.66427677282896","10.3002309527807","3.46881704040108","-10.770566813722","24.5917637123675","29.6592584060621","-0.0386584943541095","14.4151714893716","12.3334887738091","25.1407233209512","19.1028180919136","11.2185397648818","-5.43797290135599","-0.13189437929833","7.46065584204804","5.79604817347632","11.9006148397581","-5.46773047125964","-8.0919714026995","-23.6114497016601","-0.671928233237821","31.675230488901","7.38288376384328","21.0255797947388","1.75094355898989","12.5523663319866","-22.0486067167483","18.4851567138957","-6.62106772453424","6.3257392399926","14.2567687303309","7.29000411662292","1.20728364151546","8.42026472298514","-0.165694897578732","-8.8731021786502","9.33302040729241","-3.11795055831779","-1.54033528769676","-3.89289094599322","8.40399759931232","2.33653759083903","6.08085470649525","12.0219442273243","12.6891309230219","-1.87455405751807","17.7896237764351","6.58398438527041","-0.582186887317064","6.11698303181296","-4.40224442218984","",
"Brazil","BRA","Gross capital formation (constant LCU)","NE.GDI.TOTL.KN","30562981900","33424681000","35027144700","31707600900","34454835200","38003762800","39322043800","35086836800","43715308800","56680945200","56659033200","64826530000","72821902800","91129855900","108538226500","120714630600","114150201700","113999644000","122504765100","129605200300","145029016000","137099220300","126005190600","96253538400","95606783700","125890452800","135184798600","163608186300","166472873300","187369158200","146056869400","173055710600","161597574800","171819816000","196315769800","210627197500","213170065200","231119549000","230736595700","210263101800","229887000000","222719237000","219288614000","210751947400","228463536000","233801672400","248018812400","277835495700","313090405500","307221356600","361874880100","385700665700","383455167000","406911054500","388997835300","",
"Brazil","BRA","Gross capital formation (% of GDP)","NE.GDI.TOTL.ZS","19.6780413974776","21.3561394920416","19.6046602886702","19.2598842252764","18.6023979539362","20.0239246364581","19.8928911082915","16.9187144415426","18.9175615498156","22.3521986110469","20.5420321064948","21.1179144400702","21.17081373715","23.2440898268721","25.388690127755","26.83887314599","23.1162106570636","22.0691465995739","22.9732218599383","22.7644531016857","23.3464749539881","23.084120487215","21.093764431958","16.6820441120892","15.7405601052384","19.2007534697913","19.0931088921319","22.3046606068599","22.7185283455265","26.9027870631375","20.166606912234","19.7691006203762","18.9346023488561","20.8463587533397","22.9934893680231","19.1775140953002","17.5641161638828","18.051962188005","18.4628001411552","17.7348786068003","19.1193776993406","18.869742061005","17.5517692999451","17.0568738812222","18.0388573062304","17.4370181274335","18.0437645914478","19.9913834684005","21.7998217233623","18.9557697404042","21.7957798568758","21.8082571292401","20.3434049175754","20.6878085392556","20.0817531373296","",
"Brazil","BRA","Imports of goods and services (current US$)","NE.IMP.GNFS.CD","1079376914.93865","1118302726.08473","1033970196.04432","2097486800.99115","1204326396.14961","1210637974.35359","1621508461.2021","1764834054.99797","2239326014.7452","2454948720.19931","3153304260.31533","4004245613.85253","5177234171.78625","7532763884.77189","14596797400.1872","14233481672.8226","14401534168.3917","13948797699.9376","15791774010.8349","20642227950.3886","26571483279.6605","25827534749.1203","23307743170.8143","18314364418.7078","16563864377.3291","15818492271.929","17038985216.6532","18211636976.1514","18807996682.1739","23242900390.625","32160000000","47710000000","33590625000","39822360248.4472","53957453464.727","72751443826.9587","75743707093.8215","84730983302.4119","81269280482.5506","68441615694.0541","81620661382.8915","81481166567.4688","68015967791.4634","72367890802.7299","87912820512.8205","105617811370.358","129258033374.707","167182990087.823","232751117897.263","187616785035.511","260188153706.23","320105810616.93","321183759152.117","343412179397.987","334888671709.017","",
"Brazil","BRA","Imports of goods and services (current LCU)","NE.IMP.GNFS.CN","7.33493E-05","0.0001095215","0.0001456938","0.0004380861","0.0005476077","0.000836","0.001309","0.001709","0.0027640001","0.003636","0.005264","0.0076959999","0.0111659998","0.0167720001","0.0360229984","0.0420430005","0.0558659993","0.0717070028","0.1037150025","0.2021639943","0.5090910196","0.8741819859","1.5207300186","3.8410899639","11.1255998611","35.6707000732","84.6156005859","259.7890014648","1791.8800048828","23242.900390625","804000","4771000","53745000","1282280000","34495000000","66764000000","76130000000","91340000000","94313000000","124201000000","149325000000","191660000000","199348000000","222676000000","257145000000","257116000000","281175000000","325522000000","426819000000","375121000000","457723000000","535473000000","627304000000","740431000000","788127000000","",
"Brazil","BRA","Imports of goods and services (constant 2005 US$)","NE.IMP.GNFS.KD","9385320577.28774","9057919948.82328","8948834344.38825","8730590559.03079","7639231094.73192","6547871563.54227","8621339333.04478","9276132964.42572","11458686070.8002","12768274336.9236","15823933824.4222","19700332044.9448","23645721608.1756","28469854103.4163","36580513631.7489","34925334795.1312","34491278904.6436","31879306040.2843","33339929856.361","36076396815.1121","36320537162.1001","31832363501.3404","29912568851.814","24697972111.8162","23971549032.578","23971549032.578","30846531654.4337","29938468289.7477","29601225286.2297","32247440807.5987","35493588824.9482","42122993617.1298","44028350963.8152","55820790480.3501","67176667776.0688","87791082753.1447","92702407636.9914","106233206337.148","106171403812.576","90147466781.1407","99884644992.2235","103208829523.116","89476844050.6299","89045541651.8727","98276465551.7058","105617811370.358","124375522070.509","148691511286.088","174006859736.246","160764034303.821","214842520784.173","235084806009.48","236648277263.504","254511824367.568","251881931532.334","",
"Brazil","BRA","Imports of goods and services (annual % growth)","NE.IMP.GNFS.KD.ZG","","-3.48843308833546","-1.20431186245141","-2.43879567951016","-12.5004082704346","-14.2862484150042","31.6662865082344","7.59503374227688","23.5286957910652","11.4287821311436","23.9316559690619","24.497057833621","20.027020632087","20.4017139979046","28.4885883112389","-4.52475559331985","-1.24281096525995","-7.57285014446843","4.58173027427566","8.20777659263425","0.676731515730907","-12.3571235764735","-6.03095227109209","-17.4327947754363","-2.94122560325752","0","28.679759545419","-2.94381026320477","-1.12645376595154","8.93954725110669","10.0663740627273","18.6777528327083","4.52331893598034","26.7837410631767","20.3434548274914","30.6868674191959","5.59433228276345","14.5959517611897","-0.0581762771761731","-15.0925168699122","10.8013886121977","3.32802357274402","-13.305049128002","-0.482026834242347","10.3665200172758","7.4700954877035","17.7599880709281","19.55046202885","17.0254160652454","-7.61051917866767","33.6384233666041","9.42191757545119","0.665066909496986","7.54856418590066","-1.03330870452444","",
"Brazil","BRA","Imports of goods and services (constant LCU)","NE.IMP.GNFS.KN","14030815200","13541359600","13378279400","13052010500","11420455900","9788901200","12888682700","13867582500","17130443800","19088244900","23656378000","29451494600","35349751500","42561706700","54686936100","52212485900","51563583400","47658750500","49842345900","53933294300","54298277900","47588572600","44718528500","36922839200","35836855200","35836855200","46114779100","44757247500","44253077800","48209102600","53062011200","62972802500","65821263200","83450659900","100427407200","131245432500","138587738100","158815937500","158723544300","134768166600","149325000000","154294571200","133765602700","133120816600","146920812700","157895937700","185938237400","222290021900","260135823000","240338136300","321184096100","351445796900","353783146600","380488694500","376557071700","",
"Brazil","BRA","Imports of goods and services (% of GDP)","NE.IMP.GNFS.ZS","7.11728554327239","7.33945907077904","5.18897394767796","9.11100002127562","5.6776000056402","5.55592484290456","5.99166922704867","5.7689710655619","6.61038441129829","6.55371309699865","7.44975914768755","8.13797343242644","8.844075564518","9.50158099803278","13.8837280806904","11.5055803106496","9.43261782257726","7.91774763658594","7.86439435789246","9.17556778799975","11.3058307064925","9.79944909521963","8.27447902353463","9.00834119424021","7.92438729311929","7.09531456076386","6.35457655453407","6.19266264606477","5.69253804870036","5.46126798028507","6.9617655463444","7.91394353581263","8.38509433055603","9.09604605458896","9.66785406991572","9.26010943362206","8.87443944620141","9.55975316704763","9.37518949089698","11.3708335889156","12.4191497342348","14.560300352726","13.368446394574","12.9457597340572","13.1283169236817","11.8391922406775","11.6679710615229","11.9763902619212","13.7349920998349","11.2710753704584","11.7762395367954","12.2400403221659","13.3098102202481","14.3562015360337","14.2744150968548","",
"Brazil","BRA","External balance on goods and services (current US$)","NE.RSB.GNFS.CD","-8832286.39327408","-9149902.73913831","-263069676.369544","-17161538.9976371","150139738.736652","474987147.832509","225450250.410952","0","-206594912.095925","24981601.3881669","-177912553.313845","-848612874.357427","-927784676.017155","-975055646.878116","-6172123572.14926","-4907560235.7633","-3659545985.35254","-1172207021.18182","-2387152105.92509","-4615615400.08842","-5295341312.05211","-999146350.182735","-1872613597.52443","4906714630.16912","11753827695.2235","11487450779.4235","6601570980.52759","9608553068.45426","17166386286.1892","14761099609.375","5720000000","4600000000","9947500000","6160807453.41614","-15642108.5562334","-14829464966.7647","-18508606108.8449","-23051020408.1633","-20544592847.9104","-11110927426.0208","-14845586225.7447","-12277442394.3542","4270360640.07643","12389665258.3685","22830769230.7692","30300279329.6089","29957706982.9449","19015972471.8813","-3238630166.86662","-6722516755.02651","-22995111414.2792","-20128527020.5644","-32630689672.8278","-55893511432.6794","-64679612475.5673","",
"Brazil","BRA","External balance on goods and services (current LCU)","NE.RSB.GNFS.CN","-6.00200000000001E-07","-8.96100000000007E-07","-3.70684E-05","-3.58440000000003E-06","6.82686E-05","0.000328","0.0001819999","0","-0.0002550001","3.70000000000001E-05","-0.0002970001","-0.001631","-0.0020009996","-0.0021710004","-0.0152319986","-0.0144960005","-0.014196001","-0.0060259998","-0.0156780034","-0.0452039987","-0.1014550328","-0.0338180066","-0.122179985","1.0290901661","7.8947992325","25.9042015076","32.7834014893","137.0660095215","1635.4801025391","14761.099609375","143000","460000","15916000","198378000","-10000000","-13609000000","-18603000000","-24849000000","-23842000000","-20163000000","-27160000000","-28879000000","12516000000","38123000000","66780000000","73763000000","65167000000","37026000000","-5939000000","-13441000000","-40453000000","-33671000000.0001","-63731000000","-120512000000","-152217000000","",
"Brazil","BRA","External balance on goods and services (constant LCU)","NE.RSB.GNFS.KN","-7402397696","-6568656384","-6922042368","-4788029952","-4275572224","-2385597920.24742","-4624535124.67946","-5861710752.38807","-7833268775.5369","-7983289671.8212","-11862762211.4893","-17008053070.1916","-19899580254.5792","-24909148789.8229","-36622405104.1343","-32057451112.5469","-31473171828.125","-27639524239.1351","-27170222855.6301","-29152703872.6282","-23913741870.5224","-10725976370.6757","-11244002867.8359","1349275342.1825","10837753487.642","14117441045.2521","-1445923939.375","8503797588.74519","15973955149.827","15080785300.0476","7112840582.0505","5728042743.25656","13694493140.1415","6077420895.92494","-6324326251.48979","-36671445614.0128","-43839473358.2026","-53262881399.2838","-48563254497.9673","-20716701507.9779","-20801000000","-11078643876.6156","15150902875.5174","31625745270.2293","38888028315.0843","43706293948.4843","25812772153.008","3131993683.60104","-28374400871.9932","-29535779593.3629","-88106353320.6799","-108269740849.781","-107849921998.231","-130283329746.219","","",
"Brazil","BRA","External balance on goods and services (% of GDP)","NE.RSB.GNFS.ZS","-0.0582390668087098","-0.0600511248779933","-1.32021377630418","-0.0745457764495622","0.707809265182079","2.17983654123528","0.833065851914389","0","-0.60985840265328","0.0666906998319447","-0.420322798601656","-1.72466668928719","-1.584899873182","-1.22990317340635","-5.87060866892905","-3.96700749119861","-2.39690426591769","-0.665379165373752","-1.18881548965859","-2.05166283836381","-2.25310088176313","-0.379094787497041","-0.664796321906626","2.41348039827048","5.6231976253697","5.15264510549728","2.46201212352439","3.26728057162943","5.19567866499249","3.46834169985919","1.23822446906374","0.763029559101616","2.48315492353019","1.40722418209537","-0.00280268272790715","-1.88755660658682","-2.16854324205549","-2.60072593001934","-2.37001545748694","-1.84596031958926","-2.2588589103085","-2.19392107840121","0.839333602917952","2.21636457607224","3.40939549345103","3.39649939034947","2.70424707092118","1.36223611871976","-0.19111641721882","-0.403855086903509","-1.04076967506982","-0.769664199105553","-1.35221123274621","-2.33660470659724","-2.75692704703423","",
"Brazil","BRA","Trade (% of GDP)","NE.TRD.GNFS.ZS","14.1763320197361","14.6188670166801","9.05773411905174","18.1474542661017","12.0630092764625","13.2916862270444","12.8164043060117","11.5379421311238","12.6109104199433","13.1741168938292","14.4791954967734","14.5512801755657","16.103251255854","17.7732588226592","21.8968474924518","19.0441531301006","16.4683313792368","15.1701161077981","14.5399732261263","16.2994727376357","20.358560531222","19.2198034029422","15.8841617251626","20.4301627867509","21.4719722116083","19.343274227025","15.1711652325925","15.652605863759","16.5807547623932","14.3908776604293","15.1617555617526","16.5909166307269","19.2533435846423","19.5993162912733","19.3329054571035","16.6326622606573","15.5803356503473","16.5187804040759","16.380363524307","20.895706858242","22.579440558161","26.9266796270509","27.5762263920659","28.1078840441866","29.6660293408145","27.0748838717045","26.040189193967","25.3150166425622","27.278867782451","22.1382956540133","22.5117093985209","23.7104164452262","25.2674092077499","26.3757983654702","25.7919031466753","",
"Brazil","BRA","Agriculture, value added (current US$)","NV.AGR.TOTL.CD","2679301006.89669","2604792800.57867","3095469467.44058","3482148271.75638","3359593665.25553","3633362054.60904","3603489773.5958","3980945162.09314","4006319533.33873","4148971365.68338","4390904238.75018","5419467730.85808","6479656891.15567","9074168979.6725","11805727206.0522","13215473676.3705","17488792499.4264","22780422683.1598","20635507897.7901","22271744190.9144","23384778420.9235","25397776715.1497","22711381551.5812","19977112648.1064","21839449808.1673","23417382758.3592","26626058417.942","26493865934.7073","30206070508.5321","35927000000","31751335800","40927000000","27160437500","28735214285.7143","47642734240.5756","38743598125.7492","40588001193.911","41414656771.7996","41062473071.9517","27871824544.0018","31162612735.7201","26894396734.9715","27939881947.5247","34431264218.3945","37961025641.0256","41435672034.1768","48408035673.2405","61735914950.4391","77282691678.4818","74746924077.2232","91134038199.1814","113922764227.642","107734370999.949","114541069523.677","111475312314.099","",
"Brazil","BRA","Agriculture, value added (current LCU)","NV.AGR.TOTL.CN","0.0001820725","0.0002551016","0.0004361738","0.0007272898","0.0015276086","0.002509","0.002909","0.003855","0.0049450002","0.006145","0.0073299999","0.0104160002","0.013975","0.0202040002","0.029135","0.0390359983","0.0678419992","0.1171080023","0.1355269998","0.2181230038","0.4480359852","0.8596360087","1.4818199873","4.1898198128","14.6690998077","52.8061981201","132.2250061035","377.9349975586","2877.8000488281","35927","793783.395","4092700","43456700","925273900","30458000000","35555000000","40795000000","44645000000","47653000000","50579000000","57012000000","63261000000","81889000000","105945000000","111036000000","100871000000","105302000000","120206000000","141721000000","149449000000","160323000000","190570000000","210416000000","246962000000","262346000000","",
"Brazil","BRA","Agriculture, value added (constant 2005 US$)","NV.AGR.TOTL.KD","","","","","","11570581237.4197","9875895179.41861","10752477203.2642","11278401414.4272","11687453431.505","11804325625.5902","13003247702.4253","13519453107.3142","13523516665.3195","13657395892.2225","14642094978.7303","14999371772.1172","16818763805.3058","16352196379.2857","17132097889.2475","18768053853.0771","20263890975.2939","20164444107.0721","20048075027.8463","20723629640.6586","22788242631.9507","20960179195.0494","24098256754.0493","24300833415.647","24993479998.2597","24068629352.4597","23201417806.8827","24462944025.6505","24704303892.4816","26542567886.7061","28065099522.1039","28778929445.7852","29012910217.8973","30001927846.1117","31959624985.2223","32830015304.5748","34570483835.8586","37343860821.262","40351014442.0972","41160243857.21","41435672034.1768","43429689033.2695","44838372346.3348","47300179576.0765","45511417776.7172","48602721259.1518","51344169137.1112","50054704927.7356","54000976188.919","54228736176.4186","",
"Brazil","BRA","Agriculture, value added (annual % growth)","NV.AGR.TOTL.KD.ZG","","","","","","","-14.6465075801071","8.8759753715529","4.89119112945767","3.62686166281088","0.999979976563509","10.1566333805295","3.96981905368585","0.0300571182360017","0.989973467820946","7.21000617012592","2.44006608279696","12.1297882393367","-2.77408869891489","4.76939911845591","9.54906967264277","7.97012377482899","-0.490758997583853","-0.577100358471554","3.3696732073971","9.96260320750702","-8.02195880755733","14.9716160811312","0.840627866427297","2.85029970275292","-3.70036763933797","-3.60307823464994","5.43728072684257","0.986634587309084","7.44106776788756","5.73618815593349","2.54347903922117","0.813028061217238","3.40888804599912","6.52523780855752","2.72340592154923","5.30145513225287","8.02238406199788","8.05260504592233","2.00547477257112","0.66916070255148","4.81231967819413","3.2435952096876","5.49040275308504","-3.78172306192262","6.79236910966114","5.64052342530761","-2.51141313813477","7.88391674045559","0.421770130048628","",
"Brazil","BRA","Agriculture, value added (constant LCU)","NV.AGR.TOTL.KN","","","","","","20093258300","17150297700","18672553900","19585864200","20296216400","20499174500","22581200500","23477633300","23484690000","23717182200","25427192500","26047632800","29207155500","28396923100","29751285700","32592256700","35189899900","35017202300","34815117900","35988273600","39573642500","36399061200","41848588900","42200379800","43403217100","41797138500","40291154900","42481898100","42901039200","46093334600","48737335000","49976958900","50383285600","52100795400","55500496200","57012000000","60034465600","64850661000","70072828600","71478121500","71956425000","75419198200","77865491700","82140620800","79034290000","84402590700","89163338600","86924078800","93777100800","94172624600","",
"Brazil","BRA","Agriculture, value added (% of GDP)","NV.AGR.TOTL.ZS","20.5928142730549","19.4966100109382","17.3504902146029","16.7939143524218","17.2861178589759","18.7099178321408","15.6929386167442","15.1087599084952","14.0502916032065","13.2159068289107","12.3452631350178","12.8592594744216","12.9946815488238","13.3574872189363","12.9202344446186","12.0988963208451","13.0043989483722","14.674985881263","11.611292269077","11.0160910307554","11.0136677198598","10.7356942354276","8.96790058440956","10.9379065916486","11.4608613294492","11.5409003318003","11.1571893646165","10.0097597018946","10.1155387647515","8.51887682757378","8.1","7.78998058548099","7.71999755556298","7.55999972285483","9.85026357491672","5.77125039159448","5.43649186025437","5.31413444301872","5.38101147613364","5.34388890238916","5.51047155841997","5.6433454893201","6.43472862856649","7.19327012190775","6.67711004940061","5.47032269540469","5.13758263032404","5.18733679800216","5.40053082743155","5.25323060905193","4.85264512942112","5.1244418964603","5.26773136512742","5.62929214093722","5.55947007175185","",
"Brazil","BRA","Manufacturing, value added (current US$)","NV.IND.MANF.CD","3852188024.9444","4193057035.9607","4772116035.59079","6257148156.92859","5172614043.19552","5087286129.07197","6341101585.21343","6868292262.30246","8083123875.88107","9057518719.32158","10427349463.2674","12302545578.472","14659092894.4013","20247558633.575","27916785406.0384","33056629539.4761","40879104318.7074","45552868289.134","54595852921.7408","62757114219.2285","71097586790.7491","77880098856.9116","87523772929.0972","60618125231.3678","64546457186.9896","68476275594.1463","78679017563.5723","84582540924.5776","92434063038.503","124533000000","","133149000000","86744312500","94847826086.9565","129574534647.27","124971123460.826","110243756840.115","114066790352.505","104152520465.317","73190058962.914","85403662202.7877","72206019896.2673","62588965846.6683","80925576860.5785","101633504273.504","132051018731.515","156913529168.391","197489086333.522","237653506380.194","218505051515.455","281010118235.562","308287900526.064","241517075418.565","234715922267.056","218798759241.948","",
"Brazil","BRA","Manufacturing, value added (current LCU)","NV.IND.MANF.CN","0.0002617763","0.000410649","0.0006724253","0.0013068829","0.0023519897","0.003513","0.0051190001","0.0066510001","0.0099769998","0.0134150004","0.0174070001","0.0236450005","0.0316159986","0.0450819992","0.0688949972","0.0976430029","0.1585769951","0.2341749966","0.3585669994","0.6146249771","1.3621799946","2.635999918","5.7105498314","12.7135000229","43.3544998169","154.4140014648","390.7200012207","1206.5699462891","8806.400390625","124533","","13314900","138790900","3054100000","82837000000","114686000000","110806000000","122964000000","120869000000","132818000000","156246000000","169843000000","183442000000","249008000000","297278000000","321465000000","341334000000","384531000000","435809000000","436879000000","494353000000","515704000000","471707000000","506071000000","514921000000","",
"Brazil","BRA","Manufacturing, value added (constant 2005 US$)","NV.IND.MANF.KD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","110529206867.875","105545896052.353","101101660408.37","110482194478.55","119470958902.219","125366309608.918","111427133721.385","114205466546.321","108676615107.656","106652403338.084","112720481087.777","113370186686.86","115912860798.652","118751687006.152","129090231468.281","132051018731.515","134149172989.706","141985477806.897","147394257397.385","133551046861.841","146218552753.742","149504352973.876","148142096821.391","151128134840.219","145425160825.243","",
"Brazil","BRA","Manufacturing, value added (annual % growth)","NV.IND.MANF.KD.ZG","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","-4.50859185253944","-4.21071383180922","9.27831850860872","8.13593942996265","4.93454707392458","-11.1187574484852","2.4934077833161","-4.84114430408835","-1.86260104583405","5.68958369410339","0.576386467493563","2.2428066726349","2.44910373873965","8.70601902404499","2.29357963771331","1.58889668428644","5.84148574497164","3.80938929391313","-9.39196056887185","9.48514159159319","2.24718420354542","-0.911181597985461","2.01565799519341","-3.7736017989006","",
"Brazil","BRA","Manufacturing, value added (constant LCU)","NV.IND.MANF.KN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","153208594300","146301044100","140140725800","153143428700","165603085300","173774847500","154453243700","158304392900","150640648800","147834814500","156246000000","157146580800","160671074800","164606076100","178936712400","183040768400","185949097100","196811287100","204308595200","185120012500","202678907800","207233476200","205345202900","209484259900","201579158100","",
"Brazil","BRA","Manufacturing, value added (% of GDP)","NV.IND.MANF.ZS","29.607495514081","31.384606777777","26.7483021394257","30.1773508871493","26.6146519188863","26.1968678135953","27.6150410272972","26.0670204052601","28.3477757018358","28.8513255323352","29.3170531456326","29.1913585698979","29.3981991881974","29.8050990970639","30.5522401196272","30.2636699454686","30.3970775129288","29.344832986275","30.7202714899866","31.0410391364213","33.4852519233868","32.9200834281666","34.5599624847981","33.1897508524288","33.872556388791","33.7474891997839","32.9690817994762","31.9564880307468","30.9547164562618","29.5288025153296","","25.3433705127717","24.6559312772112","24.953686852694","26.7898838976747","18.6157115007848","14.766415420207","14.6365153466537","13.648615535408","14.0327929820187","15.1018932701341","15.1512421229919","14.4146282050275","16.9067139224693","17.87670594461","17.4333285610162","16.6533553924809","16.5939454459226","16.6072772515867","15.3565840872271","14.9630413456879","13.8673200596745","11.8091103293008","11.5354649826947","10.9118793075425","",
"Brazil","BRA","Industry, value added (current US$)","NV.IND.TOTL.CD","4822690307.91158","5577261388.21488","5946175638.88398","8003875297.24114","6793159554.0568","6520936506.67227","8065425203.12212","8919175866.90115","10396175889.168","11729198833.2917","13622585421.9581","16100750952.153","19166337452.185","26496716609.6275","36606872242.0549","43881294192.9237","53406528922.4241","59989144498.933","71325709050.1031","82157935532.0915","93051936803.5367","103428380079.121","115451747816.331","80274258180.7172","87112445817.7195","91942790976.6297","107772919327.99","121435683792.282","130331771193.478","179958000000","151661627420","189977000000","136154062500","158157714285.714","193480369153.762","184786967418.546","188729479653.766","198230983302.412","189809564842.74","129504050256.241","149819076250.342","125454893291.387","113895390494.387","129057198570.036","163235213675.214","216777850805.127","261533121868.248","323010631195.111","392673683062.493","365514654396.319","513738062755.798","603985533237.685","518645742665.506","496073929780.622","469415314013.767","",
"Brazil","BRA","Industry, value added (current LCU)","NV.IND.TOTL.CN","0.000327727","0.0005462117","0.0008378587","0.0016717085","0.0030888524","0.0045030001","0.006511","0.0086369999","0.0128319999","0.0173719991","0.0227409992","0.0309449993","0.0413369983","0.0589959994","0.0903410018","0.1296170056","0.2071730048","0.3083879948","0.4684430063","0.8046309948","1.7828099728","3.5007300377","7.5327301025","16.8360004425","58.5116004944","207.3309936523","535.2003173828","1732.2800292969","12417","179958","3791540.6855","18997700","217846500","5092678400","123692000000","169579000000","189692000000","213693000000","220274000000","235011000000","274094000000","295095000000","333816000000","397109000000","477463000000","527724000000","568913000000","628934000000","720085000000","730810000000","903768000000","1010347000000","1012967000000","1069585000000","1104722000000","",
"Brazil","BRA","Industry, value added (constant 2005 US$)","NV.IND.TOTL.KD","","","","","","41154726110.54","45436156729.6059","46704310887.5081","53023227466.3019","59356065119.4153","64634118368.4016","72288657151.1128","82655730963.0811","96815922688.1455","104898404002.749","109912578527.305","122786366001.399","126601145502.567","140817933243.782","150389580159.407","164319904542.668","149781087275.439","149815554694.48","141059040658.499","150370407162.47","162804830735.694","181955233340.716","183869578142.148","179115881819.644","184266651567.777","169153257443.565","161977205558.964","155483043502.472","167674618907.266","181171074338.198","189756618043.184","186341802156.821","193523971385.516","189904088765.392","185688447168.488","194034220419.906","196918276818.258","192487797613.646","193072084747.376","210555307278.906","216777850805.127","227570846416.384","246231062899.16","259515185029.147","253273828691.223","281347227010.492","287890358684.672","292411862672.522","302624249739.96","297326718030.342","",
"Brazil","BRA","Industry, value added (annual % growth)","NV.IND.TOTL.KD.ZG","","","","","","","10.4032538269509","2.79106827949612","13.5296216959791","11.9435159942652","8.89218858825573","11.8428764496823","14.3412178625712","17.1315304578085","8.3482975632412","4.78002937434945","11.7127517583409","3.10684290560755","11.2295885513347","6.79717894954135","9.26282550193629","-8.84787348659482","0.0230118632918845","-5.84486307435748","6.60104198958393","8.26919591950586","11.7627975278645","1.05209658787172","-2.58536315280442","2.87566333917817","-8.20191499418065","-4.24233738862233","-4.00930614531924","7.84109645023794","8.0491940395557","4.7389152690898","-1.79957670071175","3.85429846956799","-1.87050864769255","-2.21987932135144","4.4945032276804","1.4863648237466","-2.24990756378665","0.303545025177726","9.05528241144017","2.95530120168263","4.97882766674354","8.19973945548081","5.39498224699099","-2.40500621850805","11.0842081332824","2.32564285196825","1.57056457482929","3.49246674676638","-1.75053113363212","",
"Brazil","BRA","Industry, value added (constant LCU)","NV.IND.TOTL.KN","","","","","","58135433400","64183410100","65974812900","74900955500","83846763100","91302575400","102115426600","116760022400","136762801200","148180166800","155263222300","173448818100","178837600400","198920327100","212441297700","232119364400","211581736700","211630425600","199260917000","212414213800","229979161300","257031144400","259735360300","253020258000","260296268800","238946990100","228810052600","219636357100","236858255700","255923436300","268051431100","263227640000","273373218900","268259749200","262304706500","274094000000","278168036800","271909513100","272734880900","297431794600","306221800000","321468055700","347827598700","366592835900","357776255400","397432920200","406675790500","413062896400","427488980700","420005653000","",
"Brazil","BRA","Industry, value added (% of GDP)","NV.IND.TOTL.ZS","37.0666698335304","41.7452360091492","33.3290518035927","38.6015717135254","34.9528450123811","33.5794188398254","35.1243462817538","33.8506764769902","36.4597235905708","37.3615494772206","38.3006306831232","38.203702745176","38.4372900960837","39.0040734583776","40.0627054476645","40.1737570567728","39.7122790826043","38.6445791983338","40.1339118078402","40.6371090185954","43.8252222961653","43.7193962388329","45.5877065145383","43.9519140308694","45.7146892598308","45.312603796855","45.1603782447068","45.8801300267628","43.6460639067222","42.6709726984308","38.69","36.1599223419239","38.70000362402","41.6100003389145","40.0025872384464","27.525885815109","25.2790541476988","25.4360696949714","24.8735005538762","24.8299229885798","26.4924435440532","26.324639780764","26.230816982422","26.962219121626","28.7120663164826","28.6189348188255","27.7567144685338","27.1408455627397","27.4401199601403","25.6884519896502","27.3551853653354","27.1683082162091","25.3594690410379","24.3802950841196","23.410568091779","",
"Brazil","BRA","Chemicals (% of value added in manufacturing)","NV.MNF.CHEM.ZS.UN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","19.2396982008125","","18.7081304002813","21.6886389746529","21.3647327280791","21.007576081913","12.8574349772703","12.6820639934997","12.9218751697678","14.4749402493959","12.3814929349407","12.0665042174359","12.0049844670409","12.0640733031385","12.0485211799601","11.2774639788282","10.7489199062417","11.196706256538","12.2124553072548","11.701149605641","11.0951512106604","11.1785952620603","","","","",
"Brazil","BRA","Food, beverages and tobacco (% of value added in manufacturing)","NV.MNF.FBTO.ZS.UN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","13.6390017411492","","16.1894232023671","15.6854167480139","16.3705875879987","16.6046027189252","20.7562316744547","21.1225813297182","20.4385108220957","19.3599475478364","16.6559215970495","18.7190295667375","18.6558103774175","19.013509739197","17.8942593545571","19.0370309622437","19.0224944787067","18.2193044520617","17.4689221007394","20.6105996490125","20.1509696091224","20.8554515689374","","","","",
"Brazil","BRA","Machinery and transport equipment (% of value added in manufacturing)","NV.MNF.MTRN.ZS.UN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","17.7597214161346","","18.0899998131394","16.5494026066352","18.1180379715206","20.3712422771541","20.3185544019886","21.0446643639984","19.6168922585166","17.6402736271194","19.1061781058777","19.8843400587786","19.6998336165551","18.5631760630766","19.8247750205785","18.9602600166926","19.6016148440838","20.6619560817779","22.1781278615573","21.7674178332147","22.5594261832733","22.590528405713","","","","",
"Brazil","BRA","Other manufacturing (% of value added in manufacturing)","NV.MNF.OTHR.ZS.UN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","37.1154962275102","","37.1960663563033","35.5167933808864","34.7658556604099","34.8121673880741","37.9428738651127","38.0058746210476","39.765104571215","41.1192101845513","44.9510315103332","42.5923987854077","43.1208409628264","44.2463620417032","44.3013876158062","45.20872740715","45.0437922934591","44.2331295259822","42.7302747964064","39.7068411897277","40.0345175864443","39.1930149130818","","","","",
"Brazil","BRA","Textiles and clothing (% of value added in manufacturing)","NV.MNF.TXTL.ZS.UN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","12.2460824143935","","9.81638022790895","10.5597482898115","9.38078605199171","7.20441153393368","8.12490508117369","7.14481569173613","7.25761717840492","7.40562839109695","6.90537585179892","6.73772737164041","6.51853057616022","6.11287885288469","5.93105682909795","5.5165176350855","5.5831784775087","5.68890368364023","5.41021993404216","6.21399172240414","6.15993541049957","6.18240985020742","","","","",
"Brazil","BRA","Services, etc., value added (current US$)","NV.SRV.TETC.CD","5508861249.27002","5178179205.8387","8799174099.86423","9248559434.5238","9282458414.84907","9265145790.64362","11293577017.9357","13448468704.4011","14111642550.4334","15515599592.1922","17554032743.0872","20624258985.6188","24217920064.9125","32362317991.1432","42961340103.0038","52131985943.578","63588345006.7927","72463445444.5186","85758087842.5497","97744976684.0145","95888361359.7574","107747055502.867","115088803320.372","82389726722.3253","81604897449.0791","87547589828.6031","104245877582.803","116750789499.264","138072753452.722","205849000000","208578836780","294475000000","188504750000","193202512422.36","242546535272.955","447790127492.645","517266938613.073","539683673469.388","532225764756.57","364187469003.141","384533479092.648","324218603860.216","292368896925.859","315171270718.232","367328888888.889","499250328623.069","632293476761.826","805380309177.751","961062275057.258","982613784135.241","1273157116871.31","1505218197034.91","1418795760585.74","1424118547377.21","1424253420582.99","",
"Brazil","BRA","Services, etc., value added (current LCU)","NV.SRV.TETC.CN","0.0003743559","0.0005071274","0.0012398666","0.0019316762","0.0042207376","0.0063980001","0.0091169998","0.0130229995","0.0174180004","0.0229799994","0.0293040001","0.0396390008","0.0522319991","0.0720559955","0.1060230024","0.1539879814","0.2466700003","0.3725150079","0.5632299632","0.9572859556","1.8371538818","3.6469038129","7.5090495348","17.2796797752","54.8122959137","197.4198150635","517.6850280762","1665.450012207","13154.5007324219","205849","5214470.9195","29447500","301607600","6221120900","155060000000","410937000000","519905000000","581779000000","617648000000","660891000000","703504000000","762627000000","856904000000","969782000000","1074437000000","1215375000000","1375428000000","1568156000000","1762396000000","1964638000000","2239738000000","2517929000000","2771050000000","3070542000000","3351838000000","",
"Brazil","BRA","Services, etc., value added (constant 2005 US$)","NV.SRV.TETC.KD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","335492463839.01","338548950112.029","348994384418.824","362603593614.457","373055029392.901","390285818350.523","400177015670.575","405909805988.969","413368720853.276","429254286451.336","433639415430.53","457597610710.98","462682964711.029","483975791769.923","499250328623.069","515074797802.195","540843980382.879","563507123942.889","568895371835.078","600109920504.981","624413718741.321","635858585825.714","647512860875.632","654052385831.649","",
"Brazil","BRA","Services, etc., value added (annual % growth)","NV.SRV.TETC.KD.ZG","","","","","","","7.57774307507013","4.97313030630475","11.983896977096","10.5134287190917","12.9489837424054","11.2492965229296","12.7584193010105","15.4556466794169","11.5712460667996","4.97215973718338","10.0020849340415","4.22273368957282","-2.03599865370795","7.15656592031471","9.83925858537415","-3.21511834541514","1.30879886478719","-2.11186205520853","4.68439159043778","7.19796687582868","9.03967074260154","3.30637126966771","1.65870393435709","3.69472591228663","","","0.911044688767078","3.08535421638088","3.89954962120574","2.8823309979536","4.61883304070791","2.53434710024969","1.43256361407656","1.83757937213007","3.84295298523531","1.02156906001956","5.52491181104098","1.1113156801992","4.60203393747007","3.15605390040004","3.1696462219203","5.002998145248","4.19032925982945","0.956198717504606","5.48686985608873","4.04989109593276","1.8328980835757","1.83284071485534","1.00994518428159","",
"Brazil","BRA","Services, etc., value added (constant LCU)","NV.SRV.TETC.KN","","","","","","104435526800","112349382700","117936663900","132070072200","145955165100","164854875700","183399889500","206798816400","238760910800","266388523300","279633786200","307602995000","320592250300","314064996400","336541264900","369654430200","357769602800","362452087300","354797599200","371417708100","398152231700","434143882500","448498291100","455937549900","472783192700","","549837934600","554847203900","571966205500","594270311500","611399148900","639638654800","655849318500","665244777200","677469178000","703504000000","710690779200","749955818000","758290194600","793186966700","818220374900","844155066100","886388128400","923530709500","932361498300","983518960300","1023350407100","1042107377100","1061207545400","1071925159900","",
"Brazil","BRA","Services, etc., value added (% of GDP)","NV.SRV.TETC.ZS","42.340504583187","38.7581463372283","49.3204619596889","44.6045093158348","47.7610348654825","47.710664073746","49.182715101502","51.0405636145145","49.4899848062227","49.4225436938688","49.3541060134379","48.9370379038592","48.5680282621073","47.6384393887991","47.017060152063","47.7273466223821","47.2833219881922","46.6804349329343","48.2547959230828","48.3467999506492","45.1611099839749","45.5449095257396","45.4443929010521","45.1101793774821","42.82444941072","43.1464958713447","43.6824323906767","44.1101102713426","46.2383973285263","48.8101504739955","53.21","56.0499067341734","53.579998820417","50.8299999382306","50.1471491866369","66.7028637932966","69.2844539920468","69.2496768311118","69.7452621285331","69.8259768004285","67.9968915883442","68.0319255225766","67.3343758103425","65.8445786527344","64.6108837687583","65.9108509475219","67.1058004792059","67.6717744855321","67.1592348920911","69.0583174012978","67.7922300411008","67.7073036674838","69.3727995938347","69.9904355691064","71.0300254105668","",
"Brazil","BRA","Adjusted savings: education expenditure (current US$)","NY.ADJ.AEDU.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","16600000000","12684000000","18901071428.5714","19014701714.2857","16895439000","16313328857.1429","18265867285.7143","23019428571.4286","32589141000","36686587000.0004","39046187333.3336","38799628000","21586584000","24448671000","20301006000","18000500000","20312861999.9999","25106913000","37696824000","50991360000","65596300000","83948800000","85758480000","121672880000","143973760000","133311920000","131938240000","","",
"Brazil","BRA","Adjusted savings: education expenditure (% of GNI)","NY.ADJ.AEDU.GN.ZS","","","","","","","","","","","3","3","3","3","2.96666666666667","2.93333333333333","2.9","3","3.2","3.2","3.5","4","4.3","3.1","2.8","3.4","4.1","4.15000000000001","4.2","4.21428571428571","4.22857142857143","4.24285714285714","4.25714285714286","4.27142857142857","4.28571428571428","4.3","4.43333333333338","4.5666666666667","4.7","3.8","3.9","3.8","3.7","3.79999999999998","3.9","4.4","4.8","4.9","5.2","5.4","5.6","5.6","5.6","5.6","","",
"Brazil","BRA","Adjusted savings: carbon dioxide damage (current US$)","NY.ADJ.DCO2.CD","","","","","","","","","","","125152104.478696","145645420.819511","171302226.283083","211669155.769053","252765651.551899","294433718.722006","322539597.03744","364009746.576718","427919978.48293","498882557.434348","546667696.218046","555324288.571238","597992018.21933","608656625.69111","645978553.168767","724196005.886881","820213717.554751","888024465.506587","938129612.946225","1008007785.34049","1032189353.19167","1133031068.63392","1179826019.3211","1277644343.81875","1385479012.95801","1526690076.06386","1733767820.30623","1882925132.49308","2000957713.03333","2107349669.87535","2233830151.62949","2378166163.76384","2405656294.02071","2402930635.87302","2623852977.19388","2815111425.0028","2935138300.36287","3181059569.97449","3498317453.89305","3373336083.85588","3944825298.80431","4259161626.9993","4458437863.08636","4697881229.68593","","",
"Brazil","BRA","Adjusted savings: carbon dioxide damage (% of GNI)","NY.ADJ.DCO2.GN.ZS","","","","","","","","","","","0.299919488403823","0.299163893905713","0.294965479117965","0.270052276053593","0.242284427229932","0.241305489171186","0.214514423600633","0.210102997683572","0.21823633013037","0.227857479017264","0.240504925744851","0.219792007635286","0.223775121045743","0.317926008216996","0.327666718998081","0.343116782533677","0.320178362189274","0.313839467585512","0.295774792291441","0.224746389780471","0.229542722960662","0.284531758105398","0.307888595565516","0.29877401762246","0.257945899046398","0.201440330295131","0.209514465600855","0.220218464993238","0.242386376778062","0.370967854178611","0.356335834833517","0.445151901452695","0.494482280374246","0.449524858501844","0.40757804876514","0.328581799623553","0.276295118265953","0.237623035032083","0.216694589562256","0.212410654349538","0.181560769115551","0.165664250980151","0.18728446813521","0.199397345957026","","",
"Brazil","BRA","Adjusted savings: net forest depletion (current US$)","NY.ADJ.DFOR.CD","","","","","","","","","","","802565073.783298","833383424.018497","892088341.431151","1435489823.83746","1590977433.97314","2315362047.10653","2292574479.89002","3302743682.26578","4213007454.00365","5982585584.86358","7112472308.98344","6184494886.89633","8543801191.83831","5766168267.78829","4498450169.47032","3910346700.42913","4523970570.45236","5158758377.15617","4973397272.3534","6153282202.80153","7412374932.34468","7542529749.65552","7532598783.55518","7607448466.63659","7336184422.3806","9863191282.40144","8437559314.61473","8164363755.27803","6938964947.94205","7583753390.98625","5584116443.53926","5352031482.52343","6567244357.95912","7993986100.33931","6593621198.21915","7519088555.47728","9925072617.37756","11321548572.9553","12308464716.2533","11936686958.5519","18319733769.2367","16424595562.8048","18277573919.3396","18032207223.6479","","",
"Brazil","BRA","Adjusted savings: net forest depletion (% of GNI)","NY.ADJ.DFOR.GN.ZS","","","","","","","","","","","1.92329891169218","1.71181647073417","1.53608783000258","1.83143024674808","1.52500568791398","1.89757332757446","1.52474393107784","1.90631255000824","2.14860565480778","2.73246047402936","3.12911232247402","2.44776354172871","3.19718338647314","3.01190323526649","2.28179774758189","1.85268293049934","1.76597569247947","1.82317272257291","1.56801951981178","1.37194174538338","1.64839592688553","1.89411332984828","1.96571462440016","1.77898329314349","1.36583713553407","1.30140657939791","1.01962368321312","0.954867308745936","0.840552781983571","1.33500802562127","0.890766378663409","1.00180846375736","1.34989606535645","1.49546367130783","1.02422478912699","0.877633342376536","0.934282760126663","0.845712151561612","0.762417289163361","0.751623741187811","0.843166604651141","0.638850684678282","0.76778141030676","0.765360826796146","","",
"Brazil","BRA","Adjusted savings: consumption of fixed capital (current US$)","NY.ADJ.DKAP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","31044604580.4892","26836138551.3099","35164684230.0261","46649131040.3944","38716270341.0274","34371801970.79","36177190911.8954","43931461729.2251","56973214363.5865","55089868807.8546","62040741679.3071","67879885544.27","52602872340.7305","58873179141.7326","53587002487.0452","51775757609.5442","60554987857.6778","72916698315.572","101207854636.831","131063409033.789","169483633566.553","203311343723.096","212786634765.082","266625806641.893","314488496028.76","290419866820.343","288106161513.661","","",
"Brazil","BRA","Adjusted savings: consumption of fixed capital (% of GNI)","NY.ADJ.DKAP.GN.ZS","","","","","","","","","","","5.22980019760028","5.28723811335569","5.1798808985719","5.03292432535502","5.11419645190455","5.64193483751598","5.88815853774358","6.31320823943438","6.52613045529901","6.35289815127881","6.72443777954902","7.30443789798625","8.36015169959197","9.37605217259646","9.19275292193742","8.61391737278573","7.0935786616572","7.68229298908255","8.87449971620887","7.84025986347776","10.3740350834374","9.72260052912602","8.96970033084377","8.4599479716987","8.17907762310565","7.5173758572962","6.65724919341289","7.25600644650655","8.22264229074745","9.25996048725338","9.39132432404024","10.0305674236425","10.6424989947676","11.3282389187292","11.3265666484259","11.8130524842639","12.3374697862969","12.6603147506202","12.5936164347805","13.3986496464424","12.271465236909","12.2323371825606","12.1995936611964","12.2284070522428","","",
"Brazil","BRA","Adjusted savings: mineral depletion (current US$)","NY.ADJ.DMIN.CD","","","","","","","","","","","93335523.1795543","87434956.8351347","120490438.257999","144949544.464707","281846876.969755","376262425.64317","595231066.059185","481059549.511408","442594851.092295","563402638.864501","775965763.960263","765533740.208567","840709265.768817","875486162.537128","857290837.698576","885162928.956337","837665888.929949","876810807.802485","1014457502.29524","1200104391.70132","1368345978.65027","1429446783.26285","1279246098.92643","1065141812.63504","982715597.307665","1138676871.93909","1202466467.22002","1353080569.15778","2523230078.59166","2118001421.74692","2685024918.52201","2559572699.2933","2709635408.73903","2718667294.64162","3916174722.45032","7832215230.88728","10377040827.7942","21341838607.7848","26981788746.9233","11027019689.9354","25385734881.0918","31432287825.8847","24425447156.5591","25232768281.3936","","",
"Brazil","BRA","Adjusted savings: mineral depletion (% of GNI)","NY.ADJ.DMIN.GN.ZS","","","","","","","","","","","0.223672965616652","0.179596323750487","0.207472609206913","0.184929893320567","0.270159765513635","0.308368854867084","0.395875886922668","0.277663041627798","0.225720417119606","0.257326104210876","0.341383970066108","0.302990885030245","0.31460255652224","0.457301882795738","0.434852944633937","0.419381291435933","0.326990986177344","0.309876414201016","0.319839554032997","0.267576434742963","0.304298684074229","0.358968979421071","0.33383336045408","0.24908081833436","0.182960157377805","0.150243621006705","0.145310183019808","0.15825022504085","0.305651934842798","0.372842938124823","0.428309464438204","0.479108092343529","0.556965140542451","0.50859084848005","0.608321756543954","0.914181709735123","0.976828152326433","1.59422115543324","1.67131991742587","0.694344236577548","1.16837963672853","1.22258953176575","1.02603356156547","1.07098216844339","","",
"Brazil","BRA","Adjusted savings: energy depletion (current US$)","NY.ADJ.DNGY.CD","","","","","","","","","","","50191672.6218159","76863991.9268865","78627948.342012","125915687.3899","546256919.60166","480984866.212866","516886079.865745","522008309.539498","518842680.405235","1288028171.61726","1664175675.05455","1867916391.63783","2020508310.19637","2354369577.06271","3363762977.12434","3711702586.86659","1692783243.81697","2312642205.16451","1658820059.52575","2327064609.06738","3049970671.23293","2358957088.89057","2285920095.79015","2074751149.00339","1978008622.80394","2208260671.38499","3202092360.35366","3128579624.47748","2105300768.63978","3470275488.39401","7714435879.66209","6653183091.85474","7380794090.24741","9316194649.29668","12350435313.5535","20415553764.8529","25632471283.0194","28389297576.7104","41541135486.5994","24399887940.3421","34024879541.7801","46027838141.0709","42986284250.3031","39565460767.6473","","",
"Brazil","BRA","Adjusted savings: energy depletion (% of GNI)","NY.ADJ.DNGY.GN.ZS","","","","","","","","","","","0.120281323574783","0.157882966705014","0.135389544887979","0.160646069792029","0.523605735484596","0.3941949615323","0.34377025490213","0.301298280283457","0.264606300664131","0.588288461310951","0.732149439091311","0.739303326474747","0.756096198465124","1.22978258990144","1.70623803653369","1.75856734775546","0.660794320975966","0.817318020591439","0.522995065696992","0.518844573702509","0.678265640563106","0.592391706086646","0.596536028483935","0.485175502363823","0.368261956881878","0.291370701883657","0.38695185239139","0.365904618628846","0.255025991811235","0.610890859614344","1.23059040430795","1.24536171995851","1.51712108740954","1.74281397014992","1.91846356112593","2.38291789688577","2.41287665515282","2.12066165509154","2.57316250536418","1.53640077200351","1.56599667431204","1.79029771529199","1.80571393617088","1.67932041763498","","",
"Brazil","BRA","Adjusted savings: particulate emission damage (current US$)","NY.ADJ.DPEM.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2388402442.55065","","","","","","","","","","","","","","","1018575417.72367","","","","","1962803816.68437","","","","","",
"Brazil","BRA","Adjusted savings: particulate emission damage (% of GNI)","NY.ADJ.DPEM.GN.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.531143242752639","","","","","","","","","","","","","","","0.118888844269325","","","","","0.0903381375819533","","","","","",
"Brazil","BRA","Adjusted savings: natural resources depletion (% of GNI)","NY.ADJ.DRES.GN.ZS","","","","","","","","","","","2.26725320088361","2.04929576118967","1.87894998409747","2.17700620986068","2.31877118891221","2.60013714397384","2.26439007290264","2.4852738719195","2.63893237259152","3.57807503955119","4.20264573163144","3.4900577532337","4.2678821414605","4.69898770796367","4.42288872874952","4.03063156969073","2.75376099963278","2.95036715736537","2.41085413954177","2.15836275382885","2.63096025152286","2.845474015356","2.89608401333818","2.51323961384167","1.91705924979375","1.74302090228827","1.55188571862432","1.47902215241563","1.4012307086376","2.31874182336044","2.54966624740956","2.7262782760594","3.42398229330844","3.7468684899378","3.55101010679687","4.17473294899743","4.32398756760592","4.56059496208639","5.00689971195341","2.98236874976887","3.57754291569171","3.65173793173602","3.59952890804311","3.51566341287452","","",
"Brazil","BRA","Adjusted savings: gross savings (% of GNI)","NY.ADJ.ICTR.GN.ZS","","","","","","","","","","","","","","","","21.83711366","19.52124571","20.11643795","19.95870115","18.52160821","18.47511109","19.44342755","16.12051479","14.14234256","16.70761099","20.16603465","17.9229683","22.66871919","24.93834427","33.97764362","19.4343519","19.09064563","20.47813036","20.68850001","20.43204364","14.73544309","13.03364609","12.56720202","12.06712214","11.1776436","13.08106235","13.0247084","15.14501241","16.11560843","18.79861653","17.98131406","17.76150382","18.29040702","17.97517879","14.8414719","19.55127108","19.79620644","18.00141121","17.24459071","","",
"Brazil","BRA","Adjusted savings: net national savings (current US$)","NY.ADJ.NNAT.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","49023395419.5108","48254861448.6901","117256315769.974","40749868959.6056","37304486415.9726","44100178956.21","52292880772.1046","65813538270.7749","54704785636.4135","52766131192.1454","45412258320.6929","31737112234.73","10893771134.2695","23130531390.2674","15995849290.9548","21904787200.4558","25590769163.3222","48102301684.428","52846145363.1688","57620590966.2105","75370366433.447","86879656276.9035","22913365234.9183","158171193358.107","194463503971.24","138117133179.657","118182838486.339","","",
"Brazil","BRA","Adjusted savings: net national savings (% of GNI)","NY.ADJ.NNAT.GN.ZS","","","","","","","","","","","","","","","","16.1951160299861","13.6330788171029","13.8032777267538","13.4325494101648","12.1687280352064","11.7506654404246","12.1389951885058","7.76037886744978","4.76632519125549","7.51483438385274","11.5521039316527","10.8293803326201","14.9864656937469","16.0638737919585","26.1374306622419","9.06030817120158","9.36806712454329","11.508427463592","12.2285627897324","12.2530418287859","7.21806623367515","6.37644074890853","5.31121373159329","3.84448086727097","1.91768787086572","3.689733172901","2.99414853163573","4.50252563215947","4.78735703617857","7.47200488444235","6.16823952060106","5.42403333893841","5.63011626454374","5.38154461576459","1.44279810309789","7.27983658154059","7.56384790005445","5.80185137087577","5.0161643472241","","",
"Brazil","BRA","Adjusted net national income (current US$)","NY.ADJ.NNTY.CD","","","","","","","","","","","38600153992.236","45112427647.0672","53975906708.676","72729606113.2435","96571482179.0415","111960271030.346","138099990960.005","158009365787.616","178110053156.444","197201630747.337","202462739179.087","225385735232.584","233483231446.894","164499899150.263","170302443267.753","184375909220.051","230947676096.087","252869356482.618","281382453200.946","403664277685.344","391192177377.378","348161796037.164","337729433050.938","380704467659.83","482891629628.283","687703656810.688","759585013049.957","780339234371.779","746076618660.557","502293097358.142","552032243616.544","466085210239.283","418066568533.51","453965164098.045","547990070450.205","719771287811.951","885322006238.019","1108163681676","1330257267327.13","1327969770646.09","1828373845166","2162586782441.48","2004460827853.46","1985103402213.65","","",
"Brazil","BRA","Adjusted net national income (constant 2005 US$)","NY.ADJ.NNTY.KD","","","","","","","","","","","210388062647.907","234588957367.222","265211706885.959","303104889721.539","321681977835.392","335954369094.126","372183136846.006","389674733798.756","395000127067.025","413324569236.433","438068692840.535","416895670234.654","405521996643.524","387930371358.515","419981891973.913","456539746784.855","508736172972.997","524843306815.265","525558138042.794","594577474153.03","506895471293.562","518871303351.355","527050721608.162","553212517381.34","579860852669.474","618923964008.391","645079816799.455","661852323651.658","648033407320.773","618871490793.019","647301743024.381","646990470611.587","662213142546.918","663178334892.222","710679696505.443","719771287811.951","726930189312.344","768166882161.08","802394963731.377","811717035337.025","929293475442.756","965887813212.079","973778198980.9","997787865801.695","","",
"Brazil","BRA","Adjusted net national income (annual % growth)","NY.ADJ.NNTY.KD.ZG","","","","","","","","","","","","11.5029790258663","13.0537898554193","14.2878997614814","6.12893052663073","4.43680163706175","10.7838358672244","4.69972849951749","1.36662524058337","4.63909779104914","5.98660845393582","-4.83326541063478","-2.72818222955577","-4.33801999166865","8.2621838819052","8.70462643975458","11.4330518987078","3.1661074438916","0.136198979437594","13.1325787033321","-14.7469432783962","2.36258414919975","1.57638670783614","4.96380987646737","4.81701596599346","6.7366353771055","4.22602036955691","2.60006690883927","-2.0879153607321","-4.50006376188556","4.59388623556276","-0.0480876833947832","2.35284329936751","0.145752520342853","7.16268296384281","1.27928113765077","0.994607818013279","5.67271705798117","4.45581323084427","1.16178092174175","14.4849048359462","3.93786664130909","0.816904992576937","2.46561967046726","","",
"Brazil","BRA","Adjusted net national income per capita (current US$)","NY.ADJ.NNTY.PC.CD","","","","","","","","","","","402.158444442298","458.449380675099","535.239552477202","703.920365155983","912.374886045035","1032.54583825039","1243.29209399513","1388.77019083055","1528.41982724239","1652.41532310718","1656.81834231919","1801.53825960953","1823.30775456389","1255.58700610196","1271.38292449243","1347.4183148076","1653.5873199521","1775.30070216012","1938.55698213075","2731.11852485861","2601.13040776984","2276.80462606675","2173.5846767496","2412.38902576638","3013.16672244845","4225.39048655711","4595.10293708524","4647.81350888661","4375.39298201424","2900.86169977575","3140.35735905561","2612.30124464317","2309.17838935018","2472.20902165361","2944.34117246427","3818.83589838303","4642.52843442861","5748.19843381513","6829.89856557115","6751.19983522473","9205.6548399901","10785.0231351355","9903.38508345597","9718.54233264233","","",
"Brazil","BRA","Adjusted net national income per capita (constant 2005 US$)","NY.ADJ.NNTY.PC.KD","","","","","","","","","","","2191.94296532417","2383.98081920142","2629.91034261845","2933.62931625307","3039.14314296404","3098.31587989058","3350.70515459308","3424.91504678868","3389.62352362121","3463.37831505066","3584.8583716532","3332.30272722559","3166.78588241376","2960.97648731768","3135.35023811819","3336.39041487443","3642.55531404049","3684.72757661812","3620.78156057198","4022.80222425028","3370.46929921241","3393.15972415751","3392.03297150751","3505.51128031366","3618.23920257057","3802.79413018038","3902.40474720192","3942.08830628985","3800.41506674277","3574.12955536703","3682.31895100704","3626.2339471858","3657.71480670415","3611.5446561703","3818.46971996462","3818.83589838303","3811.93966709081","3984.58796472088","4119.71153731932","4126.64808819424","4678.88719946338","4816.97312497082","4811.1194573502","4884.90604669618","","",
"Brazil","BRA","Adjusted net national income per capita (annual % growth)","NY.ADJ.NNTY.PC.KD.ZG","","","","","","","","","","","","8.76107895667164","10.3159187119385","11.5486436443389","3.59669935551825","1.94702039828363","8.14601494768858","2.21475447023064","-1.03043499430923","2.17589920873171","3.50755954308035","-7.04506617122337","-4.96704106321208","-6.49899938732868","5.88906232614077","6.41204846310583","9.17653095396463","1.15776587976772","-1.73543402372314","11.1031460184189","-16.2158835725373","0.673212627998197","-0.0332065903641876","3.34543649072241","3.21573411815763","5.10068343404993","2.61940598443104","1.0169001336007","-3.59386265703465","-5.95423150897257","3.02701382152044","-1.52308924260625","0.868141989095193","-1.26226764452015","5.72954465455081","0.00958966406095385","-0.180584646099589","4.52914559798971","3.3911554668842","0.168374674102267","13.3822681136542","2.95125570719634","-0.121521699805143","1.53366778771743","","",
"Brazil","BRA","Adjusted net savings, including particulate emission damage (current US$)","NY.ADJ.SVNG.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","44513287295.9211","","","","","","","","","","","","","","","50942424969.2248","","","","","196206096050.51","","","","","",
"Brazil","BRA","Adjusted net savings, including particulate emission damage (% of GNI)","NY.ADJ.SVNG.GN.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","9.89723338253684","","","","","","","","","","","","","","","5.94603592771076","","","","","9.03039475915137","9.25610757975632","7.5246998571155","6.8107654508106","","",
"Brazil","BRA","Adjusted net savings, excluding particulate emission damage (current US$)","NY.ADJ.SVNX.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","56387159563.8811","52354057001.5695","125468928209.635","46901689738.4717","41735960725.5297","48135916815.76","58533762285.7251","77150579186.7533","72557107734.6242","74876832229.6512","69929496572.6201","56968286726.5232","17200975163.2669","29361794996.9145","19353901853.5195","20841957049.4896","23471852483.1714","47725130473.0111","51961000386.9485","59742227937.6565","76732922106.022","86498749873.2345","57934914562.233","198168899867.194","240293380814.48","181281309990.369","162592760983.964","","",
"Brazil","BRA","Adjusted net savings, excluding particulate emission damage (% of GNI)","NY.ADJ.SVNX.GN.ZS","","","","","","","","","","","","","","","","16.2870067301744","14.0541743205996","14.1079008571507","13.7753807074429","11.5627955166379","10.8075147830483","12.4291454276368","7.56872160494353","2.84941147507482","5.56427893610514","10.5783555794283","11.8554409707981","15.872259068796","17.5572448601253","27.9686072329183","10.4283766252895","10.480918493939","12.5615977118312","13.6879777296968","14.3637509656601","9.57360500109174","9.04837389801674","8.17863978085112","6.90086378185531","3.02797819332667","4.68373109065792","3.62271835412363","4.28406105847679","4.3909636877389","7.41341672888034","6.06492477198008","5.62375065306655","5.73189826742526","5.35795031424891","3.64801869897949","9.12073289673332","9.34644571733827","7.61503799469745","6.90110358839255","","",
"Brazil","BRA","Exports as a capacity to import (constant LCU)","NY.EXP.CAPM.KN","13916004352.6839","13430564803.2016","9974487254.34274","12945219559.9629","12844209685.1545","13629522723.445","14680691074.7378","13867582500","15550029645.1509","19282487216.0891","22321661694.5977","23209890088.9864","29014910027.8016","37052436385.2221","31563060489.6486","34210149893.7332","38460860980.6056","43653679729.1261","42307963702.1673","41873775126.6399","43477357174.1613","45747593618.2443","41125708555.2855","46815065386.4005","61266924630.899","61861719208.6812","63981452708.1479","68371400822.1234","84643632982.7108","78825736221.3449","62499657470.6468","69044378511.3184","85313517830.0344","96361081188.3631","100398293587.245","104492705118.589","104722669245.747","115610143423.61","118598781614.044","112889674936.038","122165000000","131045729909.774","142164032999.743","155911619790.473","185075829799.714","203194083488.536","229032527847.749","247574059079.882","256516146620.09","231726555263.459","292798237754.378","329346584750.331","317840519554.796","318560636988.113","303829722195.467","",
"Brazil","BRA","Coal rents (% of GDP)","NY.GDP.COAL.RT.ZS","","","","","","","","","","","0","0","0","0","0","0.00206040327608132","0.00238242692979112","0.00233545729551537","0","0.00202725918458005","0.00923739534647253","0.0239927961978824","0.0292052208943719","0.0186484836567462","0.0123453748873108","0.0156990844610224","0.0072778013772393","0.00201854280658655","0.00264407736939794","0.00293822326639203","0.00217036275556995","0.00308144127097043","0.00229553925037339","0.00017513980733061","0","0.000623011189324661","0.000238523208011548","0","0","0","0","0","0","0","0.00421507489285951","0.000854986277346252","0.00114566088166691","0.00235360062501333","0.0075173533844394","0.0013904678697064","0.00219105411475824","0.00370594042011704","0.00212962576069129","0.00225995815398557","","",
"Brazil","BRA","Inflation, GDP deflator (annual %)","NY.GDP.DEFL.KD.ZG","","31.302528764383","78.8307581636452","69.7663875305848","93.8346791635149","51.3848679661148","39.4058905169358","29.2448362432431","26.6706789265927","20.9140226805465","17.0922848011679","20.2538929346553","19.144407945928","22.6648530161985","34.8001856949248","33.8622773230239","47.6269851502399","46.1795652823683","41.0598003115912","56.480574203257","87.3068753333795","107.214033815377","104.832363562851","140.195627923098","212.785781721096","231.7234991146","145.271542160189","204.103424970657","651.11385570452","1209.12132836991","2700.44214011056","414.236261671637","968.184255494567","2001.3477263849","2302.84077820419","93.5218791451811","16.4340538148817","7.72788129405797","4.91530033006097","8.04796931608746","5.45762703050599","8.09384852228582","9.90823912072854","13.9553813912078","7.77295438617737","7.4913203426857","6.69493727130366","6.4004365490057","8.86586782193544","7.35363259058568","8.56518254860947","8.31150878000024","5.86776504446919","6.50835221795521","6.89683223725848","",
"Brazil","BRA","GDP deflator (base year varies by country)","NY.GDP.DEFL.ZS","5.34739077880458E-13","7.02125931548385E-13","1.25561712665153E-12","2.13161583713164E-12","4.13181071890278E-12","6.25493620142075E-12","8.7197495128568E-12","1.12698259787128E-11","1.4275565081081E-11","1.72611599999144E-11","2.02114866270851E-11","2.43050994890371E-11","2.8958166886882E-11","3.55214928479792E-11","4.78830383206854E-11","6.40973255475258E-11","9.46249492677468E-11","1.38322339488254E-10","1.95117215868452E-10","3.05320539760362E-10","5.71886362776144E-10","1.18502880114849E-09","2.42732250229297E-09","5.83032252610125E-09","1.82364198901269E-08","6.049449017276E-08","1.48375768968672E-07","4.51215795260282E-07","3.38914435732732E-06","4.43680116310173E-05","0.00124250049444416","0.00638938809388128","0.0682504376412843","1.43417901962287","34.4610383159474","66.6896489219623","77.6494617147533","83.6501199415444","87.7617745631276","94.8248152512219","100","108.093848522286","118.804045508672","135.383603167591","145.906908888171","156.837262835095","167.337419199934","178.04774453857","193.833222229297","208.087005230532","225.910037088462","244.686569655971","259.044202658755","275.903711767981","294.932327904988","",
"Brazil","BRA","Discrepancy in expenditure estimate of GDP (current LCU)","NY.GDP.DISC.CN","1E-10","0","1E-10","3E-10","-2E-10","1E-10","2E-10","4E-10","2E-10","4E-10","4.1E-09","-5.7E-09","7.39999999E-09","-9.4E-09","-7.50000003E-09","-1.90000002E-09","-7E-17","-2.970000012E-08","-1.499999988E-08","-7.44999999E-08","-2.385000003E-07","-4.1710000032E-07","-8.343999992E-07","-7.153000043E-07","1.907499986E-06","-1.144420004E-05","7.6293899928E-05","-0.00015258789995","-0.0013427735","-0.000546875004","-205.4500000024","9E-09","-199.999999947","299.9999982","-3E-05","0","0","-2000000","-1000000.00006","1000000.00022","0","2000000","-999999.99997","0","-1000000.00003","2000000","-0.0002","-1000000","0","1000000","1000000.0005","-999999.99994","-2000000","2000000.0005","0","",
"Brazil","BRA","Discrepancy in expenditure estimate of GDP (constant LCU)","NY.GDP.DISC.KN","","6176560600","6756850700","7168954900","8460246500","12056888100","14558497200","14227904800","15242533900","33843257100","29717238600","33323508000","41880033600","55729007600","60896615200","75010009000","76180989300","67186871400","65973904000","55122264800","60528507100","35784020400","27129902900","4176692100","-1715373900","3896561900","44885106100","26939656600","11064037600","6801903900","21997794100","2001194300","-2249513700","9152337200","7013546600","12321688200","21323766000","26781953600","21525397400","6904793600","2000000","10643693400","834059800","10320766700","17952828000","5669952700","6908433200","17062981100","29214846000","-8310959000","26222611200","25705011100","9134699300","21303435900","","",
"Brazil","BRA","Gross value added at factor cost (current US$)","NY.GDP.FCST.CD","13010854035.6355","13360234415.7128","17840818496.5016","20734583961.0896","19435212074.0115","19419444207.1118","22962491994.6536","26348589733.3954","28514137972.9401","31393769791.1673","35567522463.6987","42144477616.5997","49863914454.6192","67933203535.5305","91373939510.5901","109228753812.872","134483666402.865","155233012607.159","177719304790.443","202174656407.02","212325076584.218","236573212297.138","253251932688.284","182641097551.149","190556793074.966","202907763563.592","238644855328.735","264680339226.253","298610595154.732","421734000000","391991800000","525380000000","351819250000","380095440993.789","483669638667.292","671320693036.94","746584419460.75","779330241187.384","763099526066.351","521564445913.925","565516261273.572","476568319020.492","434204510559.896","478659408514.787","568524786324.786","757463029904.699","942233714889.9","1190127368907.61","1431020285745.45","1422875362608.78","1878028080945.88","2223125298900.05","2045175874251.19","2034733082881.13","2005142772159.43","",
"Brazil","BRA","Gross value added at factor cost (current LCU)","NY.GDP.FCST.CN","0.0008841555","0.0013084408","0.002513899","0.0043306747","0.0088371988","0.0134100001","0.0185369998","0.0255149994","0.0351950005","0.0464969985","0.0593749993","0.0810000002","0.1075439975","0.151255995","0.2254990041","0.3226409853","0.5216850042","0.7980110049","1.1671999693","1.9800399542","4.0679998398","8.0072698593","16.5235996246","38.3055000305","127.9929962158","457.5570068359","1185.1103515625","3775.6650390625","28449.30078125","421734","9799795","52538000","562910800","12239073200","309210000000","616071000000","750392000000","840118000000","885577000000","946483000000","1034612000000","1120984000000","1272610000000","1472835000000","1662935000000","1843968000000","2049641000000","2317297000000","2624205000000","2844897000000","3303827000000","3718844000000","3994433000000","4387088000000","4718903000000","",
"Brazil","BRA","Gross value added at factor cost (constant 2005 US$)","NY.GDP.FCST.KD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","520119839263.36","519001877984.099","540519317154.094","567456639581.401","587653672008.302","602658532913.027","620173759469.125","624161862386.567","630300417644.998","655032812944.836","664074567785.207","688020855332.629","697126321220.213","735745951192.244","757463029904.699","785727830194.494","830703927233.256","868806912049.528","866849229653.475","927744179684.2","961828197714.165","976329678578.457","1001894576168.96","1004192679272.13","",
"Brazil","BRA","Gross value added at factor cost (constant LCU)","NY.GDP.FCST.KN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","821519497200","819753698400","853740088600","896287082400","928187915000","951887810400","979552781100","985851914600","995547647100","1034612000000","1048893281600","1086715992100","1101097904100","1162096882800","1196398599900","1241042320000","1312081218800","1372264166200","1369172043700","1465354471200","1519189536200","1542094352300","1582473626900","1586103437500","",
"Brazil","BRA","Forest rents (% of GDP)","NY.GDP.FRST.RT.ZS","","","","","","","","","","","2.5981667358097","2.30693156301794","2.07325855036429","2.45594134850431","2.0390254888271","2.4719053666038","1.96077612488917","2.41946937130939","2.65947505624425","3.30779757748687","3.71174648847332","2.87032104245337","3.69249374753371","3.43482344676318","2.59522762821564","2.10654815976752","2.01918227412084","2.09161929297075","1.78768001159519","1.7032158035627","1.89400575775715","2.2153256728567","2.33733090301245","2.13217908909789","1.6362842756498","1.5851930216894","1.26785452335129","1.19995823993208","1.06081094330946","1.65510889818755","1.1282155287754","1.32002597554887","1.79524276690143","1.95032740468266","1.39577599608147","1.19281198488617","1.31474413900217","1.23011567639466","1.16162297182064","1.17581861248545","1.39439734115785","1.06837508446588","1.31753529960571","1.36469993330883","","",
"Brazil","BRA","Mineral rents (% of GDP)","NY.GDP.MINR.RT.ZS","","","","","","","","","","","0.48954969026601","0.394541383392943","0.457701425868138","0.40089952385149","0.589248373127889","0.677339059531725","0.869483621598383","0.609835323800616","0.492683742485798","0.557991369204247","0.715207740524631","0.633908502455509","0.655232629881005","0.912537887847362","0.891371006567997","0.874126666477154","0.689361256775561","0.647280765730788","0.660430753256632","0.61448199204257","0.650205734593931","0.779305927070903","0.725300917573246","0.540149091105315","0.385772676647138","0.3176069623874","0.312262504386381","0.33771632736994","0.558610008703549","0.68516556093263","0.74513391806003","0.866339556548771","0.978984108812729","1.08688297289329","1.29906170996457","1.94977912541517","2.05368933724573","3.21638081724691","3.34239652803868","1.46017732515776","2.55136564358647","2.66497095976448","2.23139873126953","2.33074686549134","","",
"Brazil","BRA","GDP at market prices (current US$)","NY.GDP.MKTP.CD","15165569912.5199","15236854859.469","19926293839.0163","23021477292.2093","21211892259.9904","21790035117.19","27062716577.9111","30591834053.9653","33875881876.3672","37458898243.8609","42327600098.2412","49204456700.4516","58539008786.3684","79279057730.829","105136007528.76","123709376567.89","152678020452.829","176171284311.761","200800891870.164","224969488835.181","235024598983.261","263561088977.129","281682304161.041","203304515490.795","209023912696.839","222942790435.299","268137224729.722","294084112392.66","330397381998.489","425595310000","461951782000","602860000000","400599250000","437798577639.752","558111997497.263","785643456467.255","853504128942.394","886330241187.384","866854803963.809","601904998071.307","657216179283.957","559611852733.611","508779896959.978","559008449788.755","669642735042.735","892103187643.773","1107802142233.26","1395938061732.83","1694585014723.52","1664586375912.77","2209433265120.51","2615234935437.59","2413135528134.76","2392082463707.62","2346076315118.55","",
"Brazil","BRA","GDP (current LCU)","NY.GDP.MKTP.CN","0.0010305797","0.0014922285","0.0028077574","0.0048083207","0.009645056","0.0150469998","0.0218470004","0.0296240002","0.041813001","0.0554799996","0.0706600025","0.0945689976","0.1262540072","0.1765179932","0.2594619989","0.3654139936","0.5922639966","0.9056490064","1.3187919855","2.2032859325","4.5029067993","8.9207258225","18.3785591126","42.6392593384","140.3969726563","502.7359924316","1331.5694580078","4195.1098632813","31477.69921875","425595.31","11548794.55","60286000","640958800","14097114200","356801000000","720985000000","857857000000","955464000000","1005985000000","1092277000000","1202377000000","1316319000000","1491183000000","1720069000000","1958705000000","2171736000000","2409802000000","2718031000000","3107530000000","3328174000000","3886835000000","4374765000000","4713095000000","5157569000000","5521256000000","",
"Brazil","BRA","GDP at market prices (constant 2005 US$)","NY.GDP.MKTP.KD","124164366123.802","136923386568.642","144065391772.184","145325492269.161","150390931911.299","154983100810.386","161415457794.343","169349456385.47","188701496981.166","207073148065.926","225233354379.358","250673657356.697","280886857570.839","320151165279.063","349099618827.611","367284482942.946","403243140282.517","421817801883.65","435449728126.975","464913497612.787","507271581136.303","484985328601.13","487799434404.953","471166481125.787","495992917490.033","535403828997.198","578173466860.227","598985569342.599","598370574575.829","617993891387.207","598821521134.842","607875326701.438","605037076501.951","633263078565.532","667044824904.287","696506402830.302","711760307008.508","735876739202.677","738487967979.614","742109683443.882","774636532927.51","784544325250.146","808643368570.218","818534738078.056","864869317334.128","892103187643.773","927781286996.196","983501992480.866","1032867065481.93","1030429725381.53","1108454556174.86","1151865872979.57","1172167380040.23","1204328097172.97","1206070848497.66","",
"Brazil","BRA","GDP growth (annual %)","NY.GDP.MKTP.KD.ZG","","10.2759115543009","5.21605942017887","0.87467259240843","3.48558230427724","3.0534878936691","4.15036023303344","4.91526567501121","11.4272823832673","9.7358268899127","8.76994747172606","11.2950868433502","12.0528022500388","13.9786916510758","9.04212031316958","5.20907590114406","9.79041016147607","4.60631806113791","3.23170956333544","6.76628496532688","9.11096015517154","-4.39335720034832","0.580245553394249","-3.40979347371646","5.26914314976874","7.94586174871279","7.98829510486235","3.59962946680903","-0.102672718383658","3.27945885796417","-3.10235594875039","1.51193723789989","-0.466913209800552","4.66516898877852","5.33455170247368","4.41673135388506","2.19005943322573","3.38828000897225","0.354845946043383","0.490423083557729","4.38302453253019","1.27902466530881","3.07172489105554","1.22320541938372","5.6606735304683","3.14890004348749","3.99932427622596","6.00580182696643","5.01931601343726","-0.235978102299356","7.57206715522901","3.91638218841443","1.7624888050685","2.74369664950309","0.144707354149404","",
"Brazil","BRA","GDP (constant LCU)","NY.GDP.MKTP.KN","192725712900","212530036700","223615729700","225571635200","233434120200","240562002800","250546192500","262861203500","292899095500","321415244400","349603192500","389091176700","435987566800","496932924400","541866197300","570092418800","625906804900","654738063100","675897295700","721630432800","787377894000","752785570600","757153575400","731336202200","769871353600","831044267000","897430535500","929734709500","928780125600","959239087700","929480076800","943533232200","939127750900","982939647500","1035375071200","1081104806600","1104781644400","1142214740000","1146267842700","1151889404800","1202377000000","1217755698400","1255161803300","1270515010500","1342434717400","1384706644800","1440085553800","1526574238300","1603197823500","1599414627700","1720523377400","1787905648500","1819417285400","1869336576500","1872041644000","",
"Brazil","BRA","GDP, PPP (current international $)","NY.GDP.MKTP.PP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","999244585443.518","1048115393269.68","1067002368182.15","1143350944153.64","1229973623290.45","1311084562689.19","1364256823903.61","1434622110253.73","1455337381163.52","1484855261893.42","1585205951880.98","1642068450645.76","1718490386745.66","1774197883414.25","1926176515561.58","2050758887155.99","2198299931522.39","2392343268766.51","2561706529169.57","2575070044326.09","2803888140587.42","2973856148557.23","3080598391714.09","3212282669538.23","3263866821208.96","",
"Brazil","BRA","GDP, PPP (constant 2011 international $)","NY.GDP.MKTP.PP.KD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1546021202892.98","1569396073165.35","1562068355585.65","1634941484093.95","1722158282868.13","1798221387711.1","1837603504842.95","1899866657041.72","1906608256854.46","1915958703859.09","1999935643882.38","2025515314057.94","2087733572132","2113270842328.61","2232896205527.41","2303207875114.29","2395320626795.69","2539178836761.49","2666628246724.87","2660335587992.87","2861777985270.14","2973856148557.23","3026270030254.39","3109301699679.4","3113801087901.52","",
"Brazil","BRA","Natural gas rents (% of GDP)","NY.GDP.NGAS.RT.ZS","","","","","","","","","","","0.0017786477539324","0.00274376520048341","0.00331631838601511","0.00349024364768338","0.0116487564565954","0.0110841593798539","0.0114073409507139","0.0137699088220885","0.0199629216611785","0.02733181724255","0.0367430072825864","0.03203887308859","0.0424680734413409","0.0733392412025816","0.0793858535128934","0.0833184138174388","0.0718999040895516","0.0499992923326214","0.040182733713446","0.0281173314416232","0.0330756644972498","0.0395907083843174","0.0406748272091179","0.0523327106478991","0.0393089576192175","0.0314907828702747","0.044439838779519","0.0422830797917654","0.0336988122172758","0.0461893727789346","0.121435776811199","0.137608492036677","0.127911001432801","0.219922374042621","0.21982278085742","0.26450384939821","0.207836170118428","0.163407764469762","0.249463505620866","0.0868099325921631","0.0712982740616204","0.0741258256638392","0.0692754903154163","0.0794130333793716","","",
"Brazil","BRA","GDP per capita (current US$)","NY.GDP.PCAP.CD","209.198785141057","203.955154168234","258.757668537358","290.058284142306","259.46696881361","259.004152120965","312.881908149325","344.294512036641","371.393096749688","400.26285887448","440.993106294556","500.0341120468","580.488495253726","767.309851509639","993.289641246697","1140.90114959711","1374.53575801322","1548.39826685567","1723.13723466659","1885.0910571786","1923.28261521367","2106.67895661928","2199.70199280485","1551.77303603647","1560.45578862038","1629.26490916073","1919.86480364384","2064.65401141128","2276.24055609996","2879.49987028576","3071.62795314411","3942.40394119544","2578.20700864426","2774.174126945","3482.52981637412","4827.15244263478","5163.26581269664","5279.11129784714","5083.70096424936","3476.14403819628","3738.71941172048","3136.49673342472","2810.23078960121","3044.25502669162","3597.97883565313","4733.16418107253","5809.18909594586","7240.92398337745","8700.45520183758","8462.50834558689","11124.2457796398","13042.4219326201","11922.5130576782","11711.004404501","11384.4150095055","",
"Brazil","BRA","GDP per capita (current LCU)","NY.GDP.PCAP.CN","1.42161502979884E-11","1.99744433204071E-11","3.64608072385215E-11","6.05822656011703E-11","1.1797973578613E-10","1.78854022226372E-10","2.5258111663743E-10","3.33402066559337E-10","4.5841049931814E-10","5.92825317650404E-10","7.3617625192388E-10","9.61045561989468E-10","1.25196856213847E-09","1.70844607678027E-09","2.45130970694349E-09","3.37000522469143E-09","5.33205787641213E-09","7.95989742237294E-09","1.13169794906304E-08","1.84620351376006E-08","3.68487486096634E-08","7.1304551976797E-08","1.43521096311947E-07","3.25454910620965E-07","1.04812538364475E-06","3.67399237015746E-06","9.53404861489528E-06","2.94522894727819E-05","0.000216862540317473","0.00287949987028576","0.0767906988286028","0.394240394119544","4.12513121383082","89.3284068876289","2226.38131160797","4429.87779660594","5189.59846834139","5690.88197907922","5899.63496901138","6308.15858611479","6839.98716374262","7377.66761636162","8236.50542124218","9367.1727171301","10524.0880942854","11522.414882403","12636.729040411","14098.8030880342","15954.8947491298","16919.9391861664","19569.7731755424","21817.3634088869","23285.8602529514","25250.0965965445","26792.0822833703","",
"Brazil","BRA","GDP per capita (constant 2005 US$)","NY.GDP.PCAP.KD","1712.76349657424","1832.80806140181","1870.79570305742","1831.02336981623","1839.60387700443","1842.18457669235","1866.18280888744","1905.93634716544","2068.80026270338","2212.65691535895","2346.60969103757","2547.43956290303","2785.34933659165","3098.61330497863","3298.17579433746","3387.2556829904","3630.3333894947","3707.42573579517","3736.73459999469","3895.65839016316","4151.16807947788","3876.55245316484","3809.30350291441","3596.29710697835","3702.80610111139","3912.72877275924","4139.7269273021","4205.25253288567","4122.4157443008","4181.23341182227","3981.70760441413","3975.20167823909","3893.94346376576","4012.76326108037","4162.25327891939","4279.47634013443","4305.78779339395","4382.98844744762","4330.88906900867","4285.85933005588","4406.69103100796","4397.19191320514","4466.5178513168","4457.58644946685","4646.92788636821","4733.16418107253","4865.18009883581","5101.5609934828","5303.01729013292","5238.55071551959","5580.94291106739","5744.46315381281","5791.29548729339","5896.07250771634","5852.49975956987","",
"Brazil","BRA","GDP per capita growth (annual %)","NY.GDP.PCAP.KD.ZG","","7.00882317189007","2.0726470193805","-2.12595812445974","0.46861811430972","0.140285619103892","1.30270508714081","2.13020600600726","8.54508681678499","6.95362695225027","6.05393338428533","8.55829892088576","9.33917244409524","11.2468466440303","6.44038057405183","2.700883585583","7.17624322618906","2.12356106256134","0.790544876369182","4.25301251442099","6.55883200539087","-6.6153820094797","-1.73476177771128","-5.5917412664306","2.96162944731032","5.66928610128512","5.80153053600954","1.58284850025777","-1.96984100091669","1.42677670496447","-4.77193659755957","-0.163395377597084","-2.04412809840943","3.051400165931","3.72536349923558","2.81633656963515","0.614828805402183","1.7929507388198","-1.18867250196126","-1.0397342955518","2.81931093969199","-0.215561239396578","1.57659568834072","-0.1999634199898","4.24762231866538","1.85577002297141","2.78916835995679","4.85862578249778","3.94891479112916","-1.21565839005039","6.53600994132661","2.92997519148864","0.815260403393793","1.80921558315985","-0.739013098794956","",
"Brazil","BRA","GDP per capita (constant LCU)","NY.GDP.PCAP.KN","2658.52092843801","2844.85195929992","2903.81569864014","2842.08179287556","2855.40030298048","2859.40601897341","2896.65564664459","2958.36037920276","3211.154841959","3434.44657052795","3642.36567802659","3954.09022054385","4323.36952483555","4809.61226514854","5119.36959916038","5257.63781234943","5634.93868971571","5754.60005362972","5800.09274950923","6046.77141999388","6443.36899918127","6017.11552560504","5912.73290534611","5582.10817950405","5747.42953912896","6073.26776317195","6425.610246986","6527.31792241282","6398.74013771695","6490.03587141311","6180.3354744704","6170.23709198513","6044.10954184938","6228.53951043842","6460.57524789576","6642.52679121104","6683.36695932997","6803.19643660531","6722.32871130897","6652.43435423777","6839.98716374262","6825.24280263789","6932.84928638307","6918.98612384728","7212.87852266918","7346.73296008621","7551.64571129946","7918.55191683154","8231.24878471854","8131.18491826119","8662.63997286639","8916.45317499935","8989.14548712227","9151.7785080682","9084.14566612088","",
"Brazil","BRA","GDP per capita, PPP (current international $)","NY.GDP.PCAP.PP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","6644.21638853254","6854.15230278008","6867.09469348047","7245.00893627656","7674.83916430898","8055.56896985323","8253.05980338736","8544.81708785633","8534.87806043008","8575.39110450071","9017.79422157468","9203.41895253226","9492.03108322934","9661.94844992143","10349.3131098934","10880.5557957258","11527.6361228859","12409.4157370991","13152.4902578765","13091.2712346519","14117.2586232472","14830.8995611937","15220.2286703156","15726.4881383547","15838.0246153761","",
"Brazil","BRA","GDP per capita, PPP (constant 2011 international $)","NY.GDP.PCAP.PP.KD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","10279.8649729195","10263.0681487306","10053.2778889435","10360.0436271282","10745.9929109181","11048.6362390387","11116.5664372404","11315.8809973083","11181.3722315386","11065.115669734","11377.0756863004","11352.5511209439","11531.5349524334","11508.4761007652","11997.3127001596","12219.9552328113","12560.7903577657","13171.0721565736","13691.1865731149","13524.7485148413","14408.7274223108","14830.8995611937","14951.8100127832","15222.320489499","15109.825547141","",
"Brazil","BRA","Oil rents (% of GDP)","NY.GDP.PETR.RT.ZS","","","","","","","","","","","0.142206373198274","0.18712345371447","0.163314181752553","0.196865506319401","0.643882496196452","0.496260507580314","0.438387789546787","0.394842949755854","0.353003467915921","0.805174883306192","0.972181674329959","0.948819247981267","0.9509879340913","1.47291087954424","1.92294923564698","1.94717598497983","0.721611642321741","0.946911845051599","0.609038316086647","0.663292226651001","0.908074190722806","0.815439287466149","0.823210726342628","0.648993313139398","0.493573396332942","0.403014901236031","0.526707503124546","0.500325101723948","0.323071182634362","0.79061933740178","1.5314978755246","1.51085510789479","1.90598150954551","2.15599558666555","2.46204090488706","3.00603517514909","3.09988023929719","2.74390611953359","3.23794330599911","1.96684830673012","2.08032273050926","2.42318266323817","2.49657743434106","2.34025709319588","","",
"Brazil","BRA","Total natural resources rents (% of GDP)","NY.GDP.TOTL.RT.ZS","","","","","","","","","","","3.23170144703131","2.8913401653297","2.69759047637384","3.05719662232541","3.28380511461427","3.66070989965197","3.28481973084759","3.44258846828131","3.525125188309","4.70235016561273","5.45435370130777","4.53307325837831","5.39959282673973","5.93090842267855","5.51362447372777","5.04256739397316","3.51661068006516","3.73984828170233","3.10261996939269","3.01498380023231","3.48970207308432","3.85582447832212","3.93110845264041","3.37400448360677","2.55493930625006","2.33855169056231","2.15174141605842","2.08028274881835","1.97619094686506","3.17708316930228","3.52628309917374","3.83482913203206","4.80811938669646","5.41312833828837","5.38513154158025","6.41484010740699","6.67844120742985","7.35851757889703","8.00646101825024","4.69243511270613","6.10176609754569","6.23806641397356","6.11904620705417","6.1196368416844","","",
"Brazil","BRA","Gross domestic savings (current US$)","NY.GDS.TOTL.CD","2975454839.1558","3244854075.24897","3643412538.89183","4416748334.43017","4096060350.50026","4838207357.9564","5609006990.20034","5175745046.02096","6201895892.40866","8397868934.36591","8517036648.77558","9542342192.34532","11465399837.7188","17452639745.9736","20520531592.0207","28294642410.9879","31633826849.558","37707291979.9328","43743282280.1424","46597458378.8983","49574617825.2859","59841612986.7137","57544788088.717","38822063586.2128","44655362307.5904","54294146349.5787","57797303278.5139","75203016236.3337","92227809168.3936","129258099609.375","98880000000","123780000000","85799375000","97425869565.2174","128313780697.638","135837419636.047","131401850562.133","136948979591.837","139501077121.93","95636193310.189","110810057392.73","93319870759.2892","93570234398.9901","107739031524.212","143626666666.667","185856473874.466","229846917666.529","298083303374.249","366177881993.674","308812643793.138","458568099135.971","550208632233.381","458283242025.498","438975928760.262","406453641539.9","",
"Brazil","BRA","Gross domestic savings (current LCU)","NY.GDS.TOTL.CN","0.0002021977","0.0003177863","0.0005133829","0.0009224926","0.0018624803","0.0033409999","0.0045279999","0.005012","0.0076550001","0.0124379997","0.0142180003","0.01834","0.0247280011","0.0388590005","0.0506420043","0.0835769977","0.1227129921","0.1938430071","0.2872910053","0.4563619941","0.9498149753","2.0254530906","3.7545499802","8.142190218","29.9940690994","122.4333000183","287.0214080811","1072.7710266113","8786.7501220704","129258.099609375","2472000","12378000","137279000","3137113000","82031000000","124658000000","132072000000","147631000000","161891000000","173551000000","202727000000","219507000000","274245000000","331513000000","420108000000","452449000000","499986000000","580398000000","671497000000","617440000000","806713000000","920389000000","895073000000","946476000000","956548000000","",
"Brazil","BRA","Gross domestic savings (constant LCU)","NY.GDS.TOTL.KN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","194454000000","","","","","","","","","","","","","","","",
"Brazil","BRA","Gross domestic savings (% of GDP)","NY.GDS.TOTL.ZS","19.6198023306688","21.2960883671636","18.2844465123661","19.1853384488268","19.3102072191183","22.2037611776934","20.7259569602058","16.9187144415426","18.3077031471623","22.4188893108788","20.1217093078931","19.393247750783","19.585913863968","22.0141866534658","19.5180814588259","22.8718656547914","20.7193063911459","21.4037674342001","21.7844063702797","20.7127902633219","21.0933740722249","22.7050256997179","20.4289681100514","19.0955245103597","21.3637577306081","24.3533985752886","21.5551210156563","25.5719411784894","27.914207010519","30.3711287629967","21.4048313812977","20.5321301794778","21.4177572723863","22.2535829354351","22.9906866852952","17.2899574887134","15.3955729218273","15.4512362579856","16.0927846836682","15.888918287211","16.860518789032","16.6758209826038","18.391102902863","19.2732384572944","21.4482527996814","20.833517517783","20.748011662369","21.3536195871202","21.6087053061435","18.5519146535007","20.755010181806","21.0385929301345","18.9911936848292","18.3512038326584","17.3248260902954","",
"Brazil","BRA","Gross domestic income (constant 2005 US$)","NY.GDY.TOTL.KD","109330000000","119700000000","124150000000","125860000000","130710000000","134890000000","140460000000","146880000000","163520000000","180150000000","196850000000","218560000000","245720000000","282230000000","303560000000","319290000000","352160000000","370800000000","380180000000","403780000000","437540000000","416330000000","418040000000","404420000000","428790000000","460760000000","501090000000","516450000000","521010000000","532810000000","503040000000","509310000000","509380000000","533860000000","564350000000","592160000000","605030000000","625770000000","625060000000","620520000000","644700000000","651710000000","670380000000","676990000000","719050000000","741390000000","777840000000","822340000000","871700000000","","","1015900000000","1083000000000","1156400000000","1237400000000","",
"Brazil","BRA","Gross domestic income (constant LCU)","NY.GDY.TOTL.KN","200013299752.684","218987898303.202","227133979854.343","230252874259.963","239133446185.154","246788222223.445","256962735974.738","268722914300","299151950045.151","329592776416.089","360131238394.598","399857625288.986","449552305527.802","516332802785.222","555364726889.649","584147533893.733","644277254280.606","678372516629.126","695533136302.167","738723617526.64","800470715074.161","761670568018.244","764804758255.286","739879153086.401","784463669530.899","842951690008.681","916743133008.148","944845065222.123","953196725682.711","974774936021.345","931804882470.647","946004520911.318","946852117330.034","992648906688.363","1045648294187.24","1097304575618.59","1121581790945.75","1160213475423.61","1162463096614.04","1156533650936.04","1202377000000","1215361243509.77","1255241564499.74","1268688654690.47","1346943145999.71","1389918913688.54","1461560332947.75","1553767268379.88","1638430992820.09","1630322300663.46","1788965701454.38","1882147686450.33","1900869269154.8","1946568724788.11","1937125805095.47","",
"Brazil","BRA","GNI, Atlas method (current US$)","NY.GNP.ATLS.CD","","","18037914377.9098","19707773087.5974","22217498254.9394","23177838763.5336","23652719263.6785","27284844196.4267","33783381116.4391","38464481847.5918","42676319834.3488","49333934414.1925","59181570691.8089","77769954639.8913","102771057123.645","126660628603.433","149591618100.551","167757714503.168","193343515409.989","232359917428.957","265943037420.998","258616663815.923","254812549863.468","223410392284.418","215480414611.018","213647286293.257","248978509417.029","288960953821.376","325226621205.021","404313302388.914","407396519747.757","496943272786.7","488536360423.024","484379062394.234","482312479827.048","599079583449.628","736560966282.169","843730402830.923","822069982058.242","710111473102.399","677480138109.623","586679058657.577","550431802218.325","536815665103.717","610119167530.381","735789508036.89","898354489955.303","1153384752887.18","1426808944430.43","1571598522693.69","1914238910391.4","2206876933921.1","2461471251624.73","2514135161491.54","2375267310848.51","",
"Brazil","BRA","GNI (current US$)","NY.GNP.MKTP.CD","15165569912.5199","15236854859.469","19926293839.0163","23021477292.2093","21211892259.9904","21790035117.19","25823978009.9173","29559163247.6664","33065704447.8652","36783720975.7678","41728566935.8317","48684157318.5706","58075347258.6067","78380807935.1819","104325590448.443","122016649141.279","150357935666.65","173253413561.887","196080790936.193","218945212519.056","227299903221.934","252659071917.96","267229261490.029","191446471082.959","197144720543.593","211063860366.741","256173867061.639","282955492984.36","317177371865.753","448509000000","449671800000","589350000000","393042375000","427140503105.59","537119760675.739","757859058515.855","827516902795.742","855019274582.56","825536162860.836","568078572215.793","626888767422.793","534237309752.572","486500392370.944","534548586285.343","643767179487.179","856742523825.172","1062335769778.88","1338674952493.45","1614369069691.35","1588139441832.55","2172767166894.04","2571003108560.5","2380536582868.26","2356027549742.59","2309333729922.67","",
"Brazil","BRA","GNI (current LCU)","NY.GNP.MKTP.CN","0.0010305797","0.0014922285","0.0028077574","0.0048083207","0.009645056","0.0150469998","0.0208470002","0.028624","0.040812999","0.0544800013","0.0696600005","0.093569003","0.1252540052","0.1745180041","0.2574619949","0.3604139984","0.5832639933","0.8906490207","1.2877919674","2.1442859173","4.3549070358","8.5517263413","17.4355602264","40.1522598267","132.41796875","475.949005127","1272.1594238281","4036.3601074219","30218.19921875","448509","11241795","58935000","628867800","13753924200","343380663000","695487258000","831737239000","921710778000","958034717000","1030892185000","1146893000000","1256633000000","1425884000000","1644806000000","1883019000000","2085654000000","2310899000000","2606534000000","2960430000000","3175326000000","3822332000000","4300774000000","4649426000000","5079831000000","5434786000000","",
"Brazil","BRA","GNI (constant 2005 US$)","NY.GNP.MKTP.KD","124190980973.274","136952736336.507","144096272441.38","145356643043.107","150423168471.109","155016321709.648","153860392799.688","163540394374.49","184135364265.025","203289063364.771","221998998681.934","248007147675.516","278656549472.968","316456032151.701","346460347652.887","362256464858.308","397043101071.367","414673422224.507","425018595797.522","452318349408.47","490576044907.549","464814844929.681","462665758504.335","443152237396.394","466645737427.393","505945794168.396","551801886067.094","575891092629.97","573673449725.912","597467667480.06","582951827892.108","594327939158.031","593606945008.24","617809761451.389","641843915158.412","671514083910.89","689723887287.177","709334071715.675","702563972517.826","700367025329.985","739049110770.635","749298796460.188","773335497371.667","782784734667.39","831315767679.081","856742523825.172","889423129586.256","942751234151.632","983095936747.59","982343031241.661","1089458148113.54","1131516926067.69","1155783235385.88","1185523546011.64","1186590097187.29","",
"Brazil","BRA","GNI growth (annual %)","NY.GNP.MKTP.KD.ZG","","10.2759115543009","5.21605942017887","0.87467259240843","3.48558230427724","3.0534878936691","-0.745682065740354","6.29141873269734","12.5932005785527","10.4019666054899","9.20361135394241","11.7154352713297","12.3582735758699","13.5649001432857","9.48135363297571","4.55928573426421","9.60276477789441","4.44040485921239","2.4947761343175","6.42319039234548","8.45813475157738","-5.2512144131952","-0.462353224899886","-4.21762811473711","5.30145129561521","8.42181843504291","9.06343968607759","4.36555350228483","-0.385080257784679","4.14769373857484","-2.42956069056838","1.95146678020689","-0.12131251154257","4.07724617218106","3.8902191591407","4.62264548307746","2.71175300899615","2.84319345609865","-0.95443028437559","-0.312704219655274","5.52311631496707","1.3868747746499","3.20789263575927","1.22188071384777","6.19979297786286","3.05861588756812","3.81451893098195","5.99580815828151","4.27946430982551","-0.0765851508267303","10.9040440523599","3.8605225934545","2.1445820879165","2.57317373320647","0.0899645712853356","",
"Brazil","BRA","GNI (constant LCU)","NY.GNP.MKTP.KN","192725712900","212530036700","223615729700","225571635200","233434120200","240562002800","238768175088.135","253790080783.349","285750374704.867","315474033256.73","344509037200.286","384869770457.367","432433029601.311","491092138253.314","537654320544.852","562167517281.109","616151141623.343","643510746856.078","659564899390.412","701930008639.34","761300194631.814","721322689083.625","717987630368.712","687705582209.947","724163958708.034","785151732482.444","856313486200.183","893696309587.533","890254861534.761","927179906683.996","904653508140.353","922307520827.688","921188646410.026","958747775234.346","996045164874.347","1042088801697.82","1070347676134.28","1100779731219.63","1090273556100.6","1086864224684.89","1146893000000","1162798969709.23","1200100312227.21","1214764106489.14","1290076966260.86","1329535465312.77","1380250847331.24","1463008040240.28","1525616947172.24","1524448551132.21","1690675092703.23","1755943986638.94","1793601646850.25","1839754133305.36","1841409260224.09","",
"Brazil","BRA","GNI, PPP (current international $)","NY.GNP.MKTP.PP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","972681844480.125","1024627288298.26","1046874513421.93","1115516409726.44","1183710690939.73","1264717861690.37","1322718359820.46","1383941897735.52","1385968713353.1","1401407962762.25","1512056210132.62","1567611956782.76","1643237581580.83","1696566430664.73","1851747443416.06","1969472107121.88","2108077391194.45","2294206383117.43","2440443973235.81","2456808707588.54","2757356914864.61","2923558911954.14","3038982718997.54","3163865201897.06","3212750451305.1","",
"Brazil","BRA","GNI, PPP (constant 2011 international $)","NY.GNP.MKTP.PP.KD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1506202843643.52","1535595891779.75","1533733021836.29","1596267092760.59","1658365381034.22","1735025733413.51","1782075345946.21","1832743195564.9","1815250939471.6","1809574573186.54","1909519481669.7","1936002125678","1998106995295.77","2022521479313.33","2147913623963.57","2213610051317.36","2298048625782.98","2435835212768.95","2540075911345.56","2538130590377.74","2814889468058.95","2923558911954.14","2986257032709.6","3063098614281.31","3065854317817.7","",
"Brazil","BRA","GNI per capita, Atlas method (current US$)","NY.GNP.PCAP.CD","","","230","250","270","280","270","310","370","410","440","500","590","750","970","1170","1350","1470","1660","1950","2180","2070","1990","1710","1610","1560","1780","2030","2240","2740","2710","3250","3140","3070","3010","3680","4460","5030","4820","4100","3850","3290","3040","2920","3280","3900","4710","5980","7330","7990","9640","11010","12160","12310","11530","",
"Brazil","BRA","GNI per capita (current LCU)","NY.GNP.PCAP.CN","1.42161502979884E-11","1.99744433204071E-11","3.64608072385215E-11","6.05822656011703E-11","1.1797973578613E-10","1.78854022226372E-10","2.41019750659076E-10","3.22147606291012E-10","4.47447128950652E-10","5.82139947893347E-10","7.25757660100644E-10","9.50883242447831E-10","1.24205227437984E-09","1.68908899329232E-09","2.43241434176511E-09","3.32389311556986E-09","5.25103228856788E-09","7.82806009172354E-09","1.10509583342204E-08","1.79676552036692E-08","3.5637618483597E-08","6.83550898803078E-08","1.36157067764378E-07","3.06472259037574E-07","9.88558596895954E-07","3.47823318748864E-06","9.10867226619975E-06","2.83377671084862E-05","0.000208185337843692","0.00303452969752415","0.0747493853493041","0.38540552744311","4.0473150398327","87.1537337222681","2142.64054997255","4273.21450798081","5031.58720110333","5489.84289983012","5618.42882144378","5953.6467289583","6524.35417359636","7043.1412064639","7875.82831621772","8957.3045547428","10117.4285250782","11065.6961477561","12118.0928984028","13520.4527131097","15199.6437885286","16142.882798872","19245.0078898686","21448.3633515153","22971.2925566828","24869.5118657882","26372.4836711989","",
"Brazil","BRA","GNI per capita (constant 2005 US$)","NY.GNP.PCAP.KD","1713.13063043129","1833.20092702171","1871.19671139488","1831.41585288436","1839.99819931931","1842.57945218473","1778.83595496336","1840.55850264219","2018.74015870944","2172.22250239658","2312.91232660967","2520.34149313243","2763.23300393542","3062.84960984377","3273.24084788178","3340.88513475786","3574.51542976786","3644.63261303858","3647.22168822816","3790.11962858829","4014.54308482054","3715.32708541276","3613.03062333198","3382.47131988612","3483.71644568594","3697.44958680444","3950.90618511601","4043.11489274512","3952.26731012615","4042.35674262662","3876.18621609702","3886.60851557441","3820.38055737786","3914.84107790505","4005.00362296626","4125.91847323457","4172.47866374466","4224.89647529747","4120.21151432051","4044.78558485349","4204.24411897978","4199.64876722365","4271.49586371408","4262.89864532312","4466.64524429312","4545.55379056692","4664.03426126126","4890.18116839179","5047.47892992342","4994.08514956348","5485.29815205133","5642.98104682776","5710.34678950875","5804.01038828018","5757.9687521235","",
"Brazil","BRA","GNI per capita growth (annual %)","NY.GNP.PCAP.KD.ZG","","7.00882317189007","2.0726470193805","-2.12595812445974","0.46861811430972","0.140285619103892","-3.45947075149385","3.46982797973074","9.68084718912561","7.60287761775437","6.47676856573744","8.96831082338554","9.6372460424444","10.8429729046243","6.86913380800121","2.06658446535799","6.99306577707084","1.96158569317663","0.0710380294661093","3.91799436873693","5.92127632435285","-7.45330148626746","-2.75336355935987","-6.38132713177053","2.99322939427714","6.13520487246247","6.85490342359525","2.33386224093306","-2.24697009679308","2.27943672407116","-4.11073383942924","0.268880257457838","-1.70400383602204","2.47254217501367","2.30309591799451","3.01909465387109","1.12848062345714","1.25627512510189","-2.47781126920012","-1.83063246158272","3.94232353683735","-0.109302686192365","1.71078822236674","-0.201269500551049","4.77953186134334","1.76661771772953","2.60651344485706","4.8487402635284","3.21660396854708","-1.0578306735151","9.83589562005744","2.87464583338026","1.19379707502038","1.64024361783979","-0.79327280753408","",
"Brazil","BRA","GNI per capita (constant LCU)","NY.GNP.PCAP.KN","2658.52092843801","2844.85195929992","2903.81569864014","2842.08179287556","2855.40030298048","2859.40601897341","2760.48570408057","2856.26980941722","3132.78092497603","3370.96242473431","3589.29185942233","3911.1907097338","4288.12178162007","4753.08166451843","5079.57720405777","5184.55095746269","5547.11001616381","5655.92133262565","5659.9391876885","5881.69528633607","6229.96671679646","5765.62851489951","5606.8798004022","5249.08645845337","5406.20365725882","5737.88532745421","6131.21182520784","6274.30586290798","6133.32408638711","6273.12932801852","6015.2576779405","6031.4315182717","5928.65569383331","6075.24420627468","6215.16290759759","6402.80455867025","6475.05896747268","6556.40352261671","6393.94821727908","6276.89852563678","6524.35417359636","6517.22287922791","6628.71876067114","6615.3771715286","6931.56123118984","7054.01542001531","7237.8792803403","7588.82524723174","7832.9277013003","7750.06858944168","8512.35724638203","8757.05736928759","8861.59886402","9006.95067382565","8935.50098334218","",
"Brazil","BRA","GNI per capita, PPP (current international $)","NY.GNP.PCAP.PP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","6470","6700","6740","7070","7390","7770","8000","8240","8130","8090","8600","8790","9080","9240","9950","10450","11050","11900","12530","12490","13880","14580","15010","15490","15590","",
"Brazil","BRA","GNI per capita, PPP (constant 2011 international $)","NY.GNP.PCAP.PP.KD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","10015.1031729121","10042.0318081081","9870.91520088333","10114.977742285","10347.9353817736","10660.3493456708","10780.6493224295","10916.0839381917","10645.6039802158","10450.7220980224","10862.7233750622","10850.8501266197","11036.4851926125","11014.272113987","11540.70275897","11744.5828586605","12050.7069899139","12635.0144717736","13041.4328486992","12903.4765717598","14172.6490587167","14580.0625243627","14754.1188843146","14996.1223776831","14877.1622166764","",
"Brazil","BRA","Gross savings (current US$)","NY.GNS.ICTR.CD","","","","","","","","","","","","","","","","26644914984.3761","29351742063.3796","34852421230.0588","39135181346.172","40552182062.7729","41993922063.9585","49125595927.5443","43078745417.7057","27075019178.3762","32938170154.3446","42563216281.02","45913945610.431","64142396828.0336","79098799035.6574","152392789609.375","87399018000","111784000000","80431500000","88370795031.0559","109744543876.115","111674021684.646","107855624415.481","107452012987.013","99618436018.9572","63497767454.6757","82003710531.5659","69582851778.2502","73680544809.9559","86145757020.7995","121019323418.205","154053578486.866","188686755509.155","244849183700.867","290185803432.5","235703221912.914","424803554715.504","508961031703.289","428530224951.998","406287275110.232","371746575065.013","",
"Brazil","BRA","Gross savings (current LCU)","NY.GNS.ICTR.CN","","","","","","","","","","","","","","","","0.07870401633","0.11386039726","0.17916688739","0.25702656512","0.39715631099","0.804574151","1.6627491328","2.8107028999","5.67847084730001","22.1238771911","95.9800527137001","228.0086539014","914.9912907519","7535.91989606068","152392.789609375","2184975.45","11178400","128690400","2845539600","70159686900","102483249700","108405688100","115833270000","115607195000","115229398600","150025788417.5","163672783952.8","215950308783.5","265070494353","353981520998.25","375028031468.426","410450299259.064","476745845583.958","532142726334.519","471265021892.68","747314413455.515","851390013833.262","836962382353.748","875995993865.172","874868389758.001","",
"Brazil","BRA","Gross savings (% of GNI)","NY.GNS.ICTR.GN.ZS","","","","","","","","","","","","","","","","21.837114174087","19.5212457082768","20.1164412945949","19.9587023080231","18.5216116836734","18.475116561293","19.4434324303604","16.1205195783969","14.1423443457696","16.707609548723","20.1660370501435","17.9229622978613","22.6687229682369","24.9383487133301","33.9776436168226","19.4361794535481","18.967336896581","20.4638240342406","20.6889289094672","20.4320436354915","14.735460430247","13.0336460863934","12.5672035919276","12.0671195885274","11.1776381930764","13.0810623499751","13.0247084035514","15.1450124121948","16.1156084275592","18.7986165300642","17.9813157632295","17.7614988478105","18.2904134603254","17.9751835488263","14.8414689355575","19.5512690539575","19.7962044467638","18.0014131282818","17.2445893153763","16.0975683266646","",
"Brazil","BRA","Gross savings (% of GDP)","NY.GNS.ICTR.ZS","","","","","","","","","","","","","","","","21.5383148178374","19.2246021898404","19.7832588700337","19.4895455800448","18.0256363975128","17.8678837218011","18.6391686717485","15.2933800886112","13.3174706489006","15.7580870673476","19.0915419143694","17.1233015694525","21.8109017539822","23.9405041762768","35.8069710893607","18.9195109545005","18.5422817901337","20.0777959519395","20.1852631654215","19.6635342670004","14.2143386755619","12.63680171637","12.1232479716661","11.4919402376775","10.5494667195226","12.477433318959","12.4341275901054","14.4818113392856","15.4104570428861","18.0722222590053","17.2685828972042","17.0325321025986","17.5401180333837","17.124298923406","14.1598672993864","19.2268108488144","19.4613885279155","17.758232803577","16.9846684332322","15.8454596156744","",
"Brazil","BRA","Net income from abroad (current US$)","NY.GSR.NFCY.CD","0","0","0","0","0","0","-1238738444.1199","-1032670703.03182","-810175889.16795","-675178483.414242","-599032024.248814","-520302243.54305","-463660646.806538","-898254736.047859","-810415500.006078","-1692729017.77704","-2320083832.3662","-2917873473.22267","-4720098101.91149","-6024274804.95134","-7724708204.37072","-10902032026.5667","-14453060026.9443","-11858046681.7018","-11879186473.896","-11878935989.4013","-11963350754.6114","-11128636522.9583","-13220010132.7362","-13950000000","-12280000000","-13510000000","-7556875000","-10658074534.1615","-20992236821.5235","-27784397951.4002","-25987226146.6522","-31310966604.8238","-41318641102.9729","-33826425855.5133","-30327411861.1643","-25374542981.039","-22279504589.0341","-24459863503.4124","-25875555555.5556","-35360663818.6001","-45466372454.3741","-57263109239.3816","-80215945032.1736","-76446934080.2241","-36665529786.2665","-44233022477.2836","-32599457273.0531","-36055377765.4098","-36742585195.8868","",
"Brazil","BRA","Net income from abroad (current LCU)","NY.GSR.NFCY.CN","0","0","0","0","0","0","-0.0010000001","-0.0010000001","-0.0010000001","-0.0010000001","-0.0010000001","-0.0010000001","-0.0010000001","-0.0020000001","-0.0020000001","-0.0049999999","-0.0089999996","-0.0149999997","-0.0309999995","-0.0590000004","-0.1480000019","-0.3689999878","-0.9430000186","-2.4869999886","-7.9790000916","-26.7870006561","-59.4099998474","-158.75","-1259.5","-13950","-307000","-1351000","-12091000","-343190000","-13420337000","-25497742000","-26119761000.0001","-33753222000","-47950283000.0001","-61384814999.9999","-55484000000","-59686000000","-65299000000","-75263000000","-75686000000","-86082000000","-98903000000","-111497000000","-147100000000","-152848000000","-64502000000","-73993000000","-63670000000","-77739000000","-86470000000","",
"Brazil","BRA","Net income from abroad (constant LCU)","NY.GSR.NFCY.KN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Net taxes on products (current US$)","NY.TAX.NIND.CD","2154717348.44165","1876620443.75619","2085475342.5147","2286893809.9038","1776682165.30423","2370591344.51774","4100223963.8883","4243243391.16633","5361743579.35672","6065127845.03305","6760075478.02751","7059980540.69804","8675090019.70557","11345855003.7278","13762069517.4381","14480620249.7791","18194355957.5889","20938271685.1498","23081584811.0286","22794833959.7558","22699523954.4242","26987878437.9072","28430378780.5173","20663420213.0348","18467109682.8991","20035033638.3592","29492369400.9867","29403786002.3975","31786802219.1047","3861310000","69960000000","77480000000","48780000000","57703136645.9627","66497731894.2593","103740873923.94","106920704407.522","107001855287.57","103755277897.458","80340552157.3814","91700464607.8163","83043533713.1196","74575386400.0819","80349041273.9682","101118290598.291","134639746960.237","165568427343.355","205811719993.837","263565819609.554","241711013303.991","331404615734.425","392109636537.542","367959653883.57","357348453225.732","340933118041.982","",
"Brazil","BRA","Net taxes on products (current LCU)","NY.TAX.NIND.CN","0.0001464243","0.0001837877","0.0002938584","0.0004776461","0.0008078581","0.001637","0.0033100001","0.0041089999","0.0066180001","0.0089830002","0.0112849996","0.0135690002","0.0187100004","0.025262","0.0339629985","0.0427730009","0.0705789998","0.1076380014","0.1515920013","0.2232459933","0.4349069893","0.9134560227","1.8549599648","4.3337597847","12.4039697647","45.1790008545","146.4591064453","419.4450073242","3028.3999023438","3861.31","1749000","7748000","78048000","1858041000","42512000000","95203000000","107466000000","115348000000","120408000000","145794000000","167766000000","195335000000","218573000000","247234000000","295771000000","327767000000","360161000000","400736000000","483327000000","483277000000","583007000000","655921000000","718662000000","770479000000","802352000000","",
"Brazil","BRA","Net taxes on products (constant LCU)","NY.TAX.NIND.KN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","110352965100","107767712300","117051596000","126290124300","139554808900","153801770300","164200853500","161342568100","156269278600","167766000000","168827133000","168888041700","169971842900","180806469200","188507572700","198898864800","214034736100","230111403300","229459349000","254203017800","267636810200","276238942500","285711962200","284780535700","",
"Brazil","BRA","Net current transfers from abroad (current US$)","NY.TRF.NCTR.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","840000000","1990000000","1476250000","1560341614.90683","2312915689.03488","3622805927.86314","2585066162.57089","1864934137.29128","1459563981.04265","1668043753.78851","1524460235.0369","1643567723.83301","2478760790.20096","2844003899.9025","3269743589.74359","3547075254.68288","4305613018.89395","4020851522.77746","4316719380.52132","3343002900.87026","2668826739.42701","2661406025.82496","2514464185.14157","3018876675.47887","1584091102.23506","",
"Brazil","BRA","Net current transfers from abroad (current LCU)","NY.TRF.NCTR.CN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","21000","199000","2362000","50243000","1478647000","3324649000","2598250000","2010399000","1693824000","3026999000","2789000000","3866000000","7265000000","8751000000","9564000000","8635000000","9366000000","7829000000","7916000000","6684000000","4695000000","4452000000","4911000000","6509000000","3728000000","",
"Brazil","BRA","Net current transfers from abroad (constant LCU)","NY.TRF.NCTR.KN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2789000000","","","","","","","","","","","","","","","",
"Brazil","BRA","Terms of trade adjustment (constant LCU)","NY.TTF.GNFS.KN","7287586852.68394","6457861603.20156","3518250154.34274","4681239059.96287","5699325985.15448","6226219423.44498","6416543474.73776","5861710800","6252854545.15088","8177532016.08911","10528045894.5977","10766448588.9864","13564738727.8016","19399878385.2221","13498529589.6486","14055115093.7332","18370449380.6056","23634453529.1261","19635840602.1673","17093184726.6399","13092821074.1613","8884997418.24428","7651182855.28554","8542950886.40046","14592315930.899","11907423008.6812","19312597508.1479","15110355722.1234","24416600082.7108","15535848321.3449","2324805670.64677","2471288711.31837","7724366430.03442","9709259188.36305","10273222987.2445","16199769018.5894","16800146545.7468","17998735423.6096","16195253914.0437","4644246136.03755","0","-2394454890.22644","79761199.7431335","-1826355809.52686","4508428599.7142","5212268888.53552","21474779147.7489","27193030079.8815","35233169320.0895","30907672963.459","68442324054.3777","94242037950.3305","81451983754.796","77232148288.1129","65084161095.4672","",
"Brazil","BRA","DEC alternative conversion factor (LCU per US$)","PA.NUS.ATLS","6.79552239674953E-14","9.79354672445837E-14","1.40907156277216E-13","2.08862387020975E-13","4.54700404932396E-13","6.90545E-13","8.07273E-13","9.68363E-13","1.2343E-12","1.48109E-12","1.66936E-12","1.92196E-12","2.15675E-12","2.22654E-12","2.46787E-12","2.95381E-12","3.87917E-12","5.14073E-12","6.56766E-12","9.79371E-12","1.91593E-11","3.38469E-11","6.52457E-11","2.09731E-10","6.71679E-10","2.255E-09","4.966E-09","1.4265E-08","9.52722416514E-08","1E-06","2.5E-05","0.0001","0.0016","0.0322","0.6393","0.9177","1.0051","1.078","1.1605","1.8147","1.8295","2.3522","2.9309","3.077","2.925","2.4344","2.1753","1.9471","1.8338","1.9994","1.7592","1.6728","1.9531","2.1561","2.3534","",
"Brazil","BRA","Official exchange rate (LCU per US$, period average)","PA.NUS.FCRF","8.09970533496995E-14","1.16843478826882E-13","1.67764155487091E-13","2.488693976762E-13","5.42023917053559E-13","8.21654885346591E-13","9.60713051097307E-13","1.15260322134061E-12","1.46959525276793E-12","1.76336283963876E-12","1.98785378344809E-12","2.28822086312487E-12","2.56796001993275E-12","2.65094052783721E-12","2.9383610615176E-12","3.5168444719385E-12","4.61870733099062E-12","6.12086729455843E-12","7.81974984419137E-12","1.1660690720063E-11","2.28123189244443E-11","4.03001093531326E-11","7.76854427171099E-11","2.49718172221135E-10","7.99741323974137E-10","2.68324234084592E-09","5.90968226749251E-09","1.6976307824584E-08","1.1354767374037E-07","1.22638743473744E-06","2.95572678942699E-05","0.000175961443086024","0.00195302352248811","0.038276610926673","0.664683514070577","0.917666666666667","1.0051","1.07799166666667","1.16051666666667","1.81393284657213","1.82942312207561","2.34963170932244","2.92036301775519","3.07747511847801","2.92511944951586","2.43439003623188","2.17532666666667","1.94705833333333","1.83376666666667","1.99942817314426","1.75922671058718","1.67282875525659","1.95306861112487","2.15608915126311","2.35356860418091","",
"Brazil","BRA","PPP conversion factor, GDP (LCU per international $)","PA.NUS.PPP","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1.1557525272828E-05","5.75184759112572E-05","0.000600709819503023","0.0123296475785353","0.290088334614427","0.549914948675146","0.628809022589584","0.666003955446507","0.691238343095214","0.735611765019558","0.75849891843598","0.801622489904331","0.867728450214892","0.96949106752958","1.01688759268718","1.05899138782316","1.09621165221578","1.13613754158341","1.2130702578985","1.29245960020905","1.3862304076031","1.47107485414936","1.52992841023252","1.60557756915627","1.69163029696012","",
"Brazil","BRA","2005 PPP conversion factor, GDP (LCU per international $)","PA.NUS.PPP.05","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1.35674303283679","","","","","","","","","","",
"Brazil","BRA","Price level ratio of PPP conversion factor (GDP) to market exchange rate","PA.NUS.PPPC.RF","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.46230101091312","0.575184759112572","0.375443637189389","0.382908309892401","0.453759322093582","0.599231719162195","0.625618368908152","0.617814429913272","0.595638382675755","0.405362740408639","0.414593560227374","0.34079690923575","0.296062114099728","0.315076720029113","0.347653877841771","0.435011250338137","0.50393584894763","0.583502409523604","0.661506302703948","0.646423727222692","0.787989090270066","0.879408688515878","0.783333372706221","0.744667487202017","0.718802709679663","",
"Brazil","BRA","PPP conversion factor, private consumption (LCU per international $)","PA.NUS.PRVT.PP","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2.39117107766808E-05","0.000122221861206452","0.00124755803773427","0.0245749042589285","0.521133928972719","0.841515331417333","0.946376348728442","0.988800813257828","1.00483073836183","1.03108466355085","1.06766788935925","1.10932187814665","1.1842789858225","1.32839369869968","1.37913339211927","1.42548036327609","1.43870605461971","1.44967764058661","1.47514212778196","1.5527443217404","1.6046593909205","1.65878263608021","1.71294292311674","1.79291472327472","1.87601066313078","",
"Brazil","BRA","2005 PPP conversion factor, private consumption (LCU per international $)","PA.NUS.PRVT.PP.05","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1.5713184094","","","","","","","","","","",
"Brazil","BRA","Adequacy of social protection and labor programs (% of total welfare of beneficiary households)","per_allsp.adq_pop_tot","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","46.6679011835545","","","40.9706821351469","","40.6013712754023","39.4731116925823","","","",
"Brazil","BRA","Benefits incidence in poorest quintile (%) -All Social Protection and Labor","per_allsp.ben_q1_tot","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1.50279422763801","","","2.48299456466079","","2.63915154006148","2.86173678012487","","","",
"Brazil","BRA","Coverage (%) -All Social Protection and Labor","per_allsp.cov_pop_tot","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","53.9326690456655","","","45.4601754328202","","45.3438802543435","46.3765817076202","","","",
"Brazil","BRA","Adequacy of unemployment benefits and ALMP (% of total welfare of beneficiary households)","per_lm_alllm.adq_pop_tot","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Benefits incidence in poorest quintile (%) - All Labor Market","per_lm_alllm.ben_q1_tot","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Coverage (%) - All Labor Market","per_lm_alllm.cov_pop_tot","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","6.22138889108261","","","7.15987196323865","","5.6020704331788","5.89741620135556","","","",
"Brazil","BRA","Adequacy of social safety net programs (% of total welfare of beneficiary households)","per_sa_allsa.adq_pop_tot","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","9.4254449934987","","8.30441811804623","9.09803037422143","","","",
"Brazil","BRA","Benefits incidence in poorest quintile (%) - All Social Assistance","per_sa_allsa.ben_q1_tot","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","16.3653629917103","","15.329063738481","15.5511292108966","","","",
"Brazil","BRA","Coverage (%) - All Social Assistance","per_sa_allsa.cov_pop_tot","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","25.288418013529","","","17.5605859414405","","18.6521436332286","19.5278768064906","","","",
"Brazil","BRA","Adequacy of social insurance programs (% of total welfare of beneficiary households)","per_si_allsi.adq_pop_tot","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","46.6679011835545","","","47.5382877064842","","48.0808203048544","46.5212211084722","","","",
"Brazil","BRA","Benefits incidence in poorest quintile (%) - All Social Insurance","per_si_allsi.ben_q1_tot","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1.50279422763801","","","1.3967761059282","","1.70536083309086","1.78543424239215","","","",
"Brazil","BRA","Coverage (%) - All Social Insurance","per_si_allsi.cov_pop_tot","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","30.1009390021581","","","27.9467696414169","","28.3104496205996","28.3446475182455","","","",
"Brazil","BRA","Real effective exchange rate index (2010 = 100)","PX.REX.REER","","","","","","","","","","","","","","","","","","","","","74.1087351455858","86.0822680378007","93.3140552342539","71.5895264921082","63.8418973649561","61.7318621977033","58.9168152802547","61.1493524892082","60.5168419473658","80.9655160919349","100.284171402857","84.3522392039868","74.2195703261721","78.1454690911516","81.3963566059435","89.0164836080602","93.9340655677595","96.3532725545426","93.6057267621127","62.2202036700612","67.0319505325089","56.8184469741163","58.6459774329572","55.4000900015","58.1501358355973","70.9770162836048","79.2113201886698","85.0614176902949","88.8331472191203","88.16396939949","100","103.496724945416","93.1123852064201","87.8639643994067","87.0281171352856","",
"Brazil","BRA","Youth literacy rate, population 15-24 years, female (%)","SE.ADT.1524.LT.FE.ZS","","","","","","","","","","","","","","","","","","","","","85.23655","","","","","","","","","","","","","","","","","","","","95.7190170288086","","","","97.9038543701172","","98.3616561889648","98.5594253540039","98.5311126708984","98.6920394897461","98.3187408447266","99.0731430053711","99.0208206176758","99.2297210693359","","",
"Brazil","BRA","Youth literacy rate, population 15-24 years, gender parity index (GPI)","SE.ADT.1524.LT.FM.ZS","","","","","","","","","","","","","","","","","","","","","1.03246","","","","","","","","","","","","","","","","","","","","1.03308010101318","","","","1.02213275432587","","1.01616430282593","1.01548111438751","1.01389837265015","1.0127899646759","1.01656985282898","1.01187980175018","1.0080771446228","1.00995075702667","","",
"Brazil","BRA","Youth literacy rate, population 15-24 years, male (%)","SE.ADT.1524.LT.MA.ZS","","","","","","","","","","","","","","","","","","","","","82.55676","","","","","","","","","","","","","","","","","","","","92.6540145874023","","","","95.7838973999023","","96.797004699707","97.0568771362305","97.1804656982422","97.4457168579102","96.7161636352539","97.9099960327148","98.2274322509766","98.2520370483398","","",
"Brazil","BRA","Youth literacy rate, population 15-24 years, both sexes (%)","SE.ADT.1524.LT.ZS","","","","","","","","","","","","","","","","","","","","","83.91427","","","","","","","","","","","","","","","","","","","","94.1841125488281","","","","96.8438568115234","","97.5822982788086","97.8006286621094","97.8436279296875","98.0655364990234","97.5141220092773","98.4869155883789","98.6196517944336","98.7366790771484","","",
"Brazil","BRA","Adult literacy rate, population 15+ years, female (%)","SE.ADT.LITR.FE.ZS","","","","","","","","","","","","","","","","","","","","","72.85315","","","","","","","","","","","","","","","","","","","","86.5000457763672","","","","88.8061294555664","","89.8555908203125","90.2280044555664","90.2195587158203","90.4112167358398","90.6816940307617","91.6331558227539","91.6249008178711","91.7649536132813","","",
"Brazil","BRA","Adult literacy rate, population 15+ years, male (%)","SE.ADT.LITR.MA.ZS","","","","","","","","","","","","","","","","","","","","","76.37737","","","","","","","","","","","","","","","","","","","","86.2279815673828","","","","88.4094619750977","","89.3532409667969","89.7721405029297","89.8378753662109","90.1748428344727","90.0561752319336","91.1689834594727","91.0256729125977","91.1779632568359","","",
"Brazil","BRA","Adult literacy rate, population 15+ years, both sexes (%)","SE.ADT.LITR.ZS","","","","","","","","","","","","","","","","","","","","","74.58673","","","","","","","","","","","","","","","","","","","","86.3678817749023","","","","88.6162414550781","","89.6152267456055","90.0093688964844","90.03662109375","90.298210144043","90.3791809082031","91.411247253418","91.3378524780273","91.4842376708984","","",
"Brazil","BRA","Gross enrolment ratio, primary, gender parity index (GPI)","SE.ENR.PRIM.FM.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Gross enrolment ratio, primary and secondary, gender parity index (GPI)","SE.ENR.PRSC.FM.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Gross enrolment ratio, secondary, gender parity index (GPI)","SE.ENR.SECO.FM.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Gross enrolment ratio, tertiary, gender parity index (GPI)","SE.ENR.TERT.FM.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Gross enrolment ratio, pre-primary, both sexes (%)","SE.PRE.ENRR","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Gross enrolment ratio, pre-primary, female (%)","SE.PRE.ENRR.FE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Gross enrolment ratio, pre-primary, male (%)","SE.PRE.ENRR.MA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Official entrance age to primary education (years)","SE.PRM.AGES","","","","","","","","","","","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","6","6","",
"Brazil","BRA","Primary completion rate, female (%)","SE.PRM.CMPT.FE.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Primary completion rate, male (%)","SE.PRM.CMPT.MA.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Primary completion rate, both sexes (%)","SE.PRM.CMPT.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Theoretical duration of primary education (years)","SE.PRM.DURS","","","","","","","","","","","4","4","4","4","4","4","4","4","4","4","4","4","4","4","4","4","4","4","4","4","4","4","4","4","4","4","4","4","4","4","4","4","4","4","4","4","4","4","4","4","4","4","4","5","5","",
"Brazil","BRA","Enrolment in primary education, both sexes (number)","SE.PRM.ENRL","","","","","","","","","","","12812029","13623388","13676582","13995216","14009392","13924849","13524834","14163728","14814043","15719836","16089731","15984805","16694572","16378400","17488900","17331576","","17568716","18822708","18409050","20312240","19002864","19231504","19410184","19930484","","","20568128","35838372","20939076","20211506","19727684","19380388","18919122","18979208","18661104","","17996084","17812436","17451886","16893490","16486880","16134889","16760693","","",
"Brazil","BRA","Percentage of students in primary education who are female (%)","SE.PRM.ENRL.FE.ZS","","","","","","","","","","","49.71042","49.37859","49.30067","49.45958","49.45182","","","","","48.80242","","","","","","","","","","49.23021","","","","","","","","","","47.7313613891602","47.6987113952637","47.7529907226563","47.7374114990234","47.719898223877","47.7067604064941","47.5925598144531","","47.208610534668","47.1778793334961","47.2005310058594","47.2366485595703","47.3332786560059","47.4266510009766","47.7624282836914","","",
"Brazil","BRA","Pupil-teacher ratio in primary education (headcount basis)","SE.PRM.ENRL.TC.ZS","","","","","","","","","","","28.01019","","","","","","","","","","","","","","","","","","","","","","","","","","","","","25.9451103210449","24.796989440918","22.9708690643311","22.3533096313477","21.5675296783447","21.3867607116699","21.0436496734619","","23.8582801818848","23.0246696472168","22.6441097259521","22.1660900115967","21.2850704193115","20.5171203613281","21.2274894714355","","",
"Brazil","BRA","Gross enrolment ratio, primary, both sexes (%)","SE.PRM.ENRR","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Gross enrolment ratio, primary, female (%)","SE.PRM.ENRR.FE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Gross enrolment ratio, primary, male (%)","SE.PRM.ENRR.MA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Gross intake ratio to Grade 1 of primary education, female (%)","SE.PRM.GINT.FE.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Gross intake ratio to Grade 1 of primary education, male (%)","SE.PRM.GINT.MA.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Gross intake ratio to Grade 1 of primary education, both sexes (%)","SE.PRM.GINT.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Net enrolment rate, primary, both sexes (%)","SE.PRM.NENR","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Net enrolment rate, primary, female (%)","SE.PRM.NENR.FE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Net enrolment rate, primary, male (%)","SE.PRM.NENR.MA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Net intake rate to Grade 1 of primary education, female (%)","SE.PRM.NINT.FE.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Net intake rate to Grade 1 of primary education, male (%)","SE.PRM.NINT.MA.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Net intake rate to Grade 1 of primary education, both sexes (%)","SE.PRM.NINT.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Percentage of enrolment in primary education in private institutions (%)","SE.PRM.PRIV.ZS","","","","","","","","","","","9.00698","","","","","","","","","","","","","","","","","","","","","","","","","","","","","8.4639196395874","8.33108997344971","8.05601978302002","8.72605991363525","9.12038993835449","9.93344020843506","10.2803602218628","","10.6691598892212","12.0762796401978","12.812689781189","13.7780704498291","14.6898002624512","15.8553104400635","16.1735401153564","","",
"Brazil","BRA","Survival rate to Grade 5 of primary education, female (%)","SE.PRM.PRS5.FE.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Survival rate to Grade 5 of primary education, male (%)","SE.PRM.PRS5.MA.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Survival rate to Grade 5 of primary education, both sexes (%)","SE.PRM.PRS5.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Survival rate to the last grade of primary education, female (%)","SE.PRM.PRSL.FE.ZS","","","","","","","","","","","","","37.57624","39.49899","42.22355","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Survival rate to the last grade of primary education, male (%)","SE.PRM.PRSL.MA.ZS","","","","","","","","","","","","","34.17678","35.60241","37.69829","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Survival rate to the last grade of primary education, both sexes (%)","SE.PRM.PRSL.ZS","","","","","","","","","","","44.27421","","35.83607","37.50879","39.91072","40.42459","43.37362","42.48772","42.11244","36.62294","41.78862","43.27285","42.4728","","43.91114","46.6164","","54.59892","","","","","70.29928","68.64674","64.61132","","","","","","80.1327667236328","84.6197204589844","83.7102508544922","80.6246566772461","","","","","","","","","","","","",
"Brazil","BRA","Percentage of repeaters in primary education, all grades, female (%)","SE.PRM.REPT.FE.ZS","","","","","","","","","","","","15.30967","17.08261","16.93794","16.30204","","","","","","","","","","","","","","","","","","","","","","","","","24.0441207885742","","","","","","","","","","","","","","","","",
"Brazil","BRA","Percentage of repeaters in primary education, all grades, male (%)","SE.PRM.REPT.MA.ZS","","","","","","","","","","","","16.91336","18.95504","19.24545","18.83898","","","","","","","","","","","","","","","","","","","","","","","","","24.0441207885742","","","","","","","","","","","","","","","","",
"Brazil","BRA","Percentage of repeaters in primary education, all grades, both sexes (%)","SE.PRM.REPT.ZS","","","","","","","","","","","19.2407","16.12148","18.03192","18.10417","17.58442","17.17295","19.25483","21.31757","21.58182","17.61506","21.6938","21.70049","21.75059","","20.9128","19.58827","","19.82945","","","","","18.14645","18.3859","19.12068","","","","","24.0441207885742","25.0112705230713","21.4680500030518","20.6111793518066","19.9537391662598","20.1339492797852","18.6657009124756","","","11.8231000900269","10.8304996490479","9.44715023040771","8.74965000152588","","","","",
"Brazil","BRA","Percentage of female teachers in primary education who are trained, female (%)","SE.PRM.TCAQ.FE.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Percentage of male teachers in primary education who are trained, male (%)","SE.PRM.TCAQ.MA.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Percentage of teachers in primary education who are trained, both sexes (%)","SE.PRM.TCAQ.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Teachers in primary education, both sexes (number)","SE.PRM.TCHR","","","","","","","","","","","457406","","","","","","","","","","","","","","","","","","","","","","","","","","","","","807053","815079","858813","867003","877204","887428","886781","","754291","773624","770703","762132","774575","786411","789575","","",
"Brazil","BRA","Percentage of teachers in primary education who are female (%)","SE.PRM.TCHR.FE.ZS","","","","","","","","","","","94.78275","","","","","","","","","","","","","","","","","","","","","","","","","","","","","92.6142425537109","92.6128616333008","92.0723114013672","90.044563293457","89.7346572875977","89.5783081054688","87.7873992919922","","91.0298461914063","91.0757675170898","90.8332977294922","90.7311325073242","90.2333526611328","89.8296203613281","89.768669128418","","",
"Brazil","BRA","Adjusted net enrolment rate, primary, both sexes (%)","SE.PRM.TENR","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Adjusted net enrolment rate, primary, female (%)","SE.PRM.TENR.FE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Adjusted net enrolment rate, primary, male (%)","SE.PRM.TENR.MA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Out-of-school children of primary school age, both sexes (number)","SE.PRM.UNER","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Out-of-school children of primary school age, female (number)","SE.PRM.UNER.FE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Out-of-school children of primary school age, male (number)","SE.PRM.UNER.MA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Official entrance age to lower secondary education (years)","SE.SEC.AGES","","","","","","","","","","","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","",
"Brazil","BRA","Lower secondary completion rate, female (%)","SE.SEC.CMPT.LO.FE.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Lower secondary completion rate, male (%)","SE.SEC.CMPT.LO.MA.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Lower secondary completion rate, both sexes (%)","SE.SEC.CMPT.LO.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Theoretical duration of secondary education (years)","SE.SEC.DURS","","","","","","","","","","","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","7","",
"Brazil","BRA","Enrolment in secondary education, both sexes (number)","SE.SEC.ENRL","","","","","","","","","","","4086073","4562126","5598583","6058379","8012497","8614147","9403986","10102668","10521905","","","","","","","10454336","","","","","","","","","","","","","6967905","","","","26789210","24592568","25155104","24863112","","23423870","23645668","23616942","23538716","23399408","23134072","24881382","","",
"Brazil","BRA","Percentage of students in secondary education who are female (%)","SE.SEC.ENRL.FE.ZS","","","","","","","","","","","50.46579","50.77869","50.88948","51.26401","51.96509","","","","","","","","","","","","","","","","","","","","","","","","","","","","51.5578994750977","51.7473793029785","51.5375099182129","51.622730255127","","51.7353096008301","51.7060203552246","51.618968963623","51.4983787536621","51.3676605224609","51.1544189453125","50.7307586669922","","",
"Brazil","BRA","Enrolment in secondary general, both sexes (number)","SE.SEC.ENRL.GC","","","","","","","","","","","3055652","3992048","4943407","5270588","6958947","7560303","7969005","8411793","8719997","8963691","9327705","9309172","9743817","","10252043","8436886","","11345799","11338355","","12130155","13971090","14960211","15322543","15799825","","","","","23462344","25094296","25126886","26317984","24140228","24437536","24109588","","22426612","22516084","22384268","22215054","21982888","21637504","24006492","","",
"Brazil","BRA","Percentage of students in secondary general education who are female (%)","SE.SEC.ENRL.GC.FE.ZS","","","","","","","","","","","49.64168","49.47764","49.81057","50.43581","51.5093","","","","","51.69551","","","","","","","","","","","","","","","","","","","","51.2302093505859","51.1069183349609","51.4395484924316","51.5112495422363","51.348331451416","51.6572303771973","51.6635894775391","","51.4726295471191","51.4235000610352","51.3141784667969","51.1540298461914","51.0076789855957","50.8134803771973","50.4970588684082","","",
"Brazil","BRA","Pupil-teacher ratio in secondary education (headcount basis)","SE.SEC.ENRL.TC.ZS","","","","","","","","","","","13.24274","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","19.1207294464111","16.7302093505859","16.0171203613281","15.4277696609497","","18.5515899658203","17.1954193115234","17.138650894165","16.663610458374","16.3498497009277","15.9738702774048","17.2630805969238","","",
"Brazil","BRA","Enrolment in secondary vocational, both sexes (number)","SE.SEC.ENRL.VO","","","","","","","","","","","1030421","570078","655176","787791","1053550","1053844","1434981","1690875","1801908","","","","","","","2017450","","","","","","","","","","","","","","","","","471227","452342","717568","753523","","997258","1129584","1232675","1323663","1416520","1496569","874889","","",
"Brazil","BRA","Percentage of students in secondary vocational education who are female (%)","SE.SEC.ENRL.VO.FE.ZS","","","","","","","","","","","52.90964","59.88952","59.03009","56.80491","54.97565","44.56722","54.35779","54.17237","54.97811","","","","","","","","","","","","","","","","","","","","56.36769","","","","54.1628608703613","73.0436325073242","47.46044921875","50.3151206970215","","57.6426582336426","57.3376617431641","57.1536712646484","57.2774887084961","56.954158782959","56.0838203430176","57.1433601379395","","",
"Brazil","BRA","Gross enrolment ratio, secondary, both sexes (%)","SE.SEC.ENRR","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Gross enrolment ratio, secondary, female (%)","SE.SEC.ENRR.FE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Gross enrolment ratio, secondary, male (%)","SE.SEC.ENRR.MA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Net enrolment rate, secondary, both sexes (%)","SE.SEC.NENR","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Net enrolment rate, secondary, female (%)","SE.SEC.NENR.FE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Net enrolment rate, secondary, male (%)","SE.SEC.NENR.MA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Percentage of enrolment in secondary education in private institutions (%)","SE.SEC.PRIV.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","11.0464897155762","10.8900499343872","12.2898502349854","12.5376195907593","","11.437370300293","12.6405696868896","13.076319694519","13.6363201141357","14.293869972229","14.9810400009155","12.8780899047852","","",
"Brazil","BRA","Primary to secondary general education transition rate, female (%)","SE.SEC.PROG.FE.ZS","","","","","","","","","","","","48.61838","82.07528","80.707","82.27396","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Primary to secondary general education transition rate, male (%)","SE.SEC.PROG.MA.ZS","","","","","","","","","","","","52.13324","90.01056","84.61009","87.41051","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Primary to secondary general education transition rate, both sexes (%)","SE.SEC.PROG.ZS","","","","","","","","","","","40.52956","50.33229","85.94923","82.59921","84.75368","87.75616","90.65763","91.62403","89.48654","88.99081","88.58995","86.82925","90.04509","","87.84149","88.9946","","90.24602","","","","","96.55965","98.29643","97.84829","","","","","","97.8767395019531","97.9062423706055","96.9001235961914","95.2193603515625","","","","","","","","","","","","",
"Brazil","BRA","Percentage of repeaters in secondary general education, all grades, female (%)","SE.SEC.REPT.FE.ZS","","","","","","","","","","","","10.41733","9.7755","7.97302","7.38152","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Percentage of repeaters in secondary general education, all grades, male (%)","SE.SEC.REPT.MA.ZS","","","","","","","","","","","","13.33785","10.62704","10.05059","9.86018","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Percentage of repeaters in secondary general education, all grades, both sexes (%)","SE.SEC.REPT.ZS","","","","","","","","","","","14.14615","11.89284","10.20288","9.00275","8.58344","8.99031","9.58918","10.00588","12.72526","12.8481","13.77962","14.69988","15.60387","","","","","","","","","","14.09704","14.72091","15.26565","","","","","","18.3034591674805","17.9702606201172","17.3773994445801","19.2961292266846","21.895299911499","21.0782909393311","","","20.3737392425537","19.6059303283691","18.0602397918701","16.2542495727539","","","","",
"Brazil","BRA","Teachers in secondary education, both sexes (number)","SE.SEC.TCHR","","","","","","","","","","","308552","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1401056","1469950","1570514","1611582","","1262634","1375114","1377993","1412582","1431170","1448245","1441306","","",
"Brazil","BRA","Teachers in secondary education, female (number)","SE.SEC.TCHR.FE","","","","","","","","","","","164457","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1113226","1202590","1256875","1307572","","872524","938290","937615","947458","948816","951751","945315","","",
"Brazil","BRA","Percentage of teachers in secondary education who are female (%)","SE.SEC.TCHR.FE.ZS","","","","","","","","","","","53.29961","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","79.4562072753906","81.8116302490234","80.0295333862305","81.1359329223633","","69.1034774780273","68.2336196899414","68.0420684814453","67.0727767944336","66.2965316772461","65.7175369262695","65.5873870849609","","",
"Brazil","BRA","Gross enrolment ratio, tertiary, both sexes (%)","SE.TER.ENRR","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Gross enrolment ratio, tertiary, female (%)","SE.TER.ENRR.FE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Gross enrolment ratio, tertiary, male (%)","SE.TER.ENRR.MA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Percentage of teachers in tertiary education who are female (%)","SE.TER.TCHR.FE.ZS","","","","","","","","","","","20.70843","21.93831","22.67065","23.38855","25.05622","","","","","29.29582","30.27471","","","43.14286","","","","","35.80405","36.36442","40.64311","37.55136","37.30869","38.40299","37.82036","","","","42.00894","40.7660102844238","40.8359413146973","42.1506690979004","52.7683296203613","46.4729690551758","43.840690612793","44.3207588195801","","43.7340507507324","43.7359085083008","44.833438873291","44.8790283203125","45.0550918579102","45.1763305664063","45.1105690002441","","",
"Brazil","BRA","Current education expenditure, primary (% of total expenditure in primary public institutions)","SE.XPD.CPRM.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","93.61085","93.1752090454102","91.9165802001953","91.077766418457","90.0031814575195","","92.830940246582","93.1742706298828","93.2655334472656","92.9845275878906","93.2212295532227","94.6043701171875","94.1575698852539","94.3173980712891","","","","",
"Brazil","BRA","Current education expenditure, secondary (% of total expenditure in secondary public institutions)","SE.XPD.CSEC.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","95.9209","96.0896835327148","94.4475784301758","93.1314315795898","91.787467956543","","94.8647613525391","94.6236114501953","95.1604537963867","93.2849502563477","92.8899078369141","94.5865707397461","93.9366226196289","94.1712417602539","","","","",
"Brazil","BRA","Current education expenditure, tertiary (% of total expenditure in tertiary public institutions)","SE.XPD.CTER.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","97.64043","97.04736328125","96.9163665771484","92.9409408569336","90.9161605834961","","96.6965179443359","94.8393630981445","94.0714111328125","95.0941162109375","88.6545104980469","86.3871002197266","86.8707733154297","91.9855194091797","","","","",
"Brazil","BRA","Current education expenditure, total (% of total expenditure in public institutions)","SE.XPD.CTOT.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","95.21351","94.8745880126953","93.8585891723633","92.3102874755859","91.0330123901367","","94.0661163330078","93.8673934936523","94.0681610107422","93.2888107299805","92.2513122558594","93.1786727905273","92.7514801025391","93.884147644043","","","","",
"Brazil","BRA","All education staff compensation, primary (% of total expenditure in primary public institutions)","SE.XPD.MPRM.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","75.03576","70.0729370117188","71.154182434082","71.6442031860352","72.4647369384766","","65.8601989746094","69.1419372558594","67.9788284301758","66.7995071411133","67.1320724487305","69.2509765625","64.8400497436523","67.8898086547852","","","","",
"Brazil","BRA","All education staff compensation, secondary (% of total expenditure in secondary public institutions)","SE.XPD.MSEC.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","80.041","76.0684204101563","76.1433334350586","76.2708206176758","76.4086990356445","","66.6079788208008","69.9803466796875","69.3268203735352","68.9594802856445","67.8138275146484","72.1417617797852","70.8094787597656","75.1903305053711","","","","",
"Brazil","BRA","All education staff compensation, tertiary (% of total expenditure in tertiary public institutions)","SE.XPD.MTER.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","84.2471","80.0596694946289","79.6729202270508","74.4409713745117","67.6830062866211","","72.1506881713867","73.8821334838867","75.1698608398438","74.264892578125","69.0337371826172","69.3851699829102","70.8658981323242","77.1577606201172","","","","",
"Brazil","BRA","All education staff compensation, total (% of total expenditure in public institutions)","SE.XPD.MTOT.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","78.73339","74.124137878418","74.8119430541992","74.1616668701172","73.1193313598633","","67.1863098144531","70.2662887573242","69.784782409668","68.9935073852539","67.8249664306641","70.2811126708984","68.471076965332","73.1655426025391","","","","",
"Brazil","BRA","Government expenditure per primary student as % of GDP per capita (%)","SE.XPD.PRIM.PC.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","10.8327903747559","10.7041301727295","10.455849647522","9.86380958557129","","12.7963199615479","15.362850189209","","17.2839908599854","18.5691509246826","20.1803703308105","21.0755195617676","21.2008209228516","22.5779094696045","","","",
"Brazil","BRA","Expenditure on primary as % of government expenditure on education (%)","SE.XPD.PRIM.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","32.89734","33.9730491638184","30.8817806243896","30.0027408599854","28.2042694091797","","32.9321517944336","34.0156288146973","32.0246696472168","32.1985816955566","31.9194107055664","32.3788108825684","31.3259506225586","29.2855606079102","28.8940696716309","","","",
"Brazil","BRA","Government expenditure per secondary student as % of GDP per capita (%)","SE.XPD.SECO.PC.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","10.2122097015381","","11.5401201248169","13.1485500335693","","18.003870010376","19.5296001434326","20.5449199676514","21.566370010376","23.0134792327881","24.3166694641113","","","",
"Brazil","BRA","Expenditure on secondary as % of government expenditure on education (%)","SE.XPD.SECO.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","37.59655","35.657398223877","38.4423217773438","40.0805892944336","40.3633613586426","","39.3634605407715","38.7884788513184","43.7879791259766","43.6555213928223","44.5640411376953","44.608470916748","44.664909362793","45.1179618835449","44.6185302734375","","","",
"Brazil","BRA","Government expenditure per tertiary student as % of GDP per capita (%)","SE.XPD.TERT.PC.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","80.27205","57.2475814819336","55.5996894836426","47.4847183227539","44.6348991394043","","32.6383590698242","35.0135612487793","","29.6273307800293","27.6707897186279","28.4391994476318","28.4425792694092","28.8740406036377","28.4928302764893","","","",
"Brazil","BRA","Expenditure on tertiary as % of government expenditure on education (%)","SE.XPD.TERT.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","21.43783","21.0664901733398","22.0737800598145","21.5890197753906","23.589599609375","","18.9201202392578","18.9950408935547","16.6642303466797","16.1716709136963","15.9100503921509","15.9886903762817","16.3982105255127","16.7633495330811","16.3650608062744","","","",
"Brazil","BRA","Expenditure on education as % of total government expenditure (%)","SE.XPD.TOTL.GB.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","11.62986","9.60027027130127","11.4521598815918","10.6107597351074","9.63646030426025","","10.3937196731567","11.2567195892334","12.4227304458618","13.218560218811","14.0822401046753","14.7240295410156","14.559889793396","15.2692899703979","15.5696496963501","","","",
"Brazil","BRA","Government expenditure on education as % of GDP (%)","SE.XPD.TOTL.GD.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","4.57043","","","4.86875","3.88166999816895","4.01457977294922","3.88489007949829","3.77819991111755","","4.00775003433228","4.52778005599976","4.95275020599365","5.08439016342163","5.40367984771729","5.62146997451782","5.82224988937378","6.06057977676392","6.34657001495361","","","",
"Brazil","BRA","Female legislators, senior officials and managers (% of total)","SG.GEN.LSOM.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","31.2191831771903","","32.598372344345","33.8556295022918","33.8985831663844","35.4339538013007","35.1824509597131","36.0784291189033","","35.9507142806984","","36.4162601421765","37.2683013943322","37.4991814965621","","",
"Brazil","BRA","Proportion of seats held by women in national parliaments (%)","SG.GEN.PARL.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","5.3","","","","","","","6.6","6.6","5.7","5.7","6.8","6.2","8.6","8.6","8.6","8.8","9","9","8.8","8.6","8.6","8.6","8.6","9.9","9.94152046783626",
"Brazil","BRA","Women who believe a husband is justified in beating his wife when she argues with him (%)","SG.VAW.ARGU.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Women who believe a husband is justified in beating his wife when she burns the food (%)","SG.VAW.BURN.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Women who believe a husband is justified in beating his wife when she goes out without telling him (%)","SG.VAW.GOES.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Women who believe a husband is justified in beating his wife when she neglects the children (%)","SG.VAW.NEGL.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Women who believe a husband is justified in beating his wife (any of five reasons) (%)","SG.VAW.REAS.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Women who believe a husband is justified in beating his wife when she refuses sex with him (%)","SG.VAW.REFU.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Prevalence of anemia among children (% of children under 5)","SH.ANM.CHLD.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","37.2","35.2","33.3","31.5","29.8","28.2","26.8","25.6","24.4","23.4","22.8","22.1","21.7","21.4","21.3","21.1","21.1","21.2","21.5","22","22.7","23.6","","","","",
"Brazil","BRA","Prevalence of anemia among non-pregnant women (% of women ages 15-49)","SH.ANM.NPRG.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","29","27.5","26.1","25","24","23.2","22.6","21.9","21.4","20.9","20.4","20","19.6","19.3","19.1","18.9","18.7","18.6","18.5","18.5","18.7","19.2","","","","",
"Brazil","BRA","Condom use, population ages 15-24, female (% of females ages 15-24)","SH.CON.1524.FE.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","17.8","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Condom use, population ages 15-24, male (% of males ages 15-24)","SH.CON.1524.MA.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","50.8","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions (% of total)","SH.DTH.COMM.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","17.5","","","","","","","","","","","","13.5","","","",
"Brazil","BRA","Number of infant deaths","SH.DTH.IMRT","393414","396270","400911","405159","405970","401600","389964","374268","356584","341001","329675","323953","321544","321862","322375","322469","321164","318647","314712","308373","300356","290590","280683","269428","257796","244914","231262","217414","204140","191584","180764","171142","162191","153991","146169","138893","132469","126845","120923","114741","107590","99482","91386","82761","75013","67255","60204","53879","48626","44529","42049","41324","42305","43966","45682","46995",
"Brazil","BRA","Cause of death, by injury (% of total)","SH.DTH.INJR.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","12","","","","","","","","","","","","12.3","","","",
"Brazil","BRA","Number of under-five deaths","SH.DTH.MORT","517418","518842","522651","526106","526290","520226","508269","490447","469215","449390","434528","423650","417354","414509","412467","409713","406225","400910","393936","384049","372453","359505","345756","330966","315466","299269","282690","265090","248228","232794","218720","205948","193769","182578","171928","162300","153578","145843","137897","130050","121560","112275","102800","93417","84492","75911","68023","61178","55055","50456","47835","46876","47449","49094","51117","52415",
"Brazil","BRA","Cause of death, by non-communicable diseases (% of total)","SH.DTH.NCOM.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","70.5","","","","","","","","","","","","74.2","","","",
"Brazil","BRA","Number of neonatal deaths","SH.DTH.NMRT","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","85534","80852","77002","73668","71196","69529","68340","67092","66140","64338","61046","56608","52117","47688","43470","39575","35652","32709","30871","30328","30378","30977","31639","31645","30421","28604",
"Brazil","BRA","Women's share of population ages 15+ living with HIV (%)","SH.DYN.AIDS.FE.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Prevalence of HIV, total (% of population ages 15-49)","SH.DYN.AIDS.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Mortality rate, under-5 (per 1,000)","SH.DYN.MORT","171.9","167.2","162.7","158.4","154.5","150.7","147.2","143.9","140.5","137","133.5","129.8","126.1","122.5","118.9","115.3","111.7","107.9","104","99.7","95.3","90.8","86.5","82.4","78.6","75.1","71.9","68.8","66","63.4","60.8","58.2","55.4","52.5","49.4","46.3","43.2","40.2","37.2","34.5","32","29.6","27.4","25.4","23.6","21.9","20.4","19.2","18.1","17.2","16.6","16.2","16","16","16.2","16.4",
"Brazil","BRA","Mortality rate, under-5, female (per 1,000 live births)","SH.DYN.MORT.FE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","55.4","","","","","","","","","","28.6","","","","","","","","","","15","","","","","14.9",
"Brazil","BRA","Mortality rate, under-5, male (per 1,000 live births)","SH.DYN.MORT.MA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","65.9","","","","","","","","","","35.1","","","","","","","","","","18.1","","","","","17.7",
"Brazil","BRA","Mortality rate, neonatal (per 1,000 live births)","SH.DYN.NMRT","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","24.3","23.3","22.4","21.5","20.7","20","19.3","18.5","17.8","17","16","14.9","13.9","13","12.2","11.5","10.8","10.4","10.3","10.5","10.7","10.8","10.7","10.3","9.6","8.9",
"Brazil","BRA","Improved water source, rural (% of rural population with access)","SH.H2O.SAFE.RU.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","67.7","68.5","69.3","70.1","70.9","71.7","72.5","73.3","74.1","74.9","75.7","76.5","77.3","78.1","78.9","79.7","80.5","81.3","82.2","83","83.8","84.6","85.4","86.2","87","87",
"Brazil","BRA","Improved water source, urban (% of urban population with access)","SH.H2O.SAFE.UR.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","95.8","96","96.2","96.3","96.5","96.7","96.9","97","97.2","97.4","97.6","97.7","97.9","98.1","98.3","98.4","98.6","98.8","98.9","99.1","99.3","99.5","99.6","99.8","100","100",
"Brazil","BRA","Improved water source (% of population with access)","SH.H2O.SAFE.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","88.5","89","89.6","90.1","90.6","91.1","91.6","92.1","92.5","93","93.5","93.8","94.2","94.5","94.9","95.2","95.6","95.9","96.2","96.5","96.9","97.2","97.5","97.8","98.1","98.1",
"Brazil","BRA","Children (0-14) living with HIV","SH.HIV.0014","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Prevalence of HIV, female (% ages 15-24)","SH.HIV.1524.FE.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Prevalence of HIV, male (% ages 15-24)","SH.HIV.1524.MA.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Antiretroviral therapy coverage (% of people living with HIV)","SH.HIV.ARTC.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Immunization, DPT (% of children ages 12-23 months)","SH.IMM.IDPT","","","","","","","","","","","","","","","","","","","","","37","47","56","60","68","66","58","58","58","56","66","78","71","75","74","81","77","79","93","94","98","98","99","99","99","99","99","99","99","99","99","99","95","97","93","",
"Brazil","BRA","Immunization, measles (% of children ages 12-23 months)","SH.IMM.MEAS","","","","","","","","","","","","","","","","","","","","","57","73","66","68","73","67","67","64","62","60","78","85","91","85","77","87","80","99","95","99","99","99","96","99","99","99","99","99","99","99","99","99","97","97","97","",
"Brazil","BRA","Hospital beds (per 1,000 people)","SH.MED.BEDS.ZS","3.20179533958435","","","","","","","","","","3.69180011749268","","","","","4.9951000213623","","","","","","","","","","","","3.56030011177063","","","3.3452999592","","","3.5","","","3.1099998951","","","","","","2.6","","","2.4","","","","2.4","2.4","2.3","2.3","","","",
"Brazil","BRA","Community health workers (per 1,000 people)","SH.MED.CMHW.P3","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Brazil","BRA","Nurses and midwives (per 1,000 people)","SH.MED.NUMW.P3","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","3.84","","","","","","2.909","6.5","6.419","","6.419","","","7.601","","",
"Brazil","BRA","Physicians (per 1,000 people)","SH.MED.PHYS.ZS","0.373924285173416","","","","","0.399831622838974","","","","","0.49219998717308","","","","","0.624400019645691","","","","","","0.767099976539612","","","0.926699995994568","1.46689999103546","","","1.18529999256134","","1.3600000143","","","","","1.31","1.272","1.308","","1.396","1.15","","","","","","1.694","1.72","1.764","","1.764","","","1.891","","",
"Brazil","BRA","Use of insecticide-treated bed nets (% of under-5 population)","SH.MLR.NETS.ZS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",