-
Notifications
You must be signed in to change notification settings - Fork 1
/
natural-disasters.csv
We can't make this file beautiful and searchable because it's too large.
1605 lines (1605 loc) · 774 KB
/
natural-disasters.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
Number of deaths from drought,Number of people injured from drought,Number of people affected from drought,Number of people left homeless from drought,Number of total people affected by drought,Reconstruction costs from drought,Insured damages against drought,Total economic damages from drought,Death rates from drought,Injury rates from drought,"Number of people affected by drought per 100,000",Homelessness rate from drought,"Total number of people affected by drought per 100,000",Number of deaths from earthquakes,Number of people injured from earthquakes,Number of people affected by earthquakes,Number of people left homeless from earthquakes,Number of total people affected by earthquakes,Reconstruction costs from earthquakes,Insured damages against earthquakes,Total economic damages from earthquakes,Death rates from earthquakes,Injury rates from earthquakes,"Number of people affected by earthquakes per 100,000",Homelessness rate from earthquakes,"Total number of people affected by earthquakes per 100,000",Number of deaths from disasters,Number of people injured from disasters,Number of people affected by disasters,Number of people left homeless from disasters,Number of total people affected by disasters,Reconstruction costs from disasters,Insured damages against disasters,Total economic damages from disasters,Death rates from disasters,Injury rates from disasters,"Number of people affected by disasters per 100,000",Homelessness rate from disasters,"Total number of people affected by disasters per 100,000",Number of deaths from volcanic activity,Number of people injured from volcanic activity,Number of people affected by volcanic activity,Number of people left homeless from volcanic activity,Number of total people affected by volcanic activity,Reconstruction costs from volcanic activity,Insured damages against volcanic activity,Total economic damages from volcanic activity,Death rates from volcanic activity,Injury rates from volcanic activity,"Number of people affected by volcanic activity per 100,000",Homelessness rate from volcanic activity,"Total number of people affected by volcanic activity per 100,000",Number of deaths from floods,Number of people injured from floods,Number of people affected by floods,Number of people left homeless from floods,Number of total people affected by floods,Reconstruction costs from floods,Insured damages against floods,Total economic damages from floods,Death rates from floods,Injury rates from floods,"Number of people affected by floods per 100,000",Homelessness rate from floods,"Total number of people affected by floods per 100,000",Number of deaths from mass movements,Number of people injured from mass movements,Number of people affected by mass movements,Number of people left homeless from mass movements,Number of total people affected by mass movements,Reconstruction costs from mass movements,Insured damages against mass movements,Total economic damages from mass movements,Death rates from mass movements,Injury rates from mass movements,"Number of people affected by mass movements per 100,000",Homelessness rate from mass movements,"Total number of people affected by mass movements per 100,000",Number of deaths from storms,Number of people injured from storms,Number of people affected by storms,Number of people left homeless from storms,Number of total people affected by storms,Reconstruction costs from storms,Insured damages against storms,Total economic damages from storms,Death rates from storms,Injury rates from storms,"Number of people affected by storms per 100,000",Homelessness rate from storms,"Total number of people affected by storms per 100,000",Number of deaths from landslides,Number of people injured from landslides,Number of people affected by landslides,Number of people left homeless from landslides,Number of total people affected by landslides,Reconstruction costs from landslides,Insured damages against landslides,Total economic damages from landslides,Death rates from landslides,Injury rates from landslides,"Number of people affected by landslides per 100,000",Homelessness rate from landslides,"Total number of people affected by landslides per 100,000",Number of deaths from fog,Number of people injured from fog,Number of people affected by fog,Number of people left homeless from fog,Number of total people affected by fog,Reconstruction costs from fog,Insured damages against fog,Total economic damages from fog,Death rates from fog,Injury rates from fog,"Number of people affected by fog per 100,000",Homelessness rate from fog,"Total number of people affected by fog per 100,000",Number of deaths from wildfires,Number of people injured from wildfires,Number of people affected by wildfires,Number of people left homeless from wildfires,Number of total people affected by wildfires,Reconstruction costs from wildfires,Insured damages against wildfires,Total economic damages from wildfires,Death rates from wildfires,Injury rates from wildfires,"Number of people affected by wildfires per 100,000",Homelessness rate from wildfires,"Total number of people affected by wildfires per 100,000",Number of deaths from extreme temperatures,Number of people injured from extreme temperatures,Number of people affected by extreme temperatures,Number of people left homeless from extreme temperatures,Number of total people affected by extreme temperatures,Reconstruction costs from extreme temperatures,Insured damages against extreme temperatures,Total economic damages from extreme temperatures,Death rates from extreme temperatures,Injury rates from extreme temperatures,"Number of people affected by extreme temperatures per 100,000",Homelessness rate from extreme temperatures,"Total number of people affected by extreme temperatures per 100,000",Number of deaths from glacial lake outbursts,Number of people injured from glacial lake outbursts,Number of people affected by glacial lake outbursts,Number of people left homeless from glacial lake outbursts,Number of total people affected by glacial lake outbursts,Reconstruction costs from glacial lake outbursts,Insured damages against glacial lake outbursts,Total economic damages from glacial lake outbursts,Death rates from glacial lake outbursts,Injury rates from glacial lake outbursts,"Number of people affected by glacial lake outbursts per 100,000",Homelessness rate from glacial lake outbursts,"Total number of people affected by glacial lake outbursts per 100,000",Total economic damages from disasters as a share of GDP,Total economic damages from drought as a share of GDP,Total economic damages from earthquakes as a share of GDP,Total economic damages from extreme temperatures as a share of GDP,Total economic damages from floods as a share of GDP,Total economic damages from landslides as a share of GDP,Total economic damages from mass movements as a share of GDP,Total economic damages from storms as a share of GDP,Total economic damages from volcanic activity as a share of GDP,Total economic damages from volcanic activity as a share of GDP,Entity,Year,deaths_rate_per_100k_storm,injured_rate_per_100k_storm,total_affected_rate_per_100k_all_disasters
0,0,0,0,0,,,,0,0,0,0,0,210,200,0,0,200,,,,2.572748457,2.381235861,0,0,2.381235861,215.1,200,0,0,200,,,,2.633469972,2.381235861,0,0,,0,0,0,0,0,,,,0,0,0,0,0,5.1,0,0,0,0,,,,0.060721514,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Afghanistan,1950,0,0,2.381235861
0,0,4800,0,4800,0,0,20,0,0,44.06095098,0,44.06095098,0,0,0,0,0,0,0,0,0,0,0,0,0,10.7,0,4800,0,4800,0,0,20,0.11212407,0,44.06095098,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,10.7,0,0,0,0,0,0,0,0.11212407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.001419558,0.001419558,0,0,0,0,0,0,0,0,Afghanistan,1960,0,0,44.06095098
0,0,0,0,0,0,0,0,0,0,0,0,0,6.1,1.5,9000,0,9001.5,0,0,0,0.04796007,0.012721567,69.53565634,0,69.54837791,48.2,15.5,68404.4,750,69169.9,0,0,5200,0.39167353,0.117661227,541.2904467,5.621767484,,0,0,0,0,0,0,0,0,0,0,0,0,0,32.1,14,59404.4,750,60168.4,0,0,5200,0.256567491,0.10493966,471.7547904,5.621767484,477.4814975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,10,0,0,0,0,0,0,0,0.087145969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.157575752,0,0,0,0.157575752,0,0,0,0,0,Afghanistan,1970,0,0,547.0298754
0,0,0,0,0,0,0,0,0,0,0,0,0,51.3,351.8,6244,658,7253.8,0,0,900,0.398498668,2.742558185,49.05305337,5.24804594,57.04365749,58.3,351.8,25344,658,26353.8,0,0,26900,0.458817496,2.742558185,210.0912551,5.24804594,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19100,0,19100,0,0,26000,0,0,161.0382018,0,161.0382018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,7,0,0,0,0,0,0,0,0.060318828,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Afghanistan,1980,0,0,218.0818593
0,0,0,0,0,0,0,0,0,0,0,0,0,742.6,358.3,27168.5,7702.5,35229.3,0,0,2001,3.814559032,1.835905817,146.6656852,38.70140997,187.203001,1038.9,394.7,43624,9578.5,53597.2,0,20,8401,5.830221618,2.02323454,263.1364148,50.99116474,,0,0,0,0,0,0,0,0,0,0,0,0,0,199,30,16435.5,1765,18230.5,0,20,6400,1.414652116,0.151991083,116.3203424,11.59678705,128.0691205,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,,,0,0,0,73.9,6.4,0,111,117.4,0,0,0,0.418516502,0.03533764,0,0.692967713,0.728305353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.4,0,20,0,20,0,0,0,0.176171657,0,0.150387247,0,0.150387247,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Afghanistan,1990,0.006322311,0,316.1508141
3.7,0,476000,0,476000,0,0,5,0.017805582,0,2061.379726,0,2061.379726,123.6,151.2,9074,1569.5,10794.7,0,0,5,0.544497296,0.66248279,40.07487217,6.585321045,47.322676,448.7,197.2,567969.4,3909.5,572076.1,0,0,2511,1.796376012,0.833039766,2427.928053,15.66736103,,0,0,0,0,0,0,0,0,0,0,0,0,0,117.5,26.7,13537.5,2340,15904.2,0,0,2000,0.454937544,0.101031226,49.8963931,9.082039984,59.07946431,0,0,0,0,0,0,0,0,0,0,0,0,0,33.1,0,2265.6,0,2265.6,0,0,500,,,8.831371326,0,8.831371326,4.3,1.1,30042.1,0,30043.2,0,0,0,0.016326858,0.003873921,113.6788745,0,113.6827484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166.5,18.2,37050.2,0,37068.4,0,0,1,0.63459965,0.065651829,154.0668159,0,154.1324678,0,0,0,0,0,0,0,0,,,,,,0.024211525,0,0.0000805,0,0.01607835,0,0,0.008052648,0,0,Afghanistan,2000,0.128209081,0,2444.428454
0,0,1525000,0,1525000,0,0,14200,0,0,4212.833017,0,4212.833017,21.7,5830.5,339,3627.5,9797,0,0,0,0.066190219,16.94865916,1.050511311,10.59994752,28.59911799,263.1,5918.4,1567389.9,7790.5,1581098.8,0,0,14800,0.793281579,17.22862057,4337.928186,23.02358648,,0,0,0,0,0,0,0,0,0,0,0,0,0,137,60.7,38113.9,3422,41596.6,0,0,300,0.410915311,0.190838335,112.7808103,10.27571892,123.2473675,0,0,0,0,0,0,0,0,0,0,0,0,0,15.1,1.5,904.5,0,906,0,0,0,,,2.492010139,0,2.496425455,84.8,18.9,3032.5,741,3792.4,0,0,300,0.257424114,0.062885608,8.771837459,2.147920031,10.9826431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.5,6.8,0,0,6.8,0,0,0,0.014441128,0.021822149,0,0,0.021822149,0,0,0,0,0,0,0,0,,,,,,0.082727539,0.079756046,0,0,0.001464494,0.001506999,0,0,0,0,Afghanistan,2010,0.044310808,0.004415316,4378.180393
1100,0,0,0,0,,,,0.832564063,0,0,0,0,10,0,0,0,0,,,,0.00749502,0,0,0,0,1111.7,0,0,0,0,,,,0.841394126,0,0,0,,1.7,0,0,0,0,,,,0.001335043,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Africa,1900,0,0,0
8500,0,3200,0,3200,,,,5.988295909,0,2.254417284,0,2.254417284,1.2,0,0,0,0,,,,0.000845406,0,0,0,0,8501.2,0,3200,0,3200,,,,5.989141316,0,2.254417284,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Africa,1910,0,0,2.254417284
2400,0,0,0,0,,,,1.544763976,0,0,0,0,1.2,0,0,0,0,,,,0.000767336,0,0,0,0,2701.2,0,0,0,0,,,,1.735229295,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,300,0,0,0,0,,,,0.189697983,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Africa,1920,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,2.2,13,0,750,763,,,,0.001170074,0.006914071,0,0.398888724,0.405802795,2.2,13,0,750,763,,,,0.001170074,0.006914071,0,0.398888724,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Africa,1930,0,0,0.405802795
5000,0,0,0,0,,,,2.43609857,0,0,0,0,27.6,0,0,0,0,,,,0.013020387,0,0,0,0,5044.1,0,0,0,0,,,,2.456624243,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,16.5,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Africa,1940,0.007505287,0,0
0,0,0,0,0,,,,0,0,0,0,0,128.3,502.8,0,12925,13427.8,,,,0.051827036,0.203283229,0,5.226234196,5.429517426,216.2,502.8,0,12925,13427.8,,,,0.088714697,0.203283229,0,5.226234196,,0,0,0,0,0,,,,0,0,0,0,0,23.7,0,0,0,0,,,,0.009748933,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,64.2,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Africa,1950,0.027138728,0,5.429517426
205,0,963348.3,0,963348.3,0,0,19570,0.064073058,0,280.6868458,0,280.6868458,1257.7,2703.1,4650,1940.5,9293.6,0,0,15302,0.44206693,0.944881312,1.44368813,0.615953911,3.004523354,1643,2736.9,1064906.5,6204.1,1073847.5,0,0,78044,0.560821603,0.954565165,310.4905076,1.887138737,,0,0,0,0,0,0,0,0,0,0,0,0,0,134.3,25.9,84298.2,2580,86904.1,0,0,41842,0.041037774,0.007384673,24.72180594,0.783038984,25.51222959,0,0,0,0,0,0,0,0,0,0,0,0,0,15.2,7.9,12500,1650,14157.9,0,0,1330,,,3.605937248,0.478289518,4.086525946,30.8,0,110,33.6,143.6,0,0,0,0.009034963,0,0.032230521,0.009856323,0.042086844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.150796798,0.030305845,0.044271497,0,0.07392516,0,0,0.002294295,0,0,Africa,1960,0.004608878,0.00229918,313.3322115
11900,0,1951200,0,1951200,0,0,40720,3.027666255,0,452.6996912,0,452.6996912,0,0,0,0,0,0,0,0,0,0,0,0,0,12095.7,171.8,2806919,31248.2,2838339,0,0,145707,3.075286972,0.038620343,664.9013438,7.363974029,,21.2,0,2100,6500,8600,0,0,0,0.004839614,0,0.479395683,1.483843781,1.963239464,132.8,90.3,440799.1,19063.2,459952.6,0,0,25145,0.032701267,0.020064759,107.9198125,4.554412265,112.4942895,0,0,0,0,0,0,0,0,0,0,0,0,0,41.5,61.5,412419.9,4885,417366.4,0,0,79842,,,103.7136346,1.131897729,104.8596475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,20,400,800,1220,0,0,0,0.0000444,0.004440492,0.088809848,0.193820254,0.287070594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.08297887,0.025462203,0,0,0.015677893,0,0,0.041838774,0,0,Africa,1970,0.010035432,0.014115091,672.3039382
55495.4,0,8256606.7,0,8256606.7,0,0,7275.4,10.81798686,0,1581.90681,0,1581.90681,297,1015.3,51609.3,49320,101944.6,0,0,523000,0.061644162,0.209079736,10.72291036,10.11760402,21.04959412,56252.9,1270.5,9068311.2,238514.3,9308096,0,30100,760727.6,10.96245909,0.254135415,1729.395594,42.61847348,,178.3,43.7,1000,0,1043.7,0,0,0,0.031633412,0.007743779,0.177203171,0,0.184946949,165,46.9,558345.6,176312.7,734705.2,0,30100,88231.1,0.029489602,0.00794732,98.96640658,30.09003034,129.0643842,7.7,0,20,0,20,0,0,0,0.001432042,0,0.003968018,0,0.003968018,108,164.6,199564.8,12510,212239.4,0,0,142221.1,,,37.39014133,2.34174131,39.76124722,1.1,0,1014.8,371.6,1386.4,0,0,0,0.000229756,0,0.200813243,0.069097811,0.269911054,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,150,0,150,0,0,0,0.0000729,0,0.02734118,0,0.02734118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.208162796,0.001605678,0.149832672,0,0.020853581,0,0,0.035870865,0,0,Africa,1980,0.019970345,0.02936458,1772.268203
23.9,0,8618424.6,0,8618424.6,0,0,224493.9,0.003023315,0,1216.464462,0,1216.464462,79.9,1059,13045,4027,18131,0,0,133092.9,0.01180623,0.158566864,1.922654285,0.569793642,2.651014791,991.8,3402.7,10308199.2,299935.3,10611537.2,1400,11780,517741.5,0.137131805,0.478971544,1452.48547,41.68557629,,0,0.6,380,571,951.6,0,0,0,0,0.0000837,0.049709804,0.079241952,0.129035407,731.7,1928.3,1219772.1,214126.5,1435826.9,0,0,75523.2,0.100954761,0.263429177,167.98201,29.42501133,197.6704505,4.7,0,30,0,30,0,0,0,0.000699452,0,0.004399682,0,0.004399682,113,408.7,356419,80563.9,437391.6,1400,11780,79931.5,,,50.18122325,11.52757342,61.76480777,17.8,5.6,0,316.9,322.5,0,0,0,0.002388536,0.000817589,0,0.042169535,0.042987124,0,0,0,0,0,0,0,0,0,0,0,0,0,10.6,0.5,128.5,330,459,0,0,0,0.00141327,0.0000632,0.01672037,0.041786402,0.058569943,10.2,0,100000,0,100000,0,0,4700,0.001424151,0,15.86429031,0,15.86429031,0,0,0,0,0,0,0,0,,,,,,0.097448103,0.040504472,0.026343433,0.000921609,0.014508573,0,0,0.015170016,0,0,Africa,1990,0.01542209,0.056011091,1494.650018
88.8,0,11948903.3,0,11948903.3,0,0,0,0.010272822,0,1297.822052,0,1297.822052,333.5,1303.6,13461,23910.4,38675,0,1000,565700,0.037906203,0.147837837,1.487942013,2.703844838,4.339624689,1422.9,2471.7,14556934.3,250118.5,14809524.5,13363.2,6950,989014.1,0.160109901,0.277999751,1590.334617,27.57399302,,20.6,40,29500,11000,40540,0,0,900,0.0024122,0.004698729,3.218916827,1.29215055,4.515766107,794.8,377.8,2187219.1,145591.4,2333188.3,13363.2,5150,306486,0.088929792,0.040485168,244.9398415,16.07225768,261.0525843,9.8,7.2,0,62.5,69.7,0,0,0,0.000992282,0.000729023,0,0.006328329,0.007057352,127.3,673.1,377065.3,67732.5,445470.9,0,0,71847.2,,,42.77627396,7.31145692,50.16381967,20.2,4.2,535.6,1071.5,1611.3,0,0,0,0.002285705,0.000444389,0.061684401,0.107397975,0.169526765,0,0,0,0,0,0,0,0,0,0,0,0,0,15.4,55.3,250,750.2,1055.5,0,800,44000,0.001634302,0.006421081,0.027906753,0.080556735,0.114884569,12.5,10.5,0,0,10.5,0,0,80.9,0.001428836,0.001294729,0,0,0.001294729,0,0,0,0,0,0,0,0,,,,,,0.116463899,0,0.071912522,0.0000125,0.035004818,0,0,0.006820593,0.000140596,0.002572909,Africa,2000,0.01424776,0.076088795,1618.18661
2000,0,12552199.8,0,12552199.8,0,0,365300,0.192436846,0,1095.535704,0,1095.535704,3.1,89.2,15142.1,69,15300.3,0,0,45800,0.000259232,0.007542795,1.253537534,0.005709536,1.266789865,3283.3,2118.8,16760448.6,102625.6,16865193,39310,83100,1234165.1,0.300575285,0.174622367,1453.245803,9.000029231,,0,0,250,0,250,0,0,0,0,0,0.021693263,0,0.021693263,724.5,927.6,3142338.5,75926.1,3219192.2,39310,14700,396271.5,0.062087643,0.080167996,272.5760584,6.702894352,279.3591208,0,0,0,0,0,0,0,0,0,0,0,0,0,291.6,1053.1,752233.5,23717.1,777003.7,0,48400,378990,,,59.78971798,2.032178166,61.90475391,242.5,36.6,19634.4,1584.8,21255.8,0,0,5803.6,0.020127295,0.003047906,1.549354323,0.143725876,1.696128105,0,0,0,0,0,0,0,0,0,0,0,0,0,7.1,1.2,5900.3,1328.6,7230.1,0,20000,42000,0.00056583,0.0000917,0.498156012,0.115521302,0.613769053,14.5,11.1,272750,0,272761.1,0,0,0,0.001217439,0.000914168,22.02158168,0,22.02249585,0,0,0,0,0,0,0,0,,,,,,0.053185456,0.015795952,0.002084165,0,0.017316995,0.000254132,0,0.01584802,0,0.001886192,Africa,2010,0.023881,0.082857762,1462.420455
0,0,0,0,0,,,,0,0,0,0,0,12,0,0,0,0,,,,1.395277451,0,0,0,0,12,0,0,0,0,,,,1.395277451,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Albania,1900,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Albania,1910,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,20,0,0,0,0,,,,2.074779192,0,0,0,0,20,0,0,0,0,,,,2.074779192,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Albania,1920,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,15,10.8,294,0,304.8,,,,1.471603312,1.062998404,28.93717876,0,30.00017717,15,10.8,294,0,304.8,,,,1.471603312,1.062998404,28.93717876,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Albania,1930,0,0,30.00017717
0,0,0,0,0,,,,0,0,0,0,0,4.3,11,0,0,11,,,,0.373879232,0.956435244,0,0,0.956435244,4.3,11,0,0,11,,,,0.373879232,0.956435244,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Albania,1940,0,0,0.956435244
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Albania,1950,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,2.6,28.8,0,0,28.8,0,0,2000,0.141333613,1.556411117,0,0,1.556411117,2.6,28.8,0,0,28.8,0,0,2000,0.141333613,1.556411117,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Albania,1960,0,0,1.556411117
0,0,0,0,0,0,0,0,0,0,0,0,0,3.5,35,0,0,35,0,0,0,0.133181126,1.331811263,0,0,1.331811263,3.5,35,0,0,35,0,0,0,0.133181126,1.331811263,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Albania,1970,0,0,1.331811263
0,0,320000,0,320000,0,0,0,0,0,9821.976673,0,9821.976673,0.1,0.5,69,500,569.5,0,0,500,0.003584229,0.017921147,2.155576382,17.92114695,20.09464448,12.6,3.1,320643.5,634,321280.6,0,0,500,0.42445965,0.105463234,9843.475684,22.43293147,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,5.7,2.6,0,0,2.6,0,0,0,0.191919192,0.087542088,0,0,0.087542088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.8,0,574.5,134,708.5,0,0,0,0.228956229,0,19.34343434,4.511784512,23.85521886,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Albania,1980,0,0,9866.014078
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,210,0,210,0,0,0,0,0,6.75024108,0,6.75024108,1.5,0,4860,0,4860,0,0,700,0.046737203,0,151.6248819,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5,0,4650,0,4650,0,0,700,0.046737203,0,144.8746408,0,144.8746408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.107333156,0,0,0,0.107333156,0,0,0,0,0,Albania,1990,0,0,151.6248819
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,0,0,0,0,0,0,0.504540868,0.504540868,1.5,0,60163.4,22.5,60185.9,0,0,1767.3,0.048251625,0,1941.954192,0.751739286,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,7648.4,0,7648.4,0,0,1767.3,0.012917149,0,245.8313562,0,245.8313562,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,52500,0,52500,0,0,0,,,1695.628439,0,1695.628439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.5,7.5,0,0,0,0,0,0,0.247198418,0.247198418,0.3,0,15,0,15,0,0,0,0.009661836,0,0.494396836,0,0.494396836,0,0,0,0,0,0,0,0,,,,,,0.040488531,0,0,0,0.040488531,0,0,0,0,0,Albania,2000,0.02567264,0,1942.705931
0,0,0,0,0,0,0,0,0,0,0,0,0,5.1,102.5,20680,0,20782.5,0,0,74500,0.177021867,3.557792433,717.8063173,0,721.3641097,6.6,102.7,51940,0,52042.7,0,0,75390,0.228841275,3.564727246,1792.088299,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0.2,8260,0,8260.2,0,0,890,0.013856424,0.006934813,284.988914,0,284.9958488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1,0,23000,0,23000,0,0,0,0.037962983,0,789.2930679,0,789.2930679,0,0,0,0,0,0,0,0,,,,,,0.494190336,0,0.487354537,0,0.006835798,0,0,0,0,0,Albania,2010,0,0,1795.653026
0,0,0,0,0,,,,0,0,0,0,0,1.2,0,0,0,0,,,,0.022205589,0,0,0,0,1.2,0,0,0,0,,,,0.022205589,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Algeria,1910,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,300,0,0,0,0,,,,4.530585302,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,300,0,0,0,0,,,,4.530585302,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Algeria,1920,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Algeria,1930,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,27.6,0,0,0,0,,,,0.328243732,0,0,0,0,27.6,0,0,0,0,,,,0.328243732,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Algeria,1940,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,125,500,0,12925,13425,,,,1.307531381,5.230125523,0,135.1987448,140.4288703,127.5,500,0,12925,13425,,,,1.334746708,5.230125523,0,135.1987448,,0,0,0,0,0,,,,0,0,0,0,0,2.5,0,0,0,0,,,,0.027215328,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Algeria,1950,0,0,140.4288703
0,0,0,0,0,0,0,0,0,0,0,0,0,6.9,36.5,3700,1345,5081.5,0,0,200,0.060672847,0.290161677,29.47972273,10.84205362,40.61193803,22.2,61.4,33240,2935,36236.4,0,0,2500,0.1739609,0.468001166,247.9157714,23.16476927,,0,0,0,0,0,0,0,0,0,0,0,0,0,15.3,24.9,29540,1590,31154.9,0,0,2300,0.113288053,0.177839489,218.4360486,12.32271565,230.9366038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.071662916,0,0.006377025,0,0.065285892,0,0,0,0,0,Algeria,1960,0,0,271.5485418
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.2,0,13500,6100,19600,0,0,4000,0.020178849,0,82.57784905,38.82877148,,0,0,0,0,0,0,0,0,0,0,0,0,0,3.2,0,13500,6100,19600,0,0,4000,0.020178849,0,82.57784905,38.82877148,121.4066205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.034193911,0,0,0,0.034193911,0,0,0,0,0,Algeria,1970,0,0,121.4066205
0,0,0,0,0,0,0,0,0,0,0,0,0,268.6,861.7,49409.3,44320,94591,0,0,520200,1.392341847,4.453418569,255.2691876,230.5469151,490.2695213,284.6,868.1,51270,45967,98105.1,0,0,520200,1.468525183,4.485485484,263.5599833,237.9092183,,0,0,0,0,0,0,0,0,0,0,0,0,0,16,6.4,850,1647,2503.4,0,0,0,0.076183336,0.032066915,4.155869555,7.362303203,11.55023967,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1010.7,0,1010.7,0,0,0,,,4.134926155,0,4.134926155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1.228290406,0,1.228290406,0,0,0,0,0,0,0,Algeria,1980,0,0,505.9546871
0,0,0,0,0,0,0,0,0,0,0,0,0,19.3,46.4,1475,1500,3021.4,0,0,6092.9,0.067792351,0.159578006,5.262894643,4.898279071,10.32075172,33.3,63.7,1595,5160,6818.7,0,0,6182.9,0.117555563,0.220136546,5.688215406,17.83619568,,0,0,0,0,0,0,0,0,0,0,0,0,0,10.3,12.7,120,3595,3727.7,0,0,90,0.036537961,0.043913584,0.425320763,12.70271614,13.17195049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,1.5,4.6,0,65,69.6,0,0,0,0.005427703,0.016644956,0,0.235200463,0.251845419,0,0,0,0,0,0,0,0,0,0,0,0,0,2.2,0,0,0,0,0,0,0,0.007797547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.012713841,0,0.012526353,0,0.000187488,0,0,0,0,0,Algeria,1990,0,0,23.74454763
0,0,0,0,0,0,0,0,0,0,0,0,0,227.9,1078.5,16,20015,21109.5,0,0,500000,0.706309283,3.341342569,0.047561012,62.03318255,65.42208613,366.6,1142.1,19546,20450,41138.1,0,0,570101.7,1.139168606,3.539511393,58.75489837,63.30083426,,0,0,0,0,0,0,0,0,0,0,0,0,0,131.2,62.1,19530,435,20027.1,0,0,70101.7,0.409785736,0.193439086,58.70733736,1.267651708,60.16842815,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7,1.5,0,0,1.5,0,0,0,,,0,0,0.004729738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,0,0,0,0,0,0,0.002341441,0,0,0,0,4,0,0,0,0,0,0,0,0.012397719,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.816180104,0,0.736769376,0,0.079410729,0,0,0,0,0,Algeria,2000,0.008334427,0.004729738,125.595244
0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,42,0,0,42,0,0,0,0.001541465,0.107902579,0,0,0.107902579,11.1,58.9,28595,0,28653.9,0,0,77900,0.029025826,0.152455367,68.29708896,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,9.7,14.4,3595,0,3609.4,0,0,77900,0.025626186,0.038745991,9.061846381,0,9.100592372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,2.5,25000,0,25002.5,0,0,0,0.001858175,0.005806796,59.23524258,0,59.24104937,0,0,0,0,0,0,0,0,,,,,,0.038947468,0,0,0,0.038947468,0,0,0,0,0,Algeria,2010,0,0,68.44954432
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,37.5,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,American Samoa,1960,37.5,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,American Samoa,1970,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,500,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,500,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,American Samoa,1980,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,American Samoa,1990,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,3.4,0,250,0,250,0,0,0,5.964912281,0,438.5964912,0,438.5964912,4,6.3,2250,300,2556.3,0,0,20000,6.981861433,10.50847458,3771.929825,500,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,0.3,0,0,0.3,0,0,5000,1.016949153,0.508474576,0,0,0.508474576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,2000,300,2306,0,0,15000,,,3333.333333,500,3843.333333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,3.901153287,0,0,0,0.954198473,0,0,2.946954813,0,0,American Samoa,2000,0,10,4282.438299
0,0,248000,0,248000,0,0,0,0,0,2253.164179,0,2253.164179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,258000,0,258000,0,0,0,0,0,2340.462302,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10000,0,10000,0,0,0,0,0,87.29812309,0,87.29812309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Angola,1980,0,0,2340.462302
0,0,10500,0,10500,0,0,0,0,0,70.60247445,0,70.60247445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10500,0,10500,0,0,0,0,0,70.60247445,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Angola,1990,0,0,70.60247445
5.8,0,2500,0,2500,0,0,0,0.034226366,0,13.32764687,0,13.32764687,0,0,0,0,0,0,0,0,0,0,0,0,0,39.9,1.6,80832.8,3281.5,84115.9,0,0,1000,0.212612368,0.009659911,410.9462348,17.22815304,,0,0,0,0,0,0,0,0,0,0,0,0,0,32.8,1.6,78332.8,3281.5,81615.9,0,0,1000,0.170456755,0.009659911,397.6185879,17.22815304,414.8564009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,1.3,0,0,0,0,0,0,0,0.007929247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.01095334,0,0,0,0.01095334,0,0,0,0,0,Angola,2000,0,0,428.1840478
0,0,325390,0,325390,0,0,0,0,0,1206.643039,0,1206.643039,0,0,0,0,0,0,0,0,0,0,0,0,0,44.2,3.1,350558.8,9441.5,360003.4,0,0,200,0.162507086,0.013272821,1308.245985,38.99928544,,0,0,0,0,0,0,0,0,0,0,0,0,0,44.2,3.1,25168.8,9441.5,34613.4,0,0,200,0.162507086,0.013272821,101.6029457,38.99928544,140.615504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.000163768,0,0,0,0.000163768,0,0,0,0,0,Angola,2010,0,0,1347.258543
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Anguilla,1910,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Anguilla,1920,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Anguilla,1930,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Anguilla,1940,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Anguilla,1950,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,25,0,100,125,0,0,3500,8.333333333,416.6666667,0,1666.666667,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,25,0,100,125,0,0,3500,,,0,1666.666667,2083.333333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Anguilla,1960,8.333333333,416.6666667,2083.333333
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Anguilla,1970,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,227.5,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,227.5,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Anguilla,1980,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,15,0,0,5,0,0,136.3636364,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,15,0,0,5,,,136.3636364,0,136.3636364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Anguilla,1990,0,0,136.3636364
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Anguilla,2000,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,1500,0,1500,0,670,20000,2.666666667,0,10000,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,1500,0,1500,0,670,20000,,,10000,0,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Anguilla,2010,2.666666667,0,10000
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0.2,0,0,0,0,,,,0.434782609,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0.2,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Antigua and Barbuda,1950,0.434782609,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,0,0,0,0,0,0,0.37037037,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Antigua and Barbuda,1960,0.37037037,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Antigua and Barbuda,1970,0,0,0
0,0,7500,0,7500,0,0,0,0,0,12096.77419,0,12096.77419,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,8250,53,8303,0,0,8000,0.322580645,0,13306.45161,85.48387097,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,750,53,803,0,0,8000,,,1209.677419,85.48387097,1295.16129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1.82317571,0,0,0,0,0,0,1.82317571,0,0,Antigua and Barbuda,1980,0.322580645,0,13391.93548
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,20.8,450,697.6,1168.4,0,5000,45000,0.830494342,29.73770101,600,978.4479651,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,20.8,450,697.6,1168.4,0,5000,45000,,,600,978.4479651,1608.185666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,7.436792165,0,0,0,0,0,0,7.436792165,0,0,Antigua and Barbuda,1990,0.830494342,29.73770101,1608.185666
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2580,0,2580,0,0,0,0,0,3035.294118,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2580,0,2580,0,0,0,,,3035.294118,0,3035.294118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Antigua and Barbuda,2000,0,0,3035.294118
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,680,0,680,20000,680,26260,0.105263158,0,757.6555024,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,680,0,680,20000,680,26260,,,757.6555024,0,757.6555024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1.812712269,0,0,0,0,0,0,1.812712269,0,0,Antigua and Barbuda,2010,0.105263158,0,757.6555024
0,0,0,0,0,,,,0,0,0,0,0,40,0,0,0,0,,,,0.450202332,0,0,0,0,40,0,0,0,0,,,,0.450202332,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Argentina,1920,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Argentina,1930,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,1000,3500,12000,0,15500,,,,6.601007327,23.10352564,79.21208792,0,102.3156136,1000,3500,12000,0,15500,,,,6.601007327,23.10352564,79.21208792,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Argentina,1940,0,0,102.3156136
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,36,0,0,0,0,,,,0.181726401,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,36,0,0,0,0,,,,0.181726401,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Argentina,1950,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.3,0,26200,7000,33200,0,0,3300,0.072399968,0,115.5491451,30.66275352,,0,0,0,0,0,0,0,0,0,0,0,0,0,11.8,0,26200,7000,33200,0,0,3300,0.052093108,0,115.5491451,30.66275352,146.2118986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,4.5,0,0,0,0,0,0,0,0.020306859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.011715119,0,0,0,0.011715119,0,0,0,0,0,Argentina,1960,0,0,146.2118986
0,0,0,0,0,0,0,0,0,0,0,0,0,7,10,0,4000,4010,0,0,8000,0.026255579,0.03750797,0,15.00318818,15.04069615,39.1,50,12410,4000,16460,0,0,10500,0.154693748,0.194193321,48.08357339,15.00318818,,0,0,0,0,0,0,0,0,0,0,0,0,0,3.6,0,2410,0,2410,0,0,2500,0.015074746,0,8.809360842,0,8.809360842,0,0,0,0,0,0,0,0,0,0,0,0,0,18.5,40,10000,0,10040,0,0,0,,,39.27421255,0,39.4308979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0.040563015,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.022004567,0,0.01408922,0,0.007915347,0,0,0,0,0,Argentina,1970,0.072800408,0.15668535,63.28095489
0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,23.8,4500,0,4523.8,0,0,0,0.001985703,0.078766217,14.89277204,0,14.97153826,14.4,25.4,1203700,36675,1240400.4,0,0,393000,0.04853404,0.084115511,3976.237927,123.7533812,,0,0,0,0,0,0,0,0,0,0,0,0,0,10.6,0,1182600,36600,1219200,0,0,382000,0.035813475,0,3907.920413,123.5128732,4031.433286,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,200,0,200,0,0,1000,,,0.64642078,0,0.64642078,3,1.4,1200,0,1201.4,0,0,0,0.010088442,0.00470794,4.035376803,0,4.040084743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,15200,75,15275.2,0,0,10000,0,0.000641355,48.7429451,0.240507953,48.98409441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.394881732,0,0,0,0.384981277,0,0,0.000900041,0,0.009000414,Argentina,1980,0.000646421,0,4100.075424
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,47800,9327.4,57127.4,0,0,275200,0.038242289,0,134.5924547,27.80828429,,0,0,6200,120,6320,0,0,0,0,0,18.74300916,0.362767919,19.10577708,8.5,0,37700,8807.4,46507.4,0,0,270200,0.025127741,0,104.6618816,26.2680068,130.9298884,0,0,0,0,0,0,0,0,0,0,0,0,0,2.1,0,1400,400,1800,0,0,5000,,,4.00943144,1.177509567,5.186941007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4,0,0,0,0,0,0,0,0.006976136,0,0,0,0,0,0,2500,0,2500,0,0,0,0,0,7.178132537,0,7.178132537,0,0,0,0,0,0,0,0,,,,,,0.107325145,0,0,0,0.105213141,0,0,0.002112004,0,0,Argentina,1990,0.006138413,0,162.400739
0,0,0,0,0,0,0,12000,0,0,0,0,0,0,2.7,50,20,72.7,0,0,0,0,0.007165225,0.132689348,0.053075739,0.192930312,18.5,30,72662.8,3563,76255.8,0,0,226821,0.048478453,0.079371218,189.1699088,9.384094986,,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3,4.7,69622.8,3280,72907.5,0,0,211821,0.019047986,0.012667194,181.4603033,8.626435037,190.0994055,0,0,0,0,0,0,0,0,0,0,0,0,0,5.7,22.6,640,263,925.6,0,0,1500,,,1.697322937,0.704584211,2.461445946,0.4,0,2000,0,2000,0,0,1500,0.000988069,0,4.94034533,0,4.94034533,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,0,0,0,0,0,0,0.002169727,0,0,0,0,4.3,0,350,0,350,0,0,0,0.011390893,0,0.93924788,0,0.93924788,0,0,0,0,0,0,0,0,,,,,,0.130862445,0.009405347,0,0,0.120448365,0.000450483,0,0.00055825,0,0,Argentina,2000,0.014881778,0.059538799,198.633375
0.8,3.2,3500,0,3503.2,0,0,340000,0.001786472,0.007145888,7.815814743,0,7.822960631,0,0,0,0,0,0,0,0,0,0,0,0,0,18.6,7.4,79886.9,200,80094.3,0,21300,589920,0.044076722,0.017174528,185.8253981,0.478984553,,0,0,300,0,300,0,0,10400,0,0,0.726040658,0,0.726040658,7.9,0,74465.3,0,74465.3,0,21300,236400,0.018585132,0,173.483289,0,173.483289,0,0,0,0,0,0,0,0,0,0,0,0,0,3.3,4.2,1320,200,1524.2,0,0,3120,,,3.111389446,0.478984553,3.600402639,2.4,0,301.6,0,301.6,0,0,0,0.005628782,0,0.688864288,0,0.688864288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.2,0,0,0,0,0,0,0,0.010269953,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.110890983,0.065684363,0,0,0.042699743,0,0,0.000545215,0.001961661,0,Argentina,2010,0.007806383,0.01002864,186.3215572
0,0,0,0,0,,,,0,0,0,0,0,289,0,0,0,0,,,,25.50068252,0,0,0,0,289,0,0,0,0,,,,25.50068252,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Armenia,1930,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Armenia,1940,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Armenia,1950,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Armenia,1960,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Armenia,1970,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Armenia,1980,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1500,0,1500,0,0,3333.3,0,0,47.87743377,0,47.87743377,0.4,0,2200,14.4,2214.4,0,0,4145.3,0.012767316,0,70.2202362,0.463171438,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,700,14.4,714.4,0,0,812,0.012767316,0,22.34280243,0.463171438,22.80597386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.252742183,0,0.203312922,0,0.049429261,0,0,0,0,0,Armenia,1990,0,0,70.68340763
0,0,29700,0,29700,0,0,10000,0,0,967.4267101,0,967.4267101,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,29700,0,29700,0,0,10000,0.003332223,0,967.4267101,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,0,0,0,0,0,0,0.003332223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.523131934,0.523131934,0,0,0,0,0,0,0,0,Armenia,2000,0,0,967.4267101
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9835,0,9835,0,0,6182.2,0,0,337.8946613,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8560,0,8560,0,0,6182.2,,,293.9322979,0,293.9322979,0,0,75,0,75,0,0,0,0,0,2.554495913,0,2.554495913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1200,0,1200,0,0,0,0,0,41.40786749,0,41.40786749,0,0,0,0,0,0,0,0,,,,,,0.055412244,0,0,0,0,0,0,0.055412244,0,0,Armenia,2010,0,0,337.8946613
125000,0,0,0,0,,,,13.55819434,0,0,0,0,4842.9,50.8,8765.7,3118.8,11935.3,,,,0.516690196,0.005431862,0.949381941,0.331342684,1.286156486,130959.6,50.8,8765.7,3118.8,11935.3,,,,14.19384107,0.005431862,0.949381941,0.331342684,,15.5,0,0,0,0,,,,0.001689087,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,1101.2,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Asia,1900,0.117267444,0,1.286156486
0,0,0,0,0,,,,0,0,0,0,0,3473.4,251.2,0,7332.9,7584.1,,,,0.339642473,0.025394489,0,0.736197134,0.761591623,19888.8,271.1,363500,7332.9,371104,,,,2.016026699,0.027439615,35.89444258,0.736197134,,647.5,19.9,0,0,19.9,,,,0.062868663,0.002045126,0,0,0.002045126,10137.9,0,363500,0,363500,,,,1.041957486,0,35.89444258,0,35.89444258,0,0,0,0,0,,,,0,0,0,0,0,5630,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Asia,1910,0.571558077,0,36.65807933
350000,0,2000000,0,2000000,,,,31.67635488,0,189.7542603,0,189.7542603,38548.6,10893.2,12946.3,21058.7,44898.2,,,,3.602518958,1.00983162,1.194662997,1.908112192,4.112606809,399968.5,10894.2,2116946.3,27758.7,2155599.2,,,,36.34293464,1.009922012,200.5335149,2.52218842,,14.4,0,0,0,0,,,,0.00131053,0,0,0,0,3.6,0,0,200,200,,,,0.00032319,0,0,0.017954999,0.017954999,0,0,0,0,0,,,,0,0,0,0,0,11381.9,1,104000,6500,110501,,,,,,9.584591524,0.596121229,10.18080315,20,0,0,0,0,,,,0.001856681,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Asia,1920,1.060570403,0.0000904,204.0656253
0,0,0,0,0,,,,0,0,0,0,0,13111.9,4616.8,92,34617.3,39326.1,,,,1.096192165,0.387445255,0.007480871,2.905284602,3.300210727,457294.9,4616.8,1003092,409867.3,1417576.1,,,,39.48567807,0.387445255,84.06224523,34.96165302,,266.9,0,0,0,0,,,,0.023424484,0,0,0,0,436093.3,0,1003000,360000,1363000,,,,37.71233869,0,84.05476436,30.79040886,114.8451732,0,0,0,0,0,,,,0,0,0,0,0,7772.8,0,0,15250,15250,,,,,,0,1.265959562,1.265959562,50,0,0,0,0,,,,0.004232423,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Asia,1930,0.649490307,0,119.4113435
340000,0,0,0,0,,,,26.46080124,0,0,0,0,3395.3,2980.1,1400,55385.7,59765.8,,,,0.259182219,0.223825504,0.108511317,4.180976112,4.513312933,362065.4,2980.1,253387.1,56585.7,312952.9,,,,28.14221421,0.223825504,19.13967407,4.273061323,,0,0,0,0,0,,,,0,0,0,0,0,6065.2,0,0,0,0,,,,0.441580946,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,12554.9,0,251987.1,1200,253187.1,,,,,,19.03116276,0.092085211,19.12324797,50,0,0,0,0,,,,0.003689649,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Asia,1940,0.976960149,0,23.6365609
0,0,0,0,0,,,,0,0,0,0,0,1439.2,1415.8,6103,16634.4,24153.2,,,,0.093142654,0.089589136,0.403451579,1.157698626,1.650739341,209916.6,1472.1,1809675.9,61834.4,1872982.4,,,,12.613291,0.093365657,124.2238006,4.066968735,,195,0,2.9,0,2.9,,,,0.013577936,0,0.000198009,0,0.000198009,205570.1,0,1251653.4,7700,1259353.4,,,,12.33422966,0,88.00534597,0.488004762,88.49335073,0,0,0,0,0,,,,0,0,0,0,0,2502.5,56.3,551916.6,37500,589472.9,,,,,,35.81480506,2.421265347,38.23984693,77.8,0,0,0,0,,,,0.004965426,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,132,0,0,0,0,,,,0.008453491,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Asia,1950,0.158921832,0.003776521,128.384135
150800,0,10484300,0,10484300,0,0,12931.8,7.958116149,0,552.5160352,0,552.5160352,3054.9,1609.1,75721.3,20062,97392.4,0,500,119140,0.15971351,0.08325275,3.896376152,1.001375763,4.981004664,169017.6,74146.1,16563644.2,713214.8,17351005.1,0,500,248996,8.938831135,3.865619875,865.268104,37.12612216,,313.6,284.5,46970,1400,48654.5,0,0,1520,0.016821507,0.014760031,2.351013754,0.071649984,2.437423769,2596.6,10130.3,3658174.7,128770.1,3797075.1,0,0,63581.1,0.141853615,0.497033456,183.7481605,6.406958001,190.6521519,15,0,0,0,0,0,0,0,0.000827732,0,0,0,0,12052.5,62121.5,2298468.2,562982.7,2923572.4,0,0,51823.1,,,122.756028,29.64613841,155.6727058,135,0.7,10,0,10.7,0,0,0,0.006800067,0.0000343,0.000490443,0,0.000524774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0.002827835,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.090048503,0.004545394,0.047067006,0,0.019138535,0,0,0.018803694,0.000493874,0,Asia,1960,0.65187072,3.270539308,906.2598461
8.1,0,22767288.5,0,22767288.5,0,0,38120,0.00031641,0,1000.508828,0,1000.508828,32729.5,22094.6,176971.6,68680.5,267746.7,0,200,701075.5,1.344812296,0.906188835,7.259512894,2.679086254,10.84478798,73890.6,27313.7,45728078.4,1923922.8,47679314.9,0,200,1593860.9,3.216926457,1.124368963,1955.819465,80.35276153,,30,100,6451,1000,7551,0,0,2267.9,0.001164184,0.003848156,0.254375745,0.038481557,0.296705457,6465.6,999.6,19064606.7,1072228,20137834.3,0,0,436764.8,0.272317325,0.040966113,789.6232057,45.14411364,834.8082855,0,0,0,0,0,0,0,0,0,0,0,0,0,34436.1,4117,3701619.3,782014.3,4487750.6,0,0,404532.7,,,157.7203334,32.49108008,190.3846826,131.8,2.5,8141.3,0,8143.8,0,0,10000,0.00551745,0.0000967,0.337764277,0,0.337861004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3000,0,3000,0,0,1100,0,0,0.115444671,0,0.115444671,89.5,0,0,0,0,0,0,0,0.003590965,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.143789201,0.003800041,0.054407117,0,0.047649861,0.000796646,0,0.036930297,0.000152036,0.0000532,Asia,1970,1.589207826,0.173269132,2037.296596
229.4,0,48343426,0,48343426,0,0,94288.7,0.007597135,0,1628.01982,0,1628.01982,890.3,3155.2,2369231.6,53654.5,2426041.3,0,0,241367.7,0.03147961,0.111477382,76.98608738,1.764371617,78.86193638,9983.9,17239.1,105918514.5,1666343.1,107602096.7,0,17060,3456477.9,0.345304698,0.608388388,3565.657513,56.51338949,,22.9,0,53981.8,860,54841.8,0,0,33519,0.000842377,0,1.93943834,0.030482558,1.969920898,4194.4,8030.8,42851348.8,459061.4,43318441,0,40,2041806.4,0.145849431,0.291309947,1446.835624,15.56092395,1462.687858,87.3,5,65.1,0,70.1,0,0,100,0.00300748,0.000164342,0.002139726,0,0.002304068,4011.1,5820.8,12278454,899042.2,13183317,0,17020,1015762,,,411.1312907,30.63436,441.963639,293.7,183.2,10539.2,250825,261547.4,0,0,4034.1,0.010109104,0.006011949,0.352253351,8.41651567,8.77478097,0,0,0,0,0,0,0,0,0,0,0,0,0,21.2,22.4,8468,2900,11390.4,0,0,11200,0.000701913,0.000736454,0.290211846,0.106735701,0.397684001,233.6,21.7,3000,0,3021.7,0,0,14400,0.008040432,0.000700029,0.100647282,0,0.101347311,0,0,0,0,0,0,0,0,,,,,,0.100080527,0.00198181,0.008516206,0.000501391,0.057662199,0.000149099,0.00000246,0.02964484,0.001344754,0.00027777,Asia,1980,0.137677216,0.197988286,3622.779291
282.3,0,19647828.2,0,19647828.2,0,0,1881670,0.008372069,0,558.8015849,0,558.8015849,9539.3,30101.5,1749248.8,414497.5,2193847.8,3500000,625890,14922491.3,0.280638289,0.879391754,49.51214215,11.66956014,62.06109404,34881.3,137357.8,176057194.1,6956184.4,183150736.3,3500300,1843820,38316706.1,1.032365055,3.989204006,5049.195774,197.0186077,,89.6,25.8,123547.4,6530,130103.2,0,0,23048.8,0.002709581,0.000780854,3.747756551,0.192976744,3.941514149,5301.6,79572.9,136423123.1,4432873.1,140935569.1,300,47450,14347747.4,0.152143943,2.290425557,3912.330244,125.9910058,4040.611675,46.8,18.4,600,40,658.4,0,0,0,0.001406609,0.000563276,0.018497046,0.001198642,0.020258964,18449,27518,17695823.7,1970609.5,19693951.2,0,1155480,5746119.6,,,512.7945395,55.37743919,568.986586,530.7,103.3,37759.9,125934.3,163797.5,0,0,148079,0.015242997,0.002929399,1.068226084,3.617174016,4.688329498,0,0,0,0,0,0,0,0,0,0,0,0,0,47.3,17.9,304800,5700,310517.9,0,0,1149650,0.00134183,0.000505839,8.850862596,0.169253081,9.020621515,594.7,0,74463,0,74463,0,15000,97900,0.016986885,0,2.071921473,0,2.071921473,0,0,0,0,0,0,0,0,,,,,,0.498361463,0.024208615,0.179704627,0.001599179,0.190576088,0.002026929,0,0.08569392,0.000414722,0.014137383,Asia,1990,0.553522851,0.814607327,5250.203586
19.1,0,62535500,0,62535500,0,0,1145976,0.000485363,0,1615.307209,0,1615.307209,44765.3,92413,6734036,1065689,7892138,520000,330204.1,15774591.9,1.128751966,2.312901551,166.2247183,27.10901116,195.646631,66036,137912.9,201886446.3,2404568.8,204428928,520000,2384784.1,35987201.1,1.652496675,3.476962127,5139.816267,60.71419154,,0.8,12,39102.4,0,39114.4,0,0,479.4,0.0000198,0.000303981,0.999190504,0,0.999494485,3714.8,21876.6,88431868.2,1038470.6,89492215.4,0,381800,7720428.1,0.093961434,0.563409938,2247.901548,25.93322212,2274.39818,6.6,1.8,0,34,35.8,0,0,0,0.000168681,0.0000455,0,0.000864999,0.000910497,16007.1,22411.1,35994348.1,282883.2,36299642.4,0,1512780,9062154,,,911.1987385,7.22652035,918.9948897,613.1,111.7,117128.6,17263.5,134503.8,0,0,41870.7,0.015577922,0.00286397,3.000865176,0.438641466,3.442370612,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,43,402.2,228.5,673.7,0,0,1400,0.0000127,0.001095269,0.010192386,0.005931448,0.017219104,908.7,1043.7,8034060.8,0,8035104.5,0,160000,2240301,0.023155424,0.026711089,195.1738054,0,195.2005165,0,0,0,0,0,0,0,0,,,,,,0.2817198,0.009595127,0.11191155,0.0132873,0.068964802,0.000359639,0,0.077585164,0.00000543,0.0000108,Asia,2000,0.390363395,0.56963083,5204.007421
8.8,0,49961485,0,49961485,0,205400,2605859.9,0.000192178,0,1131.282321,0,1131.282321,4225.1,19761.6,2354165.4,64872.8,2438799.8,160530,4325600,26672187.1,0.097465593,0.45118115,53.38853216,1.489599429,55.32931274,11392.9,52271,137614908.5,855497.8,138522677.3,160530,9882290,73293208.1,0.261343958,1.187355069,3144.795348,19.58820981,,88.1,1466,71068.9,600,73134.9,0,0,43956.4,0.002000245,0.032244654,1.615486627,0.014102292,1.661833574,3723.1,4649.3,62954067.8,531946.4,63490663.5,0,1856300,26406215.2,0.085084111,0.106180221,1451.520968,12.12552679,1463.752675,9.2,0.2,0,0,0.2,0,0,800,0.000209691,0.0000046,0,0,0.0000046,1968.6,7424.1,21278862.8,233271.1,21519558,0,3491600,17003219.4,,,483.8817915,5.377101984,489.4291055,601.6,139.7,289165.4,1507.5,290812.6,0,3390,177337.8,0.013897676,0.003208295,6.792753384,0.034240296,6.830201975,0,0,0,0,0,0,0,0,0,0,0,0,0,15.1,19.7,49266.4,0,49286.1,0,0,179000,0.000344541,0.000441546,1.112230785,0,1.112672331,753.3,18810.4,656826.8,23300,698937.2,0,0,204632.3,0.017085921,0.423882522,15.20126517,0.547639018,16.17278671,0,0,0,0,0,0,0,0,,,,,,0.286126782,0.01010107,0.109970241,0.00076955,0.103453443,0.000736034,0.00000314,0.060235279,0.000151457,0.000706567,Asia,2010,0.045064001,0.170212077,3165.570913
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,7.1,0,0,390,390,,,,0.101676866,0,0,5.585067306,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,7.1,0,0,390,390,,,,0.101676866,0,0,5.585067306,5.585067306,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Australia,1930,0,0,5.585067306
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,4.9,0,0,210,210,,,,0.066917768,0,0,2.867904327,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,4.9,0,0,210,210,,,,0.066917768,0,0,2.867904327,2.867904327,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Australia,1940,0,0,2.867904327
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,7,0,0,0,0,,,,0.07636919,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,7,0,0,0,0,,,,0.07636919,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Australia,1950,0,0,0
60,0,0,0,0,0,0,60000,0.504201681,0,0,0,0,0,1.6,387.4,40,429,0,0,260,0,0.013097577,3.171250819,0.327439424,3.511787819,67.4,11.6,787.4,120,919,0,0,67210,0.566125704,0.09713119,6.510857781,0.982318271,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4,10,400,80,490,0,0,6950,0.061924023,0.084033613,3.339606963,0.654878847,4.078519423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.221020897,0.197384128,0.000795947,0,0,0,0,0,0,0.022840822,Australia,1960,0,0,7.590307243
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.5,64,6610,100,6774,0,0,284371.7,0.129219107,0.470380714,48.50888296,0.744490768,,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,2100,100,2200,0,0,19005.2,0.044852735,0,15.36505861,0.744490768,16.10954938,0,0,0,0,0,0,0,0,0,0,0,0,0,11.2,64,4510,0,4574,0,0,262481.5,,,33.14382434,0,33.61420506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,0,0,0,0,0,2885,0.002128716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.310255463,0,0,0,0.025223958,0,0,0.282481111,0,0.002550394,Australia,1970,0.082237656,0.470380714,49.72375444
0,0,8000,0,8000,0,0,600000,0,0,54.13818772,0,54.13818772,1.2,11.5,200,0,211.5,0,39600,100000,0.00717961,0.068804595,1.196601651,0,1.265406246,20.9,26.7,8200,1200,9426.7,0,55870,840283.4,0.133694514,0.167603681,55.33478938,7.867443054,,0,0,0,0,0,0,0,0,0,0,0,0,0,7.1,0,0,0,0,0,0,34054.8,0.044830943,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1.2,0,100,101.2,0,16270,60314.2,,,0,0.628219626,0.635758261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.6,14,0,1100,1114,0,0,45914.4,0.056380813,0.091260451,0,7.239223429,7.33048388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.449114609,0.339670067,0.033414419,0,0.018185333,0,0,0.031675173,0,0.026169616,Australia,1980,0.025303147,0.007538636,63.36983611
0,0,700000,0,700000,0,0,197300,0,0,4022.526146,0,4022.526146,0,0.5,500,2,502.5,0,0,0,0,0.002809147,2.809146581,0.011236586,2.823192314,14.7,129.6,1563688.5,950.5,1564768.6,0,166600,715469.3,0.081662476,0.728598797,8880.08582,5.333308097,,0,0,0,0,0,0,0,0,0,0,0,0,0,3.8,5.6,4927.5,600,5533.1,0,8580,99860,0.021152262,0.031336903,27.42289746,3.399358838,30.8535932,0,0,0,0,0,0,0,0,0,0,0,0,0,5.1,28.9,393551,248.5,393828.4,0,158020,402639.3,,,2200.772774,1.360883356,2202.294109,2.8,0.1,10,0,10.1,0,0,0,0.015281433,0.000549783,0.054978284,0,0.055528066,0,0,0,0,0,0,0,0,0,0,0,0,0,0.7,16.1,4700,100,4816.1,0,0,15670,0.003867297,0.09045452,26.34682849,0.561829316,26.99911233,2.3,78.4,460000,0,460078.4,0,0,0,0.013022363,0.442996256,2600.153049,0,2600.596045,0,0,0,0,0,0,0,0,,,,,,0.201841682,0.060710034,0,0,0.026982127,0,0,0.109340053,0,0.004809467,Australia,1990,0.028339121,0.160452188,8886.147727
0,0,0,0,0,0,0,200000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.5,276.2,8777.9,751,9805.1,0,421400,1021645.4,0.275611695,1.282614313,41.99630444,3.665662804,,0,0,0,0,0,0,0,0,0,0,0,0,0,3.4,3.1,3536,0,3539.1,0,229500,419250,0.016391828,0.016150039,17.02516518,0,17.04131522,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2,5.7,3566.5,712.9,4285.1,0,83000,214395.4,,,16.85403258,3.473264476,20.35597883,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20.2,67.4,1675.4,38.1,1780.9,0,108900,188000,0.093719535,0.318284548,8.117106687,0.192398328,8.627789563,34.7,200,0,0,200,0,0,0,0.159532895,0.919497954,0,0,0.919497954,0,0,0,0,0,0,0,0,,,,,,0.158105745,0.050677944,0,0,0.052120107,0,0,0.029302314,0,0.02600538,Australia,2000,0.005967436,0.028681773,46.94458156
0,0,0,0,0,0,0,120000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.2,20.2,33746,1434,35200.2,0,1230100,2855040,0.110816366,0.083949282,147.3201561,5.843200327,,0,0,0,0,0,0,0,0,0,0,0,0,0,4.9,0,21299.7,0,21299.7,0,346000,1043340,0.021653796,0,95.32041098,0,95.32041098,0,0,0,0,0,0,0,0,0,0,0,0,0,3.3,1.2,12031.7,604.8,12637.7,0,836700,1389100,,,50.30094245,2.527160287,52.83318835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.1,19,414.6,829.2,1262.8,0,47400,302600,0.016494549,0.078863675,1.698802705,3.31604004,5.093706419,13.9,0,0,0,0,0,0,0,0.05890829,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.219852291,0.008374742,0,0,0.086012484,0,0,0.103926583,0,0.021538482,Australia,2010,0.013759731,0.005085608,153.2473058
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,23.8,0,38,0,38,,,,0.342861123,0,0.547313841,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,23.8,0,38,0,38,,,,0.342861123,0,0.547313841,0,0.547313841,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Austria,1950,0,0,0.547313841
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Austria,1960,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5,0,0,0,0,0,0,0,0.019638649,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,1.5,0,0,0,0,0,0,0,0.019638649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Austria,1970,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6,0,0,0,0,0,0,0,0.086755996,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2,0,0,0,0,0,0,0,0.015758372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2,0,0,0,0,0,0,0,,,0,0,0,4.2,0,0,0,0,0,0,0,0.05522268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Austria,1980,0.015774944,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6,0,1000,0,1000,0,22590,61677,0.082384576,0,12.42081729,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,1.3,0,0,0,0,0,0,29420,0.016396492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,0,0,0,0,22590,28100,,,0,0,0,5,0,1000,0,1000,0,0,4157,0.062104086,0,12.42081729,0,12.42081729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.033329009,0,0,0,0.014634736,0.001914028,0,0.016780245,0,0,Austria,1990,0.003883998,0,12.42081729
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.6,0,6171.6,0,6171.6,0,79000,500500,0.472068709,0,75.8464605,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,1.4,0,6141.6,0,6141.6,0,53000,330000,0.017105117,0,75.47763827,0,75.47763827,0,0,0,0,0,0,0,0,0,0,0,0,0,0.7,0,30,0,30,0,26000,142500,,,0.368822228,0,0.368822228,1.3,0,0,0,0,0,0,0,0.016111042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.2,0,0,0,0,0,0,28000,0.430369314,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.185983587,0,0,0.010699438,0.139628023,0,0,0.035656126,0,0,Austria,2000,0.008483235,0,75.8464605
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.6,12,41,0,53,0,24700,100120,0.02962532,0.136054422,0.471849329,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,20,0,20,0,23500,100000,0.004675082,0,0.233754091,0,0.233754091,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6,12,21,0,33,0,1200,120,,,0.238095238,0,0.37414966,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,0,0,0,0,0,0,0,0.006997664,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.023280915,0,0,0,0.023252083,0,0,0.0000288,0,0,Austria,2010,0.017952575,0.136054422,0.607903751
0,0,0,0,0,,,,0,0,0,0,0,8.6,6,1748,0,1754,,,,0.458706299,0.32002765,93.23472215,0,93.5547498,8.6,6,1748,0,1754,,,,0.458706299,0.32002765,93.23472215,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Azerbaijan,1900,0,0,93.5547498
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Azerbaijan,1910,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Azerbaijan,1920,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Azerbaijan,1930,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Azerbaijan,1940,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Azerbaijan,1950,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Azerbaijan,1960,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Azerbaijan,1970,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Azerbaijan,1980,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,2.8,70075,840,70917.8,0,0,500,0.002493184,0.034864788,877.0263332,10.4296002,887.4907982,1.8,2.8,227855,16440,244297.8,0,0,4620,0.022802427,0.034864788,2904.513353,211.072687,,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6,0,157780,15600,173380,0,0,4120,0.020309243,0,2027.48702,200.6430868,2228.130107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.141024643,0,0.010913618,0,0.130111024,0,0,0,0,0,Azerbaijan,1990,0,0,3115.620905
0,0,0,0,0,0,0,10000,0,0,0,0,0,3.1,60,269.4,0,329.4,0,0,1000,0.03816324,0.738643358,3.316508679,0,4.055152037,4.2,60,3769.4,150,3979.4,0,0,16500,0.051705035,0.738643358,44.80025284,1.794043775,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3500,150,3650,0,0,5500,0,0,41.48374416,1.794043775,43.27778794,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,1.1,0,0,0,0,0,0,0,0.013541795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.284201028,0.189652614,0.018965261,0,0.075583153,0,0,0,0,0,Azerbaijan,2000,0,0,47.33293997
0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1550,694.9,2249.9,0,0,0,0,0.053966541,16.72962763,7.500269833,24.283864,0.8,5,8550,694.9,9249.9,0,0,0,0.008718178,0.053966541,94.23184198,7.500269833,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,7000,0,7000,0,0,0,0.003321523,0,77.50221435,0,77.50221435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,0,0,0,0,0,0,0.005396654,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Azerbaijan,2010,0,0,101.7860784
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Bahamas,1920,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,1.4,0,0,0,0,,,,2.221164525,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,1.4,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Bahamas,1930,2.221164525,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,2.2,0,0,0,0,,,,3.058061467,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,2.2,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Bahamas,1940,3.058061467,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Bahamas,1950,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0.3,120,0,120.3,0,0,1770,0.342465753,0.205479452,85.71428571,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0.3,120,0,120.3,0,0,1770,,,85.71428571,0,85.91976517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.542278009,0,0,0,0,0,0,0.542278009,0,0,Bahamas,1960,0.342465753,0.205479452,85.91976517
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Bahamas,1970,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Bahamas,1980,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,0,170,170,0,2200,70040,0.184389545,0,0,63.90977444,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,0,170,170,0,2200,70040,,,0,63.90977444,63.90977444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1.390925991,0,0,0,0,0,0,1.390925991,0,0,Bahamas,1990,0.184389545,0,63.90977444
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.4,0,2050,0,2050,0,24500,185000,0.43661837,0,623.2099435,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.4,0,2050,0,2050,0,24500,185000,,,623.2099435,0,623.2099435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,2.07237763,0,0,0,0,0,0,2.07237763,0,0,Bahamas,2000,0.43661837,0,623.2099435
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,3265,0,3265,0,7639.8,417700,10.06149642,0,868.4991955,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,100,0,1500,4500,0,0,27.2479564,0,27.2479564,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,3165,0,3165,0,6139.8,413200,,,841.2512391,0,841.2512391,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,3.167653432,0,0,0,0.042579766,0,0,3.125073666,0,0,Bahamas,2010,10.06149642,0,868.4991955
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,17.2,0,0,0,0,,,,0.055914692,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,17.2,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Bangladesh,1900,0.055914692,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Bangladesh,1910,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0.6,0,0,2500,2500,,,,0.001814992,0,0,7.562467799,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0.6,0,0,2500,2500,,,,,,0,7.562467799,7.562467799,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Bangladesh,1920,0.001814992,0,7.562467799
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Bangladesh,1930,0,0,0
190000,0,0,0,0,,,,504.5400639,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,196650,0,0,0,0,,,,522.1764206,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,6650,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Bangladesh,1940,17.63635668,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,70,0,0,0,0,,,,0.161718896,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,70,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Bangladesh,1950,0.161718896,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10291.3,71677.5,2934678.5,620266.7,3626622.7,0,0,35747.9,19.54826009,127.4311756,5061.427625,1103.324499,,0,0,0,0,0,0,0,0,0,0,0,0,0,1029,10000,1641089.2,87872.4,1738961.6,0,0,20540,2.131574245,16.41550937,2721.249899,144.2470206,2881.912429,0,0,0,0,0,0,0,0,0,0,0,0,0,9262.3,61677.5,1293589.3,532394.3,1887661.1,0,0,15207.9,,,2340.177726,959.0774785,3410.270871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.540750001,0,0,0,0.277282363,0,0,0.263467638,0,0,Bangladesh,1960,17.41668585,111.0156662,6292.1833
1.8,0,200,0,200,0,0,0,0.002321712,0,0.257967986,0,0.257967986,0,0,0,0,0,0,0,0,0,0,0,0,0,33653.7,2605,5431376,201000,5634981,0,0,74080.1,52.00983097,3.72108597,8009.845463,292.4214049,,0,0,0,0,0,0,0,0,0,0,0,0,0,2937.5,0,5061365,200000,5261365,0,0,60420,4.273135428,0,7434.180721,290.9429461,7725.123667,0,0,0,0,0,0,0,0,0,0,0,0,0,30714.4,2605,369811,1000,373416,0,0,13660.1,,,575.4067746,1.478458854,580.6063194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.638782494,0,0,0,0.490698823,0,0,0.148083671,0,0,Bangladesh,1970,47.73437383,3.72108597,8305.987954
0,0,2500000,0,2500000,0,0,0,0,0,2879.430365,0,2879.430365,0.3,20,0,0,20,0,0,0,0.000303005,0.020115731,0,0,0.020115731,2621.4,2220,16244186,308000,16554406,0,0,341070,2.865124476,2.538265405,17707.39755,322.5996588,,0,0,0,0,0,0,0,0,0,0,0,0,0,706.4,0,12284300,42500,12326800,0,0,334450,0.758073758,0,13275.1816,46.78032701,13321.96193,0,0,0,0,0,0,0,0,0,0,0,0,0,1897.7,2200,1459886,265500,1727586,0,0,6620,,,1552.785586,275.8193318,1831.123067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0.016882665,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1.350009359,0,0,0,1.321937545,0,0,0.028071814,0,0,Bangladesh,1980,2.089865047,2.518149673,18032.53547
0,0,0,0,0,0,0,0,0,0,0,0,0,2.9,40,0,1500,1540,0,0,0,0.00239337,0.032620052,0,1.198178768,1.230798821,14636.8,20128.7,7891074.1,276100,8187302.8,0,8000,777780,13.80597095,18.50601913,6968.064776,240.4230425,,0,0,0,0,0,0,0,0,0,0,0,0,0,294.4,207,5725959.3,90400,5816566.3,0,0,507030,0.253760348,0.195566051,4977.461599,80.388022,5058.045187,0,0,0,0,0,0,0,0,0,0,0,0,0,14259.4,19881.7,2161714.8,184200,2365796.5,0,8000,270750,,,1987.831807,158.8368417,2164.946482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80.1,0,3400,0,3400,0,0,0,0.07109421,0,2.771370116,0,2.771370116,0,0,0,0,0,0,0,0,,,,,,1.882757846,0,0,0,1.059158169,0,0,0.823599677,0,0,Bangladesh,1990,13.47872302,18.27783302,7226.993838
0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,2.5,350,0,352.5,0,0,50000,0.000294377,0.001854709,0.263805247,0,0.265659957,934.4,7615.5,7190295,16026.3,7213936.8,0,0,588400,0.667966822,5.383649381,5180.650505,11.99715855,,0,0,0,0,0,0,0,0,0,0,0,0,0,240.4,32.2,5860179.3,4763.8,5864975.3,0,0,281400,0.172275239,0.02364449,4252.912954,3.409659004,4256.346258,0,0,0,0,0,0,0,0,0,0,0,0,0,558.8,7355.8,1309665.7,11262.5,1328284,0,0,257000,,,913.1915188,8.587499545,926.965125,1.3,5,0,0,5,0,0,0,0.000900876,0.003464907,0,0,0.003464907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133.5,220,20100,0,20320,0,0,0,0.098645352,0.168578576,14.2822266,0,14.45080518,0,0,0,0,0,0,0,0,,,,,,0.837946245,0,0.076794836,0,0.445902714,0,0,0.315248695,0,0,Bangladesh,2000,0.395850977,5.186106697,5198.031313
0,0,0,0,0,0,0,0,0,0,0,0,0,0.9,27,0,0,27,0,0,0,0.000572492,0.017230533,0,0,0.017230533,172.4,2769.2,3927171.8,19800,3949741,0,0,172278.5,0.110453441,1.762902798,2499.828519,12.6738838,,0,0,0,0,0,0,0,0,0,0,0,0,0,65.3,2109.8,2972600.9,930,2975640.7,0,0,105300,0.041581871,1.350542107,1890.866803,0.582396622,1892.799742,0,0,0,0,0,0,0,0,0,0,0,0,0,59.2,151.8,921457.9,18870,940479.7,0,0,66978.5,,,587.2483363,12.09148717,599.4392978,25.2,30.6,15413,0,15443.6,0,0,0,0.016201529,0.019660082,9.91357128,0,9.933231362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21.8,450,17700,0,18150,0,0,0,0.014094974,0.275995731,11.79980828,0,12.07580401,0,0,0,0,0,0,0,0,,,,,,0.076586216,0,0,0,0.045707662,0,0,0.030878554,0,0,Bangladesh,2010,0.038002575,0.099474345,2514.265306
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,5.7,0,0,0,0,,,,2.511013216,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,5.7,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Barbados,1950,2.511013216,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Barbados,1960,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,1,20,0,21,0,0,50,0.125523013,0.418410042,8.368200837,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,1,20,0,21,0,0,50,0.125523013,0.418410042,8.368200837,0,8.786610879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Barbados,1970,0,0,8.786610879
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.7,0,533,533.7,0,0,10150,0,0.277777778,0,211.2489957,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,3.921568627,3.921568627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.7,0,523,523.7,0,0,10150,,,0,207.3274271,207.6052049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.60154498,0,0,0,0,0,0,0.60154498,0,0,Barbados,1980,0,0.277777778,211.5267735
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Barbados,1990,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,0,0.1,0,0,0,0,0.035842294,0,0,0.035842294,0.1,0.1,0,288,288.1,0,0,520,0.036363636,0.035842294,0,105.2600733,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,0,288,288,0,0,520,,,0,105.2600733,105.2600733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.015159706,0,0,0,0,0,0,0.015159706,0,0,Barbados,2000,0.036363636,0,105.2959156
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,250,0,250,0,0,0,0.034965035,0,88.65248227,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,250,0,250,0,0,0,,,88.65248227,0,88.65248227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Barbados,2010,0.034965035,0,88.65248227
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.7,4.5,6304.5,30,6339,15000,0,13738,0.00701082,0.044959536,62.50858583,0.299730243,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,4200,0,4200,0,0,10438,0.002015316,0,41.4825093,0,41.4825093,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,4.5,2104.5,30,2139,15000,0,3300,,,21.02607653,0.299730243,21.37076631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.026993669,0,0,0,0.003604088,0,0,0.023389581,0,0,Belarus,1990,0.004995504,0.044959536,62.85327561
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,182,0,0,182,0,0,4030,0.005229032,1.903367496,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,182,0,0,182,0,0,3030,0.005229032,1.903367496,0,0,1.903367496,0,0,0,0,0,0,0,0,,,,,,0.025993998,0,0,0.023785391,0,0,0,0.002208607,0,0,Belarus,2000,0,0,1.903367496
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.9,339.4,14010,0,14349.4,0,0,0,0.051867569,3.598543158,148.3273264,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5000,0,5000,0,0,0,0,0,52.8932614,0,52.8932614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.9,339.4,9010,0,9349.4,0,0,0,0.051867569,3.598543158,95.43406505,0,99.03260821,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Belarus,2010,0,0,151.9258696
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0.6,0,0,0,0,,,,0.008288164,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0.6,0,0,0,0,,,,0.008288164,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Belgium,1900,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Belgium,1910,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,600,0,600,,,,0,0,7.528861892,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,600,0,600,,,,0,0,7.528861892,0,7.528861892,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Belgium,1920,0,0,7.528861892
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,6,0,0,0,0,,,,0.074263391,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,6,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Belgium,1930,0.074263391,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Belgium,1940,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,1.5,0,35,0,35,,,,0.017003173,0,0.398678665,0,,0,0,0,0,0,,,,0,0,0,0,0,1.5,0,35,0,35,,,,0.017003173,0,0.398678665,0,0.398678665,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Belgium,1950,0,0,0.398678665
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2,10,0,0,10,0,0,0,0.012847966,0.104942806,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,0,,,0,0,0.104942806,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2,0,0,0,0,0,0,0,0.012847966,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Belgium,1960,0,0.104942806,0.104942806
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,60,0,0,0,0,0,0.620925179,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,60,0,0,0,0,0,0.620925179,0,0.620925179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Belgium,1970,0,0,0.620925179
0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,3,100,0,103,0,0,5000,0.00202061,0.030309153,1.010305112,0,1.040614266,0.2,3,100,0,103,0,0,5000,0.00202061,0.030309153,1.010305112,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.005734982,0,0.005734982,0,0,0,0,0,0,0,Belgium,1980,0,0,1.040614266
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10000,0,0,0,0,0,2.5,0.5,257.5,0,258,0,73100,125798.6,0.024806363,0.00487567,2.525641519,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,87.5,0,87.5,0,100,2700,0.000976849,0,0.862629132,0,0.862629132,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4,0.5,170,0,170.5,0,73000,113098.6,,,1.663012387,0,1.667888057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.058577014,0,0.00425927,0,0.001143296,0,0,0.053174448,0,0,Belgium,1990,0.023829514,0.00487567,2.530517189
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212.7,0.2,261,0,261.2,0,28000,45500,2.024400157,0.001869508,2.514593556,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,261,0,261,0,0,0,0.001929571,0,2.514593556,0,2.514593556,0,0,0,0,0,0,0,0,0,0,0,0,0,0.7,0.2,0,0,0.2,0,28000,45500,,,0,0,0.001869508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211.8,0,0,0,0,0,0,0,2.015777152,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.009762305,0,0,0,0,0,0,0.009762305,0,0,Belgium,2000,0.006693435,0.001869508,2.516463064
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114.1,7.1,69,0,76.1,0,8000,49714.6,0.997257053,0.06446341,0.630770637,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,69,0,69,0,0,23814.6,0.003623228,0,0.630770637,0,0.630770637,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,7.1,0,0,7.1,0,8000,25900,,,0,0,0.06446341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112.9,0,0,0,0,0,0,0,0.986428313,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.010172497,0,0,0,0.004951554,0,0,0.005220943,0,0,Belgium,2010,0.007205512,0.06446341,0.695234047
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,150,0,0,0,0,,,,293.8123127,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,150,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Belize,1930,293.8123127,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Belize,1940,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,1.6,0,0,0,0,,,,2,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,1.6,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Belize,1950,2,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.5,0,0,0,0,0,0,6000,28.94736842,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.5,0,0,0,0,0,0,6000,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,20.0237811,0,0,0,0,0,0,20.0237811,0,0,Belize,1960,28.94736842,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,9300,0,9300,0,0,1000,0.35971223,0,6980.839886,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1700,0,1700,0,0,0,0,0,1205.673759,0,1205.673759,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,7600,0,7600,0,0,1000,,,5775.166127,0,5775.166127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.82774084,0,0,0,0,0,0,0.82774084,0,0,Belize,1970,0.35971223,0,6980.839886
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Belize,1980,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.9,0,6260,0,6260,0,0,500,0.391304348,0,2734.299517,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,260,0,260,0,0,270,0,0,125.6038647,0,125.6038647,0,0,0,0,0,0,0,0,0,0,0,0,0,0.9,0,6000,0,6000,0,0,5,,,2608.695652,0,2608.695652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.116771617,0,0,0.054600194,0.061445881,0,0,0.000725542,0,0,Belize,1990,0.391304348,0,2734.299517
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.5,57,15000,0,15057,0,0,55200.4,2.10949233,23.07692308,5526.849419,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,3800,0,3800,0,0,969.7,0.03257329,0,1237.785016,0,1237.785016,0,0,0,0,0,0,0,0,0,0,0,0,0,5.4,57,11200,0,11257,0,0,54230.7,,,4289.064403,0,4312.141326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,6.402076907,0,0,0,0.071758475,0,0,6.330318432,0,0,Belize,2000,2.07691904,23.07692308,5549.926342
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3035.5,0,3035.5,0,0,0,0,0,835.4024901,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2000,0,2000,0,0,0,0,0,554.0166205,0,554.0166205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1035.5,0,1035.5,0,0,0,,,281.3858696,0,281.3858696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Belize,2010,0,0,835.4024901
0,0,11500,0,11500,0,0,0,0,0,403.3672396,0,403.3672396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11500,0,11500,0,0,0,0,0,403.3672396,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Benin,1960,0,0,403.3672396
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,20,400,300,720,0,0,20,0.005675369,0.56753689,11.3507378,8.513053348,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,20,400,300,720,0,0,0,0.005675369,0.56753689,11.3507378,8.513053348,20.43132804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.005994705,0,0,0,0.005994705,0,0,0,0,0,Benin,1970,0,0,20.43132804
0,0,210000,0,210000,0,0,65.1,0,0,5649.717514,0,5649.717514,0,0,0,0,0,0,0,0,0,0,0,0,0,6.1,0,301300,22600,323900,0,0,545.1,0.142556672,0,7874.409882,541.7145358,,0,0,0,0,0,0,0,0,0,0,0,0,0,6.1,0,91300,22600,113900,0,0,480,0.142556672,0,2224.692368,541.7145358,2766.406904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.050534331,0.004632623,0,0,0.045901709,0,0,0,0,0,Benin,1980,0,0,8416.124418
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7,0,77490.1,5929.5,83419.6,0,0,331.5,0.062242584,0,1231.868407,96.52441356,,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7,0,77490.1,5929.5,83419.6,0,0,331.5,0.062242584,0,1231.868407,96.52441356,1328.392821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.014872823,0,0,0,0.014872823,0,0,0,0,0,Benin,1990,0,0,1328.392821
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.5,0,28869.2,88.4,28957.6,0,0,0,0.040254078,0,328.4334282,1.045535186,,0,0,0,0,0,0,0,0,0,0,0,0,0,3.5,0,28789.2,88.4,28877.6,0,0,0,0.040254078,0,327.5390738,1.045535186,328.584609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,80,0,0,0,,,0.894354388,0,0.894354388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Benin,2000,0,0,329.4789634
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.1,100,77357.5,15275.9,92733.4,0,0,0,0.055116355,1.087074682,834.6341512,165.8188235,,0,0,0,0,0,0,0,0,0,0,0,0,0,5,100,77357.5,15000,92457.5,0,0,0,0.054116855,1.087074682,834.6341512,163.0612023,998.7824281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,0,275.9,275.9,0,0,0,0.0009995,0,0,2.757621189,2.757621189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Benin,2010,0,0,1001.540049
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Bermuda,1940,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Bermuda,1950,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Bermuda,1960,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Bermuda,1970,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,4,0,0,5350,0,6.666666667,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,4,0,0,5350,,,0,0,6.666666667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.417675986,0,0,0,0,0,0,0.417675986,0,0,Bermuda,1980,0,6.666666667,6.666666667
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Bermuda,1990,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0,12500,30000,0.606060606,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0,12500,30000,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.716584757,0,0,0,0,0,0,0.716584757,0,0,Bermuda,2000,0.606060606,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.9,0,6560,0,6560,0,0,350,0.733082707,0,1233.082707,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,2.2,0,60,0,60,0,0,0,0.413533835,0,11.27819549,0,11.27819549,0,0,0,0,0,0,0,0,0,0,0,0,0,1.7,0,6500,0,6500,0,0,0,,,1221.804511,0,1221.804511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.087660243,0,0,0,0,0,0,0,0,0.087660243,Bhutan,1990,0.319548872,0,1233.082707
0,0,0,0,0,0,0,0,0,0,0,0,0,1.1,1.2,0,0,1.2,0,0,0,0.162241888,0.17699115,0,0,0.17699115,22.3,1.2,0,100,101.2,0,0,0,3.723327793,0.17699115,0,16.92047377,,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,100,100,0,0,0,3.384094755,0,0,16.92047377,16.92047377,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Bhutan,2000,0.17699115,0,17.09746492
0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,1.6,2000,0,2001.6,0,0,0,0.014430014,0.230880231,288.6002886,0,288.8311688,0.1,1.6,2000,0,2001.6,0,0,0,0.014430014,0.230880231,288.6002886,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Bhutan,2010,0,0,288.8311688
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.8,20,2660,600,3280,0,0,371.8,0.188830197,0.465332713,62.56625362,13.95998139,,0,0,0,0,0,0,0,0,0,0,0,0,0,7.8,20,2660,600,3280,0,0,371.8,0.188830197,0.465332713,62.56625362,13.95998139,76.99156772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.045858218,0,0,0,0.045858218,0,0,0,0,0,Bolivia,1960,0,0,76.99156772
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.1,0,25100,3500,28600,0,0,2050,0.157332834,0,475.6470862,66.31915791,,0,0,0,0,0,0,0,0,0,0,0,0,0,8.1,0,25100,3500,28600,0,0,2050,0.157332834,0,475.6470862,66.31915791,541.9662441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.080978397,0,0,0,0.080978397,0,0,0,0,0,Bolivia,1970,0,0,541.9662441
0,0,308304.9,0,308304.9,0,0,96560,0,0,5196.441935,0,5196.441935,0,0,0,0,0,0,0,0,0,0,0,0,0,30.4,0,346104.9,5047.5,351152.4,0,0,146400,0.506139868,0,5807.304166,80.02059522,,0,0,0,0,0,0,0,0,0,0,0,0,0,30.4,0,37800,5047.5,42847.5,0,0,49840,0.506139868,0,610.8622314,80.02059522,690.8828266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,2.728220323,1.7967611,0,0,0.931459223,0,0,0,0,0,Bolivia,1980,0,0,5887.324762
0,0,33316,0,33316,0,0,0,0,0,479.4303423,0,479.4303423,10,5,1110,690,1805,0,0,0,0.124023535,0.061751266,13.70878103,8.521674694,22.29220699,31.2,22.3,70376,5080,75478.3,0,0,67000,0.397746461,0.2996248,958.9464807,69.19573987,,0,0,0,0,0,0,0,0,0,0,0,0,0,6,5,19100,4060,23165,0,0,27000,0.076141438,0.06982265,240.5962517,56.58477654,297.2508509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,14.9,12.3,16500,50,16562.3,0,0,40000,0.193948208,0.168050883,220.972278,0.698226505,221.8385554,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,350,280,630,0,0,0,0.003633281,0,4.238827661,3.391062129,7.62988979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1.151416492,0,0,0,0.442685878,0.708730615,0,0,0,0,Bolivia,1990,0,0,1028.441845
0,0,10250,0,10250,0,0,0,0,0,112.6940404,0,112.6940404,0,0,0,0,0,0,0,0,0,0,0,0,0,46.5,25.1,158100.2,1030,159155.3,1000,0,84700,0.518336556,0.282830887,1712.213846,11.56523692,,0,0,0,0,0,0,0,0,0,0,0,0,0,36.1,23.5,143079.5,1000,144103,1000,0,84700,0.400368159,0.264652157,1544.799667,11.22838536,1556.292705,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1874,0,1874,0,0,0,,,20.66849006,0,20.66849006,6.9,1.1,69,30,100.1,0,0,0,0.077475859,0.012351224,0.77475859,0.336851561,1.123961374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,0,300,0,0,0,0,0,3.249566724,0,3.249566724,1.5,0.5,2527.7,0,2528.2,0,0,0,0.017617094,0.005827506,30.0273224,0,30.03314991,0,0,0,0,0,0,0,0,,,,,,0.756603821,0,0,0,0.756603821,0,0,0,0,0,Bolivia,2000,0.022875443,0,1724.061913
0,0,111903.5,0,111903.5,0,0,55000,0,0,1035.64382,0,1035.64382,0,0,0,0,0,0,0,0,0,0,0,0,0,46.1,21.5,270486,510,271017.5,0,0,77250,0.431260348,0.19134236,2518.011324,4.781585641,,0,0,300,0,300,0,0,0,0,0,2.605750022,0,2.605750022,32.3,18.6,151873.5,0,151892.1,0,0,2250,0.303091068,0.163833348,1421.821205,0,1421.985038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,11.6,2.9,1060,480,1542.9,0,0,20000,0.107114226,0.027509012,10.08076856,4.483048473,14.59132605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3600,30,3630,0,0,0,0,0,31.26900026,0.298537168,31.56753743,2.2,0,1749,0,1749,0,0,0,0.021055054,0,16.59077974,0,16.59077974,0,0,0,0,0,0,0,0,,,,,,0.253248722,0.183474059,0,0,0.009161601,0.060613062,0,0,0,0,Bolivia,2010,0,0,2522.984252
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,9,109,0,0,0,0,0,2.671653754,0.240448838,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,9,109,0,0,0,,,2.671653754,0.240448838,2.912102592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Bosnia and Herzegovina,1990,0,0,2.912102592
0,0,6257.5,0,6257.5,0,0,29800,0,0,166.3343966,0,166.3343966,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1,0.3,36680.5,0,36680.8,0,0,29800,0.029296564,0.007997867,974.9226903,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29383,0,29383,0,0,0,0,0,780.7553161,0,780.7553161,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0,0,0,,,0,0,0,0.6,0.3,40,0,40.3,0,0,0,0.015995734,0.007997867,1.066382298,0,1.074380165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,1000,0,1000,0,0,0,0.00267666,0,26.76659529,0,26.76659529,0,0,0,0,0,0,0,0,,,,,,0.454231983,0.454231983,0,0,0,0,0,0,0,0,Bosnia and Herzegovina,2000,0.01062417,0,974.9306882
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.6,0,104661.6,0,104661.6,0,0,52358,0.102290092,0,2998.860969,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,103626.9,0,103626.9,0,0,52358,0.085796281,0,2970.159166,0,2970.159166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,0,1034.7,0,1034.7,0,0,0,0.016493811,0,28.70180305,0,28.70180305,0,0,0,0,0,0,0,0,,,,,,0.285897058,0,0,0,0.285897058,0,0,0,0,0,Bosnia and Herzegovina,2010,0,0,2998.860969
0,0,12000,0,12000,0,0,100,0,0,2076.453697,0,2076.453697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12000,0,12000,0,0,100,0,0,2076.453697,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.150947368,0.150947368,0,0,0,0,0,0,0,0,Botswana,1960,0,0,2076.453697
0,0,8760,0,8760,0,0,200,0,0,1394.904459,0,1394.904459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8860,0,8860,0,0,205,0,0,1409.896962,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,100,0,0,5,0,0,14.99250375,0,14.99250375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.210842882,0.207802756,0,0,0.003040126,0,0,0,0,0,Botswana,1970,0,0,1409.896962
0,0,103730,0,103730,0,0,0,0,0,11153.76344,0,11153.76344,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0.7,104930,0,104930.7,0,0,0,0.066666667,0.058333333,11253.76344,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0.7,1200,0,1200.7,0,0,0,0.066666667,0.058333333,100,0,100.0583333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Botswana,1980,0,0,11253.82177
0,0,10000,0,10000,0,0,0,0,0,777.000777,0,777.000777,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,10350,200,10550,0,0,0,0.136147039,0,800.8265088,13.61470388,,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,350,200,550,0,0,0,0.136147039,0,23.82573179,13.61470388,37.44043567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Botswana,1990,0,0,814.4412127
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,11679.2,3200,14879.2,0,0,500,0.018259282,0,703.858805,194.7656726,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,11639.2,3200,14839.2,0,0,500,0.018259282,0,701.8106739,194.7656726,896.5763464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,40,0,0,0,,,2.04813108,0,2.04813108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.008638071,0,0,0,0.008638071,0,0,0,0,0,Botswana,2000,0,0,898.6244775
0,0,3800,0,3800,0,0,4400,0,0,164.9305556,0,164.9305556,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2,0,4968.5,0,4968.5,0,0,4400,0.058167717,0,218.8214129,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2,0,1168.5,0,1168.5,0,0,0,0.058167717,0,53.89085735,0,53.89085735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.03051192,0.03051192,0,0,0,0,0,0,0,0,Botswana,2010,0,0,218.8214129
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,30,0,0,0,0,,,,0.059203951,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,20,0,0,0,0,,,,0.039947002,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,10,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,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,1940,0.01925695,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,33.7,0,0,0,0,,,,0.049842961,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,21.2,0,0,0,0,,,,0.03117372,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,5.9,0,0,0,0,,,,,,0,0,0,6.6,0,0,0,0,,,,0.010255454,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,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,1950,0.008413787,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275.3,628.5,471791.7,10178.4,482598.6,0,0,9951.1,0.31460531,0.700775534,551.3897353,11.80530524,,0,0,0,0,0,0,0,0,0,0,0,0,0,181.8,628.5,71791.7,10178.4,82598.6,0,0,9948.4,0.207535901,0.700775534,84.62893853,11.80530524,97.13501931,0,0,0,0,0,0,0,0,0,0,0,0,0,3.6,0,0,0,0,0,0,0,,,0,0,0,78.6,0,400000,0,400000,0,0,2.7,0.090366764,0,466.7607968,0,466.7607968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.3,0,0,0,0,0,0,0,0.012501798,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.037097572,0,0,0,0.037087595,0.00000998,0,0,0,0,Brazil,1960,0.004200847,0,563.8958161
0,0,1500000,0,1500000,0,0,230010,0,0,1475.548348,0,1475.548348,0,0,0,0,0,0,0,0,0,0,0,0,0,139.9,270,1777037.1,13000,1790307.1,0,0,334320,0.132562065,0.270020593,1722.996993,11.90898228,,0,0,0,0,0,0,0,0,0,0,0,0,0,114.2,200,277037.1,13000,290237.1,0,0,44310,0.108364439,0.205163977,247.4486441,11.90898228,259.5627904,0,0,0,0,0,0,0,0,0,0,0,0,0,1,10,0,0,10,0,0,0,,,0,0,0.008894819,12.1,0,0,0,0,0,0,0,0.011556167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.6,60,0,0,60,0,0,60000,0.011751977,0.055961797,0,0,0.055961797,0,0,0,0,0,0,0,0,,,,,,0.20912213,0.114564887,0,0.048500917,0.046056325,0,0,0,0,0,Brazil,1970,0.000889482,0.008894819,1735.175995
2,0,2075000,0,2075000,0,0,65100,0.00154501,0,1598.242267,0,1598.242267,0.1,0,1500,800,2300,0,0,500,0.0000724,0,1.086098724,0.579252653,1.665351377,195.5,372.2,2927753.5,41194.4,2969320.1,0,0,429800,0.14192931,0.272888281,2225.328511,28.5571296,,0,0,0,0,0,0,0,0,0,0,0,0,0,159.8,233.4,838533.5,40194.4,878961.3,0,0,364200,0.116368932,0.168181436,617.2630537,27.83002888,645.2612641,0,0,0,0,0,0,0,0,0,0,0,0,0,11.6,134.8,4920,200,5254.8,0,0,0,,,3.406601025,0.147848071,3.656065922,14.3,4,7800,0,7804,0,0,0,0.009888407,0.00309002,5.330490405,0,5.333580425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.7,0,0,0,0,0,0,0,0.005361072,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.184538828,0.029200289,0.000186472,0,0.155152067,0,0,0,0,0,Brazil,1980,0.008693483,0.101616825,2254.158529
0,0,1000000,0,1000000,0,0,12200,0,0,588.9802086,0,588.9802086,0,0,0,0,0,0,0,0,0,0,0,0,0,76.8,72,1022212.3,11940,1034224.3,0,2100,75580,0.047625459,0.044799688,603.0829066,7.223451062,,0,0,0,0,0,0,0,0,0,0,0,0,0,38.6,47,20252.3,11480,31779.3,0,0,3180,0.024120821,0.029464109,12.93480397,6.934999652,19.89926773,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,7.6,60,200,267.6,0,2100,9100,,,0.035883238,0.12544455,0.165872998,37.8,17.4,700,260,977.4,0,0,0,0.023266324,0.010790369,0.425234618,0.16300686,0.599031846,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,1200,0,1200,0,0,3600,0.0000589,0,0.70677625,0,0.70677625,0,0,0,0,0,0,0,47500,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.012698409,0.00141249,0,0.008510837,0.000727785,0,0,0.001630497,0,0.0004168,Brazil,1990,0.000179416,0.00454521,610.3511574
0,0,200000,0,200000,0,0,165000,0,0,109.030275,0,109.030275,0.1,0.6,28,0,28.6,0,0,0,0.0000526,0.000315574,0.014726766,0,0.015042339,112.1,106.2,616402.9,43463.5,659972.6,53800,47300,441437,0.060661067,0.058108285,325.7314387,24.36226186,,0,0,0,0,0,0,0,0,0,0,0,0,0,86.6,92.8,400589.9,28434.5,429117.2,53800,47000,218337,0.046691853,0.05101615,208.124558,15.78079329,223.9563675,0,0,0,0,0,0,0,0,0,0,0,0,0,2.6,12.8,15185,579,15776.8,0,300,35000,,,8.247324488,0.316674726,8.570775776,22.1,0,600,14450,15050,0,0,23100,0.012095117,0,0.314554394,8.264793839,8.579348233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.7,0,0,0,0,0,0,0,0.000400481,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.04938834,0.024651996,0,0,0.017276463,0.00223067,0,0.005229211,0,0,Brazil,2000,0.00142102,0.006776562,350.1518088
0,0,3106200,0,3106200,0,0,646000,0,0,1535.480756,0,1535.480756,0,0,0,0,0,0,0,0,0,0,0,0,0,168.2,297.3,4405020.1,16250,4421567.4,151,5000,962750,0.084810056,0.143102829,2158.59668,8.101811098,,0,0,0,0,0,0,0,0,0,0,0,0,0,161.6,61.7,296346.1,16220,312627.8,151,5000,307550,0.081528026,0.031171603,148.0730745,8.08748917,156.1917353,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,16.1,2474,0,2490.1,0,0,9200,,,1.221480801,0,1.229408236,3,0,0,30,30,0,0,0,0.001449693,0,0,0.014321929,0.014321929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219.5,1000000,0,1000219.5,0,0,0,0,0.104003791,473.8213693,0,473.9253731,3.2,0,0,0,0,0,0,0,0.001635039,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.039716655,0.026280853,0,0,0.013060746,0,0,0.000375056,0,0,Brazil,2010,0.000197298,0.007927435,2166.841594
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,0,0.3,0,0,1200,0,1.5,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,0,0.3,0,0,1200,,,0,0,1.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,British Virgin Islands,1990,0,1.5,1.5
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,British Virgin Islands,2000,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0,0,0,0,300000,3,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0,0,0,0,300000,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,British Virgin Islands,2010,3,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.004936873,0,0,0,0,0,0,0,0,0.004936873,Brunei,1990,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,10.7,0,0,0,0,,,,0.181964341,0,0,0,0,10.7,0,0,0,0,,,,0.181964341,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Bulgaria,1920,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Bulgaria,1930,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Bulgaria,1940,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Bulgaria,1950,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1,0,0,0,0,0,0,0,0.013377113,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,1.1,0,0,0,0,0,0,0,0.013377113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Bulgaria,1960,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,2,16.5,0,0,16.5,0,0,0,0.022722109,0.187457396,0,0,0.187457396,2,16.5,0,0,16.5,0,0,0,0.022722109,0.187457396,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Bulgaria,1970,0,0,0.187457396
0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,6,0,300,306,0,0,0,0.003343363,0.066867268,0,3.343363424,3.410230692,0.3,6,0,300,306,0,0,0,0.003343363,0.066867268,0,3.343363424,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Bulgaria,1980,0,0,3.410230692
0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,0,0,0,0,0,0,0.001131094,0,0,0,0,0.4,2.3,550,85,637.3,0,0,0,0.004817503,0.028262472,6.442410855,1.053675468,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,20,0,0,0,0,0,0.24354603,0,0.24354603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,500,85,585,0,0,0,,,5.830223881,1.053675468,6.883899349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,2.3,30,0,32.3,0,0,0,0.003686409,0.028262472,0.368640944,0,0.396903416,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Bulgaria,1990,0,0,7.524348795
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,52.5,0,52.7,0,0,0,0,0.002620888,0.687983226,0,0.690604115,10.1,10.8,1378.5,15,1404.3,0,0,47810.4,0.131175708,0.14095922,17.95790475,0.187546887,,0,0,0,0,0,0,0,0,0,0,0,0,0,5.2,1,1326,0,1327,0,0,45800,0.067843704,0.013197836,17.26992152,0,17.28311936,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2.6,0,15,17.6,0,0,2005.4,0.012711539,0.033133366,0,0.187546887,0.220680253,3.7,7,0,0,7,0,0,5,0.048098715,0.09200713,0,0,0.09200713,0,0,0,0,0,0,0,0,,,,,,0.167487222,0,0,0.0000377,0.153609638,0,0,0,0,0.013839836,Bulgaria,2000,0.00252175,0,18.28641086
0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,14,0,21,0,0,0,0,0.095445869,0.190891737,0,0.286337606,6.7,11,4602.7,126,4739.7,0,7300,94220,0.091779827,0.150648739,62.90960227,1.738890422,,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4588.7,126,4714.7,0,0,39720,0.041363442,0,62.71871054,1.738890422,64.45760096,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,4,0,0,4,0,7300,54500,,,0,0,0.055202871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.6,0,0,0,0,0,0,0,0.049036314,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.165749876,0,0,0,0.06997116,0,0,0.095778716,0,0,Bulgaria,2010,0.001380072,0.055202871,64.79914144
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Burkina Faso,1910,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Burkina Faso,1920,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Burkina Faso,1930,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Burkina Faso,1940,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Burkina Faso,1950,0,0,0
0,0,97500,0,97500,0,0,0,0,0,1763.748191,0,1763.748191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97500,0,97500,0,0,0,0,0,1763.748191,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Burkina Faso,1960,0,0,1763.748191
0,0,44200,0,44200,0,0,0,0,0,704.4947402,0,704.4947402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44200,90,44290,0,0,0,0,0,704.4947402,1.406469761,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,90,0,0,0,0,0,0,1.406469761,1.406469761,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Burkina Faso,1970,0,0,705.90121
0,0,145000,0,145000,0,0,0,0,0,2071.387663,0,2071.387663,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6,0,147482.4,1057.2,148539.6,0,0,0,0.019147918,0,2101.292308,12.70761417,,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6,0,2482.4,1057.2,3539.6,0,0,0,0.019147918,0,29.90464434,12.70761417,42.61225851,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Burkina Faso,1980,0,0,2113.999922
0,0,269629,0,269629,0,0,0,0,0,3044.644006,0,3044.644006,0,0,0,0,0,0,0,0,0,0,0,0,0,2.8,0,276359,76,276435,0,0,0,0.02772784,0,3113.092673,0.673579722,,0,0,0,0,0,0,0,0,0,0,0,0,0,2.8,0,6730,76,6806,0,0,0,0.02772784,0,68.44866661,0.673579722,69.12224633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Burkina Faso,1990,0,0,3113.766253
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7,109.1,25964,5441.2,31514.3,600,0,15000,0.046514644,0.723932473,176.3010177,39.37650392,,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7,109.1,25964,5441.2,31514.3,600,0,15000,0.046514644,0.723932473,176.3010177,39.37650392,216.4014541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.158718447,0,0,0,0.158718447,0,0,0,0,0,Burkina Faso,2000,0,0,216.4014541
0,0,685000,0,685000,0,0,0,0,0,4046.704204,0,4046.704204,0,0,0,0,0,0,0,0,0,0,0,0,0,6.1,10.2,705232.4,2803.2,708045.8,0,0,3117.6,0.035790787,0.056201278,4170.156518,16.44405978,,0,0,0,0,0,0,0,0,0,0,0,0,0,6.1,10.2,20232.4,2803.2,23045.8,0,0,3117.6,0.035790787,0.056201278,123.4523138,16.44405978,139.9525748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.026373874,0,0,0,0.026373874,0,0,0,0,0,Burkina Faso,2010,0,0,4186.656779
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2,0,360,0,360,0,0,0,0.022611645,0,6.783493499,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2,0,360,0,360,0,0,0,0.022611645,0,6.783493499,0,6.783493499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Burundi,1980,0,0,6.783493499
0.6,0,65000,0,65000,0,0,0,0.009573959,0,1037.178873,0,1037.178873,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,0,68081,0,68081,0,0,0,0.009573959,0,1086.341152,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3081,0,3081,0,0,0,,,49.1622786,0,49.1622786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Burundi,1990,0,0,1086.341152
12,0,241250,0,241250,0,0,0,0.16293279,0,3235.075204,0,3235.075204,0.3,0,0,12,12,0,0,0,0.004206394,0,0,0.168255749,0.168255749,15.9,1.6,244146.5,6342.5,250490.6,0,0,0,0.213491378,0.020356764,3273.187299,84.98047991,,0,0,0,0,0,0,0,0,0,0,0,0,0,3.6,1.1,2896.5,4630.5,7528.1,0,0,0,0.046352194,0.013784735,38.11209414,61.10758111,99.23345999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,1700,1700.5,0,0,0,,,0,23.70464304,23.71121507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Burundi,2000,0,0.006572029,3358.188135
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.7,27.2,6848.5,1768,8643.7,0,0,1500,0.241741075,0.275389323,61.94453455,17.99993036,,0,0,0,0,0,0,0,0,0,0,0,0,0,17.2,21.5,5855,1250,7126.5,0,0,1500,0.169515895,0.2135027,53.3286296,12.69809021,66.24022251,0,0,0,0,0,0,0,0,0,0,0,0,0,2.1,5,0,150,155,0,0,0,,,0,1.728907331,1.784723361,5.4,0.7,993.5,368,1362.2,0,0,0,0.048455889,0.006070592,8.615904952,3.572932825,12.19490837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.049267692,0,0,0,0.049267692,0,0,0,0,0,Burundi,2010,0.023769291,0.05581603,80.21985424
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Cambodia,1980,0,0,0
0,0,500000,0,500000,0,0,10000,0,0,4845.900368,0,4845.900368,0,0,0,0,0,0,0,0,0,0,0,0,0,69.7,0,761357.4,27580.5,788937.9,0,0,25201,0.67979385,0,7291.290001,290.8459523,,0,0,0,0,0,0,0,0,0,0,0,0,0,67.2,0,261357.4,27580.5,288937.9,0,0,15200,0.657667998,0,2445.389633,290.8459523,2736.235585,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5,0,0,0,0,0,0,1,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.363966789,0.358238649,0,0,0.005699099,0,0,0.000029,0,0,Cambodia,1990,0.022125852,0,7582.135954
0,0,155000,0,155000,0,0,3800,0,0,1208.205361,0,1208.205361,0,0,0,0,0,0,0,0,0,0,0,0,0,47.4,14.4,837218.2,0,837232.6,0,0,21410,0.384276181,0.108169938,6722.006615,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,45.5,5.3,664418.2,0,664423.5,0,0,17610,0.370795267,0.043603455,5387.506376,0,5387.54998,0,0,0,0,0,0,0,0,0,0,0,0,0,1.9,9.1,17800,0,17809.1,0,0,0,,,126.2948773,0,126.3594437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.56561559,0.088701558,0,0,0.476914032,0,0,0,0,0,Cambodia,2000,0.013480914,0.064566482,6722.114784
0,0,250000,0,250000,0,0,0,0,0,1585.690727,0,1585.690727,0,0,0,0,0,0,0,0,0,0,0,0,0,52.6,2.3,665311.7,5795,671109,0,0,109300,0.354767481,0.015817344,4355.168243,37.93780687,,0,0,0,0,0,0,0,0,0,0,0,0,0,52.6,2.3,414681.7,5795,420479,0,0,109300,0.354767481,0.015817344,2765.418499,37.93780687,2803.372123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,630,0,630,0,0,0,,,4.059016816,0,4.059016816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.797899131,0,0,0,0.797899131,0,0,0,0,0,Cambodia,2010,0,0,4393.121867
0,0,40000,0,40000,0,0,150,0,0,597.9073244,0,597.9073244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40000,0,40000,0,0,150,0,0,597.9073244,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.012126688,0.012126688,0,0,0,0,0,0,0,0,Cameroon,1970,0,0,597.9073244
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178.5,43.7,1100,0,1143.7,0,0,0,1.719377155,0.42039442,10.52294416,0,,178.3,43.7,1000,0,1043.7,0,0,0,1.717571286,0.42039442,9.62000962,0,10.04040404,0.2,0,100,0,100,0,0,0,0.001805869,0,0.902934537,0,0.902934537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Cameroon,1980,0,0,10.94333858
0,0,18690,0,18690,0,0,0,0,0,158.6587436,0,158.6587436,0,0,0,0,0,0,0,0,0,0,0,0,0,3.2,0,18940,171,19111,0,0,0,0.02206289,0,160.3129486,1.163911604,,0,0,250,51,301,0,0,0,0,0,1.654204989,0.337457818,1.991662807,3.2,0,0,120,120,0,0,0,0.02206289,0,0,0.826453787,0.826453787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Cameroon,1990,0,0,161.4768602
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.2,1.7,2450,1287.9,3739.6,0,0,0,0.042745024,0.009076348,12.78787932,7.008585726,,0,0,0,0,0,0,0,0,0,0,0,0,0,5.2,1.7,2450,1277.9,3729.6,0,0,0,0.030840971,0.009076348,12.78787932,6.94906546,19.74602113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,2,0,0,10,10,0,0,0,0.011904053,0,0,0.059520267,0.059520267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Cameroon,2000,0,0,19.8055414
0,0,1200,0,1200,0,0,0,0,0,5.585292064,0,5.585292064,0,0,0,0,0,0,0,0,0,0,0,0,0,9.9,9.5,32569.5,3498,36077,0,0,200,0.041833902,0.046703702,143.6020337,16.35965709,,0,0,0,0,0,0,0,0,0,0,0,0,0,4.5,9.5,31369.5,3498,34877,0,0,200,0.020965144,0.046703702,138.0167416,16.35965709,154.4231024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,5.4,0,0,0,0,0,0,0,0.020868759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.00068722,0,0,0,0.00068722,0,0,0,0,0,Cameroon,2010,0,0,160.0083944
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,12.7,4.1,0,0,4.1,,,,0.207647182,0.068342116,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,12.7,4.1,0,0,4.1,,,,0.207647182,0.068342116,0,0,0.068342116,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Canada,1900,0,0,0.068342116
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,21.9,22.2,0,270,292.2,,,,0.29096375,0.29026978,0,3.561608057,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,2.8,20,0,250,270,,,,,,0,3.290507596,3.553748204,11.8,2.2,0,0,2.2,,,,0.155158397,0.027029172,0,0,0.027029172,0,0,0,0,0,,,,0,0,0,0,0,7.3,0,0,20,20,,,,0.098951668,0,0,0.27110046,0.27110046,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Canada,1910,0.036853685,0.263240608,3.851877837
0,0,0,0,0,,,,0,0,0,0,0,2.7,0,0,0,0,,,,0.0268074,0,0,0,0,7,0,0,1100,1100,,,,0.073971768,0,0,12.06530357,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,4.3,0,0,1100,1100,,,,0.047164368,0,0,12.06530357,12.06530357,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Canada,1920,0,0,12.06530357
0,0,2500,0,2500,,,,0,0,23.5611156,0,23.5611156,0,0,0,0,0,,,,0,0,0,0,0,50,0,2500,0,2500,,,,0.446333606,0,23.5611156,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,50,0,0,0,0,,,,0.446333606,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Canada,1930,0,0,23.5611156
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,1.7,0,0,0,0,,,,0.013487772,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,1.7,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Canada,1940,0.013487772,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,9.3,0.6,10700,200,10900.6,,,,0.060527407,0.003827995,77.91451249,1.275998469,,0,0,0,0,0,,,,0,0,0,0,0,0.1,0,10700,0,10700,,,,0.000728173,0,77.91451249,0,77.91451249,0.3,0.6,0,200,200.6,,,,0.001913998,0.003827995,0,1.275998469,1.279826464,8.9,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Canada,1950,0.057885236,0,79.19433895
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.9,2.2,0,0,2.2,0,0,0,0.03099118,0.011208478,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.3,0,0,0,0,0,0,0,,,0,0,0,2.6,2.2,0,0,2.2,0,0,0,0.013246383,0.011208478,0,0,0.011208478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Canada,1960,0.017744798,0,0.011208478
0,0,0,0,0,0,0,300000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.5,4,0,180,184,0,0,313100,0.025020552,0.017346806,0,0.820613405,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12850,0,0,0,0,0,3.1,0,0,150,150,0,0,0,0.014270589,0,0,0.69051236,0.69051236,2.4,4,0,30,34,0,0,250,,,0,0.130101045,0.147447851,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.149242029,0.141768898,0,0,0.007329316,0,0,0.000143815,0,0,Canada,1970,0.010749964,0.017346806,0.837960211
0,0,3000,0,3000,0,0,181000,0,0,11.79013559,0,11.79013559,0,0,0,0,0,0,0,0,0,0,0,0,0,4.2,45,6910,80,7035,0,27950,675900,0.015989637,0.172263734,26.52953394,0.31073995,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,450,0,450,0,0,28800,0.001124417,0,1.725724804,0,1.725724804,0,0,0,0,0,0,0,0,0,0,0,0,0,3.8,45,240,80,365,0,27950,46100,,,0.920386562,0.31073995,1.403390246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,3200,0,3200,0,0,420000,0.000367931,0,12.0130205,0,12.0130205,0,0,20,0,20,0,0,0,0,0,0.080266485,0,0.080266485,0,0,0,0,0,0,0,0,,,,,,0.137447841,0.044104632,0,0,0.00708281,0,0,0.011931483,0,0.074328916,Canada,1980,0.014497289,0.172263734,27.01253762
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.3,0.4,6580,1220,7800.4,0,159790,525410,0.021302089,0.001385953,22.17585762,4.139596373,,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5,0,3790,1200,4990,0,30090,93140,0.00864359,0,12.77333027,4.073596307,16.84692657,0,0,0,0,0,0,0,0,0,0,0,0,0,3.8,0.4,730,20,750.4,0,129700,211320,,,2.436614299,0.066000066,2.504000318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2060,0,2060,0,0,20950,0,0,6.965913051,0,6.965913051,0,0,0,0,0,0,0,200000,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.085780325,0,0,0.033761656,0.014796466,0,0,0.033714794,0,0.003507409,Canada,1990,0.012658498,0.001385953,26.31683994
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.2,14.3,1837,73,1924.3,0,46100,186000,0.01334705,0.046658577,5.707286124,0.23856294,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.9,0,1607,0,1607,0,29600,59200,0.002821294,0,4.969453456,0,4.969453456,0,0,0,0,0,0,0,0,0,0,0,0,0,3.2,14.3,50,73,137.3,0,1000,72300,,,0.156788241,0.23856294,0.442009758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,180,0,180,0,15500,54500,0.000317581,0,0.581044426,0,0.581044426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.017481937,0,0,0,0.005382026,0,0,0.006014204,0,0.006085707,Canada,2000,0.010208175,0.046658577,5.992507641
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.6,5.4,30165.4,703.6,30874.4,7800,683253,1642300,0.026242299,0.015003841,83.52533356,2.036686967,,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2,0.4,15331.3,0,15331.7,0,232400,766300,0.003392665,0.001121579,42.85141378,0,42.85253536,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,5,90,0,95,0,88853,306000,,,0.24275118,0,0.256633442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,14744.1,703.6,15447.7,7800,362000,550000,0.000289528,0,40.4311686,2.036686967,42.46785556,8,0,0,0,0,0,0,20000,0.021713749,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.094505632,0,0,0.001083072,0.042035046,0,0,0.016845005,0,0.03454251,Canada,2010,0.000846357,0.013882262,85.57702437
1100,0,0,0,0,,,,968.5656423,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,1100,0,0,0,0,,,,968.5656423,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Cape Verde,1900,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Cape Verde,1910,0,0,0
2400,0,0,0,0,,,,1769.911504,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,2400,0,0,0,0,,,,1769.911504,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Cape Verde,1920,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Cape Verde,1930,0,0,0
5000,0,0,0,0,,,,2987.149499,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,5000,0,0,0,0,,,,2987.149499,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Cape Verde,1940,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Cape Verde,1950,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Cape Verde,1960,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Cape Verde,1970,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.2,12.2,760,0,772.2,0,0,300,1.049753235,4.149659864,251.1671335,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.2,12.2,760,0,772.2,0,0,300,,,251.1671335,0,255.3167934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.213324598,0,0,0,0,0,0,0.213324598,0,0,Cape Verde,1980,1.049753235,4.149659864,255.3167934
0,0,1000,0,1000,0,0,0,0,0,242.1307506,0,242.1307506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,1130,500,1630.6,0,0,0,0,0.155440415,275.8095071,129.5336788,,0,0.6,130,500,630.6,0,0,0,0,0.155440415,33.67875648,129.5336788,163.3678756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Cape Verde,1990,0,0,405.4986263
0,0,3000,0,3000,0,0,0,0,0,677.2009029,0,677.2009029,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,3015,0,3015,0,0,0,0.061601643,0,680.2809851,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,15,0,15,0,0,0,0.061601643,0,3.080082136,0,3.080082136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Cape Verde,2000,0,0,680.2809851
0,0,7000,0,7000,0,0,0,0,0,1303.538175,0,1303.538175,0,0,0,0,0,0,0,0,0,0,0,0,0,0.9,0,7250,0,7250,0,0,110,0.171428571,0,1351.800723,0,,0,0,250,0,250,0,0,0,0,0,48.26254826,0,48.26254826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0,0,0,0,110,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.006888776,0,0,0,0,0,0,0.006888776,0,0,Cape Verde,2010,0.171428571,0,1351.800723
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,30,0,30,0,154000,349658,0.416666667,0,66.66666667,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,30,0,30,0,154000,349658,,,66.66666667,0,66.66666667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Cayman Islands,2000,0.416666667,0,66.66666667
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1300,0,1300,0,0,0,0,0,68.60158311,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1300,0,1300,0,0,0,0,0,68.60158311,0,68.60158311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Central African Republic,1970,0,0,68.60158311
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,90,90,185,0,0,12.5,0,0.220848057,3.975265018,3.975265018,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,90,90,185,0,0,12.5,,,3.975265018,3.975265018,8.171378092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.00179907,0,0,0,0,0,0,0.00179907,0,0,Central African Republic,1980,0,0.220848057,8.171378092
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.7,0,3804.2,3857.6,7661.8,0,0,0,0.021160822,0,110.9146605,109.9283698,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.7,0,3795.7,3857.6,7653.3,0,0,0,0.021160822,0,110.650931,109.9283698,220.5793008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.5,0,8.5,0,0,0,0,0,0.263729445,0,0.263729445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Central African Republic,1990,0,0,220.8430303
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.3,0.7,1513.7,5792.8,7307.2,0,0,0,0.032345534,0.017335315,35.35522195,142.0266466,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,0.7,600,5034.3,5635,0,0,0,0.014739528,0.017335315,14.29252025,123.1533385,137.463194,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,0,913.7,683.5,1597.2,0,0,0,,,21.06270171,16.90066218,37.96336389,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,0,75,75,0,0,0,0.002630195,0,0,1.972645976,1.972645976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Central African Republic,2000,0.014975812,0,177.3992039
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,6.5,7635.2,387,8028.7,0,0,0,0.011327026,0.146130107,168.414628,8.724075744,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,6101.3,0,6101.3,0,0,0,0.006838386,0,134.1945804,0,134.1945804,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,6.5,1533.9,387,1927.4,0,0,0,,,34.22004757,8.724075744,43.09025343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Central African Republic,2010,0.00448864,0.146130107,177.2848339
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Chad,1910,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Chad,1920,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Chad,1930,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Chad,1940,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Chad,1950,0,0,0
0,0,90000,0,90000,0,0,8300,0,0,2522.421525,0,2522.421525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90000,0,90000,0,0,8300,0,0,2522.421525,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1.759833149,1.759833149,0,0,0,0,0,0,0,0,Chad,1960,0,0,2522.421525
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.3,10,0,0,10,0,0,0,0.030552291,0.235017626,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.3,10,0,0,10,0,0,0,,,0,0,0.235017626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Chad,1970,0.030552291,0.235017626,0.235017626
300,0,150000,0,150000,0,0,0,6.645990253,0,3322.995126,0,3322.995126,0,0,0,0,0,0,0,0,0,0,0,0,0,305.4,4.8,154865,50,154919.8,0,0,15.7,6.742591326,0.085867621,3410.025538,0.981354269,,0,0,0,0,0,0,0,0,0,0,0,0,0,4.3,4.8,4745,50,4799.8,0,0,0,0.076923077,0.085867621,84.88372093,0.981354269,85.95094282,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1,0,120,0,120,0,0,15.7,,,2.146690519,0,2.146690519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.001058952,0,0,0,0,0,0,0.001058952,0,0,Chad,1980,0.019677996,0,3411.09276
0,0,65600,0,65600,0,0,0,0,0,931.5152671,0,931.5152671,0,0,0,0,0,0,0,0,0,0,0,0,0,4.1,1.4,82484.9,8634.3,91120.6,0,0,0,0.066195604,0.022738347,1148.621409,114.7105014,,0,0,0,0,0,0,0,0,0,0,0,0,0,4.1,1.4,16884.9,8634.3,25520.6,0,0,0,0.066195604,0.022738347,217.1061423,114.7105014,331.8393821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Chad,1990,0,0,1263.354649
0,0,320000,0,320000,0,0,0,0,0,2997.995966,0,2997.995966,0,0,0,0,0,0,0,0,0,0,0,0,0,18.7,14.5,356388.3,1224.5,357627.3,0,0,100,0.196958865,0.134035866,3373.765469,10.78014316,,0,0,0,0,0,0,0,0,0,0,0,0,0,17.3,0,36388.3,1224.5,37612.8,0,0,100,0.184017471,0,375.7695028,10.78014316,386.549646,0,0,0,0,0,0,0,0,0,0,0,0,0,1.4,14.5,0,0,14.5,0,0,0,,,0,0,0.134035866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.00584507,0,0,0,0.00584507,0,0,0,0,0,Chad,2000,0.012941394,0.134035866,3384.679648
0,0,348680,0,348680,0,0,0,0,0,2507.909261,0,2507.909261,0,0,0,0,0,0,0,0,0,0,0,0,0,9.6,3.7,424543.3,0,424547,0,0,1000,0.068331667,0.023201856,3109.102554,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,4.4,0,75863.3,0,75863.3,0,0,1000,0.035723653,0,601.193293,0,601.193293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,5.2,3.7,0,0,3.7,0,0,0,0.032608014,0.023201856,0,0,0.023201856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.008085798,0,0,0,0.008085798,0,0,0,0,0,Chad,2010,0,0,3109.125755
0,0,0,0,0,,,,0,0,0,0,0,2000,0,0,0,0,,,,62.13132823,0,0,0,0,2000,0,0,0,0,,,,62.13132823,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Chile,1900,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Chile,1910,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,122,0,0,0,0,,,,3.096807627,0,0,0,0,122,0,0,0,0,,,,3.096807627,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Chile,1920,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,3000,5850,0,0,5850,,,,59.37910829,115.7892612,0,0,115.7892612,3000,5850,0,0,5850,,,,59.37910829,115.7892612,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Chile,1930,0,0,115.7892612
0,0,0,0,0,,,,0,0,0,0,0,5.5,20.8,0,0,20.8,,,,0.092995649,0.349005498,0,0,0.349005498,15.5,20.8,0,0,20.8,,,,0.260559227,0.349005498,0,0,,10,0,0,0,0,,,,0.167563579,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Chile,1940,0,0,0.349005498
0,0,0,0,0,,,,0,0,0,0,0,1.5,9,0,0,9,,,,0.021379704,0.123258289,0,0,0.123258289,1.5,9,0,0,9,,,,0.021379704,0.123258289,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Chile,1950,0,0,0.123258289
0,0,12000,0,12000,0,0,5500,0,0,126.7293273,0,126.7293273,640.4,335.6,202300,0,202635.6,0,0,67540,7.826660504,4.084552461,2484.641732,0,2488.726284,709.2,335.6,249500,2500,252335.6,0,0,74040,8.592040007,4.084552461,3002.959587,27.80867631,,0.4,0,200,0,200,0,0,0,0.004534119,0,2.267059624,0,2.267059624,60,0,35000,2500,37500,0,0,1000,0.667408231,0,389.3214683,27.80867631,417.1301446,0,0,0,0,0,0,0,0,0,0,0,0,0,5.8,0,0,0,0,0,0,0,,,0,0,0,2.6,0,0,0,0,0,0,0,0.028921023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1.639511894,0.076739686,1.546179087,0,0.016593121,0,0,0,0,0,Chile,1960,0.064516129,0,3034.852816
0,0,0,0,0,0,0,0,0,0,0,0,0,8.5,45.1,234852.2,0,234897.3,0,0,23640,0.085487277,0.453585437,2361.985316,0,2362.438902,16.6,45.1,248452.2,1680,250177.3,0,0,25570,0.160165437,0.453585437,2496.266613,15.38039,,0,0,0,0,0,0,0,0,0,0,0,0,0,3.6,0,4600,0,4600,0,0,1000,0.034290849,0,43.76535559,0,43.76535559,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5,0,9000,1680,10680,0,0,930,,,90.51594086,15.38039,105.8963309,3,0,0,0,0,0,0,0,0.02665482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.230533123,0,0.217197269,0,0.006168878,0,0,0.007166976,0,0,Chile,1970,0.013732491,0,2512.100588
0,0,0,0,0,0,0,0,0,0,0,0,0,18.9,261.9,98129.2,50500,148891.1,0,9000,150200,0.154168702,2.134522274,800.6330766,411.8849199,1214.652519,53.5,278,139562.8,70599.4,210440.2,0,9000,169620,0.432496085,2.266320795,1137.388299,575.3012226,,0,0,200,0,200,0,0,0,0,0,1.556662516,0,1.556662516,17.1,0,17848.2,8100,25948.2,0,0,19420,0.135011539,0,142.3325144,64.06707269,206.3995871,0,0,0,0,0,0,0,0,0,0,0,0,0,14.3,13.1,23385.4,11999.4,35397.9,0,0,0,,,192.8660453,99.34923,292.3233453,3.2,3,0,0,3,0,0,0,0.025310448,0.023728545,0,0,0.023728545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.936896159,0,0.848260086,0,0.088636074,0,0,0,0,0,Chile,1980,0.118005395,0.108069975,1714.955842
0,0,0,0,0,0,0,20000,0,0,0,0,0,1.1,15.6,4120,1357.5,5493.1,0,0,4966,0.007496609,0.106609905,27.88705166,9.191933749,37.18559532,33.3,35.4,25139.3,8367.1,33541.8,300,3400,89706,0.239654799,0.251944,178.7391714,59.84984534,,0.6,0,6235,120,6355,0,0,1500,0.004302617,0,46.19392785,0.889218229,47.08314608,15.9,5.8,7029.3,1222.5,8257.6,0,3400,21640,0.11251329,0.041591968,47.81398079,8.317920826,56.17349358,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,225,3800,4025,0,0,0,,,1.521709725,27.696793,29.21850273,14.1,14,6500,1767.1,8281.1,300,0,600,0.104483142,0.103742127,48.1659874,13.09447944,61.36420897,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,100,130,0,0,40000,0.006763154,0,0.20289463,0.659500099,0.862394729,0.2,0,1000,0,1000,0,0,1000,0.001390724,0,6.953619359,0,6.953619359,0,0,0,0,0,0,0,0,,,,,,0.157371551,0.052861396,0.005876239,0.001361525,0.02836772,0.001585842,0,0,0.003964605,0.063354225,Chile,1990,0.002705262,0,238.8409608
0,0,0,0,0,0,0,0,0,0,0,0,0,2.3,33.7,5246.3,0,5280,0,4000,10500,0.014056785,0.206232601,32.09429439,0,32.30052699,15,33.7,72914.5,3494.8,76443,0,8000,45690,0.093258983,0.206232601,458.3596264,21.52389751,,0,0,800,0,800,0,0,0,0,0,4.788125449,0,4.788125449,7.4,0,64157,3426.3,67583.3,0,4000,26190,0.046476484,0,404.1791949,21.08628838,425.2654833,0,0,0,0,0,0,0,0,0,0,0,0,0,4.7,0,211.2,40,251.2,0,0,0,,,1.358200437,0.257798402,1.615998838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.5,28.5,0,0,8000,0,0,0,0.179810726,0.179810726,0.6,0,2500,0,2500,0,0,1000,0.003629764,0,15.93981127,0,15.93981127,0,0,0,0,0,0,0,0,,,,,,0.053989343,0,0.006166789,0.001284341,0.03506651,0,0,0,0,0.011471703,Chile,2000,0.02909595,0,480.0897566
0,0,0,0,0,0,0,0,0,0,0,0,0,59,1036.3,308115.6,80000,389151.9,0,835000,3100000,0.344949982,6.072772987,1773.502347,468.8507296,2248.42585,85.5,1107.9,334660.4,83677.6,419445.9,0,903000,3518910,0.491761064,6.472662546,1922.564572,489.2782905,,0,0,1110,0,1110,0,0,60000,0,0,6.260375584,0,6.260375584,20.5,14,18425.7,3437.9,21877.6,0,50000,160510,0.113688299,0.076816166,102.6109758,19.09788755,121.7856795,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,0.4,93.4,0,93.8,0,0,0,,,0.519784073,0,0.522010129,2.2,1.2,0,13,14.2,0,0,0,0.011911207,0.006497022,0,0.070384407,0.076881429,0,0,0,0,0,0,0,0,0,0,0,0,0,3.2,56,1805.7,226.7,2088.4,0,18000,98400,0.017872492,0.314350314,10.01952673,1.259288909,11.59316596,0,0,5110,0,5110,0,0,100000,0,0,29.65156276,0,29.65156276,0,0,0,0,0,0,0,0,,,,,,1.575909335,0,1.413138505,0.035921605,0.065677042,0,0,0,0.02459833,0.036573854,Chile,2010,0.003339084,0.002226056,2418.315525
0,0,0,0,0,,,,0,0,0,0,0,1480.1,0,1000,0,1000,,,,0.35710198,0,0.241437524,0,0.241437524,1480.1,0,1000,0,1000,,,,0.35710198,0,0.241437524,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,China,1900,0,0,0.241437524
0,0,0,0,0,,,,0,0,0,0,0,1291.2,11.2,0,0,11.2,,,,0.280912799,0.002558548,0,0,0.002558548,16291.2,11.2,363500,0,363511.2,,,,3.770882153,0.002558548,80.92628605,0,,0,0,0,0,0,,,,0,0,0,0,0,10000,0,363500,0,363500,,,,2.33514755,0,80.92628605,0,80.92628605,0,0,0,0,0,,,,0,0,0,0,0,5000,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,China,1910,1.154821804,0,80.9288446
350000,0,2000000,0,2000000,,,,72.30098585,0,424.1639339,0,424.1639339,23102.4,52.4,0,13487,13539.4,,,,4.872763191,0.010814588,0,2.783737902,2.794552489,383602.4,52.4,2000000,13487,2013539.4,,,,79.37763372,0.010814588,424.1639339,2.783737902,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,10500,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,China,1920,2.203884683,0,426.9584864
0,0,0,0,0,,,,0,0,0,0,0,2107.7,3.1,0,7069.5,7072.6,,,,0.423935021,0.000609409,0,1.389795589,1.390404998,438157.7,3.1,1003000,367069.5,1370072.6,,,,88.27192222,0.000609409,198.2138729,73.33756036,,0,0,0,0,0,,,,0,0,0,0,0,436000,0,1003000,360000,1363000,,,,87.83805399,0,198.2138729,71.94776477,270.1616376,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,50,0,0,0,0,,,,0.009933204,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,China,1930,0,0,271.5520426
0,0,0,0,0,,,,0,0,0,0,0,139.6,193.5,0,10673.5,10867,,,,0.026081561,0.036241143,0,2.041791666,2.078032809,6052.6,193.5,0,10673.5,10867,,,,1.109259642,0.036241143,0,2.041791666,,0,0,0,0,0,,,,0,0,0,0,0,5733,0,0,0,0,,,,1.049959386,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,180,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,China,1940,0.033218695,0,2.078032809
0,0,0,0,0,,,,0,0,0,0,0,9.3,11.3,0,15362,15373.3,,,,0.001563921,0.001845675,0,2.693927161,2.695772836,204392.4,11.3,1000000,15362,1015373.3,,,,31.48815919,0.001845675,180.3689963,2.693927161,,0,0,0,0,0,,,,0,0,0,0,0,204004.7,0,1000000,0,1000000,,,,31.4269708,0,180.3689963,0,180.3689963,0,0,0,0,0,,,,0,0,0,0,0,378.4,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,China,1950,0.059624467,0,183.0647691
0,0,0,0,0,0,0,2711.8,0,0,0,0,0,300,0,0,5589.5,5589.5,0,0,0,0.037221491,0,0,0.694970834,0.694970834,368.6,0,0,5589.5,5589.5,0,0,2711.8,0.046907268,0,0,0.694970834,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68.6,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.003850005,0.003850005,0,0,0,0,0,0,0,0,China,1960,0.009685777,0,0.694970834
0,0,600000,0,600000,0,0,0,0,0,61.71537947,0,61.71537947,27404.2,16719.5,200,57238.5,74158,0,0,560000,2.93013693,1.772110898,0.020281261,5.805270377,7.597662536,29414.9,16725,1700806.5,58026.5,1775558,0,0,560000,3.147356343,1.772775469,180.5685302,5.900485339,,0,0,0,0,0,0,0,0,0,0,0,0,0,2000,0,1100000,0,1100000,0,0,0,0.215926519,0,118.7595854,0,118.7595854,0,0,0,0,0,0,0,0,0,0,0,0,0,10.7,5.5,606.5,788,1400,0,0,0,,,0.073284105,0.095214962,0.169163638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.363778095,0,0.363778095,0,0,0,0,0,0,0,China,1970,0.001292894,0.000664571,188.2417911
140,0,4900000,0,4900000,0,0,94288.7,0.012305269,0,430.684407,0,430.684407,126.4,735.5,136488.5,44264,181488,0,0,48700,0.011346055,0.067486408,12.03920467,3.889690701,15.99638178,2092.7,10352.1,23361909.6,226240.5,23598502.2,0,0,1338825.5,0.196517248,0.984518699,2040.80735,20.6469657,,0,0,0,0,0,0,0,0,0,0,0,0,0,1418.7,7611.7,13914450,133200,14055261.7,0,0,941616.8,0.135772186,0.740226343,1214.452356,12.39442103,1227.587003,27.7,0,0,0,0,0,0,0,0.00265725,0,0,0,0,323.1,1868.3,4396950,48550,4447368.3,0,0,243220,,,382.3796114,4.343300411,386.8876637,37.5,114.5,5411.9,226.5,5752.9,0,0,0,0.003491274,0.010073944,0.475228331,0.019553557,0.504855833,0,0,0,0,0,0,0,0,0,0,0,0,0,19.1,22.1,5609.2,0,5631.3,0,0,11000,0.001711324,0.001980118,0.502573716,0,0.504553835,0.2,0,3000,0,3000,0,0,0,0.0000183,0,0.273969096,0,0.273969096,0,0,0,0,0,0,0,0,,,,,,0.467862125,0.030186487,0.01488057,0,0.341467892,0,0,0.077297473,0,0.004029703,China,1980,0.029215625,0.164751885,2062.438835
200,0,13375000,0,13375000,0,0,1399030,0.016765907,0,1083.676136,0,1083.676136,64,3544.9,961023.4,220112.6,1184680.9,0,0,112970,0.005174061,0.282888651,76.28036391,17.57061865,94.13387121,2776.7,62795.7,120014666.9,5117050,125194512.6,0,41940,12294181.9,0.224597327,5.02837955,9694.351918,407.765904,,0,0,0,0,0,0,0,0,0,0,0,0,0,1792.5,54049.2,96708630,3599090,100361769.2,0,38040,9205534.4,0.144117198,4.320690422,7803.715297,287.6956809,8095.731668,12.2,11.5,500,0,511.5,0,0,0,0.001026344,0.000977157,0.042485072,0,0.043462229,563.6,5171.5,8959092.8,1297814.5,10262078.8,0,3900,1484747.5,,,729.8118723,102.4970017,832.731217,124.8,18.6,202.7,32.9,254.2,0,0,89000,0.01005528,0.001480308,0.016094651,0.002602757,0.020177716,0,0,0,0,0,0,0,0,0,0,0,0,0,5.2,0,0,0,0,0,0,0,0.000413172,0,0,0,0,14.4,0,10218,0,10218,0,0,2900,0.001162473,0,0.809669741,0,0.809669741,0,0,0,0,0,0,0,0,,,,,,1.765759682,0.246924992,0.013483877,0.000301579,1.243395499,0.008648838,0,0.253004898,0,0,China,1990,0.045882891,0.422343013,10107.1462
13.4,0,24152400,0,24152400,0,0,875011.5,0.001001189,0,1824.451009,0,1824.451009,8794.7,38782.9,5267437.7,168128.6,5474349.2,0,31000,8699220.7,0.649820616,2.869016696,390.6350072,12.72900724,406.2330312,9824.7,70961.4,117601050.6,531154.7,118203166.7,0,244200,18534869.2,0.727440989,5.322756625,8857.240063,40.24339695,,0,0,0,0,0,0,0,0,0,0,0,0,0,578.1,21026.7,52564238.2,242922.9,52828187.8,0,12300,3820682.1,0.043673629,1.59910599,3962.638554,18.41593832,3982.653598,5.5,1.8,0,34,35.8,0,0,0,0.000414743,0.000135613,0,0.002569752,0.002705365,318,10765.6,27915964.7,117680.7,28044411,0,40900,3009814.9,,,2110.571317,8.915462212,2120.311913,95.9,14.4,1010,2358.5,3382.9,0,0,20140,0.007192771,0.001090461,0.077730401,0.178138582,0.256959445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,30,0,0,0,0,0,0,0.002280842,0.002280842,19.1,370,7700000,0,7700370,0,160000,2110000,0.001419551,0.028274554,568.8664459,0,568.8947205,0,0,0,0,0,0,0,0,,,,,,0.587479503,0.03293977,0.192991716,0.045926374,0.191120413,0.000740233,0,0.123760997,0,0,China,2000,0.023918491,0.82513331,8902.806217
0,0,7972600,0,7972600,0,165400,1163600,0,0,574.5323397,0,574.5323397,421.9,7167.1,787268.3,22203.7,816639.1,0,6800,1824145,0.030637398,0.517561221,56.39973527,1.61018789,58.52748438,1493.1,7801,54481814.3,162470.2,54652085.5,0,515400,23282922.9,0.107730114,0.563040041,3932.099165,11.69366719,,0,0,0,0,0,0,0,0,0,0,0,0,0,622.7,23.5,38074674,65551,38140248.5,0,266300,12851703.5,0.04475813,0.001690843,2749.866912,4.677089153,2754.545692,4.6,0.2,0,0,0.2,0,0,800,0.000330488,0.0000144,0,0,0.0000144,159.3,471.6,7023028,51289.5,7074789.1,0,76600,7086424.4,,,505.9123352,3.704746704,509.6508127,274.7,26.1,239244,126,239396.1,0,300,166130,0.019938972,0.001896078,17.42033796,0.008942166,17.43117621,0,0,0,0,0,0,0,0,0,0,0,0,0,5.2,0.3,0,0,0.3,0,0,0,0.00036996,0.0000219,0,0,0.0000219,4.7,112.2,385000,23300,408412.2,0,0,190120,0.00033727,0.008124824,27.9675048,1.692701274,29.6683309,0,0,0,0,0,0,0,0,,,,,,0.235299424,0.012403593,0.018512191,0.001820123,0.137542168,0.002011959,0.00000836,0.06300103,0,0,China,2010,0.011357897,0.033730789,3944.355873
0,0,0,0,0,,,,0,0,0,0,0,40,0,0,0,0,,,,0.864309278,0,0,0,0,40,0,0,0,0,,,,0.864309278,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Colombia,1900,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Colombia,1910,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,30,0,0,0,0,,,,0.434490367,0,0,0,0,40,0,0,0,0,,,,0.56862565,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,10,0,0,0,0,,,,0.134135283,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Colombia,1920,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,1.8,0,0,0,0,,,,0.020583546,0,0,0,0,1.8,0,0,0,0,,,,0.020583546,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Colombia,1930,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,100,0,0,0,0,,,,0.83377579,0,0,0,,100,0,0,0,0,,,,0.83377579,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Colombia,1940,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,32.2,4.6,0,4000,4004.6,,,,0.249656128,0.030483764,0,33.38340845,33.41389221,69.3,4.6,0,4000,4004.6,,,,0.507683153,0.030483764,0,33.38340845,,0,0,0,0,0,,,,0,0,0,0,0,18.4,0,0,0,0,,,,0.118213942,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,18.7,0,0,0,0,,,,0.139813084,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Colombia,1950,0,0,33.41389221
0,0,0,0,0,0,0,0,0,0,0,0,0,12.8,50,4000,0,4050,0,0,60,0.068327365,0.276327057,20.16332292,0,20.43964997,29.5,50,11102,6.3,11158.3,0,0,115,0.164396517,0.276327057,54.08912182,0.030891439,,0,0,0,0,0,0,0,0,0,0,0,0,0,13.5,0,7000,0,7000,0,0,50,0.078979699,0,33.4256518,0,33.4256518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,6.3,108.3,0,0,5,,,0.500147102,0.030891439,0.531038541,3.2,0,0,0,0,0,0,0,0.017089453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.001889075,0,0.001030013,0,0.000775173,0,0,0.0000839,0,0,Colombia,1960,0,0,54.39634031
0,0,0,0,0,0,0,0,0,0,0,0,0,65,164.8,1300,0,1464.8,0,0,2840,0.247519036,0.626819443,5.197050887,0,5.82387033,211.5,283.6,512200,10710,523193.6,0,0,16725,0.893510998,1.132867737,2374.981571,49.68249986,,0,0,0,0,0,0,0,0,0,0,0,0,0,57.6,17.2,510900,10700,521617.2,0,0,13885,0.259226961,0.074701412,2369.78452,49.64276213,2419.501983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,88.9,101.6,0,10,111.6,0,0,0,0.386765001,0.431346882,0,0.039737731,0.471084613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.203468155,0,0.010577009,0,0.192891146,0,0,0,0,0,Colombia,1970,0,0,2425.796938
0,0,0,0,0,0,0,0,0,0,0,0,0,26,120,3500,0,3620,0,0,41590,0.090702303,0.417914606,12.18917601,0,12.60709062,2371,957.6,57140,50,58147.6,0,0,147340,7.918890269,3.168138193,185.1949164,0.174131086,,2180,500,960,0,1460,0,0,100000,7.278554973,1.669393342,3.167918194,0,4.837311536,45,90,38080,0,38170,0,0,500,0.155069211,0.286005383,122.8815807,0,123.167586,16,0,0,0,0,0,0,0,0.055721947,0,0,0,0,3.1,4,12800,50,12854,0,0,5250,,,40.58252028,0.174131086,40.77058185,100.9,243.6,1800,0,2043.6,0,0,0,0.329014993,0.780894374,6.373721295,0,7.154615669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.408887407,0,0.107468019,0,0.001374066,0,0,0.013466481,0.286578842,0,Colombia,1980,0.00982684,0.013930487,188.5371857
0,0,10000,0,10000,0,0,0,0,0,26.06610364,0,26.06610364,152.7,918.7,77572.4,48221.2,126712.3,0,10000,185976.6,0.399354593,2.370649313,199.5733508,124.3452442,326.2892443,214.6,935.5,128451.3,63184.7,192571.5,0,10000,186366.9,0.570616132,2.417116402,336.5310545,164.4850692,,1,0.6,0,0,0.6,0,0,0,0.002849734,0.00170984,0,0,0.00170984,23.4,12.3,40514.4,14620,55146.7,0,0,300.3,0.064546207,0.033643288,109.8572669,39.25400074,149.1449109,7.5,3.6,225,12.5,241.1,0,0,0,0.021373002,0.010259041,0.641190049,0.035621669,0.687070759,0.2,0,0,0,0,0,0,50,,,0,0,0,29.8,0.3,139.5,331,470.8,0,0,40,0.081979762,0.00085492,0.393143094,0.850202648,1.244200663,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.216221014,0,0.215800043,0,0.000281616,0.0000813,0,0.000058,0,0,Colombia,1990,0.000512834,0,503.4332401
0,0,0,0,0,0,0,0,0,0,0,0,0,1.4,8.1,861.6,220,1089.7,0,0,1000,0.003227928,0.018573816,2.052495524,0.502969974,2.574039314,133.4,139.1,551964.3,5335.3,557438.7,0,0,2000,0.315114809,0.326738195,1271.20683,13.3006181,,1.6,0.7,4235.1,0,4235.8,0,0,0,0.003615411,0.001581742,9.671499282,0,9.673081024,103.1,102.9,546490.2,4100,550693.1,0,0,1000,0.242600018,0.239191741,1258.593312,10.2982978,1269.130801,1.2,0,0,0,0,0,0,0,0.002711558,0,0,0,0,0.5,20,307.4,750,1077.4,0,0,0,,,0.720784093,1.863076312,2.63354244,25.6,7.4,70,265.3,342.7,0,0,0,0.061717843,0.017708861,0.168739755,0.63627401,0.822722626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.001099628,0,0.000412904,0,0.000686724,0,0,0,0,0,Colombia,2000,0.001242051,0.049682035,1284.834187
0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6,5033.5,90,5125.1,0,0,400,0,0.003436587,10.63627353,0.191711758,10.83142188,171.7,123.8,483453.6,1181.3,484758.7,0,5500,354000,0.367876492,0.265475581,1059.466196,2.531189505,,0,0,0,0,0,0,0,0,0,0,0,0,0,97.5,77.3,461933.7,1061.3,463072.3,0,5500,343400,0.21162509,0.169798705,1014.40526,2.276347762,1016.851406,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1,1.8,0,0,1.8,0,0,0,,,0,0,0.003832397,68.9,43.1,4566.4,30,4639.5,0,0,10200,0.144739697,0.088407892,9.338876279,0.063129985,9.490414156,0,0,0,0,0,0,0,0,0,0,0,0,0,4.2,0,11920,0,11920,0,0,0,0.009169685,0,25.08578586,0,25.08578586,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.110613068,0,0.00010468,0,0.107237941,0.003270447,0,0,0,0,Colombia,2010,0.00234202,0.003832397,1062.262861
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,1.7,0,0,0,0,,,,1.555352242,0,0,0,,1.7,0,0,0,0,,,,1.555352242,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Comoros,1900,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Comoros,1910,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Comoros,1920,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Comoros,1930,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Comoros,1940,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,50,0,0,0,0,,,,30.67484663,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,50,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Comoros,1950,30.67484663,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Comoros,1960,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,2000,500,2500,0,0,0,0.036231884,0,724.6376812,181.1594203,,0.1,0,2000,500,2500,0,0,0,0.036231884,0,724.6376812,181.1594203,905.7971014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Comoros,1970,0,0,905.7971014
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.9,5.2,6500,5000,11505.2,0,0,4280.4,1.67508566,1.547619048,1878.772636,1326.259947,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.9,5.2,6500,5000,11505.2,0,0,4280.4,,,1878.772636,1326.259947,3206.580202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1.903293354,0,0,0,0,0,0,1.903293354,0,0,Comoros,1980,1.67508566,1.547619048,3206.580202
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,0,0,0,0,0,0,4.716981132,,0,0,0,20,20,0,0,0,0,0,0,4.716981132,4.716981132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Comoros,1990,0,0,4.716981132
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,28650,30,28680,0,0,0,0.046057551,0,4677.669978,5.145797599,,0.1,0,28400,0,28400,0,0,0,0.016339869,0,4640.522876,0,4640.522876,0.2,0,250,0,250,0,0,0,0.029717682,0,37.14710253,0,37.14710253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,30,0,0,0,,,0,5.145797599,5.145797599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Comoros,2000,0,0,4682.815776
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,1000,0,0,0,0,0,131.7523057,0,131.7523057,1.2,33,42962.9,0,42995.9,0,0,500,0.149255669,4.186981841,5210.26584,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,15,6498.7,0,6513.7,0,0,500,0.055248619,2.071823204,897.6104972,0,899.6823204,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,18,35464.2,0,35482.2,0,0,0,,,4180.903037,0,4183.018196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.049220181,0,0,0,0.049220181,0,0,0,0,0,Comoros,2010,0.094007051,2.115158637,5214.452822
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15.4,0,50,16.8,66.8,0,0,0,1.262295082,0,4.098360656,1.37704918,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,15.4,0,50,16.8,66.8,0,0,0,1.262295082,0,4.098360656,1.37704918,5.475409836,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Congo,1960,0,0,5.475409836
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Congo,1970,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Congo,1980,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,7650,200,7850,0,0,5.9,0.006583278,0,262.1062166,6.583278473,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,7650,200,7850,0,0,5.9,0.006583278,0,262.1062166,6.583278473,268.689495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.000302645,0,0,0,0.000302645,0,0,0,0,0,Congo,1990,0,0,268.689495
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.7,0,2500,6000,8500,0,0,0,0.018781505,0,66.70532738,176.7864244,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.7,0,2500,6000,8500,0,0,0,0.018781505,0,66.70532738,176.7864244,243.4917518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Congo,2000,0,0,243.4917518
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.9,8.9,21502.5,750,22261.4,0,0,0,0.042128603,0.197339246,400.3272272,16.62971175,,0,0,0,0,0,0,0,0,0,0,0,0,0,1.9,8.9,21502.5,750,22261.4,0,0,0,0.042128603,0.197339246,400.3272272,16.62971175,417.1542782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Congo,2010,0,0,417.1542782
0,0,0,0,0,,,,0,0,0,0,0,245,0,0,0,0,,,,68.20636741,0,0,0,0,245,0,0,0,0,,,,68.20636741,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Costa Rica,1910,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Costa Rica,1920,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Costa Rica,1930,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Costa Rica,1940,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,3.9,0,0,0,0,,,,0.379511248,0,0,0,0,3.9,0,0,0,0,,,,0.379511248,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Costa Rica,1950,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10.9,22.3,2197.1,328,2547.4,0,0,900,0.637518061,1.472909824,129.984223,18.76430206,,10.2,20,1739.1,328,2087.1,0,0,500,0.598585914,1.344989913,104.5114755,18.76430206,124.6207675,0.7,2.3,458,0,460.3,0,0,400,0.038932147,0.127919911,25.4727475,0,25.60066741,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.111471413,0,0,0,0.046858698,0,0,0,0.064612715,0,Costa Rica,1960,0,0,150.2214349
0,0,0,0,0,0,0,0,0,0,0,0,0,2.1,9.8,356.3,8.4,374.5,0,0,20,0.105368791,0.491721024,17.8775715,0.421475163,18.79076769,4.7,13.8,8876.3,8.4,8898.5,0,0,3020,0.244860333,0.70828843,425.906085,0.421475163,,0.2,0,7000,0,7000,0,0,0,0.009551098,0,325.732899,0,325.732899,2.4,4,1520,0,1524,0,0,3000,0.129940444,0.216567407,82.29561451,0,82.51218192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.305929169,0,0.001308116,0,0.304621053,0,0,0,0,0,Costa Rica,1970,0,0,427.0358486
0,0,0,0,0,0,0,0,0,0,0,0,0,1.2,6,547.5,0,553.5,0,0,600,0.046278442,0.23139221,21.11453914,0,21.34593135,4.8,756,13682.5,250,14688.5,0,0,7500,0.168665852,25.56067286,465.8039393,8.443093549,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,1135,250,1385,0,0,900,0.027824762,0,39.42090976,8.443093549,47.86400331,0,0,0,0,0,0,0,0,0,0,0,0,0,2.8,750,12000,0,12750,0,0,6000,,,405.2684904,0,430.597771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.16859162,0,0.01906717,0,0.019503189,0,0,0.130021261,0,0,Costa Rica,1980,0.094562648,25.32928065,499.8077057
0,0,0,0,0,0,0,2400,0,0,0,0,0,5.1,54.8,697,1790,2541.8,0,0,11950,0.158886213,1.730812681,21.76108773,57.06606904,80.55796945,14,57,97025.4,5302.7,102385.1,0,0,69489,0.403876426,1.79936229,2740.366253,161.2655736,,0,0,45,0,45,0,0,0,0,0,1.1829653,0,1.1829653,2.7,2.2,22737.2,2862.7,25602.1,0,0,25400,0.075281304,0.068549609,693.7745415,86.1941455,780.0372366,0,0,0,0,0,0,0,0,0,0,0,0,0,6.2,0,73426.2,650,74076.2,0,0,29739,,,2019.996913,18.00535904,2038.002272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,120,0,0,0,0,0,3.650745361,0,3.650745361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.65175733,0.017761218,0.173101282,0,0.217632229,0,0,0.2432626,0,0,Costa Rica,1990,0.169708908,0,2903.431189
0,0,0,0,0,0,0,0,0,0,0,0,0,4.1,16.6,12884.2,2.5,12903.3,0,10000,20000,0.092306886,0.381398176,285.0365167,0.059171598,285.4770864,9.7,20.6,46910.5,2.5,46933.6,0,10000,32600,0.22327326,0.478935362,1068.521354,0.059171598,,0,0,0,0,0,0,0,0,0,0,0,0,0,4.4,4,28398.9,0,28402.9,0,0,10600,0.102002771,0.097537186,657.2387172,0,657.3362544,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,5607.4,0,5607.4,0,0,2000,,,125.7413248,0,125.7413248,0.7,0,20,0,20,0,0,0,0.017667845,0,0.504795558,0,0.504795558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.117863972,0,0.065049721,0,0.042834531,0,0,0.00997972,0,0,Costa Rica,2000,0.011295759,0,1069.059461
0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,22.5,53.7,0,76.2,0,3200,4500,0.004266212,0.479948805,1.145477816,0,1.625426621,6.2,22.5,27466.7,0,27489.2,0,3200,23000,0.131323289,0.479948805,562.7520793,0,,0,0,1845,0,1845,0,0,0,0,0,38.05693069,0,38.05693069,3.8,0,19418,0,19418,0,0,0,0.082423355,0,398.2557023,0,398.2557023,0,0,0,0,0,0,0,0,0,0,0,0,0,2.2,0,6150,0,6150,0,0,18500,,,125.2939685,0,125.2939685,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.040097915,0,0.009527509,0,0,0,0,0.030570406,0,0,Costa Rica,2010,0.044633722,0,563.2320281
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,700,0,700,0,0,0,0,0,6.085898105,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,700,0,700,0,0,0,0,0,6.085898105,0,6.085898105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Cote d'Ivoire,1980,0,0,6.085898105
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.8,0,0,0,0,0,0,0,0.019093079,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,2.8,0,0,0,0,0,0,0,0.019093079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Cote d'Ivoire,1990,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.3,0.6,245,1000,1245.6,0,0,0,0.01652058,0.002991176,1.272763972,4.985293385,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,0,245,0,245,0,0,0,0.003060288,0,1.272763972,0,1.272763972,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,2.7,0.6,0,1000,1000.6,0,0,0,0.013460292,0.002991176,0,4.985293385,4.988284561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Cote d'Ivoire,2000,0,0,6.261048533
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.7,5.7,4562.7,61.2,4629.6,0,0,0,0.063143688,0.022673519,18.62807582,0.23797488,,0,0,0,0,0,0,0,0,0,0,0,0,0,14.7,5.7,4562.7,61.2,4629.6,0,0,0,0.063143688,0.022673519,18.62807582,0.23797488,18.88872422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Cote d'Ivoire,2010,0,0,18.88872422
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,200,0,0,0,0,0,0,4.371584699,4.371584699,0,0,0,200,200,0,0,0,0,0,0,4.371584699,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Croatia,1990,0,0,4.371584699
0,0,0,0,0,0,0,33000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84.8,22.6,205,0,227.6,0,0,60775,1.93148953,0.511276869,4.648373602,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,205,0,0,0,0,0,4.648373602,0,4.648373602,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.3,2.6,0,0,2.6,0,0,3775,0.029768672,0.059605685,0,0,0.059605685,83.3,20,0,0,20,0,0,24000,1.897152562,0.451671183,0,0,0.451671183,0,0,0,0,0,0,0,0,,,,,,0.220056773,0.095147751,0,0.110937722,0,0,0,0,0,0.013971299,Croatia,2000,0.004568296,0,5.159650471
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1,8.5,1693.6,2.1,1704.2,0,600,24100,0.025764407,0.203356836,39.90560786,0.050529355,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0.5,1343.6,2.1,1346.2,0,0,8000,0.00947018,0.012106538,31.53840729,0.050529355,31.60104318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,350,0,350,0,600,16100,,,8.367200574,0,8.367200574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,8,0,0,0,0,0.191250299,0,0,0.191250299,0.7,0,0,0,0,0,0,0,0.016294227,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.042370117,0,0,0,0.013351511,0,0,0.029018607,0,0,Croatia,2010,0,0,40.15949405
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,60,0,0,0,0,,,,1.666238536,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,60,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Cuba,1920,1.666238536,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,253.5,50,0,0,50,,,,6.212443351,1.159067933,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,253.5,50,0,0,50,,,,,,0,0,1.159067933,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Cuba,1930,6.212443351,1.159067933,1.159067933
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,1.4,30,0,0,30,,,,0.025967638,0.556449378,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,1.4,30,0,0,30,,,,,,0,0,0.556449378,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Cuba,1940,0.025967638,0.556449378,0.556449378
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Cuba,1950,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,175.5,3,15600,1800,17403,0,0,51800,2.301845543,0.036968577,192.2365989,22.18114603,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,175.5,3,15600,1800,17403,0,0,51800,,,192.2365989,22.18114603,214.4547135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Cuba,1960,2.301845543,0.036968577,214.4547135
0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0.8,0,0,0.8,0,0,0,0.001046682,0.008373456,0,0,0.008373456,3.4,7.8,1810,0,1817.8,0,0,0,0.037428083,0.080360293,18.76342304,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.7,0,1800,0,1800,0,0,0,0.007256894,0,18.6605847,0,18.6605847,0,0,0,0,0,0,0,0,0,0,0,0,0,2.6,7,10,0,17,0,0,0,,,0.102838338,0,0.174825175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Cuba,1970,0.029124507,0.071986837,18.84378333
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.9,5.1,90692.7,9850,100547.8,0,0,14500,0.068300237,0.050614922,897.3397305,98.68179379,,0,0,0,0,0,0,0,0,0,0,0,0,0,3.8,5.1,26503.6,0,26508.7,0,0,6000,0.037148193,0.050614922,261.7396989,0,261.7903138,0,0,0,0,0,0,0,0,0,0,0,0,0,3.1,0,64189.1,9850,74039.1,0,0,8500,,,635.6000316,98.68179379,734.2818254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.067587009,0,0,0,0.027021014,0,0,0.040565995,0,0,Cuba,1980,0.031152044,0,996.0721393
0,0,82000,0,82000,0,0,18000,0,0,742.8209077,0,742.8209077,0,4,582.9,0,586.9,0,0,0,0,0.037257824,5.429396423,0,5.466654247,8.4,13.8,236024.2,17442.4,253480.4,0,1500,343955.8,0.077585654,0.128065797,2156.95751,160.0758552,,0,0,0,0,0,0,0,0,0,0,0,0,0,6.5,0,67177.3,3800,70977.3,0,0,14259,0.060225306,0,621.5991425,35.32181853,656.920961,0,0,0,0,0,0,0,0,0,0,0,0,0,1.9,9.8,86264,13642.4,99916.2,0,1500,311696.8,,,787.1080636,124.7540367,911.9529082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1.39959478,0.069940039,0,0,0.063764195,0,0,1.265890546,0,0,Cuba,1990,0.017360348,0.090807973,2317.161431
0,0,0,0,0,0,0,313.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.4,4.4,979768.3,4150,983922.7,0,2700,752113.9,0.039163105,0.03920491,8748.463536,36.88888889,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,7577.5,0,7577.5,0,0,0,0.003573632,0,67.51997135,0,67.51997135,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4.4,972190.8,4150,976345.2,0,2700,751800,,,8680.943564,36.88888889,8717.871658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1.525399425,0.000821663,0,0,0,0,0,1.524577761,0,0,Cuba,2000,0.035589473,0.03920491,8785.391629
0,0,10000,0,10000,0,0,0,0,0,88.30022075,0,88.30022075,0,0,0,0,0,0,0,0,0,0,0,0,0,4.4,19.5,1039912.7,16274.6,1056206.8,0,20000,314000,0.038909592,0.172063884,9171.613307,144.5731545,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.7,0,1317.5,14.1,1331.6,0,0,0,0.006198257,0,11.64954994,0.125255397,11.77480534,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7,19.5,1028595.2,16260.5,1044875.2,0,20000,314000,,,9071.663536,144.4478991,9216.283499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.340313043,0,0,0,0,0,0,0.340313043,0,0,Cuba,2010,0.032711335,0.172063884,9316.358525
0,0,0,0,0,,,,0,0,0,0,0,4,10,0,250,260,,,,0.779727096,1.949317739,0,48.73294347,50.68226121,4,10,0,250,260,,,,0.779727096,1.949317739,0,48.73294347,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Cyprus,1950,0,0,50.68226121
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,10,300,0,310,0,0,10,0.04950495,1.650165017,49.5049505,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,10,300,0,310,0,0,10,,,49.5049505,0,51.15511551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Cyprus,1960,0.04950495,1.650165017,51.15511551
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Cyprus,1970,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Cyprus,1980,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0.5,171,15,186.5,0,0,434,0.023391813,0.058479532,20,1.754385965,21.8128655,5.4,10.5,171,15,196.5,0,0,434,0.595449019,1.158589543,20,1.754385965,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.2,10,0,0,10,0,0,0,0.572057206,1.100110011,0,0,1.100110011,0,0,0,0,0,0,0,0,,,,,,0.004369216,0,0.004369216,0,0,0,0,0,0,0,Cyprus,1990,0,0,22.91297551
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.9,44,0,0,44,0,600,1000,0.090616254,4.642602314,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,4,0,600,1000,,,0,0,0.400820766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.9,40,0,0,40,0,0,0,0.090616254,4.241781548,0,0,4.241781548,0,0,0,0,0,0,0,0,,,,,,0.006874116,0,0,0,0,0,0,0.006874116,0,0,Cyprus,2000,0,0.400820766,4.642602314
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.6,240.9,8778.5,1197.3,10216.7,0,32800,193800,0.034830295,2.330237957,84.91480986,11.58154382,,0,0,0,0,0,0,0,0,0,0,0,0,0,3.6,240.9,8778.5,1197.3,10216.7,0,32800,193800,0.034830295,2.330237957,84.91480986,11.58154382,98.82659164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.310648336,0,0,0,0.310648336,0,0,0,0,0,Czechia,1990,0,0,98.82659164
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.1,1.5,21876.5,0,21878,0,130600,285000,0.469257046,0.014366194,213.0512639,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,3.8,0,21876.5,0,21876.5,0,125500,263000,0.036753325,0,213.0512639,0,213.0512639,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1.5,0,0,1.5,0,5100,22000,,,0,0,0.014366194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.3,0,0,0,0,0,0,0,0.422865726,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.324586961,0,0,0,0.31215531,0,0,0.012431651,0,0,Czechia,2000,0.009637995,0.014366194,213.0656301
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3,0,130140,0,130140,0,38586.6,117901.2,0.069051728,0,1229.249687,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,2.6,0,130140,0,130140,0,38586.6,117611.2,0.024607724,0,1229.249687,0,1229.249687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,290,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.7,0,0,0,0,0,0,0,0.044444005,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.055897356,0,0,0,0.055764711,0,0,0.000132645,0,0,Czechia,2010,0,0,1229.249687
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.4,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,1.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Czechoslovakia,1970,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,60,0,60,0,0,1600,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,60,0,0,1500,,,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Czechoslovakia,1980,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,2.4,60,300,0,360,0,0,20,0.013436345,0.335908633,1.679543164,0,2.015451797,17.8,60,360,16.8,436.8,0,0,20,0.094857515,0.335908633,1.9967685,0.088823094,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,15.4,0,60,16.8,76.8,0,0,0,0.08142117,0,0.317225336,0.088823094,0.40604843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.000441242,0,0.000441242,0,0,0,0,0,0,0,Democratic Republic of Congo,1960,0,0,2.421500227
0,0,50000,0,50000,0,0,0,0,0,200.3526206,0,200.3526206,0,0,0,0,0,0,0,0,0,0,0,0,0,14.7,0,50000,6000,56000,0,0,0,0.060621057,0,200.3526206,24.74328838,,14.7,0,0,6000,6000,0,0,0,0.060621057,0,0,24.74328838,24.74328838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Democratic Republic of Congo,1970,0,0,225.095909
0,0,30000,0,30000,0,0,0,0,0,105.6189269,0,105.6189269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30014.8,0,30014.8,0,0,0,0,0,105.6631522,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,14.8,0,14.8,0,0,0,0,0,0.04422531,0,0.04422531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Democratic Republic of Congo,1980,0,0,105.6631522
0,0,0,0,0,0,0,0,0,0,0,0,0,0.9,6.1,0,25,31.1,0,0,0,0.002410671,0.016338994,0,0.06696309,0.083302084,7.3,56.1,10600,3480.6,14136.7,0,0,0,0.019180024,0.160797563,24.42122543,8.546383231,,0,0,0,0,0,0,0,0,0,0,0,0,0,6.4,50,10600,3455.6,14105.6,0,0,0,0.016769353,0.144458569,24.42122543,8.479420141,33.04510414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Democratic Republic of Congo,1990,0,0,33.12840623
0,0,0,0,0,0,0,0,0,0,0,0,0,1.7,0.5,1735.5,150,1886,0,0,700,0.002916031,0.000912642,2.872821175,0.273792575,3.147526392,41.7,322.3,12372.5,14259.2,26954,0,0,1600,0.081260569,0.62581345,22.02786853,28.2294974,,20,40,0,11000,11040,0,0,900,0.040102663,0.080205326,0,22.05646455,22.13666987,13.9,16.8,3137,558.1,3711.9,0,0,0,0.026673508,0.030827751,5.899011435,1.007042729,6.936881916,0,0,0,0,0,0,0,0,0,0,0,0,0,4.9,265,7500,2538.6,10303.6,0,0,0,,,13.25603592,4.872181215,18.64208486,1.2,0,0,0,0,0,0,0,0.002477854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.5,12.5,0,0,0,0,0,0,0.020016333,0.020016333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.013849,0,0.003537405,0,0,0,0,0,0.010311595,0,Democratic Republic of Congo,2000,0.009090513,0.513867731,50.88317938
0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,3,26,10,39,0,0,0,0.000393468,0.003934684,0.034100597,0.013115614,0.051150895,73.5,112.5,72851.6,3928.3,76892.4,0,0,1500,0.093995723,0.150941833,90.95647831,5.110037721,,0,0,0,0,0,0,0,0,0,0,0,0,0,45.3,107.8,67125.3,3480.3,70713.4,0,0,1500,0.057714511,0.144694437,83.44608418,4.436375067,88.02715369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,26.8,1.7,0,161,162.7,0,0,0,0.034255194,0.002312712,0,0.231515381,0.233828093,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1,0,5700.3,277,5977.3,0,0,0,0.001632549,0,7.476293527,0.429031659,7.905325186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.004177221,0,0,0,0.004177221,0,0,0,0,0,Democratic Republic of Congo,2010,0,0,96.21745786
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Denmark,1970,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1,0,0,0,0,0,0,25000,0.021467226,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1,0,0,0,0,0,0,25000,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.040402203,0,0,0,0,0,0,0.040402203,0,0,Denmark,1980,0.021467226,0,0
0,0,0,0,0,0,0,75170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,0,0,0,0,219000,354663.9,0.015098097,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,0,0,0,0,219000,279493.9,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.209274894,0.049157707,0,0,0,0,0,0.160117186,0,0,Denmark,1990,0.015098097,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,0,0,0,0,90000,140000,0.009238509,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,0,0,0,0,90000,140000,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.052286116,0,0,0,0,0,0,0.052286116,0,0,Denmark,2000,0.009238509,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,0,0,0,0,0,0,0.003547357,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Denmark,2010,0.003547357,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18500,1200,19700,0,0,250,0,0,6315.345305,411.411693,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18500,1200,19700,0,0,250,0,0,6315.345305,411.411693,6726.756998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Djibouti,1970,0,0,6726.756998
0,0,25500,0,25500,0,0,0,0,0,6636.561818,0,6636.561818,0,0,0,0,0,0,0,0,0,0,0,0,0,3.5,30,50700,0,50730,0,0,110,0.843971631,5.319148936,12016.13629,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,3.5,30,25200,0,25230,0,0,110,0.843971631,5.319148936,5379.574468,0,5384.893617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.026880401,0,0,0,0.026880401,0,0,0,0,0,Djibouti,1980,0,0,12021.45543
0,0,20000,0,20000,0,0,0,0,0,2981.36646,0,2981.36646,0,0,0,0,0,0,0,0,0,0,0,0,0,14.5,0,32077.5,2000,34077.5,0,0,211.9,2.331189711,0,4924.486866,321.5434084,,0,0,0,0,0,0,0,0,0,0,0,0,0,14.5,0,12000,2000,14000,0,0,211.9,2.331189711,0,1930.818819,321.5434084,2252.362227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77.5,0,77.5,0,0,0,,,12.3015873,0,12.3015873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.043096328,0,0,0,0.043096328,0,0,0,0,0,Djibouti,1990,0,0,5246.030274
0,0,53275,0,53275,0,0,0,0,0,6613.43138,0,6613.43138,0,0,0,0,0,0,0,0,0,0,0,0,0,5.1,0,63125,150,63275,0,0,0,0.660621762,0,7889.338115,19.43005181,,0,0,0,0,0,0,0,0,0,0,0,0,0,5.1,0,9850,150,10000,0,0,0,0.660621762,0,1275.906736,19.43005181,1295.336788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Djibouti,2000,0,0,7908.768167
0,0,20025.8,0,20025.8,0,0,0,0,0,2384.02381,0,2384.02381,0,0,0,0,0,0,0,0,0,0,0,0,0,1.3,0,47525.8,0,47525.8,0,0,0,0.133791402,0,5211.447139,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1,0,25000,0,25000,0,0,0,0.112936345,0,2566.735113,0,2566.735113,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,2500,0,2500,0,0,0,,,260.6882169,0,260.6882169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Djibouti,2010,0.020855057,0,5211.447139
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,200,0,0,0,0,,,,491.581664,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,200,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Dominica,1930,491.581664,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Dominica,1940,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Dominica,1950,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,260,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,260,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Dominica,1960,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,210,7000,0,7210,0,0,4465,5.333333333,280,9333.333333,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,210,7000,0,7210,0,0,4465,,,9333.333333,0,9613.333333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,8.115561393,0,0,0,0,0,0,8.115561393,0,0,Dominica,1970,5.333333333,280,9613.333333
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,1071,0,1071,0,0,2200,0.27027027,0,1451.351351,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,1071,0,1071,0,0,2200,,,1451.351351,0,1451.351351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1.263501884,0,0,0,0,0,0,1.263501884,0,0,Dominica,1980,0.27027027,0,1451.351351
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0.1,40,531.5,571.6,6500,0,19500,0.281690141,0.14084507,57.14285714,749.2253521,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0.1,40,531.5,571.6,6500,0,19500,,,57.14285714,749.2253521,806.5090543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,7.103250092,0,0,0,0,0,0,7.103250092,0,0,Dominica,1990,0.281690141,0.14084507,806.5090543
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,10,0,0,0,0,0,14.28571429,0,14.28571429,0.2,3,760,0,763,0,1000,2000,0.281690141,4.225352113,1070.623742,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,3,750,0,753,0,1000,2000,,,1056.338028,0,1060.56338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.474637649,0,0,0,0,0,0,0.474637649,0,0,Dominica,2000,0.281690141,4.225352113,1074.849095
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.4,12,9943.7,67,10022.7,0,1930,193881,13.23943662,16.90140845,14005.21127,94.36619718,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.4,12,9943.7,67,10022.7,0,1930,193881,,,14005.21127,94.36619718,14116.47887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,36.93751692,0,0,0,0,0,0,36.93751692,0,0,Dominica,2010,13.23943662,16.90140845,14116.47887
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,200,600,600,0,1200,,,,15.51358098,46.54074293,46.54074293,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,200,600,600,0,1200,,,,,,46.54074293,0,93.08148586,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Dominican Republic,1930,15.51358098,46.54074293,93.08148586
0,0,0,0,0,,,,0,0,0,0,0,7.3,0,0,0,0,,,,0.367581895,0,0,0,0,7.3,0,0,0,0,,,,0.367581895,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Dominican Republic,1940,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Dominican Republic,1950,0,0,0
0,0,24000,0,24000,0,0,500,0,0,564.9717514,0,564.9717514,0,0,0,0,0,0,0,0,0,0,0,0,0,48.1,44.2,24700,550,25294.2,0,0,7200,1.30313711,1.105,582.4717514,13.75,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.1,44.2,700,550,1294.2,0,0,6600,,,17.5,13.75,32.355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.755918635,0.046334909,0,0,0,0,0,0.698323733,0,0.011259993,Dominican Republic,1960,1.30313711,1.105,597.3267514
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143.2,400,120100,35000,155500,0,0,15000,2.524682652,7.052186178,2117.4189,617.0662906,,0,0,0,0,0,0,0,0,0,0,0,0,0,3.2,0,100,0,100,0,0,0,0.056417489,0,1.763046544,0,1.763046544,0,0,0,0,0,0,0,0,0,0,0,0,0,140,400,120000,35000,155400,0,0,15000,,,2115.655853,617.0662906,2739.77433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.27278679,0,0,0,0,0,0,0.27278679,0,0,Dominican Republic,1970,2.468265162,7.052186178,2741.537377
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.4,0,134404.5,0,134404.5,0,0,7070,0.086965465,0,1992.722939,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,3.2,0,134204.5,0,134204.5,0,0,0,0.052257079,0,1989.691258,0,1989.691258,0,0,0,0,0,0,0,0,0,0,0,0,0,2.2,0,200,0,200,0,0,7070,,,3.031681067,0,3.031681067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.11018608,0,0,0,0,0,0,0.11018608,0,0,Dominican Republic,1980,0.034708387,0,1992.722939
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.5,62.5,90030,12350,102442.5,0,40000,198150,0.523978545,0.762741099,1099.228238,150.5467649,,0,0,0,0,0,0,0,0,0,0,0,0,0,4.3,0,2000,100,2100,0,0,0,0.057283482,0,26.50410814,1.25738715,27.76149529,0,0,0,0,0,0,0,0,0,0,0,0,0,38.2,62.5,88030,12250,100342.5,0,40000,198150,,,1072.72413,149.2893778,1222.776249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.914303622,0,0,0,0,0,0,0.914303622,0,0,Dominican Republic,1990,0.466695063,0.762741099,1250.537744
0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,1.5,200,0,201.5,0,0,0,0.003389831,0.016949153,2.259887006,0,2.276836158,93.7,2.9,29814.8,209.2,30026.9,0,3000,55733.3,1.035661727,0.032482568,324.3835363,2.331178961,,0,0,0,0,0,0,0,0,0,0,0,0,0,72.3,0.3,11096.5,209.2,11306,0,0,9762.3,0.804853378,0.003389831,122.8219654,2.331178961,125.1565341,0,0,0,0,0,0,0,0,0,0,0,0,0,21.1,1.1,18518.3,0,18519.4,0,3000,45971,,,199.3016839,0,199.3138275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.201997092,0,0,0,0.031936593,0,0,0.1700605,0,0,Dominican Republic,2000,0.227418518,0.012143585,326.7471978
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.5,0,301115.7,2198.6,303314.3,0,0,12310.2,0.054366543,0,2904.050363,21.52503895,,0,0,0,0,0,0,0,0,0,0,0,0,0,2.9,0,287001,1185,288186,0,0,10.2,0.028651208,0,2763.471164,11.92030202,2775.391466,0,0,0,0,0,0,0,0,0,0,0,0,0,2.6,0,14114.7,1013.6,15128.3,0,0,12300,,,140.5791989,9.604736931,150.1839358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.018005077,0,0,0,0.0000163,0,0,0.017988804,0,0,Dominican Republic,2010,0.025715335,0,2925.575402
0,0,0,0,0,,,,0,0,0,0,0,4,0,0,0,0,,,,0.207002159,0,0,0,0,4,0,0,0,0,,,,0.207002159,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Ecuador,1920,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,19,0,0,0,0,,,,0.911186201,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,19,0,0,0,0,,,,0.911186201,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Ecuador,1930,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,620,0,10000,0,10000,,,,18.86451301,0,302.0663452,0,302.0663452,620,0,10000,0,10000,,,,18.86451301,0,302.0663452,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Ecuador,1940,0,0,302.0663452
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,12.1,0,0,0,0,,,,0.333324628,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,12.1,0,0,0,0,,,,0.333324628,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Ecuador,1950,0,0,0
0,0,60000,0,60000,0,0,0,0,0,1177.856302,0,1177.856302,0,0,0,0,0,0,0,0,0,0,0,0,0,5,10,67000,40,67050,0,0,410,0.092609743,0.179856115,1309.174588,0.71942446,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7000,40,7050,0,0,410,0,0.179856115,131.3182863,0.71942446,132.2175669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,5,0,0,0,0,0,0,0,0.092609743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.017148702,0,0,0,0.017148702,0,0,0,0,0,Ecuador,1960,0,0,1310.073868
0,0,0,0,0,0,0,0,0,0,0,0,0,4.9,12,6000,4799.2,10811.2,0,0,2800,0.075607971,0.197726149,98.86307464,73.94707112,173.0078719,17.5,12,23300.6,8299.2,31611.8,0,0,2857,0.263234253,0.197726149,378.6849921,126.2545829,,0.1,0,2000,500,2500,0,0,0,0.001391208,0,27.82415136,6.956037841,34.7801892,2,0,15300,3000,18300,0,0,57,0.032954358,0,251.9881614,45.35147392,297.3396354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,10.5,0,0.6,0,0.6,0,0,0,0.153280716,0,0.00960461,0,0.00960461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.042368962,0,0.040370831,0,0.001998131,0,0,0,0,0,Ecuador,1970,0,0,505.1373011
0,0,0,0,0,0,0,0,0,0,0,0,0,501,4.6,0,15000,15004.6,0,0,150000,5.263111858,0.056370042,0,157.5299307,157.5863007,555.2,4.6,94680,15000,109684.6,0,0,174710,5.884186891,0.056370042,1112.035119,157.5299307,,0,0,0,0,0,0,0,0,0,0,0,0,0,34.2,0,94000,0,94000,0,0,24710,0.40011305,0,1104.851504,0,1104.851504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,20,0,600,0,600,0,0,0,0.220961983,0,6.301197227,0,6.301197227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,80,0,0,0,0,0,0.882417825,0,0.882417825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1.202877993,0,1.075621044,0,0.127256949,0,0,0,0,0,Ecuador,1980,0,0,1269.62142
0,0,3400,0,3400,0,0,0,0,0,28.44950213,0,28.44950213,3.7,32,2295,1687.5,4014.5,0,0,700,0.032059057,0.274941504,20.36982091,14.40447291,35.04923532,76.4,47.6,32585.7,10108.4,42741.7,0,1750,79800,0.677262609,0.410386918,290.8232197,92.50843016,,0,0,2200,220,2420,0,0,0,0,0,17.68204469,1.768204469,19.45024916,26.7,9.1,17190.7,8200.9,25400.7,0,250,29100,0.225533814,0.076144256,155.8974382,76.33575279,232.3093352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,46,6.5,7500,0,7506.5,0,1500,50000,0.419669738,0.059301159,68.42441383,0,68.48371499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.374066325,0,0.002774872,0,0.107282022,0.264009431,0,0,0,0,Ecuador,1990,0,0,383.7420368
0,0,10750,0,10750,0,0,170,0,0,72.76296196,0,72.76296196,0,0,0,0,0,0,0,0,0,0,0,0,0,29.2,13.8,101880,1732.9,103626.7,0,0,118147.5,0.220830222,0.107001024,727.3622154,12.16026165,,0.5,1.3,49767,0,49768.3,0,0,16097.5,0.003556441,0.009246746,363.7563986,0,363.7656454,18.3,7,41348,1714.9,43069.9,0,0,101880,0.136924525,0.054382304,290.7245676,12.01831701,302.7972669,6,0,0,0,0,0,0,0,0.045651678,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,4.4,5.5,15,18,38.5,0,0,0,0.034697579,0.043371974,0.118287201,0.141944642,0.303603817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.204920053,0.000271914,0,0,0.168112865,0,0,0,0.036535273,0,Ecuador,2000,0,0,739.629478
0,0,316.5,0,316.5,0,0,0,0,0,2.015025148,0,2.015025148,67.6,640.3,38337.5,1.5,38979.3,334400,56000,200000,0.409982031,3.882353069,232.4683554,0.00863359,236.359342,79.2,654.3,146678.9,51.5,147384.7,334400,56000,201000,0.483221257,3.972827413,903.5883048,0.341722658,,0,0,93254.2,0,93254.2,0,0,0,0,0,575.3405009,0,575.3405009,7.8,7,14553.7,50,14610.7,0,0,1000,0.048985073,0.045237172,92.37085606,0.333089068,92.7491823,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,3.3,0,29.5,0,29.5,0,0,0,0.021022928,0,0.181857411,0,0.181857411,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,7,187.5,0,194.5,0,0,0,0.003231227,0.045237172,1.211709965,0,1.256947137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.201125309,0,0.200124686,0,0.001000623,0,0,0,0,0,Ecuador,2010,0,0,907.9028549
0,0,0,0,0,,,,0,0,0,0,0,1.2,0,0,0,0,,,,0.008421115,0,0,0,0,1.2,0,0,0,0,,,,0.008421115,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Egypt,1920,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Egypt,1930,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Egypt,1940,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,2,2.8,0,0,2.8,,,,0.008612152,0.012057012,0,0,0.012057012,2,2.8,0,0,2.8,,,,0.008612152,0.012057012,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Egypt,1950,0,0,0.012057012
0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,1.6,0,53.5,55.1,0,0,0,0.000593419,0.004747352,0,0.158739578,0.16348693,0.2,1.6,0,53.5,55.1,0,0,0,0.000593419,0.004747352,0,0.158739578,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Egypt,1960,0,0,0.16348693
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.8,0,8100,0,8100,0,0,1400,0.016430485,0,19.16388672,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,6.5,0,6600,0,6600,0,0,1400,0.015720711,0,15.61501881,0,15.61501881,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,1500,0,1500,0,0,0,,,3.548867911,0,3.548867911,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.007768899,0,0,0,0.007768899,0,0,0,0,0,Egypt,1970,0.000709774,0,19.16388672
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1.1,0,0,1.1,0,0,0,0.005770118,0.00211571,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1.1,0,0,1.1,0,0,0,,,0,0,0.00211571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Egypt,1980,0.005770118,0.00211571,0.00211571
0,0,0,0,0,0,0,0,0,0,0,0,0,56.2,999.8,5770,2502,9271.8,0,0,120000,0.095694635,1.703502966,9.835171391,4.264748496,15.80342285,129.2,1006.6,16892,7822,25720.6,0,0,134200,0.214745415,1.71414222,28.03862869,12.96469663,,0,0,0,0,0,0,0,0,0,0,0,0,0,62.4,0.8,11092,5320,16412.8,0,0,14100,0.102006367,0.001393121,18.15335794,8.699948134,26.8546992,3.4,0,30,0,30,0,0,0,0.005677928,0,0.050099364,0,0.050099364,1.8,6,0,0,6,0,0,100,,,0,0,0.009246132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.4,0,0,0,0,0,0,0,0.008592646,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.313928323,0,0.28669734,0,0.027103492,0,0,0.000127492,0,0,Egypt,1990,0.00277384,0.009246132,42.71746754
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,25,0,0,0,0,0,0.034972372,0,0.034972372,13.2,28.9,105,62.5,196.4,0,0,0,0.01701253,0.039750448,0.146883962,0.078482094,,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,7,80,0,87,0,0,0,0.002518011,0.009792264,0.11191159,0,0.121703854,9.8,7.2,0,62.5,69.7,0,0,0,0.012305992,0.009041137,0,0.078482094,0.087523231,1.3,4.2,0,0,4.2,0,0,0,,,0,0,0.005662514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,10.5,0,0,10.5,0,0,0,0.000435844,0.015254533,0,0,0.015254533,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Egypt,2000,0.001752683,0.005662514,0.265116503
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.5,21.3,3610,0,3631.3,0,0,12500,0.025013641,0.023382169,3.874805344,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7,0,350,0,350,0,0,0,0.003262406,0,0.422904508,0,0.422904508,0,0,0,0,0,0,0,0,0,0,0,0,0,8.8,14.7,3260,0,3274.7,0,0,12500,,,3.451900836,0,3.46814347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,6.6,0,0,6.6,0,0,0,0.011899224,0.007139535,0,0,0.007139535,0,0,0,0,0,0,0,0,,,,,,0.003788138,0,0,0,0,0,0,0.003788138,0,0,Egypt,2010,0.00985201,0.016242634,3.898187513
0,0,0,0,0,,,,0,0,0,0,0,40,0,0,0,0,,,,2.437478672,0,0,0,0,240,0,0,0,0,,,,15.14883678,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,200,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,El Salvador,1930,12.71135811,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,El Salvador,1940,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,110,0,0,0,0,,,,4.91510277,0,0,0,0,110,0,0,0,0,,,,4.91510277,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,El Salvador,1950,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,12.5,113.8,9058.2,4800,13972,0,0,3500,0.390502968,3.555139019,282.9803187,149.9531396,436.4885973,12.7,117.8,9518.2,4800,14436,0,0,3660,0.396094245,3.666964571,295.8402571,149.9531396,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,4,460,0,464,0,0,160,,,12.8599385,0,12.97176405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.414007232,0,0.398760425,0,0,0,0,0.015246808,0,0,El Salvador,1960,0.005591278,0.111825552,449.4603614
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,El Salvador,1970,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,112,2000,53000,25250,80250,0,22500,150500,2.241341167,39.9840064,1062.931382,505.0776818,1607.99307,168.5,3800,61906,25250,90956,0,22500,178500,3.423238425,77.98273977,1244.57927,505.0776818,,0,0,0,0,0,0,0,0,0,0,0,0,0,54.3,1800,8906,0,10706,0,0,28000,1.139037332,37.99873338,181.6478875,0,219.6466209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,2.2,0,0,0,0,0,0,0,0.042859926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,4.815460569,0,3.991734699,0,0.82372587,0,0,0,0,0,El Salvador,1980,0,0,1827.639691
0,0,0,0,0,0,0,17100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,9895,200,10095,0,0,56061,0.917252798,0,171.6375732,3.480682214,,0,0,0,0,0,0,0,0,0,0,0,0,0,1.7,0,1495,0,1495,0,0,150,0.029880926,0,26.76002919,0,26.76002919,0,0,0,0,0,0,0,0,0,0,0,0,0,49.1,0,8400,200,8600,0,0,38811,,,144.877544,3.480682214,148.3582262,2.2,0,0,0,0,0,0,0,0.04007286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.512943498,0.156742556,0,0,0.001329293,0,0,0.354871649,0,0,El Salvador,1990,0.847299012,0,175.1182554
0,0,40000,0,40000,0,0,4940,0,0,674.8776784,0,674.8776784,116,812.3,159964.8,0,160777.1,0,29000,184850,1.95711042,13.70504361,2698.195869,0,2711.900913,159.1,812.3,215952.1,1500,218264.4,0,29000,319260,2.660929747,13.70504361,3635.065859,24.35855797,,0.2,0,200,0,200,0,0,0,0.003304693,0,3.304692664,0,3.304692664,8.3,0,733.2,0,733.2,0,0,0,0.136585798,0,12.09877721,0,12.09877721,0,0,0,0,0,0,0,0,0,0,0,0,0,34.5,0,15054.1,1500,16554.1,0,0,129470,,,246.5888418,24.35855797,270.9473997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,0,0,0,0,0,0,0.001645007,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,2.314038745,0.033576777,1.504982653,0,0,0,0,0.775479315,0,0,El Salvador,2000,0.562283829,0,3673.129461
0,0,108661,0,108661,0,0,13700,0,0,1714.096122,0,1714.096122,0.1,0,265.9,0,265.9,0,0,0,0.001549427,0,4.139825421,0,4.139825421,8,2.1,148918,285,149205.1,0,0,115700,0.127828629,0.032916427,2360.307576,4.606085472,,0,0,6307.9,0,6307.9,0,0,0,0,0,100.6686882,0,100.6686882,4,1.4,30708.5,0,30709.9,0,0,100000,0.064162221,0.021803457,494.0481142,0,494.0699177,0,0,0,0,0,0,0,0,0,0,0,0,0,3.9,0.7,2974.7,285,3260.4,0,0,2000,,,47.35482651,4.606085472,51.97202495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.562325805,0.058479962,0,0,0.493004512,0,0,0.010841331,0,0,El Salvador,2010,0.062116981,0.01111297,2364.946578
0,0,390000,0,390000,0,0,0,0,0,17427.67452,0,17427.67452,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,1.6,390000,1565.9,391567.5,0,0,516.5,0.013398839,0.071460473,17427.67452,69.93747209,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,1.6,0,1565.9,1567.5,0,0,516.5,,,0,69.93747209,70.00893256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.110393272,0,0,0,0,0,0,0.110393272,0,0,Eritrea,1990,0.013398839,0.071460473,17497.68345
0,0,170000,0,170000,0,0,0,0,0,5550.114267,0,5550.114267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.3,170700,0,170701.3,0,0,0,0,0.047794118,5575.849561,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.3,700,0,701.3,0,0,0,0,0.047794118,25.73529412,0,25.78308824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Eritrea,2000,0,0,5575.897355
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,10,0,10,0,2600,13000,0.022123894,0,0.737463127,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,10,0,2600,13000,,,0.737463127,0,0.737463127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,0,0,0,0,0,0,0.022123894,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.092209528,0,0,0,0,0,0,0.092209528,0,0,Estonia,2000,0,0,0.737463127
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,0,0,0,0,0,0,0.060468632,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,0,0,0,0,0,0,0.060468632,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Estonia,2010,0,0,0
50,0,0,0,0,0,0,0,8.223684211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.3,0,63200,50,63250,0,0,5415.2,9.008869396,0,9362.962963,7.407407407,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.3,0,63200,50,63250,0,0,5415.2,,,9362.962963,7.407407407,9370.37037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1.095139761,0,0,0,0,0,0,1.095139761,0,0,Eswatini,1980,0.785185185,0,9370.37037
0,0,25000,0,25000,0,0,173.9,0,0,3041.36253,0,3041.36253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25000,0,25000,0,0,173.9,0,0,3041.36253,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.015600567,0.015600567,0,0,0,0,0,0,0,0,Eswatini,1990,0,0,3041.36253
0,0,138000,0,138000,0,0,0,0,0,13497.04331,0,13497.04331,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,166342.5,26,166368.5,0,0,5,0.028827965,0,16313.41363,2.521823472,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27450,0,27450,0,0,5,0,0,2730.277186,0,2730.277186,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,742.5,26,768.5,0,0,0,,,71.71154631,2.521823472,74.23336978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,150,0,150,0,0,0,0.019175455,0,14.38159156,0,14.38159156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.00028767,0,0,0,0.00028767,0,0,0,0,0,Eswatini,2000,0.00965251,0,16315.93546
0,0,72400,0,72400,0,0,0,0,0,6437.422979,0,6437.422979,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1,0,72440,0,72440,0,0,0,0.100456621,0,6441.075947,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1,0,40,0,40,0,0,0,0.100456621,0,3.652968037,0,3.652968037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Eswatini,2010,0,0,6441.075947
200,0,320000,0,320000,0,0,100,0.799552251,0,1214.425697,0,1214.425697,5.4,16.5,0,42,58.5,0,0,32,0.02191175,0.059668029,0,0.151882255,0.211550284,205.5,16.5,321000,642,321658.5,0,0,224,0.821835141,0.059668029,1218.137098,2.37872311,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,1000,600,1600,0,0,92,0.00037114,0,3.711401425,2.226840855,5.93824228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Ethiopia,1960,0,0,1220.575489
10000,0,300000,0,300000,0,0,7600,32.21960885,0,966.5882656,0,966.5882656,0,0,0,0,0,0,0,0,0,0,0,0,0,10008,0,306700,2000,308700,0,0,7600,32.24340188,0,986.7405832,6.037189085,,6.4,0,0,0,0,0,0,0,0.019060667,0,0,0,0,1.6,0,6700,2000,8700,0,0,0,0.004732364,0,20.15231756,6.037189085,26.18950664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Ethiopia,1970,0,0,992.7777723
30036.7,0,2125000,0,2125000,0,0,0,78.7360916,0,5052.110972,0,5052.110972,0,0,0,0,0,0,0,0,0,0,0,0,0,30042.1,0,2132524,2000,2134524,0,0,0,78.7483598,0,5070.19154,4.919807144,,0,0,0,0,0,0,0,0,0,0,0,0,0,5.4,0,7524,2000,9524,0,0,0,0.012268206,0,18.08056775,4.919807144,23.00037489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Ethiopia,1980,0,0,5075.111347
0,0,588620,0,588620,0,0,1560,0,0,924.0228022,0,924.0228022,0,0,0,0,0,0,0,0,0,0,0,0,0,48.2,4.6,658033,15481.9,673519.5,0,0,2230,0.08040277,0.007973884,1056.43895,24.57684185,,0,0,0,0,0,0,0,0,0,0,0,0,0,44.7,3.6,69413,15480,84896.6,0,0,670,0.073795451,0.006161667,132.4161478,24.57339864,156.9957081,1.3,0,0,0,0,0,0,0,0.002620439,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,2.2,1,0,1.9,2.9,0,0,0,0.00398688,0.001812218,0,0.003443214,0.005255432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.029163894,0.019953378,0,0,0.009210515,0,0,0,0,0,Ethiopia,1990,0,0,1081.023766
0,0,2780000,0,2780000,0,0,0,0,0,3585.683192,0,3585.683192,0,0,0,0,0,0,0,0,0,0,0,0,0,144.8,13.6,2903194.9,97.5,2903306,0,0,940,0.188336733,0.017207155,3744.658577,0.12260429,,0.5,0,1100,0,1100,0,0,0,0.000619778,0,1.426755032,0,1.426755032,143.9,13.1,122094.9,81,122189,0,0,940,0.187112953,0.016452153,157.5486298,0.097689228,157.6627712,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0.4,0,0,16.5,16.5,0,0,0,0.000604002,0,0,0.024915062,0.024915062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,0,0.5,0,0,0,0,0.000755002,0,0,0.000755002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.007093663,0,0,0,0.007093663,0,0,0,0,0,Ethiopia,2000,0,0,3744.798389
0,0,1600567.9,0,1600567.9,0,0,140000,0,0,1670.835176,0,1670.835176,0,0,0,0,0,0,0,0,0,0,0,0,0,21.4,10.1,1708067.9,100,1708178,0,0,140223.6,0.020603357,0.009644438,1776.121278,0.096522301,,0,0,0,0,0,0,0,0,0,0,0,0,0,14.7,8,107500,100,107608,0,0,220,0.014522814,0.007721784,105.2861022,0.096522301,105.3903463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,6.7,2.1,0,0,2.1,0,0,3.6,0.006080543,0.001922654,0,0,0.001922654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.21722004,0.216754051,0,0,0.000461717,0.00000427,0,0,0,0,Ethiopia,2010,0,0,1776.227445
0,0,0,0,0,,,,0,0,0,0,0,7575.7,200,15162,2010,17372,,,,1.761604503,0.047728637,3.526202555,0.479672802,4.053603994,7646.3,200,15162,2010,17372,,,,1.778304971,0.047728637,3.526202555,0.479672802,,70,0,0,0,0,,,,0.016558538,0,0,0,0,0.6,0,0,0,0,,,,0.00014193,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Europe,1900,0,0,4.053603994
0,0,0,0,0,,,,0,0,0,0,0,3011.4,0,0,66.9,66.9,,,,0.665937949,0,0,0.014851144,0.014851144,3011.4,0,0,66.9,66.9,,,,0.665937949,0,0,0.014851144,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Europe,1910,0,0,0.014851144
0,0,0,0,0,,,,0,0,0,0,0,181,0,0,0,0,,,,0.038825496,0,0,0,0,302.6,0,600,0,600,,,,0.064436299,0,0.124195437,0,,0,0,0,0,0,,,,0,0,0,0,0,100,0,600,0,600,,,,0.021023391,0,0.124195437,0,0.124195437,0,0,0,0,0,,,,0,0,0,0,0,8.8,0,0,0,0,,,,,,0,0,0,12.8,0,0,0,0,,,,0.002765878,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Europe,1920,0.001821533,0,0.124195437
0,0,0,0,0,,,,0,0,0,0,0,221.2,77.7,2259.4,1231.8,3568.9,,,,0.044113893,0.015574503,0.451480449,0.247152094,0.714207046,244.7,77.7,2259.4,1231.8,3568.9,,,,0.048759373,0.015574503,0.451480449,0.247152094,,0,0,0,0,0,,,,0,0,0,0,0,1,0,0,0,0,,,,0.000190762,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,8.2,0,0,0,0,,,,,,0,0,0,14.3,0,0,0,0,,,,0.002821184,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Europe,1930,0.001633534,0,0.714207046
0,0,0,0,0,,,,0,0,0,0,0,104.7,17.5,1011,3622,4650.5,,,,0.019307858,0.003287667,0.18710567,0.676516384,0.866909721,142.5,29.5,1011,5022,6062.5,,,,0.026371103,0.005562497,0.18710567,0.940609082,,2.6,0,0,1400,1400,,,,0.000490458,0,0,0.264092698,0.264092698,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,24.7,12,0,0,12,,,,,,0,0,0.00227483,2.5,0,0,0,0,,,,0.000462675,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,8,0,0,0,0,,,,0.001467729,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Europe,1940,0.004642384,0.00227483,1.133277249
0,0,0,0,0,,,,0,0,0,0,0,64.4,303.1,2505.6,14274.2,17082.9,,,,0.011341505,0.053419433,0.434289479,2.523522945,3.011231857,777.1,303.1,32578.6,32570.8,65452.5,,,,0.137977601,0.053419433,5.751815075,5.818457124,,0,0,0,0,0,,,,0,0,0,0,0,247.4,0,30035,17750,47785,,,,0.043724456,0,5.310873289,3.19924599,8.510119278,0,0,0,0,0,,,,0,0,0,0,0,2.6,0,0,0,0,,,,,,0,0,0,62.7,0,38,546.6,584.6,,,,0.01103455,0,0.006652307,0.095688189,0.102340496,400,0,0,0,0,,,,0.071435155,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Europe,1950,0.000441935,0,11.62369163
0,0,0,0,0,0,0,0,0,0,0,0,0,146.2,622.7,36392.7,12502,49517.4,0,0,141020,0.023241083,0.098227251,5.607940555,1.942139061,7.648306867,494.8,2152.7,64864.9,146802,213819.6,0,0,392540,0.078734525,0.339053929,10.1165611,22.93441364,,0,0,0,0,0,0,0,0,0,0,0,0,0,110.7,1510,28100,134300,163910,0,0,249260,0.01748592,0.237744253,4.451559407,20.99227458,25.68157824,0,0,0,0,0,0,0,0,0,0,0,0,0,13.1,20,370,0,390,0,0,2260,,,0.056722121,0,0.059804547,221.1,0,2.2,0,2.2,0,0,0,0.035355173,0,0.000339016,0,0.000339016,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5,0,0,0,0,0,0,0,0.000390592,0,0,0,0,1.2,0,0,0,0,0,0,0,0.00019235,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.092714133,0,0.036726272,0,0.055538624,0,0,0.000449237,0,0,Europe,1960,0.002069408,0.003082426,33.39002867
0,0,0,0,0,0,0,0,0,0,0,0,0,285.9,1395.3,121694.2,32700,155789.5,0,0,664160,0.041835464,0.204004646,17.71052937,4.786775522,22.70130954,487.4,1435.3,384334.5,33865,419634.8,0,0,908990,0.072116229,0.209830395,57.16765898,4.956635505,,0.9,2.4,520,0,522.4,0,0,2470,0.000130279,0.000347411,0.077666962,0,0.078014373,127.9,27,261595.5,1165,262787.5,0,0,177340,0.019181947,0.003908371,39.30100944,0.169859982,39.47477779,0,0,0,0,0,0,0,0,0,0,0,0,0,10.4,1.9,520,0,521.9,0,0,53920,,,0.077722861,0,0.077999175,22.3,8.7,4.8,0,13.5,0,0,1100,0.003357722,0.001293653,0.000730341,0,0.002023994,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,10000,0.00604809,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.053311008,0,0.0327151,0.001055631,0.015365077,0.0000495,0,0.003954254,0.000171447,0,Europe,1970,0.001562728,0.000276314,62.33412488
0,0,320000,0,320000,0,0,515500,0,0,44.50667251,0,44.50667251,483.7,962.5,58777,1330,61069.5,0,0,2175050,0.069693071,0.13846282,8.443633685,0.188885011,8.770981516,730.5,1180.5,462823.5,2246.4,466250.4,0,170130,4366650,0.10445856,0.169516388,64.92313278,0.319301875,,0,0,0,0,0,0,0,0,0,0,0,0,0,66.9,165.5,75858,782.4,76805.9,0,3470,835730,0.009488569,0.023649684,10.81300857,0.11148858,10.94814684,0,0,0,0,0,0,0,0,0,0,0,0,0,28.4,7.2,6164,0,6171.2,0,153430,678370,,,0.874292477,0,0.875314192,20,23.5,1200,0,1223.5,0,0,132500,0.002827019,0.003300395,0.169161915,0,0.17246231,0,0,0,0,0,0,0,0,0,0,0,0,0,9.3,21.8,250,0,271.8,0,0,29500,0.00131727,0.003081774,0.035212137,0,0.038293912,122.2,0,574.5,134,708.5,0,13230,0,0.017132838,0,0.081151481,0.018928283,0.100079764,0,0,0,0,0,0,0,0,,,,,,0.107381691,0.011743969,0.055442846,0,0.021715835,0.003195106,0,0.014378935,0,0.000905001,Europe,1980,0.003999793,0.001021715,65.41195104
0,0,601000,0,601000,0,0,1170860,0,0,83.32781401,0,83.32781401,225.6,445,15318.6,6209.8,21973.4,0,2800,1043294.4,0.031021264,0.061346082,2.109024712,0.854682665,3.025053459,621,949.3,1597498.7,38523.8,1636971.8,260000,2657350,9738834.1,0.085478987,0.130724393,220.4824575,5.30025787,,0,0,700,0,700,0,0,1650,0,0,0.096796481,0,0.096796481,91.7,318.3,406385.8,28715.2,435419.3,0,262050,2604051.9,0.012627387,0.04378816,55.90008288,3.950506478,59.89437752,0,0,0,0,0,0,0,0,0,0,0,0,0,100.5,57.2,486721.7,3374,490152.9,260000,2345910,4408554.5,,,67.01805654,0.464136989,67.49006353,74.3,17.5,1587.6,65.9,1671,0,20000,82248.9,0.010228528,0.00240603,0.218633473,0.00907236,0.230111864,0,0,0,0,0,0,0,0,0,0,0,0,0,13.7,4.3,12065,158.9,12228.2,0,0,268544.4,0.00188718,0.00059136,1.660326629,0.021859379,1.682777368,115.2,107,73720,0,73827,0,26590,159630,0.015854194,0.014722762,10.15172274,0,10.1664455,0,0,0,0,0,0,0,0,,,,,,0.101763279,0.012755401,0.010198762,0.001656212,0.027121887,0.000792692,0,0.046312936,0.0000152,0.002910185,Europe,1990,0.013860435,0.007869998,225.9134397
0.2,0,127296.9,0,127296.9,0,0,319770.9,0.0000275,0,17.47563528,0,17.47563528,34.8,152.5,2792.5,9311.9,12256.9,0,29900,494987.2,0.004737943,0.020768836,0.381557911,1.271724463,1.67405121,8290,2104.7,909635.4,15028.4,926768.5,79500,2973950,11662122.2,1.1388524,0.288344939,124.9198957,2.052977867,,0,0,0,0,0,0,0,310,0,0,0,0,0,96.1,161.4,330513.1,4768.8,335443.3,79500,1408650,5434732.4,0.013185375,0.022182406,45.37989024,0.651676171,46.05374882,0,0,0,0,0,0,0,0,0,0,0,0,0,48.4,209.2,323933.8,387.7,324530.7,0,1481100,3169640,,,44.58418423,0.053028447,44.66590794,20.1,2,283.1,0,285.1,0,19500,51000,0.002765625,0.000274617,0.038974604,0,0.039249221,0,0,0,0,0,0,0,0,0,0,0,0,0,19.6,38,115680.8,560,116278.8,0,12800,803836.7,0.002682899,0.005206635,15.80717312,0.076548786,15.88892854,8070.8,1541.6,9135.2,0,10676.8,0,22000,1387845,1.108816784,0.211217188,1.252480336,0,1.463697524,0,0,0,0,0,0,0,0,,,,,,0.085288342,0.002316731,0.003218682,0.010463164,0.04478366,0.000506042,0,0.019017416,0.00000313,0.004979516,Europe,2000,0.006636228,0.028695257,127.2612185
0,0,580,0,580,0,0,772000,0,0,0.078400407,0,0.078400407,42.1,267.2,35597.9,3047,38912.1,0,278900,2293326,0.005652529,0.035911567,4.776427016,0.412327104,5.224665687,6678.1,2234.7,509204.9,4560.6,516000.2,200575.1,2408200,10314551,0.90479552,0.301268582,68.66462683,0.616481871,,0,2.8,30,0,32.8,0,0,11500,0,0.000374825,0.004015986,0,0.004390812,88.9,645.9,337635.4,1047.6,339328.9,144075.1,1070686.6,4811054.3,0.011987615,0.087163293,45.52273218,0.141449425,45.7513449,0.8,0,20,0,20,0,0,0,0.000107238,0,0.002680951,0,0.002680951,29.7,135.2,72656.4,4.6,72796.2,0,1027713.4,2070028.6,,,9.820617451,0.000620686,9.839394396,0.4,0.1,15,0,15.1,0,0,0,0.000054,0.0000135,0.002005934,0,0.002019476,0,0,0,0,0,0,0,0,0,0,0,0,0,32.3,357.1,2926.7,461.4,3745.2,56500,30900,303382,0.004340779,0.048105153,0.393287025,0.062084656,0.503476834,6483.9,826.4,59743.5,0,60569.9,0,0,53260.1,0.878655884,0.111543942,8.064459882,0,8.176003825,0,0,0,0,0,0,0,0,,,,,,0.049437322,0.003733488,0.011085075,0.000263676,0.02280922,0,0,0.009982376,0.0000522,0.001511248,Europe,2010,0.003997474,0.018156259,69.58237728
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,20,0,0,0,0,,,,10.90845624,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,20,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Fiji,1930,10.90845624,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0.6,0,0,0,0,,,,0.264282253,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0.6,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Fiji,1940,0.264282253,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,2.3,80,0,0,80,,,,0.754098361,26.2295082,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,2.3,80,0,0,80,,,,,,0,0,26.2295082,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Fiji,1950,0.754098361,26.2295082,26.2295082
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,1800,1000,2800,0,0,110,0.065276397,0,392.9008334,221.72949,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,800,1000,1800,0,0,110,0.022172949,0,177.383592,221.72949,399.113082,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,1000,0,1000,0,0,0,,,215.5172414,0,215.5172414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.078553058,0,0,0,0.078553058,0,0,0,0,0,Fiji,1960,0.043103448,0,614.6303234
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.5,30,16975,1500,18505,0,0,2350,1.9723206,4.823151125,3050.758811,241.1575563,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.5,30,16975,1500,18505,0,0,2350,,,3050.758811,241.1575563,3296.739518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.725176723,0,0,0,0,0,0,0.725176723,0,0,Fiji,1970,1.9723206,4.823151125,3296.739518
0,0,3100,0,3100,0,0,3000,0,0,452.5547445,0,452.5547445,0,0,0,0,0,0,0,0,0,0,0,0,0,9,26.4,61820.1,700,62546.5,0,6840,21950.7,1.294235197,4.141387436,8840.049294,110.2362205,,0,0,0,0,0,0,0,0,0,0,0,0,0,2.9,0,21500,0,21500,0,0,1540,0.402186945,0,2990.264256,0,2990.264256,0,0,0,0,0,0,0,0,0,0,0,0,0,6.1,26.4,37220.1,700,37946.5,0,6840,17410.7,,,5397.230294,110.2362205,5511.607902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1.891267533,0.267116068,0,0,0.119358692,0,0,1.504792773,0,0,Fiji,1980,0.892048252,4.141387436,8954.426902
0,0,26345.5,0,26345.5,0,0,0,0,0,3293.1875,0,3293.1875,0,0,0,0,0,0,0,0,0,0,0,0,0,5.9,0.3,42195.5,1477.2,43673,0,0,14210,0.755728442,0.039735099,5392.112642,195.5877062,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.9,0.3,15850,1477.2,17327.5,0,0,14210,,,2098.925142,195.5877062,2294.552584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.843702244,0,0,0,0,0,0,0.843702244,0,0,Fiji,1990,0.755728442,0.039735099,5587.740084
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,5136.2,0,5136.2,0,0,15869.9,0.844355092,0,621.0619017,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,2.6,0,1228,0,1228,0,0,8074.7,0.309916561,0,144.412385,0,144.412385,0,0,0,0,0,0,0,0,0,0,0,0,0,4.4,0,3908.2,0,3908.2,0,0,7795.2,,,476.6495168,0,476.6495168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.540392239,0,0,0,0.261801016,0,0,0.278591223,0,0,Fiji,2000,0.534438531,0,621.0619017
0,0,6700,0,6700,0,0,0,0,0,771.0011507,0,771.0011507,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4,14.4,86644,0,86658.4,0,5000,79682.7,0.849289585,1.651376147,9920.336036,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5,0,1954.5,0,1954.5,0,0,8900,0.173410405,0,225.9537572,0,225.9537572,0,0,0,0,0,0,0,0,0,0,0,0,0,5.9,14.4,77989.5,0,78003.9,0,5000,70782.7,,,8923.381128,0,8925.032504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1.695247257,0,0,0,0.22406777,0,0,1.471179487,0,0,Fiji,2010,0.67587918,1.651376147,9921.987412
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.000707024,0,0,0,0,0,0,0.000707024,0,0,Finland,1990,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,40,0,0,0,0,0,0.760600875,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,40,0,0,0,0,0,0.760600875,0,0.760600875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Finland,2000,0,0,0.760600875
0,0,0,0,0,,,,0,0,0,0,0,4.6,0,0,0,0,,,,0.011162455,0,0,0,0,4.6,0,0,0,0,,,,0.011162455,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,France,1900,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,France,1910,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,2.8,0,0,0,0,,,,0.006845829,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,2.8,0,0,0,0,,,,0.006845829,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,France,1920,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,7,0,0,0,0,,,,0.016749486,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,7,0,0,0,0,,,,0.016749486,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,France,1930,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,8,0,0,0,0,,,,0.019244822,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,8,0,0,0,0,,,,0.019244822,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,France,1940,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,3.5,0,0,0,0,,,,0.007837166,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,3.5,0,0,0,0,,,,0.007837166,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,France,1950,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,8,0,102,110,0,0,0,0.000201406,0.016112465,0,0.205433929,0.221546394,5,8,0,102,110,0,0,2000,0.010311977,0.016112465,0,0.205433929,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.8,0,0,0,0,0,0,2000,,,0,0,0,2.1,0,0,0,0,0,0,0,0.004538872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.001681054,0,0,0,0,0,0,0.001681054,0,0,France,1960,0.005571699,0,0.221546394
0,0,0,0,0,0,0,0,0,0,0,0,0,1.1,0.2,0,0,0.2,0,0,0,0.002050823,0.000372877,0,0,0.000372877,15.4,3.9,2600,0,2603.9,0,0,0,0.02995563,0.007661507,4.885638564,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,2.9,0,2600,0,2600,0,0,0,0.005447947,0,4.885638564,0,4.885638564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,11.4,3.7,0,0,3.7,0,0,0,0.022456859,0.00728863,0,0,0.00728863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,France,1970,0,0,4.893300071
0,0,0,0,0,0,0,160000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15.2,19.3,630,0,649.3,0,13230,475950,0.02761543,0.035102727,1.145937376,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,5.7,2.5,430,0,432.5,0,0,110950,0.010306779,0.004608094,0.785868963,0,0.790477057,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,205000,,,0,0,0,3,2,0,0,2,0,0,0,0.005502248,0.003657979,0,0,0.003657979,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5,14.8,200,0,214.8,0,0,0,0.004548541,0.026836654,0.360068413,0,0.386905067,0,0,0,0,0,0,13230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.055582596,0.015606559,0,0,0.015793969,0,0,0.024182068,0,0,France,1980,0.007257861,0,1.181040103
0,0,0,0,0,0,0,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.7,8.6,352653,26.6,352688.2,245000,782450,1770880,0.063443429,0.014757621,600.7806723,0.045312074,,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0.5,569,20,589.5,0,73200,120600,0.010301618,0.000851731,0.973428401,0.034069229,1.00834936,0,0,0,0,0,0,0,0,0,0,0,0,0,22.5,5.1,350939,0,350944.1,245000,709250,1571001,,,597.8408822,0,597.8496491,3.4,2.1,20,6,28.1,0,0,1079,0.005884317,0.003593183,0.034069229,0.010220769,0.04788318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.9,125,0.6,126.5,0,0,0,0,0.001545834,0.214699164,0.001022077,0.217267074,4.8,0,1000,0,1000,0,0,77200,0.008346886,0,1.717593308,0,1.717593308,0,0,0,0,0,0,0,0,,,,,,0.122688516,0.0000688,0,0.006082188,0.008640249,0.0000723,0,0.107824962,0,0,France,1990,0.038910608,0.008766873,600.840742
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2101.2,42.5,6081.1,80,6203.6,0,368800,1076340,3.482543227,0.069646422,10.12077469,0.130338756,,0,0,0,0,0,0,0,0,0,0,0,0,0,4.4,1.3,5366.1,0,5367.4,0,140800,282235,0.007348923,0.002201777,8.949956239,0,8.952158016,0,0,0,0,0,0,0,0,0,0,0,0,0,6.8,20.8,415,80,515.8,0,228000,353105,,,0.672909667,0.130338756,0.83805119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.7,0.4,300,0,300.4,0,0,1000,0.001157073,0.000663878,0.497908783,0,0.498572661,2089.3,20,0,0,20,0,0,440000,3.462835275,0.031977999,0,0,0.031977999,0,0,0,0,0,0,0,0,,,,,,0.054144418,0,0,0.023906807,0.017075214,0,0,0.013116863,0,0.0000455,France,2000,0.011201955,0.034802767,10.32075987
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,75,0,75.4,0,0,0,0,0.000614156,0.115154307,0,0.115768463,490.5,25.9,52857.5,0,52883.4,0,625500,1162100,0.759022401,0.040277412,83.94030723,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,9.5,10.2,1371,0,1381.2,0,366900,649400,0.014831663,0.015712269,2.132044964,0,2.147757232,0,0,0,0,0,0,0,0,0,0,0,0,0,8.2,14.1,50211.5,0,50225.6,0,258600,512700,,,79.84248414,0,79.8645845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2,1200,0,1201.2,0,0,0,0,0.001850624,1.850623814,0,1.852474438,472.8,0,0,0,0,0,0,0,0.731277334,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.04440229,0,0,0,0.02512499,0,0,0.0192773,0,0,France,2010,0.012913404,0.022100363,83.98058464
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7000,7000,0,0,0,0,0,0,4929.577465,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7000,7000,0,0,0,0,0,0,4929.577465,4929.577465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,French Guiana,1990,0,0,4929.577465
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.5,0,0,0.5,0,0,0,0.613496933,0.306748466,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,1,0.5,0,0,0.5,0,0,0,0.613496933,0.306748466,0,0,0.306748466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,French Guiana,2000,0,0,0.306748466
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,French Guiana,2010,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,French Polynesia,1950,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,French Polynesia,1960,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,French Polynesia,1970,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.7,5,500,0,505,0,0,3700,0.953921035,2.994011976,299.4011976,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.7,5,500,0,505,0,0,3700,,,299.4011976,0,302.3952096,1,0,0,0,0,0,0,0,0.534759358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.276967816,0,0,0,0,0,0,0.276967816,0,0,French Polynesia,1980,0.419161677,2.994011976,302.3952096
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.3,1.1,50,0,51.1,0,0,0,0.560344828,0.474137931,21.55172414,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,1.3,1.1,50,0,51.1,0,0,0,0.560344828,0.474137931,21.55172414,0,22.02586207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,French Polynesia,1990,0,0,22.02586207
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,French Polynesia,2000,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,1.5,790,50,841.5,0,0,1300,0.037593985,0.558461371,290.8630271,18.11594203,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,450,50,500.4,0,0,200,0,0.144927536,163.0434783,18.11594203,181.3043478,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,1.1,340,0,341.1,0,0,1100,,,127.8195489,0,128.2330827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,French Polynesia,2010,0.037593985,0.413533835,309.5374305
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,1000,0,0,0,0,0,111.3585746,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,1000,0,0,0,0,0,111.3585746,0,111.3585746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Gabon,1980,0,0,111.3585746
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Gabon,1990,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,80,0,0,0,0,0,0,5.098789038,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,80,0,0,0,,,0,5.098789038,5.098789038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Gabon,2000,0,0,5.098789038
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,8137.5,0,8137.5,0,0,0,0.005714286,0,466.5650246,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,7784.5,0,7784.5,0,0,0,0.005714286,0,444.8285714,0,444.8285714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,0,353,0,0,0,,,21.7364532,0,21.7364532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Gabon,2010,0,0,466.5650246
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Gambia,1910,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Gambia,1920,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Gambia,1930,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Gambia,1940,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Gambia,1950,0,0,0
0,0,33000,0,33000,0,0,70,0,0,7426.170141,0,7426.170141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33000,0,33000,0,0,70,0,0,7426.170141,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.165753646,0.165753646,0,0,0,0,0,0,0,0,Gambia,1960,0,0,7426.170141
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,500,500,0,0,0,0,0,0,98.61932939,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,500,500,0,0,0,0,0,0,98.61932939,98.61932939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Gambia,1970,0,0,98.61932939
0,0,50000,0,50000,0,0,0,0,0,7849.293564,0,7849.293564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50000,0,50000,0,0,0,0,0,7849.293564,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Gambia,1980,0,0,7849.293564
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.3,0,3100,500,3600,0,0,0,0.415035239,0,245.7973074,39.15426782,,0,0,0,0,0,0,0,0,0,0,0,0,0,5.3,0,3100,500,3600,0,0,0,0.415035239,0,245.7973074,39.15426782,284.9515752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Gambia,1990,0,0,284.9515752
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1,13.1,3148.3,40,3201.4,0,0,0,0.070138282,0.879197475,196.3115532,2.368265246,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,0,1480.8,40,1520.8,0,0,0,0.036088573,0,85.61003232,2.368265246,87.97829757,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,13.1,1667.5,0,1680.6,0,0,0,,,110.7015208,0,111.5807183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Gambia,2000,0.034049709,0.879197475,199.5590159
0,0,49110,0,49110,0,0,0,0,0,2549.211969,0,2549.211969,0,0,0,0,0,0,0,0,0,0,0,0,0,2.1,10.1,56836.1,0,56846.2,0,0,0,0.104514549,0.430153322,2937.527843,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,1.7,0,6226.1,0,6226.1,0,0,0,0.087478774,0,324.4317169,0,324.4317169,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,10.1,1500,0,1510.1,0,0,0,,,63.88415673,0,64.31431005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Gambia,2010,0.017035775,0.430153322,2937.957996
0,0,0,0,0,0,0,0,0,0,0,0,0,0.9,21,219,135,375,0,0,0,0.016774631,0.391085223,4.075935232,2.512562814,6.979583269,1.7,21,279,155,455,0,0,3170,0.033646273,0.391085223,5.315771798,2.937191264,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,60,20,80,0,0,3170,0.016871642,0,1.239836566,0.42462845,1.664465016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.092200127,0,0,0,0.092200127,0,0,0,0,0,Georgia,1990,0,0,8.644048285
0,0,69600,0,69600,0,0,20000,0,0,1595.598349,0,1595.598349,0.6,7.6,2530,108.6,2646.2,0,0,35000,0.014087814,0.178924473,59.98619036,2.549894341,62.71500918,0.7,7.6,72530,117.6,72655.2,0,0,55215.6,0.016454118,0.178924473,1665.049247,2.762861686,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,310,9,319,0,0,215.6,0.002366304,0,7.370223187,0.212967345,7.583190532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,90,0,0,0,,,2.094484524,0,2.094484524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1.68904781,0.654134467,1.030706813,0,0.00420653,0,0,0,0,0,Georgia,2000,0,0,1667.991034
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.2,3.6,15705.1,600,16308.7,0,0,11700,0.128859387,0.088582677,387.3876579,14.76377953,,0,0,0,0,0,0,0,0,0,0,0,0,0,5.2,1.8,15530.1,0,15531.9,0,0,2600,0.128859387,0.044291339,383.0656031,0,383.1098944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,175,600,776.8,0,0,9100,,,4.322054828,14.76377953,19.13012569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.072390317,0,0,0,0.017200012,0,0,0.055190305,0,0,Georgia,2010,0,0.044291339,402.2400201
0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,2.5,150,0,152.5,0,0,5000,0.000125058,0.003126446,0.187586759,0,0.190713205,15.7,4,23670,0,23674,0,429830,1020013,0.019552979,0.00496913,29.24362207,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,1.4,0,20520,0,20520,0,29000,181360,0.001729147,0,25.35867646,0,25.35867646,0,0,0,0,0,0,0,0,0,0,0,0,0,10.7,1.5,3000,0,3001.5,0,400830,833030,,,3.697358853,0,3.699201537,0.5,0,0,0,0,0,0,623,0.000614326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0.003685549,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.051175495,0,0.000234569,0,0.008409644,0.0000284,0,0.042502889,0,0,Germany,1990,0.013398899,0.001842684,29.2485912
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,15,0,800,1200,0,0,0.018371996,0,0.018371996,949.7,72.4,33160,0,33232.4,0,813800,2510200,1.163691866,0.088858022,40.66967491,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,2.9,10.8,33145,0,33155.8,0,185000,1184000,0.00355704,0.013245845,40.65130291,0,40.66454876,0,0,0,0,0,0,0,0,0,0,0,0,0,8.5,45.1,0,0,45.1,0,612000,1130000,,,0,0,0.055392331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,938.3,16.5,0,0,16.5,0,16000,195000,1.149696779,0.020219845,0,0,0.020219845,0,0,0,0,0,0,0,0,,,,,,0.102143393,0,0.0000427,0.007664418,0.056907962,0,0,0.037528297,0,0,Germany,2000,0.010438047,0.055392331,40.75853293
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.9,3.9,695,0,698.9,0,777000,2258747.5,0.007219511,0.004716316,0.85485844,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,0,695,0,695,0,263000,1490000,0.002210282,0,0.85485844,0,0.85485844,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3.9,0,0,3.9,0,514000,768747.5,,,0,0,0.004716316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1,0,0,0,0,0,0,0,0.001343653,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.061092932,0,0,0,0.040326908,0,0,0.020766023,0,0,Germany,2010,0.003665576,0.004716316,0.859574756
0,0,0,0,0,,,,0,0,0,0,0,2.2,13,0,750,763,,,,0.057516641,0.339871058,0,19.60794566,19.94781672,2.2,13,0,750,763,,,,0.057516641,0.339871058,0,19.60794566,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Ghana,1930,0,0,19.94781672
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Ghana,1940,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Ghana,1950,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2500,0,2500,0,0,7470,0,0,30.04085556,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2500,0,2500,0,0,7470,0,0,30.04085556,0,30.04085556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.448134528,0,0,0,0.448134528,0,0,0,0,0,Ghana,1960,0,0,30.04085556
0,0,1200,0,1200,0,0,10,0,0,13.37345369,0,13.37345369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1200,0,1200,0,0,10,0,0,13.37345369,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.000413718,0.000413718,0,0,0,0,0,0,0,0,Ghana,1970,0,0,13.37345369
0,0,1250000,0,1250000,0,0,0,0,0,11306.07815,0,11306.07815,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1,0,1250430,0,1250430,0,0,0,0.00800594,0,11309.2023,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.7,0,280,0,280,0,0,0,0.004877029,0,1.950811677,0,1.950811677,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,150,0,150,0,0,0,0.003128911,0,1.173341677,0,1.173341677,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Ghana,1980,0,0,11309.2023
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20.2,2.9,279157.3,23300,302460.2,0,0,3350,0.116153823,0.015415692,1764.052518,135.0922472,,0,0,0,0,0,0,0,0,0,0,0,0,0,20.2,2.9,279157.3,23300,302460.2,0,0,3350,0.116153823,0.015415692,1764.052518,135.0922472,1899.160181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.046538815,0,0,0,0.046538815,0,0,0,0,0,Ghana,1990,0,0,1899.160181
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.2,2.5,69134.5,500,69637,0,0,0,0.048984248,0.012653743,306.8974426,2.530748595,,0,0,0,0,0,0,0,0,0,0,0,0,0,11.2,2.5,69134.5,500,69637,0,0,0,0.048984248,0.012653743,306.8974426,2.530748595,309.4408449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Ghana,2000,0,0,309.4408449
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20.9,4.3,126228.9,500,126733.2,0,0,1200,0.0764786,0.015093682,438.928137,1.795396603,,0,0,0,0,0,0,0,0,0,0,0,0,0,18.9,3.1,126228.9,500,126732,0,0,1200,0.069610704,0.010972944,438.928137,1.795396603,440.7345066,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1.2,0,0,1.2,0,0,0,,,0,0,0.004120738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.002526374,0,0,0,0.002526374,0,0,0,0,0,Ghana,2010,0.006867896,0.004120738,440.7386273
0,0,0,0,0,,,,0,0,0,0,0,0.4,0,162,0,162,,,,0.007855551,0,3.181497979,0,3.181497979,0.4,0,162,0,162,,,,0.007855551,0,3.181497979,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Greece,1900,0,0,3.181497979
0,0,0,0,0,,,,0,0,0,0,0,1.4,0,0,0,0,,,,0.025692033,0,0,0,0,1.4,0,0,0,0,,,,0.025692033,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Greece,1910,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,10.3,0,0,0,0,,,,0.166516505,0,0,0,0,10.3,0,0,0,0,,,,0.166516505,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Greece,1920,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,15.1,66.9,965.4,1231.8,2264.1,,,,0.232377048,1.029538047,14.85674186,18.956427,34.8427069,17.3,66.9,965.4,1231.8,2264.1,,,,0.267087443,1.029538047,14.85674186,18.956427,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,2.2,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Greece,1930,0.034710395,0,34.8427069
0,0,0,0,0,,,,0,0,0,0,0,0.5,6.5,1011,3622,4639.5,,,,0.006576814,0.085021796,13.14609788,47.97538679,61.20650646,0.5,6.5,1011,3622,4639.5,,,,0.006576814,0.085021796,13.14609788,47.97538679,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Greece,1940,0,0,61.20650646
0,0,0,0,0,,,,0,0,0,0,0,59.3,286.1,2505.6,14024.2,16815.9,,,,0.749942478,3.6212791,31.27699413,177.8764408,212.774714,59.3,286.1,2505.6,14024.2,16815.9,,,,0.749942478,3.6212791,31.27699413,177.8764408,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Greece,1950,0,0,212.774714
0,0,0,0,0,0,0,0,0,0,0,0,0,10,70,7652.7,360,8082.7,0,0,3160,0.117883173,0.826282155,90.15810393,4.201190337,95.18557642,14.3,70,7652.7,360,8082.7,0,0,3160,0.169603164,0.826282155,90.15810393,4.201190337,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.3,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.037340256,0,0.037340256,0,0,0,0,0,0,0,Greece,1960,0.05171999,0,95.18557642
0,0,0,0,0,0,0,0,0,0,0,0,0,5,10,60000,0,60010,0,0,25000,0.053253808,0.106507615,639.0456918,0,639.1521994,9.2,10,60160,0,60170,0,0,27800,0.098190153,0.106507615,640.774487,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,4.2,0,160,0,160,0,0,2800,0.044936345,0,1.728795246,0,1.728795246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.064211279,0,0.056471391,0,0.007739888,0,0,0,0,0,Greece,1970,0,0,640.8809946
0,0,0,0,0,0,0,0,0,0,0,0,0,4.5,74.9,12593,0,12667.9,0,0,165000,0.045700148,0.760580672,128.1868569,0,128.9474375,118.4,74.9,12613,0,12687.9,0,0,200000,1.178443448,0.760580672,128.3885511,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.8,0,0,0,0,0,0,35000,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5,0,20,0,20,0,0,0,0.015178782,0,0.201694232,0,0.201694232,107.6,0,0,0,0,0,0,0,1.069836567,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.358261865,0,0.304951075,0,0,0,0,0.05331079,0,0,Greece,1980,0.047727951,0,129.1491318
0,0,0,0,0,0,0,100000,0,0,0,0,0,19.7,224.2,13913.1,640.8,14778.1,0,20,507270,0.179987236,2.042045396,126.8109133,5.960579102,134.8135378,24.5,225.6,14303.1,670.8,15199.5,0,20,734540,0.224669106,2.055073499,130.4318984,6.23405221,,0,0,0,0,0,0,0,0,0,0,0,0,0,2.6,0,190,0,190,0,0,59770,0.024138784,0,1.759827498,0,1.759827498,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.4,1.4,200,30,231.4,0,0,67500,0.012762078,0.013028103,1.86115764,0.273473108,2.147658852,0.5,0,0,0,0,0,0,0,0.00484731,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.556014415,0.102154341,0.358409572,0,0.048714412,0,0,0,0,0.04673609,Greece,1990,0.002933698,0,138.7210241
0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,30.7,451.8,0,482.5,0,0,0,0.001811594,0.277161561,4.086311968,0,4.363473529,14.2,58.2,1960.6,415,2433.8,0,0,269865.9,0.127781654,0.525005191,17.65846837,3.736585632,,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5,0,1218,0,1218,0,0,60565.9,0.013474628,0,10.95073793,0,10.95073793,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,1.2,60,0,61.2,0,0,34000,,,0.536432722,0,0.547164255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.7,8.7,230.8,415,654.5,0,0,175000,0.069272357,0.078295999,2.084985748,3.736585632,5.899867379,4.3,17.6,0,0,17.6,0,0,300,0.038752322,0.158816098,0,0,0.158816098,0,0,0,0,0,0,0,0,,,,,,0.099233109,0,0,0.000230532,0.029921198,0,0,0.01413598,0,0.0549454,Greece,2000,0.004470752,0.010731533,21.9200592
0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,15.6,7772,0,7787.6,0,800,62800,0.005641966,0.147309696,72.63712955,0,72.78443925,15,90.3,8888.8,0,8979.1,0,800,68400,0.142192842,0.857696269,83.20854769,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,3.2,2.4,705,0,707.4,0,0,5600,0.030190268,0.022707919,6.657713519,0,6.680421438,0,0,0,0,0,0,0,0,0,0,0,0,0,0.7,12.3,0,0,12.3,0,0,0,,,0,0,0.117444858,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,60,411.8,0,471.8,0,0,0,0.095038966,0.570233796,3.913704619,0,4.483938415,0.5,0,0,0,0,0,0,0,0.004637789,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.029595489,0,0.0266899,0,0.002905589,0,0,0,0,0,Greece,2010,0.006683854,0.117444858,84.06624396
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,0,0,0,0,0,0,0,0.64516129,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Grenada,1960,0.64516129,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,470,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Grenada,1970,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,530,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,530,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.477906056,0,0,0,0,0,0,0.477906056,0,0,Grenada,1980,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,121,0,0,550,0,0,124.754902,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,121,0,0,550,,,124.754902,0,124.754902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.114105666,0,0,0,0,0,0,0.114105666,0,0,Grenada,1990,0,0,124.754902
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.9,0,6000,0,6000,0,0,88900,3.75,0,5769.230769,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.9,0,6000,0,6000,0,0,88900,,,5769.230769,0,5769.230769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,14.83846455,0,0,0,0,0,0,14.83846455,0,0,Grenada,2000,3.75,0,5769.230769
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Grenada,2010,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,200,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,200,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Guadeloupe,1920,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Guadeloupe,1930,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Guadeloupe,1940,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Guadeloupe,1950,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.9,10,2000,0,2010,0,0,7000,1.292645104,3.378378378,665.7066903,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.9,10,2000,0,2010,0,0,7000,,,665.7066903,0,669.0850687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Guadeloupe,1960,1.292645104,3.378378378,669.0850687
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,7500,0,7500.3,0,0,10000,0,0.090909091,2272.727273,0,,0,0.3,7500,0,7500.3,0,0,0,0,0.090909091,2272.727273,0,2272.818182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10000,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Guadeloupe,1970,0,0,2272.818182
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,8.4,0,1100,1108.4,0,0,5000,0.131233596,2.204724409,0,288.7139108,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,8.4,0,1100,1108.4,0,0,5000,,,0,288.7139108,290.9186352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Guadeloupe,1980,0.131233596,2.204724409,290.9186352
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,4.9,40,45,89.9,0,0,5500,0.095011876,1.163895487,9.501187648,10.6888361,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,4.9,40,45,89.9,0,0,5500,,,9.501187648,10.6888361,21.35391924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Guadeloupe,1990,0.095011876,1.163895487,21.35391924
0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,1.3,10,4,15.3,0,0,0,0.024630542,0.320197044,2.463054187,0.985221675,3.768472906,0.1,1.3,10,4,15.3,0,12500,30000,0.024630542,0.320197044,2.463054187,0.985221675,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12500,30000,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Guadeloupe,2000,0,0,3.768472906
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0.2,8000,0,8000.2,0,0,12000,0.1,0.05,2000,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0.2,8000,0,8000.2,0,0,12000,,,2000,0,2000.05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Guadeloupe,2010,0.1,0.05,2000.05
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,0,0,0,0,0,0,25000,0.857142857,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,0,0,0,0,0,0,25000,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Guam,1960,0.857142857,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0,0,0,0,12000,0.947368421,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0,0,0,0,12000,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Guam,1970,0.947368421,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.2,50.2,0,0,14.5,0,0,0,41.14754098,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.2,50.2,0,0,14.5,,,0,41.14754098,41.14754098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Guam,1980,0,0,41.14754098
0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.1,0,0,7.1,0,5000,12000,0,5.071428571,0,0,5.071428571,0.1,63.3,140,1000,1203.3,0,5000,62000,0.072992701,45.9668057,93.33333333,698.296837,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,56.2,140,1000,1196.2,0,0,50000,,,93.33333333,698.296837,832.5255474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Guam,1990,0.072992701,40.89537713,837.596976
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,1034.4,510,1544.4,0,0,13100,0.126985407,0,658.7325647,324.8407643,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,1034.4,510,1544.4,0,0,13100,,,658.7325647,324.8407643,983.573329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.385613522,0,0,0,0,0,0,0.385613522,0,0,Guam,2000,0.126985407,0,983.573329
0,0,0,0,0,,,,0,0,0,0,0,200,0,0,0,0,,,,14.1150034,0,0,0,0,900,0,0,0,0,,,,63.51751531,0,0,0,,700,0,0,0,0,,,,49.40251191,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Guatemala,1900,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,265,0,0,0,0,,,,16.01028525,0,0,0,0,265,0,0,0,0,,,,16.01028525,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Guatemala,1910,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Guatemala,1920,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Guatemala,1930,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,4000,0,0,0,0,,,,134.8379905,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,4000,0,0,0,0,,,,134.8379905,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Guatemala,1940,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Guatemala,1950,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.9,0,1020,0,1020,0,0,1500,0.492133187,0,18.66081229,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.9,0,1020,0,1020,0,0,1500,,,18.66081229,0,18.66081229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.087443167,0,0,0,0,0,0,0.087443167,0,0,Guatemala,1960,0.492133187,0,18.66081229
0,0,0,0,0,0,0,0,0,0,0,0,0,2300,7704,375200,116600,499504,0,0,100000,34.85376572,116.7406366,5685.493717,1766.934384,7569.168737,2300.5,7704,375300,116600,499604,0,0,100250,34.86195573,116.7406366,5687.131718,1766.934384,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,100,0,100,0,0,250,0.008190008,0,1.638001638,0,1.638001638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,2.300523852,0,2.290793197,0,0.009730655,0,0,0,0,0,Guatemala,1970,0,0,7570.806739
0,0,7300,0,7300,0,0,0,0,0,84.50052089,0,84.50052089,0.5,0,450,505,955,0,0,0,0.00565419,0,5.348243633,6.000371639,11.34861527,71.9,30.6,11950,505,12485.6,0,0,10000,0.923865541,0.392299016,141.9474047,6.000371639,,0,3.5,950,0,953.5,0,0,0,0,0.040513948,11.66287896,0,11.70339291,71.4,27.1,3250,0,3277.1,0,0,10000,0.918211351,0.351785067,40.43576125,0,40.78754632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.11471837,0,0,0,0.11471837,0,0,0,0,0,Guatemala,1980,0,0,148.3400754
0,0,0,0,0,0,0,1000,0,0,0,0,0,1.6,13,2400.5,3.5,2417,0,0,0,0.016519649,0.130034452,25.27757283,0.030736805,25.43834409,52.7,19.3,14603.1,405.5,15027.9,0,0,75950,0.481622768,0.190063617,136.0150559,3.58420781,,0,0,634.3,0,634.3,0,0,0,0,0,6.3866,0,6.3866,5.3,5.5,998.3,402,1405.8,0,0,100,0.050154023,0.052843966,9.416448026,3.553471004,13.022763,2.3,0,0,0,0,0,0,0,0.024253928,0,0,0,0,38.4,0,10570,0,10570,0,0,74850,,,94.93443506,0,94.93443506,5.1,0.8,0,0,0.8,0,0,0,0.04580564,0.007185198,0,0,0.007185198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.394223748,0.00770224,0,0,0.000545899,0,0,0.385975609,0,0,Guatemala,1990,0.344889528,0,139.7893273
4.1,0,261359.6,0,261359.6,0,0,1400,0.034381551,0,1841.556549,0,1841.556549,0.6,0.2,15,0,15.2,0,0,5,0.005031447,0.001677149,0.125786164,0,0.127463312,189.3,48.4,341955.7,170.1,342174.2,0,0,100255,1.451210017,0.374739259,2452.688877,1.283577558,,0,0,80,0,80,0,0,0,0,0,0.68663634,0,0.68663634,7.7,3.6,31163.6,25,31192.2,0,0,0,0.060347224,0.030898635,233.1342952,0.214573856,233.3797677,3.6,0,203.7,99.1,302.8,0,0,0,0.025146689,0,1.422883487,0.692232467,2.115115954,154,39.7,48676.8,0,48716.5,0,0,98850,,,372.1263844,0,372.4303552,18.7,4.9,272,46,322.9,0,0,0,0.146025505,0.038192668,2.084979841,0.376771234,2.499943744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,0,185,0,185,0,0,0,0.004478615,0,1.551362683,0,1.551362683,0,0,0,0,0,0,0,0,,,,,,0.376732192,0.007606544,0.0000272,0,0,0,0,0.369098481,0,0,Guatemala,2000,1.175798986,0.303970806,2454.347194
0,0,306648.5,0,306648.5,0,0,14466.9,0,0,1860.599075,0,1860.599075,4.9,50.6,141068.1,991.1,142109.8,0,0,21200,0.032088818,0.323163193,921.2687467,6.221346266,927.8132561,121.6,89.2,751638,6096.4,757823.6,97500,0,157358.2,0.752751625,0.570154618,4641.82974,41.0793155,,46.1,2.7,172618.7,0,172621.4,0,0,0,0.267277365,0.015653989,1001.741487,0,1001.757141,7,1.8,72272,0,72273.8,0,0,6191.3,0.04614074,0.012040939,469.8417423,0,469.8537832,0,0,0,0,0,0,0,0,0,0,0,0,0,19.6,25.8,57839.2,41.3,57906.3,97500,0,65000,,,380.8025864,0.244161986,381.2111663,44,8.3,113.1,5064,5185.4,0,0,50500,0.274821474,0.05487857,0.695361673,34.61380725,35.36404749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1078.4,0,1078.4,0,0,0,0,0,6.880741251,0,6.880741251,0,0,0,0,0,0,0,0,,,,,,0.362839048,0.023386975,0.042721248,0,0.013207793,0.123725339,0,0.159797693,0,0,Guatemala,2010,0.132423228,0.164417927,4683.47921
0,0,0,0,0,0,0,0,0,0,0,0,0,27.5,143.6,2000,0,2143.6,0,0,0,0.529355149,2.764196343,38.4985563,0,41.26275265,27.5,143.6,2500,0,2643.6,0,0,0,0.529355149,2.764196343,48.55891848,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,500,0,500,0,0,0,0,0,10.06036217,0,10.06036217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Guinea,1980,0,0,51.32311482
1.2,0,0,0,0,0,0,0,0.015265233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2,0,606.6,0,606.6,0,0,0,0.015265233,0,8.795128317,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,606.6,0,606.6,0,0,0,0,0,8.795128317,0,8.795128317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Guinea,1990,0,0,8.795128317
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5,0,28608.5,77.7,28686.2,0,0,0,0.017553652,0,328.8547241,0.870490701,,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1,0,28608.5,0,28608.5,0,0,0,0.012699872,0,328.8547241,0,328.8547241,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77.7,77.7,0,0,0,0,0,0,0.870490701,0.870490701,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Guinea,2000,0.00485378,0,329.7252148
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4,6,10862.2,400,11268.2,0,0,0,0.021845095,0.052523501,101.827437,3.838771593,,0,0,0,0,0,0,0,0,0,0,0,0,0,1.7,4.8,10814.2,400,11219,0,0,0,0.015721932,0.04202665,101.407563,3.838771593,105.2883612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0.7,1.2,48,0,49.2,0,0,0,0.006123163,0.010496851,0.419874038,0,0.430370889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Guinea,2010,0,0,105.7187321
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Guinea-Bissau,1910,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Guinea-Bissau,1920,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Guinea-Bissau,1930,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Guinea-Bissau,1940,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Guinea-Bissau,1950,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Guinea-Bissau,1960,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Guinea-Bissau,1970,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0.3,0,370,370.3,0,0,0,0.010952903,0.032858708,0,40.52573932,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0.3,0,370,370.3,0,0,0,,,0,40.52573932,40.55859803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Guinea-Bissau,1980,0.010952903,0.032858708,40.55859803
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,292.2,30,322.2,0,0,0,0.025996534,0,26.90868063,2.59965338,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,172.2,0,172.2,0,0,0,,,16.51006711,0,16.51006711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,120,30,150,0,0,0,0.025996534,0,10.39861352,2.59965338,12.9982669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Guinea-Bissau,1990,0,0,29.50833401
0,0,13200,0,13200,0,0,0,0,0,1029.668775,0,1029.668775,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,13200,175,13375,0,0,0,0.022848439,0,1029.668775,12.79928376,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,0,175,175,0,0,0,0.022848439,0,0,12.79928376,12.79928376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Guinea-Bissau,2000,0,0,1042.468059
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,6833.3,0,6833.3,0,0,0,0.029140514,0,434.480446,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,5679.2,0,5679.2,0,0,0,0.013131976,0,372.8956008,0,372.8956008,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,1154.1,0,1154.1,0,0,0,,,61.58484525,0,61.58484525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Guinea-Bissau,2010,0.016008538,0,434.480446
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2100,0,2100,0,0,20,0,0,294.1176471,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2100,0,2100,0,0,20,0,0,294.1176471,0,294.1176471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.007090941,0,0,0,0.007090941,0,0,0,0,0,Guyana,1970,0,0,294.1176471
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Guyana,1980,0,0,0
0,0,60720,0,60720,0,0,2900,0,0,8010.55409,0,8010.55409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63520,1000,64520,0,0,2900,0,0,8378.491015,131.4060447,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2800,1000,3800,0,0,0,0,0,367.9369251,131.4060447,499.3429698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.387111582,0.387111582,0,0,0,0,0,0,0,0,Guyana,1990,0,0,8509.897059
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.4,0,40977.4,0,40977.4,0,0,63410,0.455764075,0,5491.154574,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,3.4,0,40977.4,0,40977.4,0,0,63410,0.455764075,0,5491.154574,0,5491.154574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,6.34853035,0,0,0,6.34853035,0,0,0,0,0,Guyana,2000,0,0,5491.154574
0,0,0,0,0,0,0,1470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20227.4,0,20227.4,0,0,1470,0,0,2636.769281,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20227.4,0,20227.4,0,0,0,0,0,2636.769281,0,2636.769281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.042820772,0.042820772,0,0,0,0,0,0,0,0,Guyana,2010,0,0,2636.769281
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,15,0,0,0,0,,,,0.833364353,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,15,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Haiti,1900,0.833364353,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,160,0,0,0,0,,,,8.096022879,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,160,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Haiti,1910,8.096022879,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Haiti,1920,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,215,0,0,0,0,,,,8.236386594,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,215,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Haiti,1930,8.236386594,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Haiti,1940,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0.6,0,0,0,0,,,,0.018018018,0,0,0,0,72.8,0,25000,0,25000,,,,2.097700645,0,724.6376812,0,,0,0,0,0,0,,,,0,0,0,0,0,5,0,0,0,0,,,,0.13185654,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,41,0,25000,0,25000,,,,,,724.6376812,0,724.6376812,26.2,0,0,0,0,,,,0.75942029,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Haiti,1950,1.188405797,0,724.6376812
0,0,21021.7,0,21021.7,0,0,100,0,0,466.113082,0,466.113082,0,0,0,0,0,0,0,0,0,0,0,0,0,610.6,88.1,35721.7,0,35809.8,0,0,21100,14.83095875,2.029486293,811.9345761,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,52.6,0,0,0,0,0,0,0,1.284800079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,558,88.1,14700,0,14788.1,0,0,21000,,,345.8214941,0,347.8509804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,6.980791049,0.027176217,0,0,0,0,0,6.953614832,0,0,Haiti,1960,13.54615867,2.029486293,813.9640624
0,0,95700,0,95700,0,0,0,0,0,1863.047805,0,1863.047805,0,0,0,0,0,0,0,0,0,0,0,0,0,8.6,0,99811,0,99811,0,0,95.9,0.175749731,0,1947.754561,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,7.8,0,4000,0,4000,0,0,95.9,0.161256977,0,82.69588588,0,82.69588588,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,111,0,111,0,0,0,,,2.010869565,0,2.010869565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.02577957,0,0,0,0.02577957,0,0,0,0,0,Haiti,1970,0.014492754,0,1947.754561
0,0,10300,0,10300,0,0,0,0,0,182.5270246,0,182.5270246,0,0,0,0,0,0,0,0,0,0,0,0,0,48.2,87.1,147039,84940,232066.1,0,0,49128.6,0.788008281,1.333757519,2310.18425,1501.82853,,0,0,0,0,0,0,0,0,0,0,0,0,0,20.8,81.1,16739,1340,18160.1,0,0,0,0.318239436,1.246775785,255.4987788,20.66945998,277.4150145,0,0,0,0,0,0,0,0,0,0,0,0,0,27.4,0,120000,83500,203500,0,0,49128.6,,,1872.158447,1479.709374,3351.867821,0,6,0,100,106,0,0,0,0,0.086981734,0,1.449695564,1.536677298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,3.239820492,0,0,0,0,0,0,3.239820492,0,0,Haiti,1980,0.469768845,0,3813.346538
0,0,100000,0,100000,0,0,0,0,0,1366.306873,0,1366.306873,0,0,0,0,0,0,0,0,0,0,0,0,0,142.2,2.9,251704,8716.5,260423.4,0,0,23010,1.84789848,0.035474006,3360.902959,114.6494804,,0,0,0,0,0,0,0,0,0,0,0,0,0,4.4,0,504,5,509,0,0,0,0.055873182,0,6.752230911,0.060103378,6.812334289,0,0,0,0,0,0,0,0,0,0,0,0,0,137.8,2.9,151200,8711.5,159914.4,0,0,23010,,,1987.843856,114.589377,2102.468707,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.714380629,0,0,0,0,0,0,0.714380629,0,0,Haiti,1990,1.792025298,0.035474006,3475.587914
0,0,3500,0,3500,0,0,0,0,0,39.3258427,0,39.3258427,0,0,0,0,0,0,0,0,0,0,0,0,0,657.3,325,109687.5,5645.2,115657.7,0,0,10252,7.210578456,3.575038649,1187.582394,61.03252612,,0,0,0,0,0,0,0,0,0,0,0,0,0,291,34.5,35511.9,3927.9,39474.3,0,0,100,3.215844308,0.378146935,390.9684095,42.06671818,433.4132746,0,0,0,0,0,0,0,0,0,0,0,0,0,366.3,290.5,70675.6,1717.3,72683.4,0,0,10152,,,757.2881423,18.96580795,779.4508419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.158224137,0,0,0,0.001637501,0,0,0.156586637,0,0,Haiti,2000,3.994734148,3.196891715,1252.189959
0,0,460000,0,460000,0,0,8600,0,0,4268.990363,0,4268.990363,22258.7,30042.1,343891.5,0,373933.6,1150000,20000,800000,223.7262094,301.916338,3452.414952,0,3754.33129,22350.4,30866.6,1070237.5,7237.3,1108341.4,1150000,20016.2,1034200,224.5873159,309.5300999,10198.07288,69.87830031,,0,0,0,0,0,0,0,0,0,0,0,0,0,24.4,768.8,26631,3653.7,31053.5,0,0,200,0.233145542,7.092852936,249.7778612,34.99167545,291.8623896,0,0,0,0,0,0,0,0,0,0,0,0,0,67.3,55.7,239715,3583.6,243354.3,0,16.2,225400,,,2226.8897,34.88662485,2262.297233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,8.566809413,0.062562105,6.86013045,0,0.001457379,0,0,1.642659479,0,0,Haiti,2010,0.627960992,0.520908954,10577.48128
0,0,0,0,0,,,,0,0,0,0,0,9789.8,244.8,15179.7,13585.2,29009.7,,,,2.010131786,0.051623313,3.102159719,2.839768631,5.993551663,14599.5,248.9,15179.7,13585.2,29013.8,,,,3.051143574,0.052499782,3.102159719,2.839768631,,3085.5,0,0,0,0,,,,0.672600426,0,0,0,0,32.8,0,0,0,0,,,,0.006975337,0,0,0,0,12.7,4.1,0,0,4.1,,,,0.002694473,0.000876469,0,0,0.000876469,1678.7,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,High income,1900,0.358741552,0,5.994428131
0,0,0,0,0,,,,0,0,0,0,0,3063.7,10.5,0,637.8,648.3,,,,0.58326843,0.001985989,0,0.12242005,0.124406038,4119.6,32.7,0,907.8,940.5,,,,0.786458906,0.006312284,0,0.17521328,,14,0,0,0,0,,,,0.002682913,0,0,0,0,137.9,0,0,0,0,,,,0.027539603,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,784.9,20,0,250,270,,,,,,0,0.048843761,0.052751262,11.8,2.2,0,0,2.2,,,,0.002304206,0.000418794,0,0,0.000418794,0,0,0,0,0,,,,0,0,0,0,0,107.3,0,0,20,20,,,,0.020366533,0,0,0.003949469,0.003949469,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,High income,1910,0.150297221,0.003907501,0.181525564
0,0,0,0,0,,,,0,0,0,0,0,14924.2,10702.8,12946.3,5719.8,29368.9,,,,2.717008958,1.947206694,2.335604354,1.001668409,5.284479457,16064.5,10702.8,13546.3,6819.8,31068.9,,,,2.919290152,1.947206694,2.439245723,1.204404377,,14.4,0,0,0,0,,,,0.002537256,0,0,0,0,124.6,0,600,0,600,,,,0.021910385,0,0.103641369,0,0.103641369,0,0,0,0,0,,,,0,0,0,0,0,964.2,0,0,0,0,,,,,,0,0,0,32.8,0,0,0,0,,,,0.005979875,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,4.3,0,0,1100,1100,,,,0.000792513,0,0,0.202735968,0.202735968,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,High income,1920,0.171061165,0,5.590856795
0,0,2500,0,2500,,,,0,0,0.419875423,0,0.419875423,4175.6,7910.3,3065.4,27891.6,38867.3,,,,0.666165818,1.257897838,0.515010034,4.555739302,6.328647174,6248.6,7910.3,5565.4,28281.6,41757.3,,,,0.999757012,1.257897838,0.934885457,4.617171655,,0,0,0,0,0,,,,0,0,0,0,0,130.1,0,0,0,0,,,,0.020703888,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,1732.2,0,0,0,0,,,,,,0,0,0,34.3,0,0,0,0,,,,0.0055266,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,7.1,0,0,390,390,,,,0.001118384,0,0,0.061432353,0.061432353,169.3,0,0,0,0,,,,0.027295649,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,High income,1930,0.278946674,0,6.809954951
0,0,0,0,0,,,,0,0,0,0,0,1365.9,1468.8,1011,48334.2,50814,,,,0.207860539,0.220592722,0.150741492,7.280196893,7.651531106,2827.6,1480.8,249998.1,49944.2,301423.1,,,,0.429901803,0.222464967,38.08361222,7.528247375,,12.6,0,0,1400,1400,,,,0.001891592,0,0,0.215696072,0.215696072,304.5,0,0,0,0,,,,0.046348252,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,1117.1,12,248987.1,0,248999.1,,,,,,37.93287073,0,37.93474298,2.5,0,0,0,0,,,,0.000372753,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,25,0,0,210,210,,,,0.003793451,0,0,0.032354411,0.032354411,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,High income,1940,0.169635214,0.001872245,45.83432456
0,0,0,0,0,,,,0,0,0,0,0,83.5,443.7,2505.6,15526.1,18475.4,,,,0.011534322,0.061660884,0.339054613,2.158189216,2.558904713,3098.6,455.4,608711.5,34022.7,643189.6,,,,0.420319117,0.063206725,83.24792285,4.782437339,,17.9,0,2.9,0,2.9,,,,0.002488902,0,0.00040741,0,0.00040741,843.5,0,287088.4,17750,304838.4,,,,0.116228077,0,39.82472266,2.522279652,42.34700231,0.3,0.6,0,200,200.6,,,,0.0000406,0.0000812,0,0.027063746,0.027144937,1650.4,11.1,319076.6,0,319087.7,,,,,,43.07853073,0,43.07999538,84.3,0,38,546.6,584.6,,,,0.011547808,0,0.005207427,0.074904725,0.080112152,400,0,0,0,0,,,,0.056194534,0,0,0,0,1.1,0,0,0,0,,,,0.000146984,0,0,0,0,17.6,0,0,0,0,,,,0.002428933,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,High income,1950,0.219708962,0.00146465,88.09356691
60,0,292000,0,292000,0,0,65500,0.007029342,0,34.19530239,0,34.19530239,729.1,796.9,223420.1,5802,230019,0,500,294726.9,0.091789719,0.097564712,28.19782268,0.708684227,29.00407162,2177.4,1345.3,1087899.7,152820.7,1242065.7,0,500,1252743.2,0.265778033,0.162875596,131.4631814,18.1317098,,0.4,0,200,0,200,0,0,0,0.0000484,0,0.024209704,0,0.024209704,461.6,94.1,539189.3,142051.6,681335,0,0,353180,0.055437021,0.011009898,65.15656267,16.82243435,81.99000691,0,0,0,0,0,0,0,0,0,0,0,0,0,617.8,441.4,32678.1,4887.1,38006.6,0,0,532386.3,,,3.84112475,0.591313168,4.485222864,256.2,2.9,12.2,0,15.1,0,0,0,0.031225847,0.000344483,0.001414903,0,0.001759385,0,0,0,0,0,0,0,0,0,0,0,0,0,9.9,10,400,80,490,0,0,6950,0.001161501,0.001171557,0.046744273,0.009278052,0.057193882,42.4,0,0,0,0,0,0,0,0.005085935,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.0882791,0.003787528,0.024342,0,0.022751991,0,0,0.036993476,0,0.000404105,High income,1960,0.074000249,0.052784946,149.7577668
0,0,0,0,0,0,0,300000,0,0,0,0,0,291.6,1644.9,327065.6,31725.5,360436,0,3700,785875,0.03127504,0.177030097,36.23545463,3.393881218,39.80636594,1152.4,2844.7,863333.5,71272.7,937450.9,0,3700,3033201.7,0.126094676,0.306004481,95.38379915,7.777165357,,1.2,2.7,9120,0,9122.7,0,0,4670,0.000126427,0.000284097,0.98103314,0,0.981317237,388.6,872.5,369144.9,35308.3,405325.7,0,0,313833.6,0.042943881,0.093769558,41.06978374,3.93065851,45.0942118,3.1,0,0,150,150,0,0,0,0.000349037,0,0,0.016888868,0.016888868,333.3,315.9,157816.9,4088.9,162221.7,0,0,1314591.5,,,17.07728899,0.435736761,17.54699269,91.1,8.7,186.1,0,194.8,0,0,11346.6,0.010130457,0.000953796,0.020238653,0,0.021192449,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,0,0,0,0,0,12885,0.000032,0,0,0,0,43.2,0,0,0,0,0,0,290000,0.004858169,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.06668673,0.005285135,0.016566768,0.005317122,0.009131117,0.000222011,0,0.029582029,0.000106406,0.000476142,High income,1970,0.036379679,0.033966933,103.466969
0,0,26600,0,26600,0,0,1296500,0,0,2.718682777,0,2.718682777,535,1647.8,159862.1,51031.5,212541.4,0,51600,3078347,0.055514772,0.167598007,16.22606953,5.122210933,21.51587847,1592.8,2438.9,539385.6,120528.2,662352.7,0,702130,10232742.5,0.16242623,0.247462868,54.56431305,12.11151422,,9,0,1950,360,2310,0,0,86000,0.000937171,0,0.195044966,0.037234306,0.232279272,219.3,221.7,163929.5,26573.8,190725,0,29070,1077509.8,0.022121908,0.022705482,16.62574975,2.637622114,19.28607735,0,0,0,0,0,0,0,0,0,0,0,0,0,461.5,485.6,179450.4,40282.9,220218.9,0,558230,3707471.3,,,18.03835028,4.081383214,22.16845599,71.4,47,4110.6,280,4437.6,0,0,136500,0.007210787,0.004725836,0.416146579,0.028722751,0.449595166,0,0,0,0,0,0,0,0,0,0,0,0,0,18,36.1,3463,2000,5499.1,0,0,475414.4,0.00182221,0.003641771,0.342217544,0.204340903,0.550200218,278.6,0.7,20,0,20.7,0,63230,375000,0.02827248,0.0000693,0.002051625,0,0.002120899,0,0,0,0,0,0,0,0,,,,,,0.095494933,0.013034253,0.030646565,0.003695306,0.010380034,0.001270542,0,0.032383158,0.000972398,0.003112678,High income,1980,0.046546901,0.048722498,66.92329014
0,0,1300000,0,1300000,0,0,1591860,0,0,125.0740188,0,125.0740188,817.5,5806.5,47778.8,45028.9,98614.2,0,1456070,15652260.4,0.076126981,0.54299598,4.454111454,4.197086941,9.194194375,1700.1,7321.8,3357155.3,133182.3,3497659.4,251550,12090910,41939852.4,0.158785341,0.68452499,316.930691,12.46584676,,8.2,2,13735,140,13877,0,0,4950,0.000776616,0.000192513,1.31480736,0.013402231,1.328402104,223.2,299.9,186767,48825.2,235892.1,0,743290,5831940,0.020878312,0.027873372,17.42832399,4.525806054,21.98200341,0,0,0,0,0,0,0,0,0,0,0,0,0,381.3,999.7,1325219.7,37009.2,1363228.6,251250,9673210,17079533.3,,,122.8805882,3.521085425,126.4950293,75.8,43.3,8141.6,1833,10017.9,300,20000,114537.9,0.007087725,0.004089243,0.77670263,0.176138471,0.956930344,0,0,0,0,0,0,0,0,0,0,0,0,0,13.5,55,13343.2,346,13744.2,0,126250,717640.8,0.001277043,0.005157238,1.244804132,0.032327642,1.282289012,180.6,115.4,462170,0,462285.4,0,72090,947130,0.016787024,0.010860981,43.75733442,0,43.7681954,0,0,0,0,0,0,0,0,,,,,,0.175935139,0.007345299,0.062078651,0.003964567,0.02470275,0.000457057,0,0.073952997,0.0000221,0.003411759,High income,1990,0.035851641,0.093355663,330.0810628
0,0,0,0,0,0,0,919370.9,0,0,0,0,0,45,1073.9,23791.8,10644.2,35509.9,0,289000,5105735.2,0.003883635,0.094347747,2.097759354,0.918510345,3.110617447,8795,3204.9,2855308.7,38790.3,2897303.9,79500,23320230,57254672.7,0.781786879,0.281253235,248.8454844,3.412960208,,0,0,2460,0,2460,0,0,310,0,0,0.219568405,0,0.219568405,165.3,99.2,1442498.9,12523.2,1455121.3,79500,2076750,8379591.2,0.014549522,0.008730567,125.0559532,1.095193586,126.1598773,0,0,0,0,0,0,0,0,0,0,0,0,0,599.1,1090.2,1286760,14194.9,1302045.1,0,20109230,39198880.4,,,112.7527643,1.273369657,114.1224177,10.8,2.9,353.1,0,356,0,19500,51000,0.000952232,0.000257742,0.031503507,0,0.031761249,0,0,0,0,0,0,0,0,0,0,0,0,0,43.6,134.6,96704.9,1428,98267.5,0,702250,2192485,0.003787506,0.011732946,8.442253641,0.12588662,8.579873206,7931.2,804.1,2740,0,3544.1,0,123500,1407300,0.705910041,0.069900517,0.245681979,0,0.315582497,0,0,0,0,0,0,0,0,,,,,,0.158625258,0.003090046,0.013986234,0.004335797,0.025458776,0.000183629,0,0.105480005,0.00000114,0.006089632,High income,2000,0.052703943,0.096283717,252.5396978
0,0,2533.5,0,2533.5,0,1890000,4648500,0,0,0.207443389,0,0.207443389,2130.1,2446.6,465209.3,85344.1,553000,0,7540980,31885360,0.179261314,0.205257237,38.97094078,7.225112528,46.40131054,3768.7,23598,10225902.5,130714.6,10380215.1,228375.1,42279182.8,114740527.3,0.314321227,1.949484867,839.6720625,10.94446506,,8.4,12,1390,0,1402,0,0,121500,0.000691571,0.000984917,0.114832524,0,0.115817441,168.5,135.2,442648,5333.9,448117.1,144075.1,3071986.6,11808488.6,0.013929271,0.011175862,36.50460857,0.441792447,36.95757688,0.8,0,20,0,20,0,0,0,0.0000653,0,0.001631971,0,0.001631971,397.9,2513.4,9249003.2,33175.9,9284692.5,20000,25960826.2,60038978.6,,,758.5294723,2.712148432,761.4502063,23.1,13.4,148.8,228,390.2,0,3090,95800,0.001915371,0.001107549,0.012084213,0.019146279,0.032338042,0,0,0,0,0,0,0,0,0,0,0,0,0,56.4,262.1,52609.7,6632.7,59504.5,64300,3652300,5725940,0.004621498,0.021465352,4.298432121,0.546265375,4.866162847,983.5,18215.3,12340,0,30555.3,0,160000,415960.1,0.080922333,1.500908381,1.03261661,0,2.533524991,0,0,0,0,0,0,0,0,,,,,,0.229949915,0.0093732,0.06576452,0.000829986,0.023783107,0.000177384,0,0.118738507,0.000238893,0.011044319,High income,2010,0.03291459,0.208585568,852.5660124
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,150,0,0,0,0,,,,14.67068709,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,150,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Honduras,1930,14.67068709,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Honduras,1940,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Honduras,1950,0,0,0
0,0,10000,0,10000,0,0,0,0,0,426.2574595,0,426.2574595,0,0,0,0,0,0,0,0,0,0,0,0,0,27.5,0.2,11400,0,11400.2,0,0,1950,1.312022901,0.007581501,482.1589116,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,600,0,600,0,0,50,0,0,25.57544757,0,25.57544757,0,0,0,0,0,0,0,0,0,0,0,0,0,27.5,0.2,800,0,800.2,0,0,1900,,,30.32600455,0,30.33358605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.294261058,0,0,0,0.009829942,0,0,0.284431116,0,0,Honduras,1960,1.312022901,0.007581501,482.1664931
0,0,30000,0,30000,0,0,700,0,0,1040.943789,0,1040.943789,0,0,0,0,0,0,0,0,0,0,0,0,0,1082.1,0,95500,750,96250,0,0,56100,35.64744515,0,3160.647793,21.68883748,,0,0,0,0,0,0,0,0,0,0,0,0,0,2.1,0,5500,0,5500,0,0,1300,0.064323009,0,158.2787018,0,158.2787018,0,0,0,0,0,0,0,0,0,0,0,0,0,800,0,60000,750,60750,0,0,54100,,,1961.425302,21.68883748,1983.11414,280,0,0,0,0,0,0,0,9.430784776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,5.346993584,0.087173106,0,0,0.036678797,0,0,5.22314168,0,0,Honduras,1970,26.15233737,0,3182.336631
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,50,0,0,0,0,0,1.27844541,0,1.27844541,15.9,1.2,6570,92.5,6663.7,0,0,10100,0.393788571,0.025657473,152.9429382,1.977763524,,0,0,0,0,0,0,0,0,0,0,0,0,0,1.9,0,4520,92.5,4612.5,0,0,0,0.040624332,0,100.5266764,1.977763524,102.5044399,1,0,0,0,0,0,0,0,0.020768432,0,0,0,0,13,1.2,2000,0,2001.2,0,0,10100,,,51.13781642,0,51.16347389,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.236727802,0,0,0,0,0,0,0.236727802,0,0,Honduras,1980,0.332395807,0.025657473,154.9463592
0,0,0,0,0,0,0,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1524.3,1202.3,282444.7,2450,286097,0,15000,405590,24.64336507,19.33270338,4566.884579,44.73164002,,0,0,0,0,0,0,0,0,0,0,0,0,0,62.4,0.1,72444.7,2450,74894.8,0,0,25080,1.137464966,0.001563233,1190.678792,44.73164002,1235.411995,0,0,0,0,0,0,0,0,0,0,0,0,0,1461.9,1202.2,210000,0,211202.2,0,15000,379510,,,3376.205788,0,3395.536928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,6.48764675,0.021541136,0,0,0.504389788,0,0,5.961715826,0,0,Honduras,1990,23.5059001,19.33114015,4630.948923
0,0,46062.5,0,46062.5,0,0,0,0,0,652.8613153,0,652.8613153,0.7,15.4,5000,186.5,5201.9,0,0,10000,0.008587903,0.18990102,61.34216661,2.388269945,63.92033757,18.8,16.6,103104,2807.9,105928.5,0,0,35507.9,0.249571233,0.205708158,1391.316293,41.09456984,,0,0,0,0,0,0,0,0,0,0,0,0,0,10.6,1.2,33599.5,94.4,33695.1,0,0,12800,0.137545759,0.015807138,422.4692379,1.280352026,423.765397,0,0,0,0,0,0,0,0,0,0,0,0,0,7.5,0,18442,2527,20969,0,0,12707.9,,,254.6435733,37.42594787,292.0695211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.357668133,0,0.06855186,0,0.158882923,0,0,0.13023335,0,0,Honduras,2000,0.103437571,0,1432.616571
0,0,105671,0,105671,0,0,0,0,0,1158.482696,0,1158.482696,0,0,0,0,0,0,0,0,0,0,0,0,0,21.5,1.4,167687,804.8,168493.2,0,0,9140,0.252596102,0.016832993,1836.857243,9.669476131,,0,0,0,0,0,0,0,0,0,0,0,0,0,18.9,1,60321.6,5,60327.6,0,0,140,0.22188395,0.012023566,658.0375149,0.053027893,658.1025663,0,0,0,0,0,0,0,0,0,0,0,0,0,2.6,0.4,1694.4,799.8,2494.6,0,0,9000,,,20.33703233,9.616448239,29.95828999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.057529161,0,0,0,0.000708628,0,0,0.056820533,0,0,Honduras,2010,0.030712151,0.004809426,1846.543552
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,1000,0,0,0,0,,,,260.5489767,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,1000,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Hong Kong,1900,260.5489767,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Hong Kong,1910,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,10,0,0,0,0,,,,1.48461567,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,10,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Hong Kong,1920,1.48461567,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,1100,0,0,0,0,,,,87.20780431,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,1100,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Hong Kong,1930,87.20780431,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,200,0,0,0,0,,,,11.6556841,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,200,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Hong Kong,1940,11.6556841,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,5.1,11.1,0,0,11.1,,,,0.175729068,0.409594096,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,5.1,11.1,0,0,11.1,,,,,,0,0,0.409594096,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Hong Kong,1950,0.175729068,0.409594096,0.409594096
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.1,59.7,3767,404.3,4231,0,0,800,1.472228852,1.791033355,115.5913616,11.83785834,,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6.8,1769.6,267.2,2043.6,0,0,800,0.232550044,0.191765369,52.84698681,7.535250987,60.57400316,0,0,0,0,0,0,0,0,0,0,0,0,0,32.5,52.2,1987.4,137.1,2176.7,0,0,0,,,62.47432345,4.302607348,68.3572952,8.6,0.7,10,0,10.7,0,0,0,0.239896342,0.018903592,0.27005131,0,0.288954901,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.032130514,0,0,0,0.032130514,0,0,0,0,0,Hong Kong,1960,0.999782467,1.580364393,129.2202533
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.1,104.3,3122.5,2072.2,5299,0,0,1000,1.046094958,2.405697484,72.30812853,50.88616894,,0,0,0,0,0,0,0,0,0,0,0,0,0,14.1,5.6,1297.4,1443.3,2746.3,0,0,0,0.354384755,0.140915954,32.1434137,36.31105729,68.59538694,0,0,0,0,0,0,0,0,0,0,0,0,0,18,98.7,1705.1,628.9,2432.7,0,0,1000,,,37.22695101,14.57511166,54.0668442,10,0,120,0,120,0,0,0,0.251635632,0,2.937763817,0,2.937763817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.004439307,0,0,0,0,0,0,0.004439307,0,0,Hong Kong,1970,0.440074571,2.26478153,125.599995
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.5,80,422.9,1715.7,2218.6,0,0,1265.3,0.162836942,1.535280369,7.793156158,33.49139137,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,1.3,269.2,131.4,401.9,0,0,0,0.009238361,0.025144753,4.908541278,2.433291507,7.366977538,0,0,0,0,0,0,0,0,0,0,0,0,0,4.5,66.2,153.7,404.3,624.2,0,0,1265.3,,,2.884614879,7.728720659,11.8777163,2.5,11.5,0,280,291.5,0,0,0,0.049426651,0.227362594,0,5.535784895,5.763147489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,900,900.3,0,0,0,0,0.005583473,0,17.79359431,17.79917778,1,0.7,0,0,0.7,0,0,0,0.018298262,0.012808783,0,0,0.012808783,0,0,0,0,0,0,0,0,,,,,,0.004215828,0,0,0,0,0,0,0.004215828,0,0,Hong Kong,1980,0.085873668,1.264380766,42.81982789
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.1,109.6,686.4,43.9,839.9,0,0,52941,0.196666159,1.774932338,11.50885855,0.746351788,,0,0,0,0,0,0,0,0,0,0,0,0,0,8.6,2.3,550,12.2,564.5,0,0,9700,0.137175943,0.038563512,9.224211424,0.20801364,9.470788576,0,0,0,0,0,0,0,0,0,0,0,0,0,3.4,106.8,130.4,31.7,268.9,0,0,43162,,,2.183432547,0.538338148,4.449704972,0.1,0.5,6,0,6.5,0,0,79,0.00168691,0.008434548,0.101214575,0,0.109649123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.047120166,0,0,0,0.008083353,0.0000656,0,0.038971174,0,0,Hong Kong,1990,0.057803307,1.727934277,14.03014267
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,29,380,0,409,0,0,38,0.008854087,0.422057454,5.637673963,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,29,380,0,409,0,0,38,,,5.637673963,0,6.059731417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.0000173,0,0,0,0,0,0,0.0000173,0,0,Hong Kong,2000,0.008854087,0.422057454,6.059731417
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,42.9,1502.7,0,1545.6,0,0,75550,0.001435544,0.583512403,21.57011699,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,42.9,1502.7,0,1545.6,0,0,75550,,,21.57011699,0,22.1536294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.022139583,0,0,0,0,0,0,0.022139583,0,0,Hong Kong,2010,0.001435544,0.583512403,22.1536294
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,8500,0.289407679,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,8500,0.289407679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Hungary,1970,0,0,0
0,0,0,0,0,0,0,50000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0,0,50000,0.003767543,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Hungary,1980,0.003767543,0,0
0,0,0,0,0,0,0,38400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.8,0,13144.1,225.4,13369.5,0,1100,68740,0.046833837,0,128.2476339,2.197671325,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,13144.1,225.4,13369.5,0,1100,30340,0.00780564,0,128.2476339,2.197671325,130.4453052,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.161048764,0.099146447,0,0,0.061902316,0,0,0,0,0,Hungary,1990,0.039028198,0,130.4453052
0,0,0,0,0,0,0,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66.3,80,4581.4,0.9,4662.3,0,500,24800,0.659692604,0.798729676,45.37539101,0.008898556,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,4581.4,0.9,4582.3,0,0,13800,0.000978378,0,45.37539101,0.008898556,45.38428956,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6,30,0,0,30,0,500,1000,,,0,0,0.298329356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64.6,50,0,0,50,0,0,0,0.642873504,0.50040032,0,0,0.50040032,0,0,0,0,0,0,0,0,,,,,,0.033852297,0.011723054,0,0,0.021264019,0,0,0.000865224,0,0,Hungary,2000,0.015840722,0.298329356,46.18301924
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,180,0,0,0,0,0,1.830384381,0,1.830384381,19.6,0,22644.5,0,22644.5,0,0,44000,0.201611967,0,232.6479627,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,5934.7,0,5934.7,0,0,44000,0.001007354,0,60.3685585,0,60.3685585,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16529.8,0,16529.8,0,0,0,,,170.4490198,0,170.4490198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.5,0,0,0,0,0,0,0,0.200604613,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.033354306,0,0,0,0.033354306,0,0,0,0,0,Hungary,2010,0,0,232.6479627
0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0.6,0,0,0.6,0,0,0,0.045454545,0.272727273,0,0,0.272727273,1.3,0.6,520,0,520.6,0,0,2470,0.601010101,0.272727273,244.1314554,0,,0,0,520,0,520,0,0,2470,0,0,244.1314554,0,244.1314554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,1.2,0,0,0,0,0,0,0,0.555555556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.213956503,0,0,0,0,0,0,0,0.213956503,0,Iceland,1970,0,0,244.4041827
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,28,0,28,0,0,0,0.169491525,0,11.2,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,28,0,0,0,0,0,11.2,0,11.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0.4,0,0,0,0,0,0,0,0.169491525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Iceland,1980,0,0,11.2
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.4,2,6.3,0,8.3,0,0,2228.9,1.268656716,0.746268657,2.350746269,0,,0,0,0,0,0,0,0,1650,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,3.4,2,6.3,0,8.3,0,0,578.9,1.268656716,0.746268657,2.350746269,0,3.097014925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.030345458,0,0,0,0,0.008126471,0,0,0.022218987,0,Iceland,1990,0,0,3.097014925
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,12.9,6.9,19.9,0,0,2400,0,0.035714286,4.607142857,2.464285714,7.107142857,0,0.1,12.9,6.9,19.9,0,0,2400,0,0.035714286,4.607142857,2.464285714,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.026590852,0,0.026590852,0,0,0,0,0,0,0,Iceland,2000,0,0,7.107142857
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Iceland,2010,0,0,0
125000,0,0,0,0,,,,51.42467919,0,0,0,0,2000,0,0,0,0,,,,0.805277051,0,0,0,0,127000,0,0,0,0,,,,52.22995624,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,India,1900,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,30,0,0,0,0,,,,0.01146234,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,30,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,India,1910,0.01146234,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,204.3,1,104000,200,104201,,,,0.074108245,0.00035887,37.93894473,0.071367611,,0,0,0,0,0,,,,0,0,0,0,0,3.6,0,0,200,200,,,,0.001284617,0,0,0.071367611,0.071367611,0,0,0,0,0,,,,0,0,0,0,0,200.7,1,104000,0,104001,,,,,,37.93894473,0,37.9393036,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,India,1920,0.072823628,0.00035887,38.01067121
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,6033.3,0,0,0,0,,,,1.982580615,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,6033.3,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,India,1930,1.982580615,0,0
150000,0,0,0,0,,,,45.12763105,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,154680.4,0,3000,200,3200,,,,46.5298909,0,0.892096482,0.058103084,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,4630.4,0,3000,200,3200,,,,,,0.892096482,0.058103084,0.950199566,50,0,0,0,0,,,,0.01396976,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,India,1940,1.388290086,0,0.950199566
0,0,0,0,0,,,,0,0,0,0,0,161.3,21.9,0,0,21.9,,,,0.042566121,0.005246225,0,0,0.005246225,692.1,21.9,207300,45200,252521.9,,,,0.171733734,0.005246225,51.44617081,10.99356026,,0,0,0,0,0,,,,0,0,0,0,0,118.8,0,5300,7700,13000,,,,0.028037622,0,1.309086973,1.844563174,3.153650147,0,0,0,0,0,,,,0,0,0,0,0,296,0,202000,37500,239500,,,,,,50.13708384,9.148997083,59.28608092,10.9,0,0,0,0,,,,0.002591858,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,105.1,0,0,0,0,,,,0.02513408,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,India,1950,0.073404053,0,62.4449773
150000,0,10066600,0,10066600,0,0,10000,30.05271198,0,2017.137998,0,2017.137998,19.2,227.2,5000,0,5227.2,0,0,40,0.003695553,0.043658641,0.960797554,0,1.004456194,151504.2,227.2,11753170.2,200,11753597.4,0,0,20903,30.34983493,0.043658641,2347.867864,0.043512126,,0,0,0,0,0,0,0,0,0,0,0,0,0,1069.8,0,1133061,200,1133261,0,0,9610,0.212455485,0,216.111313,0.043512126,216.1548251,0,0,0,0,0,0,0,0,0,0,0,0,0,265.2,0,548509.2,0,548509.2,0,0,1253,,,113.6577545,0,113.6577545,100,0,0,0,0,0,0,0,0.01881418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0.010705939,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.037350688,0.016791242,0.0000798,0,0.01813874,0,0,0.00234092,0,0,India,1960,0.051451797,0,2347.955034
0,0,21000000,0,21000000,0,0,30000,0,0,3588.239503,0,3588.239503,7.3,20,0,0,20,0,0,0,0.001222598,0.00360237,0,0,0.00360237,3595.3,241.2,32892544.7,1479640,34372425.9,0,0,291955,0.577977327,0.039911886,5446.316655,237.3458971,,0,0,0,0,0,0,0,0,0,0,0,0,0,838.3,100,9821000,736000,10557100,0,0,161145.9,0.133035075,0.018011851,1521.71669,118.7915436,1640.526245,0,0,0,0,0,0,0,0,0,0,0,0,0,2635,120,2071034.7,743640,2814794.7,0,0,100809.1,,,336.2857904,118.5543536,454.858266,33.6,1.2,510,0,511.2,0,0,0,0.004941261,0.000175697,0.074671117,0,0.074846814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81.1,0,0,0,0,0,0,0,0.012492,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.305737555,0.027065796,0,0,0.186064585,0,0,0.092607174,0,0,India,1970,0.426286393,0.018121967,5683.702464
30,0,40000000,0,40000000,0,0,0,0.003659956,0,5025.630373,0,5025.630373,42.1,393.6,2000080,1000,2001473.6,0,0,7650,0.005082984,0.047219255,238.8252447,0.130406486,239.0028704,2006.6,655.2,58973770,332600,59307025.2,0,0,591616.3,0.259505894,0.081934449,7505.903245,41.61502797,,0,0,0,0,0,0,0,0,0,0,0,0,0,1235.1,2.3,15254400,60200,15314602.3,0,0,403630,0.159237393,0.000329064,2022.337293,7.630926709,2029.968549,4.5,0,0,0,0,0,0,0,0.00052611,0,0,0,0,390.9,239.3,1719270,21400,1740909.3,0,0,165736.3,,,219.1078408,2.680652291,221.8204911,91.6,0,20,250000,250020,0,0,0,0.01145729,0,0.002493843,31.17304249,31.17553633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,212.4,20,0,0,20,0,0,14400,0.027543519,0.002388148,0,0,0.002388148,0,0,0,0,0,0,0,0,,,,,,0.256701564,0,0.002611558,0.006193229,0.170536514,0,0,0.077265993,0,0.0000943,India,1980,0.051998643,0.031997983,7547.600207
0,0,117500,0,117500,0,0,54240,0,0,12.66977455,0,12.66977455,1139.1,3330.2,55050,13550,71930.2,0,0,37900,0.123333417,0.358052368,5.432537333,1.316051129,7.10664083,4798.1,4229.8,31228449.6,263978.5,31496657.9,0,37120,1840738.2,0.493738614,0.44647387,3243.576367,27.15961765,,0,0,0,0,0,0,0,0,0,0,0,0,0,1323.1,13,27877570,62800,27940383,0,5420,945198.2,0.137045579,0.001359143,2905.506704,6.873359742,2912.381422,0,0,0,0,0,0,0,0,0,0,0,0,0,1809.1,840.5,3157829.6,76000,3234670.1,0,31700,802950,,,317.9537031,7.390328476,325.4264009,122.3,46.1,20500,111628.5,132174.6,0,0,450,0.012525247,0.004693054,2.013648043,11.5798783,13.5982194,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,0,0,0,0,0,0,0,0.0000578,0,0,0,0,403.9,0,0,0,0,0,0,0,0.04079277,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.561774752,0.013805145,0.01317986,0,0.324314973,0.000124902,0,0.210349871,0,0,India,1990,0.179983801,0.082369306,3271.182458
2,0,35000000,0,35000000,0,0,149872.2,0.000189291,0,3217.170176,0,3217.170176,3770.5,18034.7,501259.9,194020,713314.6,0,10500,464580,0.342601416,1.670639379,46.33752579,17.96005536,65.96822053,5808.2,18621,60089075.7,940854.5,61048551.2,0,156300,2376428.5,0.522215158,1.723074972,5460.380765,81.83056006,,0,0,0,0,0,0,0,0,0,0,0,0,0,1366.6,41.6,24039025.3,701800,24740866.9,0,145800,1680034.7,0.119561126,0.003664945,2151.483866,59.89942955,2211.38696,0,0,0,0,0,0,0,0,0,0,0,0,0,100.8,533.9,547590.5,45034.5,593158.9,0,0,36941.6,,,45.27937649,3.971075143,49.29827176,66.4,5.8,1200,0,1205.8,0,0,5000,0.005949241,0.000533928,0.10982055,0,0.110354478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,501.9,5,0,0,5,0,0,40000,0.045141152,0.000416591,0,0,0.000416591,0,0,0,0,0,0,0,0,,,,,,0.324941979,0.030239559,0.080645707,0.006582206,0.203688736,0.000609472,0,0.003176298,0,0,India,2000,0.008772932,0.047820129,5543.9344
0,0,33820000,0,33820000,0,40000,410000,0,0,2579.413935,0,2579.413935,22.1,114.8,56978,7500,64592.8,0,0,19500,0.00172762,0.008822163,4.54117335,0.599861792,5.149857305,2165,846.7,46835683.9,421944.7,47258475.3,0,296300,5982707.6,0.166171786,0.065296195,3566.734994,32.57702538,,0,0,0,0,0,0,0,0,0,0,0,0,0,1393.6,586.4,9416535.9,332714.7,9749837,0,172700,4123798,0.107139025,0.045607642,716.548852,25.41947517,742.0139348,1.6,0,0,0,0,0,0,0,0.000126404,0,0,0,0,273.5,100,3541270,81700,3623070,0,83600,1429409.6,,,266.1623393,6.555397731,272.7252724,28.7,0.5,900,30,930.5,0,0,0,0.002194237,0.0000377,0.068694323,0.002290691,0.071022764,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4,0,0,0,0,0,0,0,0.000178529,0,0,0,0,443.1,45,0,0,45,0,0,0,0.034085108,0.003293282,0,0,0.003293282,0,0,0,0,0,0,0,0,,,,,,0.269182141,0.018333734,0.000973127,0,0.184981162,0,0,0.064894118,0,0,India,2010,0.020720863,0.007535358,3599.377315
0,0,0,0,0,,,,0,0,0,0,0,1515.8,2,0,0,2,,,,3.310526746,0.004482649,0,0,0.004482649,2015.8,2,0,0,2,,,,4.381394825,0.004482649,0,0,,500,0,0,0,0,,,,1.070868079,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Indonesia,1910,0,0,0.004482649
0,0,0,0,0,,,,0,0,0,0,0,96.5,5,0,1125,1130,,,,0.192893919,0.009718304,0,2.267100284,2.276818588,96.5,5,0,1125,1130,,,,0.192893919,0.009718304,0,2.267100284,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Indonesia,1920,0,0,2.276818588
0,0,0,0,0,,,,0,0,0,0,0,3.2,13.5,92,888,993.5,,,,0.005555163,0.024362833,0.153346511,1.535259791,1.712969135,270.1,13.5,92,888,993.5,,,,0.501985591,0.024362833,0.153346511,1.535259791,,266.9,0,0,0,0,,,,0.496430428,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Indonesia,1930,0,0,1.712969135
0,0,0,0,0,,,,0,0,0,0,0,21.3,209.6,1400,0,1609.6,,,,0.033084647,0.325565348,2.174577708,0,2.500143056,21.3,209.6,1400,0,1609.6,,,,0.033084647,0.325565348,2.174577708,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Indonesia,1940,0,0,2.500143056
0,0,0,0,0,,,,0,0,0,0,0,2.4,190.6,103,47.5,341.1,,,,0.003261303,0.230041725,0.123673215,0.057033764,0.410748703,218,190.6,103,47.5,341.1,,,,0.297397619,0.230041725,0.123673215,0.057033764,,133.7,0,0,0,0,,,,0.18839027,0,0,0,0,11.4,0,0,0,0,,,,0.01544276,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,30,0,0,0,0,,,,,,0,0,0,40.5,0,0,0,0,,,,0.05241158,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Indonesia,1950,0.037891706,0,0.410748703
800,0,20400,0,20400,0,0,0,0.776510556,0,19.80101917,0,19.80101917,47.4,31.8,1500,2472.5,4004.3,0,0,0,0.04432324,0.029554837,1.496005665,2.303448269,3.829008771,1160,247.8,143000,6472.5,149720.3,0,0,4103.1,1.137605705,0.239212687,136.3857122,6.081809594,,277.8,206,37300,0,37506,0,0,20,0.283472088,0.199951468,34.94666508,0,35.14661654,34.8,10,83800,4000,87810,0,0,4083.1,0.033299821,0.009706382,80.14202233,3.778361325,83.93009004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.011306142,0,0,0,0.011066259,0,0,0,0.000239882,0,Indonesia,1960,0,0,142.7067345
6.3,0,351722,0,351722,0,0,7120,0.004480096,0,290.4401242,0,290.4401242,195.2,575.6,55028.5,1800,57404.1,0,0,24135,0.142059854,0.424880099,40.78789537,1.2499132,42.46268867,452.2,719.2,469660.5,4700,475079.7,0,0,31575,0.341821903,0.524903825,376.4784431,3.288757335,,29.7,100,1700,1000,2800,0,0,0,0.020831793,0.069439622,1.180473578,0.694396222,1.944309423,50.1,37,60710,1900,62647,0,0,320,0.037279038,0.025796773,43.69445651,1.344447912,45.0647012,0,0,0,0,0,0,0,0,0,0,0,0,0,168.6,6,500,0,506,0,0,0,,,0.375493419,0,0.379864112,2.3,0.6,0,0,0.6,0,0,0,0.001597111,0.000416638,0,0,0.000416638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.127718305,0.063883517,0.063212222,0,0.000622566,0,0,0,0,0,Indonesia,1970,0.135574011,0.004370693,380.2921042
59.4,0,300,0,300,0,0,0,0.037355083,0,0.183212962,0,0.183212962,57.8,102.5,9402.2,850,10354.7,0,0,1695,0.035974931,0.0632187,5.797883985,0.496343155,6.35744584,330.5,131.5,199701.2,9660,209492.7,0,0,43788.8,0.20791408,0.081076464,125.7867003,5.880099318,,22.9,0,45231.8,750,45981.8,0,0,33519,0.015062659,0,29.15739927,0.47413858,29.63153785,132.6,10.1,141642.6,7680,149332.7,0,0,8440.7,0.083054184,0.005968056,88.76179324,4.651899607,93.4196609,13.1,5,65.1,0,70.1,0,0,100,0.007629453,0.002912005,0.037914304,0,0.040826309,0.2,12.3,1000,80,1092.3,0,0,0,,,0.606126729,0.054256416,0.668345959,44.5,1.6,2059.5,300,2361.1,0,0,34.1,0.028708294,0.001014889,1.242369763,0.203461559,1.446846211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.05252825,0,0.002033436,0,0.010966033,0.0000361,0.000131701,0,0.039360978,0,Indonesia,1980,0.000129477,0.007962814,131.747876
67.2,0,106500,0,106500,0,0,8800,0.033131847,0,52.5080611,0,52.5080611,332.1,743.8,36881.9,16805.5,54431.2,0,5000,50317.6,0.175082393,0.384322772,18.95023348,8.760303187,28.09485944,543.9,25743.4,659574,18590,703907.4,0,5000,1059555.2,0.28322563,13.6987923,336.7829859,9.684255956,,13.3,3.4,3509.6,0,3513,0,0,900,0.00697612,0.001763269,1.84464186,0,1.846405129,79.3,24987.8,205582.5,1784.5,232354.8,0,0,67497.6,0.041769336,13.30852567,105.1289446,0.923952769,119.3614231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,22,0.6,3700,0,3700.6,0,0,540,0.011199414,0.000295969,1.970810696,0,1.971106665,0,0,0,0,0,0,0,0,0,0,0,0,0,30,7.8,303400,0,303407.8,0,0,931500,0.015066519,0.003884622,156.3802942,0,156.3841788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.585926931,0.004078814,0.040835222,0,0.031486646,0.000421786,0,0,0.000839462,0.508265002,Indonesia,1990,0,0,360.1660342
0,0,1500,0,1500,0,0,100,0,0,0.680861905,0,0.680861905,17492.1,15145.7,629485.6,132773.3,777404.6,0,37104.1,1082903,7.821999442,6.61209425,270.3799285,58.72085987,335.7128826,17874.3,15364.8,1010496.7,138174.3,1164035.8,0,102104.1,1257366.7,7.993106079,6.710934838,440.5441511,61.16646248,,0.2,10.5,11795.5,0,11806,0,0,0,0.0000896,0.004702489,5.203097378,0,5.207799867,279,129.9,337635.5,1915.5,339680.9,0,65000,161463.3,0.124644466,0.058656067,150.5446317,0.843544223,151.446832,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,371.5,0,371.5,0,0,0,,,0.166378546,0,0.166378546,102.6,38.7,29708.6,3485.5,33232.8,0,0,11500.4,0.046193457,0.017559109,13.56925308,1.602058387,15.18887057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,40,0,0,1400,0,0.017922923,0,0,0.017922923,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.386364478,0.0000426,0.327265731,0,0.053219558,0.005452581,0,0,0,0.000384013,Indonesia,2000,0.000179142,0,508.4215485
1.1,0,0,0,0,0,0,0,0.000425725,0,0,0,0,551.2,623.9,300425.9,8293,309342.8,160000,0,258985,0.208371315,0.2418521,112.424414,3.121300405,115.7875665,817.8,2562.4,702173,11323,716058.4,160000,32000,975885,0.312494931,0.981910146,266.7777273,4.315183276,,81.8,1459.1,51599.6,600,53658.7,0,0,43600,0.031931065,0.547074977,20.22926921,0.244782062,21.02112625,122.8,449.6,297184,1949,299582.6,0,32000,569400,0.048175825,0.181291957,113.7358907,0.763177389,114.6803601,0,0,0,0,0,0,0,0,0,0,0,0,0,3.2,9.5,1000,249,1258.5,0,0,100,,,0.402492232,0.095293341,0.501523023,55.8,20.3,10997.1,232,11249.4,0,0,3800,0.021594783,0.007953662,4.130748543,0.090630078,4.229332283,0,0,0,0,0,0,0,0,0,0,0,0,0,1.9,0,40966.4,0,40966.4,0,0,100000,0.000735342,0,15.85491256,0,15.85491256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.101923688,0,0.025148553,0,0.060265005,0.000396276,0,0.0000109,0.004486586,0.011616372,Indonesia,2010,0.001260875,0.00373745,272.0748207
0,0,0,0,0,,,,0,0,0,0,0,535,0,0,0,0,,,,5.088776069,0,0,0,0,535,0,0,0,0,,,,5.088776069,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Iran,1900,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,70,0,0,0,0,,,,0.656456456,0,0,0,0,70,0,0,0,0,,,,0.656456456,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Iran,1910,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,640,112.1,0,0,112.1,,,,5.041916693,0.852427338,0,0,0.852427338,640,112.1,0,0,112.1,,,,5.041916693,0.852427338,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Iran,1920,0,0,0.852427338
0,0,0,0,0,,,,0,0,0,0,0,319.2,0,0,0,0,,,,2.34294166,0,0,0,0,319.2,0,0,0,0,,,,2.34294166,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Iran,1930,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,137,600,0,0,600,,,,0.866542146,3.602712554,0,0,3.602712554,137,600,0,0,600,,,,0.866542146,3.602712554,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Iran,1940,0,0,3.602712554
0,0,0,0,0,,,,0,0,0,0,0,708.6,598.4,1000,0,1598.4,,,,3.546947981,2.937216441,4.928779141,0,7.865995583,1137.5,598.4,1000,0,1598.4,,,,5.818427684,2.937216441,4.928779141,0,,0,0,0,0,0,,,,0,0,0,0,0,413.1,0,0,0,0,,,,2.185465223,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,15.8,0,0,0,0,,,,0.086014481,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Iran,1950,0,0,7.865995583
0,0,62500,0,62500,0,0,0,0,0,257.1169985,0,257.1169985,2334.8,745,22800,0,23545,0,0,8600,9.445338306,2.943544185,90.22587071,0,93.1694149,2344,752,85300,0,86052,0,0,8600,9.48003005,2.970862324,347.3428692,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,9.2,7,0,0,7,0,0,0,0.034691745,0.027318139,0,0,0.027318139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.153294118,0,0.153294118,0,0,0,0,0,0,0,Iran,1960,0,0,350.3137316
0,0,0,0,0,0,0,0,0,0,0,0,0,3197.3,294.2,51225.2,0,51519.4,0,0,5900,9.184237526,0.899794191,148.0736089,0,148.9734031,3209,294.2,51235.2,0,51529.4,0,0,5900,9.223545383,0.899794191,148.1086794,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4,0,0,0,0,0,0,0,,,0,0,0,4.3,0,10,0,10,0,0,0,0.015080311,0,0.035070492,0,0.035070492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.014282163,0,0.014282163,0,0,0,0,0,0,0,Iran,1970,0.024227546,0,149.0084736
0,0,0,0,0,0,0,0,0,0,0,0,0,338.8,438.3,6040.5,57.5,6536.3,0,0,102100,0.83575304,1.080501184,13.6550151,0.122417951,14.85793424,512.2,438.3,120060.5,15057.5,135556.3,0,40,276400,1.205885385,1.080501184,284.4338192,38.93224978,,0,0,0,0,0,0,0,0,0,0,0,0,0,153.4,0,114020,15000,129020,0,40,174300,0.320381101,0,270.7788041,38.80983182,309.588636,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.189721542,0,0.101276372,0,0.08844517,0,0,0,0,0,Iran,1980,0.049751244,0,324.4465702
0,0,3700000,0,3700000,0,0,330000,0,0,5709.788429,0,5709.788429,4287.5,11285.9,70693.5,17938,99917.4,0,11500,843970,7.552480285,19.87663967,122.0187597,30.4735253,172.3689246,4422.5,11316,3859808.6,22913,3894037.6,300,11500,1746583,7.775459671,19.92414412,5981.238778,38.70639157,,0,0,0,0,0,0,0,0,0,0,0,0,0,126.6,17.6,88745.1,4975,93737.7,300,0,569783,0.208992595,0.027606963,148.8021237,8.232866273,157.062597,0,0,0,0,0,0,0,0,0,0,0,0,0,3.1,8.5,370,0,378.5,0,0,2830,,,0.629465805,0,0.643110559,5.3,4,0,0,4,0,0,0,0.008727839,0.006252736,0,0,0.006252736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1.221964541,0.289860164,0.677848615,0,0.25079797,0,0,0.003457791,0,0,Iran,1990,0.005258952,0.013644755,6039.869314
0,0,0,0,0,0,0,0,0,0,0,0,0,2775.7,2803.7,66078.7,6626,75508.4,0,5900,110892.8,4.072382938,4.100308388,95.87350878,9.72932023,109.7031374,2856.4,2846.7,226913.7,8338,238098.4,0,5900,132086.6,4.191706809,4.163675828,335.5024225,12.26831976,,0,0,0,0,0,0,0,0,0,0,0,0,0,74.4,41.7,141285,1162,142488.7,0,0,21169.8,0.110366304,0.061518632,212.1859713,1.700878746,213.9483687,0,0,0,0,0,0,0,0,0,0,0,0,0,4.3,0.9,19550,550,20100.9,0,0,24,,,27.44294239,0.838120781,28.28232481,2,0.4,0,0,0.4,0,0,0,0.002935866,0.000587173,0,0,0.000587173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.086027937,0,0.071100064,0,0.014915244,0,0,0.0000126,0,0,Iran,2000,0.006021701,0.001261635,351.9344181
0,0,0,0,0,0,0,0,0,0,0,0,0,82.7,1555.8,30684.5,2384.5,34624.8,0,0,199700,0.105551554,1.957587955,38.51661515,3.056344069,43.53054718,107.2,1683.5,1078133.5,2784.5,1082601.5,0,20000,581600,0.136085832,2.112044959,1305.740138,3.562517073,,0,0,0,0,0,0,0,0,0,0,0,0,0,24.1,127.7,1047449,200,1047776.7,0,20000,381900,0.030031538,0.154457004,1267.223523,0.254803037,1267.632783,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,0,200,200,0,0,0,,,0,0.251369966,0.251369966,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.175160951,0,0.043250023,0,0.131910928,0,0,0,0,0,Iran,2010,0.00050274,0,1311.4147
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Iraq,1950,0,0,0
0,0,50000,0,50000,0,0,200,0,0,521.5939912,0,521.5939912,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85000,6000,91000,0,0,1000,0,0,907.1021573,67.06158489,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35000,6000,41000,0,0,800,0,0,385.508166,67.06158489,452.5697509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.017004396,0.006648669,0,0,0.010355727,0,0,0,0,0,Iraq,1960,0,0,974.1637421
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Iraq,1970,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Iraq,1980,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,50,50,0,0,0,0.011180055,0,0,0.27950137,0.27950137,2,0,0,50,50,0,0,0,0.011180055,0,0,0.27950137,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Iraq,1990,0,0,0.27950137
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.6,2,7089,60,7151,0,0,130,0.009385949,0.007286505,25.89509393,0.211371803,,0,0,0,0,0,0,0,0,0,0,0,0,0,2.6,2,7089,60,7151,0,0,130,0.009385949,0.007286505,25.89509393,0.211371803,26.11375223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.00019957,0,0,0,0.00019957,0,0,0,0,0,Iraq,2000,0,0,26.11375223
0,0,0,0,0,0,0,0,0,0,0,0,0,1,46.9,550,0,596.9,0,0,0,0.002662903,0.124890155,1.464596703,0,1.589486859,12,47,10136.5,200,10383.5,0,0,0,0.033500325,0.125215623,27.73403964,0.65093572,,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0.1,9586.5,200,9786.6,0,0,0,0.030837422,0.000325468,26.26944294,0.65093572,26.92070412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Iraq,2010,0,0,28.51019098
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.1,0,0,0,0,0,0,0,0.060029444,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.1,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Ireland,1980,0.060029444,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.7,0,350,0,350,0,3000,25305,0.046544063,0,9.867493657,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,350,0,350,0,0,3800,0.008457852,0,9.867493657,0,9.867493657,0,0,0,0,0,0,0,0,0,0,0,0,0,1.4,0,0,0,0,0,3000,21505,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.040624005,0,0,0,0.007248354,0,0,0.033375651,0,0,Ireland,1990,0.038086211,0,9.867493657
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,50,0,50,0,4700,10000,0.002643405,0,1.260509713,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,30,0,0,0,0,0,0.76765609,0,0.76765609,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,20,0,20,0,4700,10000,,,0.492853622,0,0.492853622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.010012893,0,0,0,0,0,0,0.010012893,0,0,Ireland,2000,0.002643405,0,1.260509713
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,0,90,0,90,0,16500,32500,0.012817429,0,1.938085121,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,90,0,90,0,16500,32500,0.004356349,0,1.938085121,0,1.938085121,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.013675861,0,0,0,0.013675861,0,0,0,0,0,Ireland,2010,0.008461079,0,1.938085121
0,0,0,0,0,,,,0,0,0,0,0,2,0,0,0,0,,,,0.535180061,0,0,0,0,2,0,0,0,0,,,,0.535180061,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Israel,1900,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Israel,1910,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Israel,1920,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Israel,1930,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Israel,1940,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Israel,1950,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Israel,1960,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1.3,0,1.3,0,0,0,0.071073205,0,0.046197584,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,2,0,1.3,0,1.3,0,0,0,0.071073205,0,0.046197584,0,0.046197584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Israel,1970,0,0,0.046197584
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Israel,1980,0,0,0
0,0,0,0,0,0,0,7500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,120,0,124,0,15250,71000,0.037840114,0.075886928,2.134128448,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5,0,100,0,100,0,250,4000,0.026944494,0,1.754693806,0,1.754693806,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,20,0,24,0,0,4500,0,0.075886928,0.379434642,0,0.455321571,0,0,0,0,0,0,15000,55000,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.014335954,0.006389831,0,0,0.003478957,0,0,0,0,0.004467166,Israel,1990,0.01089562,0,2.210015377
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,41,0,41,0,0,275,0.005045409,0,0.689539186,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,41,0,41,0,0,275,,,0.689539186,0,0.689539186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.000207227,0,0,0,0,0,0,0.000207227,0,0,Israel,2000,0.005045409,0,0.689539186
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.2,335.9,208000,0,208335.9,0,0,79000,0.082106804,4.328060216,2686.867206,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,1.4,0,0,0,0,0,0,0,0.017038962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,320,200000,0,200320,0,0,0,,,2585.649644,0,2589.778808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.4,15.9,8000,0,8015.9,0,0,79000,0.059896542,0.198896354,101.217562,0,101.4164583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.027858997,0,0,0,0,0,0,0,0,0.027858997,Israel,2010,0.005171299,4.129163863,2691.195267
0,0,0,0,0,,,,0,0,0,0,0,7555.7,200,15000,2010,17210,,,,21.0534672,0.571355046,41.78868964,5.742118214,48.1021629,7625.7,200,15000,2010,17210,,,,21.25174812,0.571355046,41.78868964,5.742118214,,70,0,0,0,0,,,,0.198280916,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Italy,1900,0,0,48.1021629
0,0,0,0,0,,,,0,0,0,0,0,3010,0,0,66.9,66.9,,,,7.950689288,0,0,0.178105077,0.178105077,3010,0,0,66.9,66.9,,,,7.950689288,0,0,0.178105077,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Italy,1910,0,0,0.178105077
0,0,0,0,0,,,,0,0,0,0,0,140,0,0,0,0,,,,0.374109286,0,0,0,0,150,0,0,0,0,,,,0.400387401,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,10,0,0,0,0,,,,0.026278115,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Italy,1920,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,191.1,0,1000,0,1000,,,,0.468658335,0,2.45272014,0,2.45272014,192.1,0,1000,0,1000,,,,0.470939006,0,2.45272014,0,,0,0,0,0,0,,,,0,0,0,0,0,1,0,0,0,0,,,,0.002280671,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Italy,1930,0,0,2.45272014
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,13.1,0,0,1400,1400,,,,0.028394211,0,0,3.092294567,,2.6,0,0,1400,1400,,,,0.005742833,0,0,3.092294567,3.092294567,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,8,0,0,0,0,,,,,,0,0,0,2.5,0,0,0,0,,,,0.005393185,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Italy,1940,0.017258193,0,3.092294567
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,56,0,0,18296.6,18296.6,,,,0.117430913,0,0,38.88250688,,0,0,0,0,0,,,,0,0,0,0,0,26.3,0,0,17750,17750,,,,0.055621585,0,0,37.74496552,37.74496552,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,29.7,0,0,546.6,546.6,,,,0.061809328,0,0,1.137541362,1.137541362,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Italy,1950,0,0,38.88250688
0,0,0,0,0,0,0,0,0,0,0,0,0,24,56.3,5500,3000,8556.3,0,0,25000,0.04560022,0.106638886,10.41765319,5.947424765,16.47171684,240.3,56.3,5500,133300,138856.3,0,0,225000,0.469847175,0.106638886,10.41765319,256.2131423,,0,0,0,0,0,0,0,0,0,0,0,0,0,19.7,0,0,130300,130300,0,0,200000,0.037725937,0,0,250.2657175,250.2657175,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7,0,0,0,0,0,0,0,,,0,0,0,192.9,0,0,0,0,0,0,0,0.37936116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.299964448,0,0.028427753,0,0.271536695,0,0,0,0,0,Italy,1960,0.007159858,0,266.7374344
0,0,0,0,0,0,0,0,0,0,0,0,0,98,185,11694.2,14200,26079.2,0,0,394160,0.176572199,0.333656234,21.07951845,25.55782315,46.97099783,113.5,189.3,142314.2,14365,156868.5,0,0,488810,0.205058154,0.341321893,265.115992,25.86612487,,0.9,2.4,0,0,2.4,0,0,0,0.001602051,0.004272135,0,0,0.004272135,6,0,130100,165,130265,0,0,46230,0.011036922,0,243.0836712,0.308301725,243.391973,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4,1.9,520,0,521.9,0,0,48420,,,0.952802265,0,0.956195788,1.2,0,0,0,0,0,0,0,0.002171356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.243048318,0,0.184190876,0,0.031191828,0,0,0.027665614,0,0,Italy,1970,0.013675626,0.003393524,291.3234387
0,0,0,0,0,0,0,0,0,0,0,0,0,470.5,802.1,43130,530,44462.1,0,0,2003550,0.834962593,1.422951142,76.50110083,0.932368397,78.85642037,513.3,826,44130,530,45486,0,0,2266920,0.910117144,1.464896663,78.25973704,0.932368397,,0,0,0,0,0,0,0,0,0,0,0,0,0,33.1,3,0,0,3,0,0,10500,0.05813414,0.005268982,0,0,0.005268982,0,0,0,0,0,0,0,0,0,0,0,0,0,3.3,0,0,0,0,0,0,120370,,,0,0,0,5.7,18.9,1000,0,1018.9,0,0,132500,0.009998597,0.033153242,1.758636214,0,1.791789456,0,0,0,0,0,0,0,0,0,0,0,0,0,0.7,2,0,0,2,0,0,0,0.001233154,0.003523298,0,0,0.003523298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.460484628,0,0.419892185,0,0.001512807,0.024140073,0,0.014939563,0,0,Italy,1980,0.005788661,0,80.6570021
0,0,0,0,0,0,0,80000,0,0,0,0,0,3.5,32.1,90,4050,4172.1,0,410,502490,0.006141395,0.056317475,0.158609873,7.116141137,7.331068485,33.3,42.1,2126.3,5101.9,7270.3,0,1710,1811841,0.058507476,0.073795715,3.725962019,8.954994884,,0,0,700,0,700,0,0,0,0,0,1.22617713,0,1.22617713,8.7,0,850,1030,1880,0,1300,1002930,0.015214249,0,1.486089591,1.800258678,3.286348269,0,0,0,0,0,0,0,0,0,0,0,0,0,3.9,10,100,0,110,0,0,64500,,,0.174831288,0,0.192309527,16.1,0,356.3,21.9,378.2,0,0,3421,0.028373814,0,0.627819419,0.038595069,0.666414488,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,30,0,30,0,0,158500,0.000174782,0,0.052434719,0,0.052434719,1,0,0,0,0,0,0,0,0.001762332,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.156968247,0.006441846,0.040668799,0,0.090131206,0.000269984,0,0.006038081,0,0.01341833,Italy,1990,0.006840904,0.01747824,12.75475262
0,0,0,0,0,0,0,0,0,0,0,0,0,32.7,104.4,23,6450,6577.4,0,26000,435735.2,0.055506399,0.176879835,0.039954834,10.96664879,11.18348346,2055.1,123.5,5823,6950,12896.5,0,72000,1894945.2,3.568569231,0.209481586,10.2483141,11.81258659,,0,0,0,0,0,0,0,310,0,0,0,0,0,9.7,18.2,5765,500,6283.2,0,43000,989900,0.01678558,0.03106442,10.14822337,0.845937807,11.0252256,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,0,20,0,20,0,3000,17500,,,0.034513702,0,0.034513702,0.4,0.9,15,0,15.9,0,0,0,0.000683258,0.001537332,0.025622192,0,0.027159524,0,0,0,0,0,0,0,0,0,0,0,0,0,1.3,0,0,0,0,0,0,11500,0.002210779,0,0,0,0,2010.4,0,0,0,0,0,0,440000,3.4923597,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.137858965,0,0.025174152,0.027951593,0.082682281,0,0,0.001499559,0.0000266,0.000524817,Italy,2000,0.001023514,0,22.27038228
0,0,0,0,0,0,0,349000,0,0,0,0,0,35.2,89.7,4332.9,1400,5822.6,0,268100,2121800,0.058076358,0.148727827,7.166238467,2.338048398,9.653014692,51.8,93.2,6232.4,1570,7895.6,0,301900,3094210.1,0.085684022,0.154522399,10.31002829,2.620486325,,0,2.8,30,0,32.8,0,0,11500,0,0.004618404,0.049482904,0,0.054101308,6.6,0.1,1528.3,170,1698.4,0,6200,267600,0.01096968,0.000165536,2.531604662,0.282437927,2.814208125,0,0,0,0,0,0,0,0,0,0,0,0,0,3.8,0.5,341.2,0,341.7,0,27600,331050,,,0.562702255,0,0.56354507,0.3,0.1,0,0,0.1,0,0,0,0.000503449,0.000167816,0,0,0.000167816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.9,0,0,0,0,0,0,13260.1,0.009853719,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.152216184,0.017454729,0.104583551,0.000635342,0.012633202,0,0,0.016359414,0.000549945,0,Italy,2010,0.006280816,0.000842815,13.08503701
0,0,0,0,0,,,,0,0,0,0,0,120,0,9000,0,9000,,,,15.38025764,0,1153.519323,0,1153.519323,161.8,0,9000,0,9000,,,,21.08799627,0,1153.519323,0,,0,0,0,0,0,,,,0,0,0,0,0,30,0,0,0,0,,,,4.171411647,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,6.5,0,0,0,0,,,,,,0,0,0,5.3,0,0,0,0,,,,0.663848442,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Jamaica,1900,0.872478537,0,1153.519323
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,19.9,0,0,9482,9482,,,,2.391709571,0,0,1147.336273,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,19.9,0,0,9482,9482,,,,,,0,1147.336273,1147.336273,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Jamaica,1910,2.391709571,0,1147.336273
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0.4,0,0,130,130,,,,0.044996299,0,0,14.62379719,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0.4,0,0,130,130,,,,,,0,14.62379719,14.62379719,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Jamaica,1920,0.044996299,0,14.62379719
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,21.4,0,0,0,0,,,,1.904151159,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,16.4,0,0,0,0,,,,1.461726254,0,0,0,0,4,0,0,0,0,,,,0.349752769,0,0,0,0,1,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Jamaica,1930,0.092672136,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,15.7,0,0,400,400,,,,1.288078721,0,0,32.45136794,,0,0,0,0,0,,,,0,0,0,0,0,12.5,0,0,200,200,,,,1.033409723,0,0,16.53455557,16.53455557,0,0,0,0,0,,,,0,0,0,0,0,3.2,0,0,200,200,,,,,,0,15.91681237,15.91681237,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Jamaica,1940,0.254668998,0,32.45136794
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,15.4,20,2000,0,2020,,,,1.071677105,1.391788448,139.1788448,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,15.4,20,2000,0,2020,,,,,,139.1788448,0,140.5706333,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Jamaica,1950,1.071677105,1.391788448,140.5706333
0,0,10000,0,10000,0,0,50,0,0,547.645126,0,547.645126,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1,0,10000,0,10000,0,0,1202.5,0.064553991,0,547.645126,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1,0,0,0,0,0,0,1152.5,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.144024351,0.004613043,0,0,0,0,0,0.139411309,0,0,Jamaica,1960,0.064553991,0,547.645126
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,20250,5000,25251,0,0,170,0.236785536,0.050838841,950.3562175,234.4116268,,0,0,0,0,0,0,0,0,0,0,0,0,0,4.4,0,20000,5000,25000,0,0,0,0.206282232,0,937.6465073,234.4116268,1172.058134,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,1,250,0,251,0,0,170,,,12.70971022,0,12.76054906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.008919588,0,0,0,0,0,0,0.008919588,0,0,Jamaica,1970,0.030503305,0.050838841,1184.818683
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.5,0.9,90600,30,90630.9,0,0,117664,0.529714114,0.041608877,3808.345198,1.284246575,,0,0,0,0,0,0,0,0,0,0,0,0,0,6.3,0,6600,0,6600,0,0,10744,0.26690237,0,279.1089683,0,279.1089683,0,0,0,0,0,0,0,0,0,0,0,0,0,6.2,0.9,84000,30,84030.9,0,0,106920,,,3529.23623,1.284246575,3530.562086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,3.247102165,0,0,0,0.371366126,0,0,2.875736039,0,0,Jamaica,1980,0.262811744,0.041608877,3809.671054
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.8,0,55429,222.2,55651.2,0,0,4500,0.113660525,0,2272.286132,8.950256,,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4,0,55429,142.2,55571.2,0,0,4100,0.097717919,0,2272.286132,5.82403482,2278.110167,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,0,80,80,0,0,400,,,0,3.12622118,3.12622118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.09917202,0,0,0,0.093280612,0,0,0.005891407,0,0,Jamaica,1990,0.015942607,0,2281.236388
0,0,0,0,0,0,0,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.5,0.6,42801.6,138.8,42941,0,36500,137821.5,0.201048663,0.022018349,1569.329402,5.039571066,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3000,0,3000,0,0,2000,0.03705106,0,110.9886818,0,110.9886818,0,0,0,0,0,0,0,0,0,0,0,0,0,4.5,0.6,39801.6,138.8,39941,0,36500,135221.5,,,1458.34072,5.039571066,1463.40231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1.281635776,0.006662917,0,0,0.020578211,0,0,1.254394647,0,0,Jamaica,2000,0.163997604,0.022018349,1574.390992
0,0,9154.5,0,9154.5,0,0,0,0,0,318.4173913,0,318.4173913,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6,2.6,43987.5,0,43990.1,0,0,16654.2,0.056899432,0.09252669,1534.00532,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6,2.6,34833,0,34835.6,0,0,16654.2,,,1215.587929,0,1215.680455,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.124631346,0,0,0,0,0,0,0.124631346,0,0,Jamaica,2010,0.056899432,0.09252669,1534.097847
0,0,0,0,0,,,,0,0,0,0,0,11.1,0,17.7,295.2,312.9,,,,0.0234889,0,0.037781882,0.603060643,0.640842524,26.6,0,17.7,295.2,312.9,,,,0.057862104,0,0.037781882,0.603060643,,15.5,0,0,0,0,,,,0.034373204,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Japan,1900,0,0,0.640842524
0,0,0,0,0,,,,0,0,0,0,0,10.6,0,0,318.6,318.6,,,,0.020294598,0,0,0.617462608,0.617462608,662.5,0,0,318.6,318.6,,,,1.255001469,0,0,0.617462608,,14,0,0,0,0,,,,0.026673308,0,0,0,0,137.9,0,0,0,0,,,,0.277799893,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,500,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Japan,1910,0.93023367,0,0.617462608
0,0,0,0,0,,,,0,0,0,0,0,14644.4,10702.8,12946.3,5678.1,29327.2,,,,25.19711847,18.40591002,22.01525439,9.277985776,49.69915018,14978.8,10702.8,12946.3,5678.1,29327.2,,,,25.77216084,18.40591002,22.01525439,9.277985776,,14.4,0,0,0,0,,,,0.023766929,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,300,0,0,0,0,,,,,,0,0,0,20,0,0,0,0,,,,0.034454715,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Japan,1920,0.516820723,0,49.69915018
0,0,0,0,0,,,,0,0,0,0,0,328.6,187.7,0,2573.4,2761.1,,,,0.489924841,0.290855108,0,3.974949343,4.265804451,722.5,187.7,0,2573.4,2761.1,,,,1.059737659,0.290855108,0,3.974949343,,0,0,0,0,0,,,,0,0,0,0,0,93.3,0,0,0,0,,,,0.129640418,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,300.6,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Japan,1930,0.4401724,0,4.265804451
0,0,0,0,0,,,,0,0,0,0,0,1206,1403.1,0,43831.8,45234.9,,,,1.541080488,1.766214986,0,55.36399954,57.13021452,2266.2,1403.1,248987.1,43831.8,294222,,,,2.89965413,1.766214986,319.7689239,55.36399954,,0,0,0,0,0,,,,0,0,0,0,0,299,0,0,0,0,,,,0.384263988,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,761.2,0,248987.1,0,248987.1,,,,,,319.7689239,0,319.7689239,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Japan,1940,0.974309654,0,376.8991385
0,0,0,0,0,,,,0,0,0,0,0,3.3,21.7,0,33.9,55.6,,,,0.003852485,0.025333006,0,0.039575526,0.064908533,1745.1,21.7,565272.9,33.9,565328.5,,,,1.95561578,0.025333006,643.0478113,0.039575526,,2.9,0,2.9,0,2.9,,,,0.003385517,0,0.003385517,0,0.003385517,543.3,0,246353.4,0,246353.4,,,,0.621774296,0,283.3644765,0,283.3644765,0,0,0,0,0,,,,0,0,0,0,0,1184.3,0,318916.6,0,318916.6,,,,,,359.6799493,0,359.6799493,11.3,0,0,0,0,,,,0.012644836,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Japan,1950,1.313958647,0,643.1127199
0,0,0,0,0,0,0,0,0,0,0,0,0,22,65.7,3750,0,3815.7,0,500,107100,0.022958998,0.06612759,3.839004528,0,3.905132118,302.6,201.1,438628.5,0,438829.6,0,500,118890,0.308662509,0.202413863,450.9909798,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,119.5,3.4,430236.6,0,430240,0,0,11000,0.12208253,0.00337228,442.4593317,0,442.462704,0,0,0,0,0,0,0,0,0,0,0,0,0,150.3,132,4641.9,0,4773.9,0,0,790,,,4.692643552,0,4.825557545,10.8,0,0,0,0,0,0,0,0.011090687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.150652975,0,0.138393807,0,0.011511261,0,0,0.000747908,0,0,Japan,1960,0.152530294,0.132913993,451.1933936
0,0,0,0,0,0,0,0,0,0,0,0,0,8.3,72.9,363.2,25.5,461.6,0,200,87000,0.007275879,0.063321073,0.313430389,0.022005713,0.398757175,162.3,113.3,38675.5,1125.5,39914.3,0,200,264900,0.147069212,0.098689876,33.91028671,0.977590638,,0.3,0,1000,0,1000,0,0,2200,0.00026126,0,0.870867733,0,0.870867733,49.4,5,4300,0,4305,0,0,5200,0.045510692,0.004278368,3.690339619,0,3.694617987,0,0,0,0,0,0,0,0,0,0,0,0,0,91.6,35.4,33012.3,1100,34147.7,0,0,170500,,,29.03564897,0.955584926,30.02232433,12.7,0,0,0,0,0,0,0,0.011608999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.041474037,0,0.008649573,0,0.000848746,0,0,0.031670761,0.000304958,0,Japan,1970,0.082412382,0.031090435,34.98656722
0,0,0,0,0,0,0,0,0,0,0,0,0,23.7,34,2359.9,0,2393.9,0,0,46100,0.019732343,0.028324836,1.919835825,0,1.94816066,159.7,180.6,43009.9,17060,60250.5,0,10220,300450,0.132952702,0.149857784,35.39491788,14.2793428,,0,0,1750,110,1860,0,0,0,0,0,1.434813781,0.091340884,1.526154666,41.6,34.7,18900,0,18934.7,0,0,3200,0.034676068,0.029012165,15.48094898,0,15.50996115,0,0,0,0,0,0,0,0,0,0,0,0,0,65.2,103.1,17500,16950,34553.1,0,10220,251150,,,14.48339011,14.18800191,28.75660554,29.2,8.8,2500,0,2508.8,0,0,0,0.024196676,0.007307271,2.075929186,0,2.083236457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.017134132,0,0.003689899,0,0.000282058,0,0,0.013162175,0,0,Japan,1980,0.054347615,0.085213513,49.82411847
0,0,0,0,0,0,0,0,0,0,0,0,0,554.5,3730.3,27265.7,25292.1,56288.1,0,302770,10152840,0.438909414,2.952770229,21.58327834,20.01578599,44.55183456,616.1,4055.3,80237.2,26105.4,110397.9,0,1395280,12793030,0.487865808,3.210580888,63.72738964,20.65608263,,4.4,2,5493,0,5495,0,0,1000,0.003521478,0.001600897,4.384178849,0,4.385779746,10.3,14.2,6480,61.8,6556,0,3620,188130,0.008139584,0.011300876,5.104420079,0.049439036,5.165159991,0,0,0,0,0,0,0,0,0,0,0,0,0,35.1,300,40985.5,751.5,42037,0,1088890,2430060,,,32.64528557,0.590857596,33.47406457,11.8,8.8,13,0,21.8,0,0,21000,0.009363054,0.006987487,0.010226799,0,0.017214286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.257574769,0,0.186911976,0,0.005797315,0.000471471,0,0.064366108,0.0000279,0,Japan,1990,0.027932278,0.237921399,87.59405315
0,0,0,0,0,0,0,0,0,0,0,0,0,8.1,809,13854.9,4119.9,18783.8,0,219600,4403400,0.006312322,0.630760041,10.80683218,3.206540292,14.64413251,81.9,1605.8,157684,4711,164000.8,0,1608000,7764800,0.063843276,1.251793473,123.2096437,3.667592772,,0,0,1640,0,1640,0,0,0,0,0,1.286032433,0,1.286032433,11.3,16.6,45462.8,580,46059.4,0,126900,939700,0.008816954,0.012990244,35.59775351,0.452403981,36.06314774,0,0,0,0,0,0,0,0,0,0,0,0,0,44.6,450.2,96664.1,11.1,97125.4,0,1261500,2421700,,,75.47055218,0.008648499,75.83036973,4.4,0,40,0,40,0,0,0,0.00342266,0,0.031115087,0,0.031115087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.2,0,22.2,0,0,0,0,0,0.01735826,0,0.01735826,13.5,330,0,0,330,0,0,0,0.010506216,0.256874142,0,0,0.256874142,0,0,0,0,0,0,0,0,,,,,,0.163643405,0,0.093442825,0,0.019287908,0,0,0.050912672,0,0,Japan,2000,0.034785125,0.351169045,128.1290299
0,0,0,0,0,0,0,0,0,0,0,0,0,1995.2,975.4,79333.2,2414.1,82722.7,0,4250000,23460200,1.552759411,0.761099207,61.9370935,1.889476988,64.58766969,2197.4,20370.6,321874.9,2444.1,344689.6,0,7800890,30236780,1.710892581,15.93533059,252.4992598,1.913005846,,6.3,6.9,0,0,6.9,0,0,0,0.004915385,0.005383517,0,0,0.005383517,37.5,18.4,160854.8,30,160903.2,0,319000,1310200,0.029425236,0.014437171,126.3921674,0.023528858,126.4301335,0,0,0,0,0,0,0,0,0,0,0,0,0,58.9,1171.8,80186.9,0,81358.7,0,3228800,5462580,,,63.00306507,0,63.91784318,8.2,6.7,0,0,6.7,0,3090,3800,0.006397803,0.005227473,0,0,0.005227473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91.3,18191.4,1500,0,19691.4,0,0,0,0.071375532,14.23440511,1.166933765,0,15.40133888,0,0,0,0,0,0,0,0,,,,,,0.525679935,0,0.390968504,0,0.026259245,0.0000783,0,0.108373842,0,0,Japan,2010,0.046019214,0.914778108,270.3475962
0,0,0,0,0,,,,0,0,0,0,0,26.8,0,0,0,0,,,,6.773355439,0,0,0,0,26.8,0,0,0,0,,,,6.773355439,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Jordan,1920,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Jordan,1930,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Jordan,1940,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Jordan,1950,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.2,9.2,370,250,629.2,0,0,240,2.350437234,0.726124704,29.51545523,19.73164957,,0,0,0,0,0,0,0,0,0,0,0,0,0,29.2,9.2,370,250,629.2,0,0,240,2.350437234,0.726124704,29.51545523,19.73164957,49.9732295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.037945378,0,0,0,0.037945378,0,0,0,0,0,Jordan,1960,0,0,49.9732295
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Jordan,1970,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.9,2.9,0,0,2.9,0,0,0,0.028735632,0.092592593,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.9,2.9,0,0,2.9,0,0,0,0.028735632,0.092592593,0,0,0.092592593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Jordan,1980,0,0,0.092592593
0,0,18000,0,18000,0,0,0,0,0,357.7106518,0,357.7106518,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7,0,19800,0,19800,0,0,40100,0.068427697,0,405.5829923,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1800,0,1800,0,0,100,0.025401158,0,47.87234043,0,47.87234043,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5,0,0,0,0,0,0,40000,0.037707391,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.754487205,0,0,0.75310717,0.001380036,0,0,0,0,0,Jordan,1990,0.005319149,0,405.5829923
0,0,15000,0,15000,0,0,0,0,0,292.8543538,0,292.8543538,0,0,0,0,0,0,0,0,0,0,0,0,0,1.4,23.7,15000,0,15023.7,0,0,0,0.026973292,0.460910974,292.8543538,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.4,22.5,0,0,22.5,0,0,0,,,0,0,0.437482626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2,0,0,1.2,0,0,0,0,0.023428348,0,0,0.023428348,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Jordan,2000,0.026973292,0.437482626,293.3152647
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.4,6.4,0,0,6.4,0,0,0,0.034119418,0.064224787,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,3.4,6.4,0,0,6.4,0,0,0,0.034119418,0.064224787,0,0,0.064224787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Jordan,2010,0,0,0.064224787
0,0,0,0,0,,,,0,0,0,0,0,45,0,0,0,0,,,,0.961979574,0,0,0,0,45,0,0,0,0,,,,0.961979574,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Kazakhstan,1910,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Kazakhstan,1920,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Kazakhstan,1930,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Kazakhstan,1940,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Kazakhstan,1950,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Kazakhstan,1960,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Kazakhstan,1970,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Kazakhstan,1980,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.2,0,63800,0,63800,0,0,3953.2,0.076891623,0,413.1916978,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3000,0,3000,0,0,3653.2,0.006180088,0,18.54026327,0,18.54026327,0,0,0,0,0,0,0,0,0,0,0,0,0,11.2,0,0,0,0,0,0,300,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,800,0,800,0,0,0,0,0,5.192782033,0,5.192782033,0,0,60000,0,60000,0,0,0,0,0,389.4586525,0,389.4586525,0,0,0,0,0,0,0,0,,,,,,0.017078233,0,0,0,0.01560579,0,0,0.001472443,0,0,Kazakhstan,1990,0.070711535,0,413.1916978
0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,62.6,3600,0,3662.6,0,0,0,0.001986755,0.414569536,23.8410596,0,24.25562914,5.5,63.8,8016.8,0,8080.6,0,0,13916.2,0.036104675,0.422617826,52.4027121,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,4416.8,0,4416.8,0,0,13916.2,0.000630438,0,28.5616525,0,28.5616525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,4.8,0,0,0,0,0,0,0,0.03147541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,1.2,0,0,1.2,0,0,0,0.002012072,0.00804829,0,0,0.00804829,0,0,0,0,0,0,0,0,,,,,,0.011903391,0,0,0,0.011903391,0,0,0,0,0,Kazakhstan,2000,0,0,52.82532993
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.3,70.9,7290.8,876.2,8237.9,0,0,10687.6,0.03231422,0.43591763,43.33754456,5.35778874,,0,0,0,0,0,0,0,0,0,0,0,0,0,5.3,70.9,6790.8,876.2,7737.9,0,0,10687.6,0.03231422,0.43591763,40.35282632,5.35778874,46.14653269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,500,0,500,0,0,0,0,0,2.984718243,0,2.984718243,0,0,0,0,0,0,0,0,,,,,,0.006101137,0,0,0,0.006101137,0,0,0,0,0,Kazakhstan,2010,0,0,49.13125093
0,0,26000,0,26000,0,0,0,0,0,272.8226653,0,272.8226653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27500,0,27500,0,0,5,0,0,289.0863539,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1500,0,1500,0,0,5,0,0,16.2636886,0,16.2636886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.000369468,0,0,0,0.000369468,0,0,0,0,0,Kenya,1960,0,0,289.0863539
0,0,19000,0,19000,0,0,150,0,0,153.3824969,0,153.3824969,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,22600,0,22600,0,0,1150,0.068310677,0,178.8301361,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,3600,0,3600,0,0,1000,0.068310677,0,25.44763922,0,25.44763922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.030684605,0.008434589,0,0,0.022250016,0,0,0,0,0,Kenya,1970,0,0,178.8301361
0,0,60000,0,60000,0,0,0,0,0,325.5208333,0,325.5208333,0,0,0,0,0,0,0,0,0,0,0,0,0,12.5,0,60300,0,60300,0,0,0,0.064856162,0,327.2123083,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,7.5,0,300,0,300,0,0,0,0.042286874,0,1.691474966,0,1.691474966,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Kenya,1980,0.022569288,0,327.2123083
8.5,0,2850000,0,2850000,0,0,0,0.027332069,0,9501.696621,0,9501.696621,0,0,0,0,0,0,0,0,0,0,0,0,0,25.5,0,2940000,120,2940120,0,0,1180,0.088336837,0,9807.652563,0.415900585,,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,90000,120,90120,0,0,1180,0.061004768,0,305.9559423,0.415900585,306.3718429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.008996801,0,0,0,0.008996801,0,0,0,0,0,Kenya,1990,0,0,9808.068464
11.1,0,960000,0,960000,0,0,0,0.030827079,0,2556.030083,0,2556.030083,0.1,0,0,0,0,0,0,10000,0.000280623,0,0,0,0,70.9,3.5,1090808.8,0,1090812.3,0,0,10053.8,0.192448281,0.009204871,2906.580838,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,55.1,0.9,130808.8,0,130809.7,0,0,53.8,0.148919893,0.002628588,350.5507559,0,350.5533845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,4.6,2.6,0,0,2.6,0,0,0,0.012420685,0.006576283,0,0,0.006576283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.062425897,0,0.062129795,0,0.000296101,0,0,0,0,0,Kenya,2000,0,0,2906.590043
0,0,1565000,0,1565000,0,0,0,0,0,3421.847678,0,3421.847678,0,0,0,0,0,0,0,0,0,0,0,0,0,96.5,12.6,1707802.6,612,1708427.2,19400,100,48600,0.20496569,0.026061867,3726.685027,1.384687385,,0,0,0,0,0,0,0,0,0,0,0,0,0,85.8,12.6,142802.6,600,143415.2,19400,100,48600,0.184136309,0.026061867,304.8373494,1.361862414,306.2252736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,10.7,0,0,12,12,0,0,0,0.020829381,0,0,0.022824971,0.022824971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.066243265,0,0,0,0.066243265,0,0,0,0,0,Kenya,2010,0,0,3728.095776
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,70,0,70,0,0,0,0.566037736,0,132.0754717,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,70,0,70,0,0,0,,,132.0754717,0,132.0754717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Kiribati,1970,0.566037736,0,132.0754717
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Kiribati,1980,0,0,0
0,0,8400,0,8400,0,0,0,0,0,10120.48193,0,10120.48193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8400,0,8400,0,0,0,0,0,10120.48193,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Kiribati,1990,0,0,10120.48193
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.5,8.5,0,0,0,0,0,0,8.585858586,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.5,8.5,0,0,0,0,0,0,8.585858586,8.585858586,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Kiribati,2000,0,0,8.585858586
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,172,0,172,0,0,0,0,0,155.3186214,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,22,0,0,0,0,0,20.18348624,0,20.18348624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,150,0,0,0,,,135.1351351,0,135.1351351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Kiribati,2010,0,0,155.3186214
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,20,0,20,0,0,0,0.011695906,0,1.169590643,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,20,0,20,0,0,0,0.011695906,0,1.169590643,0,1.169590643,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Kuwait,1990,0,0,1.169590643
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Kuwait,2000,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,0,0,0,0,0,0,0.002417211,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,0,0,0,0,0,0,0.002417211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Kuwait,2010,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,5.8,10,10536.8,3256.8,13803.6,0,0,16300,0.130220027,0.224517288,236.4251046,73.11718352,309.7668054,22.1,10,15036.8,5379.6,20426.4,0,0,20140,0.490795409,0.224517288,336.0046576,119.134772,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,0,772.8,772.8,0,0,240,0.002088991,0,0,16.14372258,16.14372258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,16.2,0,4500,1350,5850,0,0,3600,0.358486391,0,99.579553,29.8738659,129.4534189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.935046837,0,0.706308366,0,0.014581123,0.214157348,0,0,0,0,Kyrgyzstan,1990,0,0,455.3639469
0,0,200000,0,200000,0,0,0,0,0,3748.828491,0,3748.828491,7.4,14.2,1500,110.5,1624.7,0,0,0,0.140818268,0.270218839,29.12805246,2.105191814,31.50346312,17.9,16.2,202555.6,381,202952.8,0,0,436,0.34991849,0.309929044,3798.570192,7.454948957,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,84.5,205,289.5,0,0,286,0.00591133,0,1.630015432,4.039408867,5.669424299,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,907.5,0,907.5,0,0,0,,,17.71077283,0,17.71077283,8.7,2,63.6,65.5,131.1,0,0,150,0.17302931,0.039710205,1.272859955,1.310348276,2.622918436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1,0,0,0,0,0,0,0,0.02235318,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.02067993,0,0,0,0.011337879,0.009342051,0,0,0,0,Kyrgyzstan,2000,0.007806401,0,3806.33507
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1649,529,2178,0,0,1200,0,0,27.35930311,8.877328411,36.23663152,4,5,3584,534.5,4123.5,0,0,1200,0.067231836,0.088936322,62.32551518,8.966181399,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1100,0,1100,0,0,0,0,0,19.56599075,0,19.56599075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,2.4,0,835,5.5,840.5,0,0,0,0.038772213,0,15.40022132,0.088852989,15.48907431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6,5,0,0,5,0,0,0,0.028459623,0.088936322,0,0,0.088936322,0,0,0,0,0,0,0,0,,,,,,0.017968972,0,0.017968972,0,0,0,0,0,0,0,Kyrgyzstan,2010,0,0,71.3806329
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.2,0,7900,260,8160,0,0,1658,1.237833966,0,322.2003671,10.54658181,,0,0,0,0,0,0,0,0,0,0,0,0,0,30.2,0,7900,260,8160,0,0,1658,1.237833966,0,322.2003671,10.54658181,332.7469489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Laos,1960,0,0,332.7469489
0,0,350000,0,350000,0,0,0,0,0,11160.71429,0,11160.71429,0,0,0,0,0,0,0,0,0,0,0,0,0,4.5,0,405900,1500,407400,0,0,20,0.148510564,0,12971.1772,54.30847212,,0,0,0,0,0,0,0,0,0,0,0,0,0,4.5,0,55900,1500,57400,0,0,20,0.148510564,0,1810.462918,54.30847212,1864.77139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Laos,1970,0,0,13025.48568
0,0,73000,0,73000,0,0,0,0,0,1815.468789,0,1815.468789,0,0,0,0,0,0,0,0,0,0,0,0,0,1.4,0,73200,0,73200,0,0,0,0.039040714,0,1821.046034,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,1.4,0,200,0,200,0,0,0,0.039040714,0,5.577244841,0,5.577244841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Laos,1980,0,0,1821.046034
0,0,2000,0,2000,0,0,100,0,0,38.20439351,0,38.20439351,0,0,0,0,0,0,0,0,0,0,0,0,0,9.6,37.2,186049,100000,286086.2,0,0,32877.9,0.202673445,0.81974026,3951.027134,2063.557573,,0,0,0,0,0,0,0,0,0,0,0,0,0,4,15,153340,0,153355,0,0,2182.8,0.082816042,0.333333333,3228.047818,0,3228.381151,0,0,0,0,0,0,0,0,0,0,0,0,0,5.6,22.2,30709,100000,130731.2,0,0,30595.1,,,684.7749232,2063.557573,2748.818903,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,2.51275741,0.009726794,0,0,0.193543763,0,0,2.309486853,0,0,Laos,1990,0.119857403,0.486406926,6015.404448
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.9,9.1,138598.6,0,138607.7,0,0,10100,0.084020876,0.147991543,2502.772257,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,3.3,0,125719,0,125719,0,0,100,0.058000385,0,2293.313809,0,2293.313809,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6,9.1,12879.6,0,12888.7,0,0,10000,,,209.4584485,0,209.6064401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.177217202,0,0,0,0.005776347,0,0,0.171440855,0,0,Laos,2000,0.026020491,0.147991543,2502.920249
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.5,7.7,237189.4,4.5,237201.6,0,0,35605,0.343124837,0.117719003,3491.708875,0.066755674,,0,0,0,0,0,0,0,0,0,0,0,0,0,23.5,7.7,163674.9,4.5,163687.1,0,0,13105,0.343124837,0.117719003,2450.574475,0.066755674,2450.75895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73514.5,0,73514.5,0,0,22500,,,1041.1344,0,1041.1344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.23362355,0,0,0,0.108301797,0,0,0.125321754,0,0,Laos,2010,0,0,3491.89335
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,0,0,0,0,0,0,50,0.024916944,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,0,0,0,0,0,0,50,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.000664416,0,0,0,0,0,0,0.000664416,0,0,Latvia,1990,0.024916944,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.6,0,0,0,0,0,4000,32500,0.331688367,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4000,32500,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.6,0,0,0,0,0,0,0,0.331688367,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.191635121,0,0,0,0,0,0,0.191635121,0,0,Latvia,2000,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.048332528,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.048332528,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Latvia,2010,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,13.6,20,0,0,20,,,,0.858585859,1.262626263,0,0,1.262626263,57.6,20,0,0,20,,,,3.730648522,1.262626263,0,0,,0,0,0,0,0,,,,0,0,0,0,0,44,0,0,0,0,,,,2.872062663,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Lebanon,1950,0,0,1.262626263
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Lebanon,1960,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Lebanon,1970,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,150,0,150,0,0,1000,0.076277651,0,5.622188906,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,150,0,0,1000,0,0,5.622188906,0,5.622188906,2,0,0,0,0,0,0,0,0.076277651,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Lebanon,1980,0,0,5.622188906
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5,7.5,10000,400,10407.5,0,0,15500,0.081274382,0.243823147,325.0975293,13.00390117,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5,7.5,10000,400,10407.5,0,0,15500,,,325.0975293,13.00390117,338.3452536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.265248396,0,0,0,0,0,0,0.265248396,0,0,Lebanon,1990,0.081274382,0.243823147,338.3452536
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,1.5,1750,0,1751.5,0,0,0,0.002097755,0.031466331,39.93762389,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1700,0,1700,0,0,0,0,0,38.7420237,0,38.7420237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,50,0,0,0,,,1.195600191,0,1.195600191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,1.5,0,0,1.5,0,0,0,0.002097755,0.031466331,0,0,0.031466331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Lebanon,2000,0,0,39.96909022
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.3,75.9,101194.2,0,101270.1,0,0,0,0.033898258,1.161144944,1548.176592,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.3,75.9,101194.2,0,101270.1,0,0,0,,,1548.176592,0,1549.337737,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Lebanon,2010,0.033898258,1.161144944,1549.337737
0,0,20400,0,20400,0,0,100,0,0,2073.170732,0,2073.170732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20400,0,20400,0,0,100,0,0,2073.170732,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.162747779,0.162747779,0,0,0,0,0,0,0,0,Lesotho,1960,0,0,2073.170732
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Lesotho,1970,0,0,0
0,0,50000,0,50000,0,0,0,0,0,3441.156228,0,3441.156228,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,0,68000,0,68000,0,0,0,0.112781955,0,4591.96904,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,0,18000,0,18000,0,0,0,0.112781955,0,1150.812812,0,1150.812812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Lesotho,1980,0,0,4591.96904
0,0,33150,0,33150,0,0,0,0,0,1945.422535,0,1945.422535,0,0,0,0,0,0,0,0,0,0,0,0,0,2.2,0,33173,2,33175,0,0,0,0.129107981,0,1946.61178,0.103412616,,0,0,0,0,0,0,0,0,0,0,0,0,0,2.2,0,0,0,0,0,0,0,0.129107981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,2,25,0,0,0,,,1.189245088,0.103412616,1.292657704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Lesotho,1990,0,0,1946.715193
0,0,97500,0,97500,0,0,0,0,0,4853.592687,0,4853.592687,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0.1,98050,100,98150.1,0,0,0,0.004911591,0.004911591,4881.151486,4.911591356,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0.1,550,100,650.1,0,0,0,,,27.5587982,4.911591356,32.47530115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Lesotho,2000,0.004911591,0.004911591,4886.067989
0,0,186751.5,0,186751.5,0,0,0,0,0,9074.84886,0,9074.84886,0,0,0,0,0,0,0,0,0,0,0,0,0,2.6,0,187251.5,260,187511.5,0,0,0,0.129740519,0,9099.79896,12.72638277,,0,0,0,0,0,0,0,0,0,0,0,0,0,2.6,0,500,0,500,0,0,0,0.129740519,0,24.9500998,0,24.9500998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,260,260,0,0,0,,,0,12.72638277,12.72638277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Lesotho,2010,0,0,9112.525343
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.6,0,20,0,20,0,0,0,0.231271996,0,1.005530417,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.6,0,20,0,20,0,0,0,0.231271996,0,1.005530417,0,1.005530417,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Liberia,1980,0,0,1.005530417
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,100500,200,100700,0,0,4700,0.039729837,0,4836.820603,9.7799511,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,500,0,500,0,0,0,0.039729837,0,19.86491855,0,19.86491855,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,200,0,0,0,,,0,9.7799511,9.7799511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100000,0,100000,0,0,4700,0,0,4816.955684,0,4816.955684,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Liberia,1990,0,0,4846.600554
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,1758.4,384,2142.4,0,0,0,0.008216154,0,50.66023778,11.05211348,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,1758.4,34,1792.4,0,0,0,0.008216154,0,50.66023778,0.942350333,51.60258812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,350,350,0,0,0,,,0,10.10976314,10.10976314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Liberia,2000,0,0,61.71235126
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,3091.7,0,3091.7,0,0,0,0.002570033,0,73.44026118,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,3091.7,0,3091.7,0,0,0,0.002570033,0,73.44026118,0,73.44026118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Liberia,2010,0,0,73.44026118
0,0,0,0,0,0,0,0,0,0,0,0,0,30,37.5,0,500,537.5,0,0,500,1.866832607,2.333540759,0,31.11387679,33.44741755,30,37.5,0,500,537.5,0,0,500,1.866832607,2.333540759,0,31.11387679,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Libya,1960,0,0,33.44741755
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Libya,1970,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Libya,1980,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4220,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.016520431,0,0,0,0.016520431,0,0,0,0,0,Libya,1990,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Libya,2000,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,2200,0,2203,0,0,710,0.031218772,0.044267375,32.67614026,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,2200,0,2203,0,0,710,0.031218772,0.044267375,32.67614026,0,32.72040763,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.001362995,0,0,0,0.001362995,0,0,0,0,0,Libya,2010,0,0,32.72040763
0,0,0,0,0,0,0,5290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,78000,0,78000,0,0,5800,0.112688894,0,2124.761645,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,78000,0,78000,0,0,510,,,2124.761645,0,2124.761645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.2,0,0,0,0,0,0,0,0.090677246,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.000455723,0,0,0,0,0,0,0.000455723,0,0,Lithuania,1990,0.022011648,0,2124.761645
0,0,0,0,0,0,0,22557.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,600,25557.3,0.057570524,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,600,3000,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0.057570524,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.086228968,0.074733692,0,0,0,0,0,0.011495276,0,0,Lithuania,2000,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.4,0,0,0,0,0,0,0,0.145149809,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0,0,0,0.012804097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0.132345712,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Lithuania,2010,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,15,0,0,0,0,,,,0.019079942,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,15,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Low income,1900,0.019079942,0,0
8500,0,3200,0,3200,,,,10.73228407,0,4.040389297,0,4.040389297,9,0,0,0,0,,,,0.01128013,0,0,0,0,8669,0,3200,0,3200,,,,10.93760064,0,4.040389297,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,160,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Low income,1910,0.194036436,0,4.040389297
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Low income,1920,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,17.5,0,0,0,0,,,,0.018340235,0,0,0,0,232.5,0,0,0,0,,,,0.232533892,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,215,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Low income,1930,0.214193657,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Low income,1940,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,210.6,200,0,0,200,,,,0.165807861,0.151716291,0,0,0.151716291,298.6,200,25000,0,25200,,,,0.23434776,0.151716291,19.71655481,0,,0,0,0,0,0,,,,0,0,0,0,0,10.1,0,0,0,0,,,,0.007424978,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,51.7,0,25000,0,25000,,,,,,19.71655481,0,19.71655481,26.2,0,0,0,0,,,,0.020662949,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Low income,1950,0.040451971,0,19.8682711
205,0,638821.7,0,638821.7,0,0,8610,0.127373189,0,373.3984068,0,373.3984068,18.2,127.5,800,42,969.5,0,0,202,0.011144131,0.076515836,0.484713353,0.023575639,0.584804827,891,221.1,675231.7,1958.8,677411.6,0,0,49304,0.569333127,0.13304903,395.1466122,1.123105643,,0,0,0,0,0,0,0,0,0,0,0,0,0,83.4,0,10350,600,10950,0,0,18662,0.054900393,0,6.093271219,0.345546482,6.438817701,0,0,0,0,0,0,0,0,0,0,0,0,0,569,93.6,25200,1300,26593.6,0,0,21830,,,15.13566619,0.744308221,15.9365076,15.4,0,60,16.8,76.8,0,0,0,0.008869026,0,0.034554648,0.009675301,0.04422995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.31160405,0.042977246,0.001342806,0,0.111891552,0,0,0.155392446,0,0,Low income,1960,0.367046387,0.056533194,396.4027669
11900,0,1347900,0,1347900,0,0,7650,6.03586011,0,624.1300664,0,624.1300664,6.1,1.5,9000,0,9001.5,0,0,0,0.002923598,0.000780206,4.232605168,0,4.233385374,12095.5,43.8,2096815.4,25225,2122084.2,0,0,73637.9,6.132478454,0.020511579,996.6158078,11.92013845,,21.1,0,0,6000,6000,0,0,0,0.009675393,0,0,2.751296548,2.751296548,129,14,424004.4,14340,438358.4,0,0,23645.9,0.064133091,0.006260201,207.3864062,6.860998054,214.2536645,0,0,0,0,0,0,0,0,0,0,0,0,0,29.3,28.3,315911,4385,320324.3,0,0,42342,,,160.86673,2.054236278,162.9344374,10,0,0,0,0,0,0,0,0.0053345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,500,500,0,0,0,0,0,0,0.253607568,0.253607568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.151977461,0.025233533,0,0,0.043687632,0,0,0.083056295,0,0,Low income,1970,0.014551762,0.013471173,1008.556458
55445.4,0,5312376.7,0,5312376.7,0,0,0,22.14194886,0,2038.789483,0,2038.789483,79.7,505.4,8444,5658,14607.4,0,0,3700,0.031974452,0.202322531,3.366247561,1.955210244,5.523780335,55726.8,678.6,5850243.6,218165.2,6069087.4,0,0,179926.8,22.24932109,0.265996732,2237.941567,82.99574349,,0,0,0,0,0,0,0,0,0,0,0,0,0,89.2,98,336699,121447.2,458244.2,0,0,27070,0.03170011,0.035586085,123.4337258,42.46551456,165.9348265,4.6,0,20,0,20,0,0,0,0.001865044,0,0.008108886,0,0.008108886,100.9,69.2,192689.1,90960,283718.3,0,0,149156.8,,,72.3389853,38.54112279,110.9061625,7,6,14.8,100,120.8,0,0,0,0.002504051,0.002033754,0.005016592,0.033895892,0.040946238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.231328737,0,0.004428867,0,0.03071022,0,0,0.196189649,0,0,Low income,1980,0.039328572,0.026054362,2321.203307
15.4,0,4452053.5,0,4452053.5,0,0,6720,0.003947896,0,1332.609725,0,1332.609725,745.5,369.8,32968.5,11727.5,45065.8,0,0,9001,0.197443975,0.098416713,9.176921757,3.292289242,12.56762771,1952,2554.9,6541254.2,283748.6,6827557.7,1400,20,1973157.8,0.547966507,0.709401125,1926.775024,80.88895102,,0,0,0,0,0,0,0,0,0,0,0,0,0,832.3,1967.8,1455380.5,180465.1,1637813.4,0,20,1893404.3,0.242310354,0.547387524,406.6221178,50.54210451,457.7116098,2.5,0,0,0,0,0,0,0,0.000789566,0,0,0,0,212.2,209.9,499203.2,85127.4,584540.5,1400,0,42022.5,,,144.9121698,25.12446856,170.0981174,116.7,7.4,1500,6398.6,7906,0,0,17310,0.033671995,0.002117842,0.452958726,1.922204826,2.377281395,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,128.5,30,158.5,0,0,0,0.001313981,0,0.033958757,0.007883886,0.041842643,22.4,0,100020,0,100020,0,0,4700,0.007308507,0,32.96717219,0,32.96717219,0,0,0,0,0,0,0,0,,,,,,2.296076042,0.006983137,0.011382014,0.004882947,2.206975391,0.019373781,0,0.046478772,0,0,Low income,1990,0.061180234,0.061479045,2008.373376
75.6,0,8505828.3,0,8505828.3,0,0,5705,0.017607135,0,1817.605869,0,1817.605869,166,284.5,24401.8,3980.5,28666.8,0,0,12905,0.038314437,0.062999327,5.487214415,0.827808979,6.378022721,1958.3,1713.6,10791190.3,269814.3,11062718.2,600,150,1003878.1,0.430503222,0.376802159,2330.059173,58.73073732,,21.1,41.5,1100,11000,12141.5,0,0,900,0.004931341,0.00971968,0.235375987,2.588643386,2.833739053,968.1,420.7,1503621.3,171349.4,1675391.4,600,150,226663.6,0.21240402,0.087855904,341.9022763,36.96297812,378.9531103,0,0,0,0,0,0,0,0,0,0,0,0,0,525.4,938.1,486464.6,82948.7,570351.4,0,0,669543.5,,,109.964075,18.23819452,128.4125327,30.6,7.8,32724.1,70.5,32802.4,0,0,4160,0.006742059,0.001766703,6.900038741,0.016166835,6.917972278,0,0,0,0,0,0,0,0,0,0,0,0,0,5,2.8,0,465.2,468,0,0,0,0.000997057,0.00058141,0,0.096945474,0.097526884,166.5,18.2,237050.2,0,237068.4,0,0,84001,0.034535081,0.003615947,47.96432263,0,47.96793858,0,0,0,0,0,0,0,0,,,,,,0.696237619,0.0047318,0.007609092,0.027942055,0.119437303,0.003072983,0,0.532715939,0.000728448,0,Low income,2000,0.114972093,0.210263188,2389.166712
2000,0,12638763.1,0,12638763.1,0,0,162800,0.376462793,0,2119.184777,0,2119.184777,22281.5,35877,345991.9,3809.9,385678.8,1150000,20000,800650,4.193642856,6.620954008,64.96549217,0.63643057,72.22287674,25504.4,38667.4,16008035,87326.1,16134028.5,1150000,35016.2,1584995.1,4.772542536,7.070653707,2671.555095,14.68905048,,0,0,0,0,0,0,0,0,0,0,0,0,0,625.6,1265.6,1748797.4,52061,1802124,0,0,120527.5,0.104134621,0.207312179,288.7154482,8.669890833,297.5926512,0,0,0,0,0,0,0,0,0,0,0,0,0,271.9,1459.3,1244488.6,28653.7,1274601.6,0,15016.2,494914,,,193.9563238,4.89197959,199.07953,313.1,57.5,22666.9,2298.8,25023.2,0,0,6103.6,0.051760129,0.00976572,3.533142763,0.399259974,3.942168456,0,0,0,0,0,0,0,0,0,0,0,0,0,6.1,1.2,5700.3,502.7,6204.2,0,0,0,0.00094831,0.000179518,0.944955117,0.091489515,1.036624151,6.2,6.8,1626.8,0,1633.6,0,0,0,0.001087645,0.001215734,0.254955857,0,0.256171591,0,0,0,0,0,0,0,0,,,,,,0.410553094,0.036763064,0.229970819,0,0.029122833,0.001377104,0,0.113319275,0,0,Low income,2010,0.044506182,0.231226548,2693.314799
126100,0,0,0,0,,,,29.05837176,0,0,0,0,2033.1,0,0,0,0,,,,0.454003947,0,0,0,0,128236,0,0,0,0,,,,29.53552643,0,0,0,,1.7,0,0,0,0,,,,0.000384517,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,101.2,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Lower middle income,1900,0.022766203,0,0
0,0,0,0,0,,,,0,0,0,0,0,11.2,0,0,0,0,,,,0.002310554,0,0,0,0,174.7,19.9,0,0,19.9,,,,0.037292637,0.00428409,0,0,,133.5,19.9,0,0,19.9,,,,0.02874,0.00428409,0,0,0.00428409,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,30,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Lower middle income,1910,0.006242082,0,0.00428409
2400,0,0,0,0,,,,0.48500216,0,0,0,0,2.9,0,0,0,0,,,,0.000562558,0,0,0,0,3178.4,1,104000,6700,110701,,,,0.635146859,0.000191614,20.37495052,1.304418926,,0,0,0,0,0,,,,0,0,0,0,0,303.6,0,0,200,200,,,,0.058168499,0,0,0.038023215,0.038023215,0,0,0,0,0,,,,0,0,0,0,0,471.9,1,104000,6500,110501,,,,,,20.37495052,1.266395711,21.64153785,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Lower middle income,1920,0.091413641,0.000191614,21.67956106
0,0,0,0,0,,,,0,0,0,0,0,6305.9,2533,0,750,3283,,,,1.101514426,0.441114051,0,0.123635974,0.564750025,12968.3,2533,750,16000,19283,,,,2.263406817,0.441114051,0.127114082,2.746710589,,50.6,0,750,0,750,,,,0.008575963,0,0.127114082,0,0.127114082,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,6611.8,0,0,15250,15250,,,,,,0,2.623074615,2.623074615,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Lower middle income,1930,1.153316428,0,3.314938721
345000,0,0,0,0,,,,54.19689446,0,0,0,0,436.3,0,0,0,0,,,,0.066260599,0,0,0,0,356900,0,3000,1200,4200,,,,56.07297964,0,0.468641164,0.184568049,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,11413.7,0,3000,1200,4200,,,,,,0.468641164,0.184568049,0.653209213,50,0,0,0,0,,,,0.007276694,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Lower middle income,1940,1.802547887,0,0.653209213
0,0,0,0,0,,,,0,0,0,0,0,912.1,734.8,0,12925,13659.8,,,,0.12169903,0.094274997,0,1.669404861,1.763679858,2708.2,780,238620,58125,297525,,,,0.358518851,0.100343154,30.64254481,7.37180902,,358.4,0,320,0,320,,,,0.04903048,0,0.038871369,0,0.038871369,512.5,0,5300,7700,13000,,,,0.068036216,0,0.680197769,0.955045858,1.635243627,0,0,0,0,0,,,,0,0,0,0,0,793.3,45.2,233000,37500,270545.2,,,,,,29.92347567,4.747358301,34.67690213,15.7,0,0,0,0,,,,0.001899453,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,116.2,0,0,0,0,,,,0.014472816,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Lower middle income,1950,0.103380856,0.006068157,38.11469698
150000,0,10414448.3,0,10414448.3,0,0,20980,15.25754728,0,1056.823222,0,1056.823222,1278.6,2915.2,20008.2,6198.5,29121.9,0,0,16540,0.144446755,0.32565682,2.006707118,0.631446421,2.96381036,165515.1,74883.4,15767932.3,676155.4,16518971.1,0,0,137630.7,16.89199762,7.564089571,1586.90953,68.00008326,,35.8,78.5,9870,1400,11348.5,0,0,1500,0.003639451,0.007984783,0.974608415,0.138369069,1.120962267,2380.3,10045.9,3053419.9,109974.5,3173440.3,0,0,58569.8,0.252782798,0.954250759,293.0928711,10.54589445,304.5930163,15,0,0,0,0,0,0,0,0.001596808,0,0,0,0,11636,61843.8,2270135.9,558565.6,2890545.3,0,0,40040.9,,,234.0072622,56.6827406,296.9662,119.4,0,50,16.8,66.8,0,0,0,0.011451382,0,0.00485928,0.001632718,0.006491998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0.005471895,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.121186971,0.016325911,0.019008979,0,0.047060681,0,0,0.037552979,0.001238421,0,Lower middle income,1960,1.215061254,6.276197208,1662.473703
1.8,0,22535806.5,0,22535806.5,0,0,64570,0.000132325,0,1926.148862,0,1926.148862,2116.9,4186.4,67500,30520,102206.4,0,10000,98455.5,0.176768402,0.352068983,5.645168331,2.642437142,8.639674456,41696.3,8317.4,43679201.9,1856165.3,45543684.6,0,10000,797355.5,3.68648675,0.689398409,3627.518025,150.5264391,,0.1,0,6651,560,7211,0,0,267.9,0.00000771,0,0.520588647,0.043866553,0.5644552,4210.7,195.1,17335344,1044507.9,18380047,0,0,377201.4,0.345482279,0.016238433,1387.023148,85.16291981,1472.202306,0,0,0,0,0,0,0,0,0,0,0,0,0,34904.5,3914,3722490.4,780277.4,4506681.8,0,0,255760.7,,,307.2860952,62.6546288,370.2601682,372.6,1.9,8010,0,8011.9,0,0,0,0.031060371,0.000140919,0.643506535,0,0.643647454,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,20,3400,300,3720,0,0,1100,0.0000151,0.001505788,0.250656647,0.022586823,0.274749258,89.5,0,0,0,0,0,0,0,0.006907272,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.329852357,0.02128642,0.053420281,0,0.160657767,0,0,0.09410867,0.00014617,0.000233049,Lower middle income,1970,3.126113334,0.319444286,3778.733862
80,0,46389230.9,0,46389230.9,0,0,103835.4,0.005320269,0,2932.287814,0,2932.287814,536.1,4217.5,2154524.3,74120,2232861.8,0,22500,710485.2,0.035868017,0.275775749,128.631716,5.067858918,133.9753507,7153.7,10098,85061487.1,1521206.5,86592791.6,0,22500,2127875.8,0.458961539,0.662756881,5414.344245,95.97606703,,178.3,43.7,10500,0,10543.7,0,0,0,0.011074969,0.002711635,0.684431858,0,0.687143493,2441.2,1986.2,28540172.5,348427,28890585.7,0,0,845394.9,0.156141752,0.134379565,1841.840839,21.5991384,1863.574357,56.2,0,100,0,100,0,0,0,0.003513421,0,0.005922623,0,0.005922623,3474.9,3798.6,7962823.9,845987.9,8812610.4,0,0,453560.3,,,510.6079987,53.61441055,564.4691713,156.4,31,1126.7,250671.6,251829.3,0,0,0,0.009822947,0.001882771,0.07576524,15.55458205,15.63223007,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2,0,3008.8,2000,5008.8,0,0,200,0.0000814,0,0.20975785,0.14007711,0.34983496,229.4,21,0,0,21,0,0,14400,0.014723496,0.001245136,0,0,0.001245136,0,0,0,0,0,0,0,0,,,,,,0.30123224,0.014872751,0.115137569,0.001981877,0.108126724,0,0,0.061083634,0,0.0000297,Lower middle income,1980,0.222415218,0.246762026,5510.983069
29.6,0,5911513.3,0,5911513.3,0,0,251213.9,0.001409165,0,296.3460301,0,296.3460301,1768.5,5065.8,289729.2,28804.8,323599.8,0,5540,221992.3,0.093984653,0.27032847,15.71795951,1.441677161,17.42996514,25403.4,28726.3,53220756.2,1660887.8,54910370.3,0,68150,4676779.5,1.354101722,1.530726978,2721.993084,86.51139211,,72.9,31.6,157474.3,11701,169206.9,0,0,32221,0.004016662,0.001720842,8.614963434,0.615969694,9.23265397,3073.1,438,38115261.1,824718.9,38940418,0,5420,1992607.3,0.156993928,0.02308991,1953.319185,43.38100814,1996.723283,3.5,0,30,40,70,0,0,0,0.000185998,0,0.001593303,0.00216927,0.003762573,19608.1,23112.1,8694972.6,669798.4,9387883.1,0,57190,1940815,,,445.396925,34.62304515,481.2515544,273.5,72.7,46670.7,120144.7,166888.1,0,0,46680,0.014039617,0.003698604,2.349295035,6.144258025,8.497251664,0,0,0,0,0,0,0,0,0,0,0,0,0,14.6,6.1,1680,5680,7366.1,0,0,191250,0.000746356,0.000304967,0.082190815,0.303264672,0.385760455,559.6,0,3425,0,3425,0,0,0,0.028279862,0,0.164941703,0,0.164941703,0,0,0,0,0,0,0,0,,,,,,0.450357131,0.020735525,0.024116694,0,0.200390972,0.005090148,0,0.179764128,0.003738075,0.016521589,Lower middle income,1990,1.054445481,1.231584185,2810.035203
19.1,0,38815526.9,0,38815526.9,0,0,228469.5,0.000843113,0,1738.858992,0,1738.858992,15101.5,35282,845052.7,766017.4,1646352.1,520000,39500,1962310.4,0.65268445,1.556902228,38.11039719,33.18700536,72.85430477,34596.7,48213.4,82653311.3,1684885.4,84386410.1,539308.4,194250,6381499.3,1.455023251,2.095994534,3634.996849,71.71422943,,0.3,0,60246.8,0,60246.8,0,0,479.4,0.0000128,0,2.598617626,0,2.598617626,2745.3,577.2,34836624.5,756439.2,35593640.9,1008.4,150100,2586167.8,0.117755268,0.02493245,1516.507626,31.52998012,1548.062539,11.9,7.2,0,62.5,69.7,0,0,0,0.000488294,0.000291533,0,0.002530665,0.002822197,15517.5,11039.1,7934410.8,152215.8,8097665.7,18300,4650,1543221,,,332.1649857,6.571639701,339.1941081,401.3,58.8,54861.3,10150.5,65070.6,0,0,6070.3,0.017390982,0.002559142,2.432342595,0.423073584,2.857975321,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2050,0,2050,0,0,0,0.0000412,0,0.090528551,0,0.090528551,798.8,1249.1,104538.3,0,105787.4,0,0,54780.9,0.034936413,0.053826457,4.233359349,0,4.287185807,0,0,0,0,0,0,0,0,,,,,,0.293946703,0.014308278,0.110434283,0.003208363,0.116399915,0.000282785,0,0.049277732,0.0000353,0,Lower middle income,2000,0.630870821,0.457482725,3708.807073
10.1,0,40418477,0,40418477,0,40000,1391639.9,0.000351549,0,1469.175265,0,1469.175265,1079.6,3070.4,1217999.4,21934.2,1243004,530,12000,617996.9,0.039343486,0.111374616,44.61583385,0.815132187,45.54234066,6658,13033.8,77754200.1,692333.2,78459567.1,39840,412600,13160704.1,0.245545225,0.480749118,2837.392618,25.70582287,,0,0,30577.4,0,30577.4,0,0,356.4,0,0,1.113382885,0,1.113382885,2872.6,4361.5,22134225.9,489234.2,22627821.6,39310,207000,7228898.1,0.106240676,0.161171378,815.7592561,18.12130607,834.0417335,4.6,0,0,0,0,0,0,0,0.00016729,0,0,0,0,1811.2,4735.4,13460961.2,180163.4,13645860,0,153600,3896692.7,,,489.0450117,6.732295573,495.9544749,199,54.8,36876.8,695.5,37627.1,0,0,23307.8,0.007321924,0.002021303,1.398236185,0.025577828,1.425835316,0,0,0,0,0,0,0,0,0,0,0,0,0,3.6,0,3800,305.9,4105.9,0,0,0,0.000127413,0,0.13062842,0.011511216,0.142139637,677.3,811.7,451282.4,0,452094.1,0,0,1812.3,0.024819189,0.029014173,16.15500322,0,16.18401739,0,0,0,0,0,0,0,0,,,,,,0.231810754,0.024272248,0.010713888,0.0000312,0.129440363,0.000410152,0,0.066937499,0.00000541,0,Lower middle income,2010,0.067173699,0.177167648,2863.57919
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Luxembourg,1980,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24000,39000,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24000,38000,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.290380909,0,0,0,0.006065421,0,0,0.284315487,0,0,Luxembourg,1990,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,3.803131991,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,3.803131991,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Luxembourg,2000,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.9,150,0,151.9,0,13300,3100,0,0.308441558,24.35064935,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.9,150,0,151.9,0,13300,3100,,,24.35064935,0,24.65909091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.005825701,0,0,0,0,0,0,0.005825701,0,0,Luxembourg,2010,0,0.308441558,24.65909091
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.8,120,274.8,398.6,0,0,0,0,1.027027027,32.43243243,74.27027027,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.8,120,274.8,398.6,0,0,0,,,32.43243243,74.27027027,107.7297297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Macao,1990,0,1.027027027,107.7297297
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Macao,2000,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,20,0,0,20,0,0,142000,0.160513644,3.210272873,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,20,0,0,20,0,0,142000,,,0,0,3.210272873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.281429058,0,0,0,0,0,0,0.281429058,0,0,Macao,2010,0.160513644,3.210272873,3.210272873
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,4,10500,1300,11804,0,0,810,0.17304205,0.062480475,166.7473982,20.72710074,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,4,10500,1300,11804,0,0,810,,,166.7473982,20.72710074,187.5369794,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.077379336,0,0,0,0,0,0,0.077379336,0,0,Madagascar,1960,0.17304205,0.062480475,187.5369794
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.4,13.2,306800,1885,308698.2,0,0,41982,0.364845521,0.180232032,4329.749879,25.78026817,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.4,13.2,306800,1885,308698.2,0,0,41982,,,4329.749879,25.78026817,4355.71038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1.865370835,0,0,0,0,0,0,1.865370835,0,0,Madagascar,1970,0.364845521,0.180232032,4355.71038
20,0,195000,0,195000,0,0,0,0.182615047,0,1982.124407,0,1982.124407,0,0,0,0,0,0,0,0,0,0,0,0,0,65.4,63.9,234901.4,7000,241965.3,0,0,92500,0.651688162,0.629396614,2387.575543,75.80680095,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2822.3,0,2822.3,0,0,0,0,0,27.26333076,0,27.26333076,0,0,0,0,0,0,0,0,0,0,0,0,0,45.4,63.9,37079.1,7000,44143,0,0,92500,,,378.1878055,75.80680095,454.624003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,2.086135352,0,0,0,0,0,0,2.086135352,0,0,Madagascar,1980,0.469073115,0.629396614,2464.011741
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.1,5.1,126500,24500,151005.1,0,0,6020,0.32012862,0.039029617,935.1591923,191.0321837,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2000,0,2000,0,0,0,0,0,13.50530083,0,13.50530083,0,0,0,0,0,0,0,0,0,0,0,0,0,43.1,5.1,124500,24500,149005.1,0,0,6020,,,921.6538914,191.0321837,1112.725105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.146248202,0,0,0,0,0,0,0.146248202,0,0,Madagascar,1990,0.32012862,0.039029617,1126.230406
0,0,156529,0,156529,0,0,0,0,0,872.2877681,0,872.2877681,0,0,0,0,0,0,0,0,0,0,0,0,0,101,289.7,487006.9,53877.6,541174.2,0,0,71418.1,0.566330112,1.632876197,2786.530386,290.3774338,,0,0,0,0,0,0,0,0,0,0,0,0,0,5.2,1.7,11148.8,448.2,11598.7,0,0,15000,0.028676749,0.009270873,60.44438064,2.563847563,63.01749907,0,0,0,0,0,0,0,0,0,0,0,0,0,95.8,288,319329.1,53429.4,373046.5,0,0,56418.1,,,1853.798237,287.8135863,2143.235429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1.091455736,0,0,0,0.235386473,0,0,0.856069262,0,0,Madagascar,2000,0.537653364,1.623605324,3078.540696
0,0,242000,0,242000,0,0,0,0,0,959.1655299,0,959.1655299,0,0,0,0,0,0,0,0,0,0,0,0,0,64.8,721.4,374263.9,23398.1,398383.4,0,0,21600,0.276068276,2.73271569,1516.657346,97.79153901,,0,0,0,0,0,0,0,0,0,0,0,0,0,3.5,0,0,2400,2400,0,0,0,0.014065893,0,0,9.903441446,9.903441446,0,0,0,0,0,0,0,0,0,0,0,0,0,61.3,721.4,132263.9,20998.1,153983.4,0,0,21600,,,557.4918166,87.88809756,648.1126298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.179906079,0,0,0,0,0,0,0.179906079,0,0,Madagascar,2010,0.262002383,2.73271569,1617.181601
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,350,0,350,0,0,70,0,0,7.778262767,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,350,0,350,0,0,70,0,0,7.778262767,0,7.778262767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.026055372,0,0,0,0.026055372,0,0,0,0,0,Malawi,1960,0,0,7.778262767
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2000,0,2000,0,0,0,0,0,32.9218107,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2000,0,2000,0,0,0,0,0,32.9218107,0,32.9218107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Malawi,1970,0,0,32.9218107
0,0,142926.7,0,142926.7,0,0,0,0,0,1755.640585,0,1755.640585,0.9,10,0,5000,5010,0,0,2800,0.009916263,0.110180696,0,55.09034817,55.20052887,2.2,10,143526.7,15000,158536.7,0,0,2800,0.024239753,0.110180696,1764.778568,165.2710445,,0,0,0,0,0,0,0,0,0,0,0,0,0,1.3,0,600,10000,10600,0,0,0,0.014323491,0,9.137983552,110.1806963,119.3186799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.176076755,0,0.176076755,0,0,0,0,0,0,0,Malawi,1980,0,0,1930.159793
0,0,980000,0,980000,0,0,0,0,0,10204.38186,0,10204.38186,0,0,0,0,0,0,0,0,0,0,0,0,0,47.7,0,1021700,15130,1036830,0,0,2408.9,0.496473264,0,10610.11346,157.5706014,,0,0,0,0,0,0,0,0,0,0,0,0,0,47.7,0,41700,15130,56830,0,0,2408.9,0.496473264,0,405.7316016,157.5706014,563.302203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.109423766,0,0,0,0.109423766,0,0,0,0,0,Malawi,1990,0,0,10767.68406
50,0,844943.5,0,844943.5,0,0,0,0.426839679,0,6844.460936,0,6844.460936,0.4,18.6,0,2055,2073.6,0,0,0,0.002831257,0.131653454,0,14.54558324,14.67723669,60.6,19.4,960871.1,8470.9,969361.4,0,0,770,0.516132969,0.137989586,7822.500671,64.94896126,,0,0,0,0,0,0,0,0,0,0,0,0,0,9.1,0,115927.6,6415.9,122343.5,0,0,770,0.077749852,0,978.0397348,50.40337803,1028.443113,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1,0.8,0,0,0.8,0,0,0,,,0,0,0.006336132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.044768419,0,0,0,0.044768419,0,0,0,0,0,Malawi,2000,0.008712181,0.006336132,7887.587622
0,0,860000,0,860000,0,0,0,0,0,5235.281162,0,5235.281162,0,0,0,0,0,0,0,0,0,0,0,0,0,37.9,132.7,1052921.9,315,1053369.6,0,0,39000,0.222404077,0.751417043,6339.416113,1.836451503,,0,0,0,0,0,0,0,0,0,0,0,0,0,36.6,131.8,192311.9,280,192723.7,0,0,39000,0.215123732,0.746585866,1100.184155,1.627433885,1102.558175,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,600,35,635,0,0,0,,,3.897116134,0.209017617,4.106133751,0.8,0.9,10,0,10.9,0,0,0,0.00429438,0.004831177,0.053679747,0,0.058510924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.611936274,0,0,0,0.611936274,0,0,0,0,0,Malawi,2010,0.002985966,0,6342.003982
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.7,0,43500,1500,45000,0,0,2660,0.076461253,0,449.0327666,14.93131595,,0,0,0,0,0,0,0,0,0,0,0,0,0,5.6,0,42500,1500,44000,0,0,2660,0.056068943,0,439.3221432,14.93131595,454.2534592,0,0,0,0,0,0,0,0,0,0,0,0,0,2.1,0,1000,0,1000,0,0,0,,,9.710623422,0,9.710623422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.083659862,0,0,0,0.083659862,0,0,0,0,0,Malaysia,1960,0.020392309,0,463.9640826
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.1,0,24600,0,24600,0,0,3700,0.05646057,0,227.2027602,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,6.1,0,24600,0,24600,0,0,3700,0.05646057,0,227.2027602,0,227.2027602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.095751458,0,0,0,0.095751458,0,0,0,0,0,Malaysia,1970,0,0,227.2027602
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.1,0,10257.6,0,10257.6,0,0,1150,0.031281826,0,62.5119248,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,5.1,0,10257.6,0,10257.6,0,0,1150,0.031281826,0,62.5119248,0,62.5119248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.004146451,0,0,0,0.004146451,0,0,0,0,0,Malaysia,1980,0,0,62.5119248
0,0,500,0,500,0,0,0,0,0,2.260908885,0,2.260908885,0,0,0,0,0,0,0,0,0,0,0,0,0,44.5,6.1,3318.3,1125,4449.4,0,0,35500,0.215729025,0.029305825,16.26511682,5.576641891,,0,0,0,0,0,0,0,0,0,0,0,0,0,3.1,0,2491.8,500,2991.8,0,0,0,0.015837746,0,12.47621106,2.566076469,15.04228753,7.2,0,0,0,0,0,0,0,0.036951501,0,0,0,0,27.2,2.6,326.5,300,629.1,0,0,5300,,,1.527996883,1.427347987,2.967715219,7,3.5,0,25,28.5,0,0,0,0.033550945,0.016935476,0,0.118945666,0.135881141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,300,0,0,30200,0,0,0,1.464271769,1.464271769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.035531545,0,0,0,0,0,0,0.005255912,0,0.030275633,Malaysia,1990,0.129388834,0.012370349,21.87106454
0,0,0,0,0,0,0,0,0,0,0,0,0,8,76.7,0,429.6,506.3,0,0,50000,0.031757374,0.30447382,0,1.705370966,2.009844786,20.5,76.7,41121.9,4829.6,46028.2,0,0,150100,0.0810808,0.30447382,158.8794144,18.51317194,,0,0,0,0,0,0,0,0,0,0,0,0,0,11.2,0,36956.4,4400,41356.4,0,0,100100,0.043969421,0,142.324159,16.80780098,159.13196,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,4165.5,0,4165.5,0,0,0,,,16.55525542,0,16.55525542,1,0,0,0,0,0,0,0,0.004130866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.092354403,0,0.040080482,0,0.052273921,0,0,0,0,0,Malaysia,2000,0.00122314,0,177.6970602
0,0,220000,0,220000,0,0,0,0,0,736.5989219,0,736.5989219,2.4,1,0,0,1,0,0,0.2,0.00792838,0.003303492,0,0,0.003303492,7.7,1.6,262162.5,0,262164.1,0,0,41800.2,0.025744252,0.00539766,877.0048368,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7,0,42119.9,0,42119.9,0,0,41800,0.012231425,0,140.2689594,0,140.2689594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.6,0,42.6,0,0,0,,,0.136955473,0,0.136955473,1.6,0.6,0,0,0.6,0,0,0,0.005584447,0.002094168,0,0,0.002094168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.012844429,0,6.64e-8,0,0.012844362,0,0,0,0,0,Malaysia,2010,0,0,877.0102344
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,30,0,0,600,0,0,14.77832512,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,30,0,0,600,0,0,14.77832512,0,14.77832512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.424721689,0,0,0,0.424721689,0,0,0,0,0,Maldives,1980,0,0,14.77832512
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2384.9,2384.9,0,0,3000,0,0,0,1036.913043,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2384.9,2384.9,0,0,3000,,,0,1036.913043,1036.913043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1.227153005,0,0,0,0,0,0,1.227153005,0,0,Maldives,1990,0,0,1036.913043
0,0,0,0,0,0,0,0,0,0,0,0,0,10.2,221.4,1200,1300,2721.4,0,0,47010,3.279742765,71.18971061,385.85209,418.0064309,875.0482315,10.2,221.4,1364.9,1300,2886.3,0,0,47010,3.279742765,71.18971061,435.0759706,418.0064309,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164.9,0,164.9,0,0,0,0,0,49.2238806,0,49.2238806,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,3.831828105,0,3.831828105,0,0,0,0,0,0,0,Maldives,2000,0,0,924.2721121
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,180,0,0,0,0,0,33.89830508,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,180,0,0,0,0,0,33.89830508,0,33.89830508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Maldives,2010,0,0,33.89830508
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Mali,1910,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Mali,1920,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Mali,1930,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Mali,1940,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Mali,1950,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Mali,1960,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Mali,1970,0,0,0
0,0,150000,0,150000,0,0,0,0,0,2115.655853,0,2115.655853,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,0,151463.5,1000,152463.5,0,0,0,0.022007996,0,2133.294759,12.23690651,,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,0,1463.5,1000,2463.5,0,0,0,0.022007996,0,17.63890563,12.23690651,29.87581214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Mali,1980,0,0,2145.531665
0,0,30200,0,30200,0,0,0,0,0,349.6989347,0,349.6989347,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,30578.4,485,31063.4,0,0,0,0.004774643,0,353.2999456,4.675900726,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,378.4,485,863.4,0,0,0,0.004774643,0,3.601010928,4.675900726,8.276911654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Mali,1990,0,0,357.9758463
0,0,102500,0,102500,0,0,0,0,0,801.652686,0,801.652686,0,0,0,0,0,0,0,0,0,0,0,0,0,6.3,5,111407.1,6152.2,117564.3,0,0,0,0.04828841,0.035879785,869.3781224,46.14554257,,0,0,0,0,0,0,0,0,0,0,0,0,0,6.3,5,8907.1,6152.2,15064.3,0,0,0,0.04828841,0.035879785,67.72543637,46.14554257,113.9068587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Mali,2000,0,0,915.5595447
0,0,410000,0,410000,0,0,0,0,0,2654.578993,0,2654.578993,0,0,0,0,0,0,0,0,0,0,0,0,0,7.1,0.2,422504.4,0,422504.6,0,0,0,0.04087085,0.001017397,2730.619816,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,7.1,0.2,12504.4,0,12504.6,0,0,0,0.04087085,0.001017397,76.04082292,0,76.04184032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Mali,2010,0,0,2730.620833
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,600,600,0,0,0,0,0,0,1250,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,600,600,0,0,0,,,0,1250,1250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Marshall Islands,1990,0,0,1250
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,60,0,0,0,0,0,107.1428571,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,60,0,0,0,0,0,107.1428571,0,107.1428571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Marshall Islands,2000,0,0,107.1428571
0,0,2738.4,0,2738.4,0,0,490,0,0,4804.210526,0,4804.210526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2774.4,0,2774.4,0,0,490,0,0,4867.368421,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,36,0,0,0,0,0,63.15789474,0,63.15789474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.266573384,0.266573384,0,0,0,0,0,0,0,0,Marshall Islands,2010,0,0,4867.368421
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,3000,0,0,0,0,,,,0,0,0,0,,3000,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Martinique,1900,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Martinique,1910,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Martinique,1920,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Martinique,1930,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Martinique,1940,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Martinique,1950,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5,0,100,0,100,0,0,4000,0.802445349,0,31.34796238,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5,0,100,0,100,0,0,4000,,,31.34796238,0,31.34796238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Martinique,1960,0.802445349,0,31.34796238
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.5,0.3,2500,0,2500.3,0,0,8100,1.384615385,0.092307692,769.2307692,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.5,0.3,2500,0,2500.3,0,0,8100,,,769.2307692,0,769.3230769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Martinique,1970,1.384615385,0.092307692,769.3230769
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6800,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6800,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Martinique,1980,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,190,320,511,0,0,16001,0.278408742,0.274725275,52.31610801,87.62591575,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,190,320,511,0,0,16001,,,52.31610801,87.62591575,140.216749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Martinique,1990,0.278408742,0.274725275,140.216749
0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,10,0,0,10,0,0,0,0.025125628,2.512562814,0,0,2.512562814,0.2,10.6,0,0,10.6,0,12500,30000,0.050251256,2.663316583,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0.6,0,0,0.6,0,12500,30000,,,0,0,0.150753769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Martinique,2000,0.025125628,0.150753769,2.663316583
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0.2,0,0,0.2,0,0,4400,0.025510204,0.053191489,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0.2,0,0,0.2,0,0,4400,,,0,0,0.053191489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Martinique,2010,0.025510204,0.053191489,0.053191489
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Mauritania,1910,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Mauritania,1920,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Mauritania,1930,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Mauritania,1940,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Mauritania,1950,0,0,0
0,0,134600,0,134600,0,0,3400,0,0,12146.6752,0,12146.6752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134600,0,134600,0,0,3400,0,0,12146.6752,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1.152299655,1.152299655,0,0,0,0,0,0,0,0,Mauritania,1960,0,0,12146.6752
0,0,144700,0,144700,0,0,2550,0,0,10550.78594,0,10550.78594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144700,0,144700,0,0,2550,0,0,10550.78594,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.316915898,0.316915898,0,0,0,0,0,0,0,0,Mauritania,1970,0,0,10550.78594
0,0,160000,0,160000,0,0,0,0,0,10382.86827,0,10382.86827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160900,90,160990,0,0,0,0,0,10433.90716,5.056179775,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,900,90,990,0,0,0,0,0,51.0388877,5.056179775,56.09506747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Mauritania,1980,0,0,10438.96333
0,0,46790.7,0,46790.7,0,0,0,0,0,2118.421345,0,2118.421345,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,31.7,47211.5,2035.2,49278.4,0,0,0,0.023060289,1.50313602,2135.016688,79.51825666,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,420.8,2019.2,2440,0,0,0,0,0,16.59534301,78.89374456,95.48908757,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,31.7,0,16,47.7,0,0,0,,,0,0.6245121,2.12764812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Mauritania,1990,0.023060289,1.50313602,2216.038081
0,0,100000,0,100000,0,0,0,0,0,3700.96225,0,3700.96225,0,0,0,0,0,0,0,0,0,0,0,0,0,4.5,1.9,109912,3460,113373.9,0,0,0,0.156301412,0.061053985,4023.194955,118.6682586,,0,0,0,0,0,0,0,0,0,0,0,0,0,4.5,1.9,9912,3460,13373.9,0,0,0,0.156301412,0.061053985,322.232705,118.6682586,440.9620176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Mauritania,2000,0,0,4141.924268
0,0,580537.4,0,580537.4,0,0,0,0,0,14294.79432,0,14294.79432,0,0,0,0,0,0,0,0,0,0,0,0,0,2.9,4,585394.9,230.5,585629.4,0,0,200,0.069613854,0.093392482,14409.81352,6.038773906,,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1,0,4657.5,230.5,4888,0,0,200,0.027587238,0,110.3495705,6.038773906,116.3883444,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,4,200,0,204,0,0,0,,,4.669624095,0,4.763016577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.002768908,0,0,0,0.002768908,0,0,0,0,0,Mauritania,2010,0.042026617,0.093392482,14415.94568
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.2,2.4,2000,350,2352.4,0,0,500,0.636363636,0.305732484,254.7770701,44.58598726,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.2,2.4,2000,350,2352.4,0,0,500,,,254.7770701,44.58598726,299.6687898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Mauritius,1960,0.636363636,0.305732484,299.6687898
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6,33.2,95119.9,500,95653.1,0,0,37500,0.176836937,3.545975519,10605.0658,52.46589717,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6,33.2,95119.9,500,95653.1,0,0,37500,,,10605.0658,52.46589717,10661.07767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1.444918194,0,0,0,0,0,0,1.444918194,0,0,Mauritius,1970,0.176836937,3.545975519,10661.07767
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,50.8,3685,0,3735.8,0,0,6097.3,0.019570239,4.857046339,370.3591837,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,50.8,3685,0,3735.8,0,0,6097.3,,,370.3591837,0,375.21623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.284008427,0,0,0,0,0,0,0.284008427,0,0,Mauritius,1980,0.019570239,4.857046339,375.21623
0,0,0,0,0,0,0,17500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,100,680,300,1080,0,0,31040,0.044223024,8.503401361,63.36110383,27.50993484,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,100,680,300,1080,0,0,13540,,,63.36110383,27.50993484,99.37444003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.783417591,0.402881377,0,0,0,0,0,0.380536215,0,0,Mauritius,1990,0.044223024,8.503401361,99.37444003
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,5,0,100,105,0,0,5000,0.041165858,0.415973378,0,8.319467554,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,5,0,100,105,0,0,5000,,,0,8.319467554,8.735440932,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.103277827,0,0,0,0,0,0,0.103277827,0,0,Mauritius,2000,0.041165858,0.415973378,8.735440932
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1,8.2,3000,0,3008.2,0,0,200,0.087649402,0.653386454,236.7797948,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1,8.2,0,0,8.2,0,0,200,0.087649402,0.653386454,0,0,0.653386454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3000,0,3000,0,0,0,,,236.7797948,0,236.7797948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.001648851,0,0,0,0.001648851,0,0,0,0,0,Mauritius,2010,0,0,237.4331812
0,0,0,0,0,,,,0,0,0,0,0,4.5,2.2,0,0,2.2,,,,0.029707928,0.014523876,0,0,0.014523876,4.5,2.2,0,0,2.2,,,,0.029707928,0.014523876,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Mexico,1910,0,0,0.014523876
0,0,0,0,0,,,,0,0,0,0,0,64.8,16.7,0,0,16.7,,,,0.429914827,0.110795951,0,0,0.110795951,70.8,16.7,0,0,16.7,,,,0.465040437,0.110795951,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,6,0,0,0,0,,,,0.03512561,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Mexico,1920,0,0,0.110795951
0,0,0,0,0,,,,0,0,0,0,0,43.4,12,0,200,212,,,,0.239583002,0.066669245,0,1.111154076,1.17782332,43.4,12,0,200,212,,,,0.239583002,0.066669245,0,1.111154076,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Mexico,1930,0,0,1.17782332
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,100,0,300,0,300,,,,0.369262692,0,1.340218363,0,,100,0,300,0,300,,,,0.369262692,0,1.340218363,0,1.340218363,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Mexico,1940,0,0,1.340218363
0,0,0,0,0,,,,0,0,0,0,0,18.5,30,0,0,30,,,,0.053337286,0.083694976,0,0,0.083694976,423.5,30,0,0,30,,,,1.205665825,0.083694976,0,0,,0,0,0,0,0,,,,0,0,0,0,0,214,0,0,0,0,,,,0.593582264,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,181,0,0,0,0,,,,,,0,0,0,10,0,0,0,0,,,,0.031858294,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Mexico,1950,0.526887981,0,0.083694976
0,0,0,0,0,0,0,0,0,0,0,0,0,7.8,50,400,0,450,0,0,540,0.017334824,0.103237529,0.935213112,0,1.038450641,83.2,56.9,36334.5,1000,37391.4,0,0,22190,0.197976184,0.118395701,78.00070545,2.196836555,,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7,0,834.5,0,834.5,0,0,850,0.006119119,0,1.777195673,0,1.777195673,0,0,0,0,0,0,0,0,0,0,0,0,0,61.9,6.9,35100,1000,36106.9,0,0,20800,,,75.28829667,2.196836555,77.5002914,1.8,0,0,0,0,0,0,0,0.003603964,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0.02069836,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.085308249,0,0.002311463,0,0.003851257,0,0,0.079145529,0,0,Mexico,1960,0.150219916,0.015158172,80.31593771
0,0,0,0,0,0,0,0,0,0,0,0,0,57,52.5,1125,0,1177.5,0,0,3000,0.100866192,0.090040405,1.715673076,0,1.80571348,156.7,202.2,85325,10000,95527.2,0,0,25430,0.267907245,0.3362348,142.305469,16.32866334,,0,0,0,0,0,0,0,0,0,0,0,0,0,20.8,9.7,31700,0,31709.7,0,0,12430,0.037573365,0.017593109,55.07572637,0,55.09331947,0,0,0,0,0,0,0,0,0,0,0,0,0,78.9,140,52500,10000,62640,0,0,10000,,,85.51406957,16.32866334,102.0713342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.033922606,0,0.002229472,0,0.020460457,0,0,0.011232677,0,0,Mexico,1970,0.129467688,0.228601287,158.9703671
0,0,0,0,0,0,0,0,0,0,0,0,0,959.4,3120.9,200900,10000,214020.9,0,0,410900,1.263890163,4.111604565,264.4810251,13.16083861,281.7534683,1086.4,3192.1,256900,17270,277362.1,0,0,495980,1.436086425,4.211629406,341.2933954,22.86136678,,10,50,2500,1500,4050,0,0,11700,0.014072813,0.070364064,3.518203183,2.11092191,5.699489157,20.5,21.2,12500,20,12541.2,0,0,20160,0.028320015,0.029660777,18.15126344,0.025252525,18.20617674,0,0,0,0,0,0,0,0,0,0,0,0,0,89.2,0,41000,5750,46750,0,0,44840,,,55.14290364,7.56435374,62.70725738,5,0,0,0,0,0,0,0,0.006876728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8320,0,0,0,0,0,2.3,0,0,0,0,0,0,60,0.002846922,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.254974715,0,0.210468099,0.000033,0.010448741,0,0,0.02392923,0.006337719,0.003757887,Mexico,1980,0.120079784,0,368.3663916
0,0,6500,0,6500,0,0,140000,0,0,6.667692466,0,6.667692466,11.1,54,20923.5,1227.5,22205,0,0,41270,0.011806468,0.056207561,21.87289506,1.339144475,23.2682471,312.4,108,202645.8,33113.5,235867.3,0,39800,773781,0.335695438,0.114260954,214.9594973,35.99615919,,2,0,7710.8,0,7710.8,0,0,0,0.002113919,0,8.542146305,0,8.542146305,121.9,26,81750,16279,98055,0,5500,119540,0.127445713,0.028325627,86.58568634,17.66714547,104.2811574,0,0,0,0,0,0,0,0,0,0,0,0,0,78.4,28,85761.5,13995,99784.5,0,34000,463971,,,91.29107709,15.13988012,106.460685,2.4,0,0,12,12,0,0,0,0.002517623,0,0,0.012492713,0.012492713,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,800,0.005205297,0,0,0,0,91.6,0,0,1600,1600,0,300,8200,0.102614475,0,0,1.837496411,1.837496411,0,0,0,0,0,0,0,0,,,,,,0.179013028,0.033642012,0.007110124,0.002227759,0.022619246,0,0,0.113261941,0,0.000151946,Mexico,1990,0.083991944,0.029727766,251.0699174
0,0,0,0,0,0,0,21000,0,0,0,0,0,2.9,107.4,17753,0,17860.4,0,2500,11630,0.002813322,0.10419401,17.22237852,0,17.32657253,74.2,140.8,639152.1,33380,672672.9,0,368000,1329960,0.071870322,0.136735481,597.3179236,31.41932996,,0,0,4130,0,4130,0,0,0,0,0,4.175104494,0,4.175104494,34.4,10.4,189302,300,189612.4,0,70000,300360,0.033460458,0.009922599,173.3923744,0.291033265,173.6933302,0,0,0,0,0,0,0,0,0,0,0,0,0,14.4,23,427947.1,33080,461050.1,0,295500,996970,,,402.508664,31.12829669,433.6595795,6.9,0,20,0,20,0,0,0,0.006373391,0,0.019402218,0,0.019402218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15.6,0,0,0,0,0,0,0,0.015432164,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.14741479,0.002719834,0.001594601,0,0.028544169,0,0,0.114556186,0,0,Mexico,2000,0.013790987,0.022618872,628.873989
0,0,250000,0,250000,0,0,0,0,0,216.0853969,0,216.0853969,47.6,649.9,155053.1,400,156103,0,296000,977000,0.038194737,0.522655705,124.7613961,0.34108157,125.6251334,125.9,709.2,724520,5246.1,730475.3,0,589200,2721100.5,0.104220657,0.571457252,617.3385094,4.475392406,,0,0,0,0,0,0,0,0,0,0,0,0,0,21.5,0,151444.2,4612,156056.2,0,0,4100,0.018247046,0,131.8464724,3.945273594,135.791746,0,0,0,0,0,0,0,0,0,0,0,0,0,49.4,59.3,156022.7,234.1,156316.1,0,273200,1690000.5,,,134.2731449,0.189037242,134.5109837,7.1,0,0,0,0,0,0,0,0.006222994,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,12000,0,12000,0,20000,50000,0.000259302,0,10.37209905,0,10.37209905,0,0,0,0,0,0,0,0,,,,,,0.23254703,0,0.085154888,0.004235529,0.000383063,0,0,0.14277355,0,0,Mexico,2010,0.041296579,0.048801547,622.3853591
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0.3,0,20,20.3,0,0,600,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0.3,0,20,20.3,0,0,600,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Micronesia,1980,0,0,0
0,0,2880,0,2880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2880,0,2880,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Micronesia,1990,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.8,15.6,730,117.5,863.1,0,0,50,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.8,15.6,730,117.5,863.1,0,0,50,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Micronesia,2000,0,0,0
0,0,10000,0,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,14500,0,14500,0,0,1100,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,4500,0,4500,0,0,1100,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Micronesia,2010,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.9,8,2810.8,2634.9,5453.7,0,0,35400,0.135703808,0.183528332,64.63592138,60.50546774,,0,0,0,0,0,0,0,0,0,0,0,0,0,5.6,0,2810.8,84.9,2895.7,0,0,35400,0.128821495,0,64.63592138,2.005811854,66.64173323,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,8,0,2550,2558,0,0,0,,,0,58.49965588,58.68318422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.293221634,0,0,0,0.293221634,0,0,0,0,0,Moldova,1990,0.006882312,0.183528332,125.3249174
0.2,0,21039.4,0,21039.4,0,0,40600,0.004758506,0,509.4285714,0,509.4285714,0,0,0,0,0,0,0,0,0,0,0,0,0,1.9,0,282139.4,0,282139.4,0,0,44618.4,0.045703455,0,6722.036912,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,1100,0,1100,0,0,858.4,0.009687436,0,26.55076313,0,26.55076313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,260000,0,260000,0,0,3160,,,6186.057578,0,6186.057578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.3,0,0,0,0,0,0,0,0.031257514,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1.198685058,0.922477896,0,0,0.030947311,0,0,0.24525985,0,0,Moldova,2000,0,0,6722.036912
0,0,580,0,580,0,0,0,0,0,14.2296369,0,14.2296369,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1,0,3063.4,0,3063.4,0,0,0,0.026981238,0,75.19430162,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,1200,0,1200,0,0,0,0.002447381,0,29.36857562,0,29.36857562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1283.4,0,1283.4,0,0,0,0.024533857,0,31.5960891,0,31.5960891,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Moldova,2010,0,0,75.19430162
0,0,0,0,0,,,,0,0,0,0,0,120,0,0,0,0,,,,13.48314607,0,0,0,0,120,0,0,0,0,,,,13.48314607,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Mongolia,1950,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.7,0,25000,2000,27000,0,0,2500,0.5,0,2192.982456,175.4385965,,0,0,0,0,0,0,0,0,0,0,0,0,0,5.7,0,25000,2000,27000,0,0,2500,0.5,0,2192.982456,175.4385965,2368.421053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Mongolia,1960,0,0,2368.421053
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Mongolia,1970,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Mongolia,1980,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,6.1,10500,0,10506.1,0,0,183280,0.529599878,0.263271472,463.4709236,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,4.6,0,0,0,0,0,0,0,0.198882781,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.9,0,10000,0,10000,0,0,1000,,,441.8912947,0,441.8912947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5,6.1,500,0,506.1,0,0,182280,0.107898144,0.263271472,21.57962883,0,21.8429003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,13.28746006,0,0,0,0,0,0,0.130140275,0,13.15731978,Mongolia,1990,0.222818953,0,463.734195
0,0,45000,0,45000,0,0,0,0,0,1877.346683,0,1877.346683,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0.7,314660.6,15,314676.3,0,0,14236.4,0.548601881,0.02617801,12729.04424,0.607533414,,0,0,0,0,0,0,0,0,0,0,0,0,0,4.1,0,1650,15,1665,0,0,36.4,0.157985952,0,62.17107087,0.607533414,62.77860428,0,0,0,0,0,0,0,0,0,0,0,0,0,9.4,0,191100,0,191100,0,0,8000,,,7913.28864,0,7913.28864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0.7,76910.6,0,76911.3,0,0,6200,0.018698579,0.02617801,2876.237846,0,2876.264024,0,0,0,0,0,0,0,0,,,,,,0.840825279,0,0,0.135257469,0.001897542,0,0,0.703670268,0,0,Mongolia,2000,0.37191735,0,12729.67795
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.9,0,139730.1,0,139730.1,0,0,0,0.091801467,0,4600.852014,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2,0,880.1,0,880.1,0,0,0,0.037209302,0,27.73650747,0,27.73650747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,50,0,0,0,,,1.550387597,0,1.550387597,1.7,0,0,0,0,0,0,0,0.054592164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,138800,0,138800,0,0,0,0,0,4571.565119,0,4571.565119,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Mongolia,2010,0,0,4600.852014
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,153.6,0,153.6,0,0,0,0,0,24.739243,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,153.6,0,153.6,0,0,0,0,0,24.739243,0,24.739243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Montenegro,2000,0,0,24.739243
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,1105,0,1105,0,0,0,0.015974441,0,176.8325179,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,635,0,0,0,0,0,101.7628205,0,101.7628205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,20,0,0,0,0,0,3.184713376,0,3.184713376,0.1,0,450,0,450,0,0,0,0.015974441,0,71.88498403,0,71.88498403,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Montenegro,2010,0,0,176.8325179
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Montserrat,1920,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Montserrat,1930,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Montserrat,1940,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Montserrat,1950,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Montserrat,1960,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Montserrat,1970,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1,4,0,1200,1204,0,0,24000,10,36.36363636,0,10909.09091,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1,4,0,1200,1204,0,0,24000,,,0,10909.09091,10945.45455,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Montserrat,1980,10,36.36363636,10945.45455
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.2,0,1300,0,1300,0,0,2800,40,0,14444.44444,0,,3.2,0,1300,0,1300,0,0,800,40,0,14444.44444,0,14444.44444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2000,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Montserrat,1990,0,0,14444.44444
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,20,0,0,0,0,0,400,0,,0,0,20,0,20,0,0,0,0,0,400,0,400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Montserrat,2000,0,0,400
0,0,0,0,0,,,,0,0,0,0,0,10,0,0,0,0,,,,0.201109926,0,0,0,0,10,0,0,0,0,,,,0.201109926,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Morocco,1900,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Morocco,1910,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Morocco,1920,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Morocco,1930,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Morocco,1940,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,16.1,0,0,0,0,,,,0.171247719,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,16.1,0,0,0,0,,,,0.171247719,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Morocco,1950,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,1201.1,2500,0,0,2500,0,0,12000,9.740175097,20.27739476,0,0,20.27739476,1233.1,2501,8281.3,0,10782.3,0,0,12500,9.97311214,20.28481426,59.56838509,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,32,1,8281.3,0,8282.3,0,0,500,0.232937044,0.007419498,59.56838509,0,59.57580459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.606016816,0,0.589058036,0,0.01695878,0,0,0,0,0,Morocco,1960,0,0,79.85319935
0,0,13700,0,13700,0,0,10,0,0,83.78692435,0,83.78692435,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7,0.3,42100.1,3873.2,45973.6,0,0,3010,0.020690074,0.001874414,259.8524132,20.78322091,,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7,0.3,28400.1,3873.2,32273.6,0,0,3000,0.020690074,0.001874414,176.0654888,20.78322091,196.8505841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.076057416,0.000229535,0,0,0.075827881,0,0,0,0,0,Morocco,1970,0,0,280.6375085
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.2,0,1000,221.6,1221.6,0,0,0,0.013445094,0,4.765535646,1.056042699,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.1,0,0,0,0,0,0,0,0.012968541,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0.1,0,1000,221.6,1221.6,0,0,0,0.000476554,0,4.765535646,1.056042699,5.821578345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Morocco,1980,0,0,5.821578345
0,0,27500,0,27500,0,0,90000,0,0,96.64042733,0,96.64042733,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,37300,0,37300,0,0,96400,0.32888822,0,132.6290346,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,87.6,0,9800,0,9800,0,0,6400,0.323775559,0,35.98860723,0,35.98860723,0,0,0,0,0,0,0,0,0,0,0,0,0,1.4,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.231228472,0.216179718,0,0,0.015048754,0,0,0,0,0,Morocco,1990,0.005112661,0,132.6290346
0,0,0,0,0,0,0,0,0,0,0,0,0,62.8,92.6,0,1253.9,1346.5,0,0,40000,0.208533953,0.307487963,0,4.163705794,4.471193757,85,96.3,5785,1253.9,7135.2,0,0,60305.9,0.28197551,0.319523377,18.8818811,4.163705794,,0,0,0,0,0,0,0,0,0,0,0,0,0,22.1,3.7,5785,0,5788.7,0,0,20220,0.073113214,0.012035414,18.8818811,0,18.89391652,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,0,0,0,0,0,5,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80.9,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.115210588,0,0.067084806,0.000208198,0.047909563,0,0,0.00000802,0,0,Morocco,2000,0.000328343,0,23.36511027
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.1,3.8,267170,0,267173.8,0,0,32900,0.041226907,0.010733978,757.0133536,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,7.7,3.8,7720,0,7723.8,0,0,2900,0.022783326,0.010733978,23.86215193,0,23.8728859,0,0,0,0,0,0,0,0,0,0,0,0,0,4.9,0,11700,0,11700,0,0,30000,,,34.21853065,0,34.21853065,1.5,0,0,0,0,0,0,0,0.004112744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,247750,0,247750,0,0,0,0,0,698.9326711,0,698.9326711,0,0,0,0,0,0,0,0,,,,,,0.030363688,0,0,0,0.003111029,0,0,0.027252659,0,0,Morocco,2010,0.014330838,0,757.0240876
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,10.7,0,0,0,0,,,,0.161338963,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,10.7,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Mozambique,1950,0.161338963,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5000,0,5000,0,0,18000,0,0,59.39653124,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5000,0,5000,0,0,18000,0,0,59.39653124,0,59.39653124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Mozambique,1960,0,0,59.39653124
0,0,600000,0,600000,0,0,0,0,0,5290.538753,0,5290.538753,0,0,0,0,0,0,0,0,0,0,0,0,0,84.8,5.1,725500,6500,732005.1,0,0,11850,0.864520202,0.047490455,6531.931513,59.89029251,,0,0,0,0,0,0,0,0,0,0,0,0,0,84.1,0,117500,4000,121500,0,0,11850,0.858103786,0,1168.935555,37.24741596,1206.182971,0,0,0,0,0,0,0,0,0,0,0,0,0,0.7,5.1,8000,2500,10505.1,0,0,0,,,72.45720496,22.64287655,95.14757197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Mozambique,1970,0.006416416,0.047490455,6591.869296
10005,0,475800,0,475800,0,0,0,83.98101747,0,3993.497673,0,3993.497673,0,0,0,0,0,0,0,0,0,0,0,0,0,10026.9,0,611200,0,611200,0,0,7550,84.15349053,0,5085.055641,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,100000,0,100000,0,0,50,0.007829396,0,811.4362924,0,811.4362924,0,0,0,0,0,0,0,0,0,0,0,0,0,20.9,0,35400,0,35400,0,0,7500,,,280.1216758,0,280.1216758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Mozambique,1980,0.164643667,0,5085.055641
0,0,330000,0,330000,0,0,5000,0,0,2541.002541,0,2541.002541,0,0,0,0,0,0,0,0,0,0,0,0,0,39.6,200,597000,50250,647450,1400,0,7695,0.253874763,1.337971635,4288.828352,335.9797649,,0,0,0,0,0,0,0,0,0,0,0,0,0,5.8,0,47000,0,47000,0,0,1240,0.034683341,0,284.5408932,0,284.5408932,0,0,0,0,0,0,0,0,0,0,0,0,0,25.1,200,220000,50000,270200,1400,0,1455,,,1463.284918,334.4929088,1799.115799,8.7,0,0,250,250,0,0,0,0.051742595,0,0,1.486856191,1.486856191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.058451738,0,0,0,0.020748249,0,0,0.03770349,0,0,Mozambique,1990,0.167448827,1.337971635,4626.146089
1.8,0,323950,0,323950,0,0,0,0.009594819,0,1593.472206,0,1593.472206,0.4,3.6,0,144,147.6,0,0,0,0.001897533,0.017077799,0,0.683111954,0.700189753,114.8,19.1,980326.1,8399,988744.2,0,150,65020,0.626126415,0.090745125,5180.67588,38.55545104,,0,0,0,0,0,0,0,0,0,0,0,0,0,101.2,1.5,621211.1,1300,622512.6,0,150,62620,0.558628209,0.007407284,3425.708226,6.272909496,3431.988543,0,0,0,0,0,0,0,0,0,0,0,0,0,6.5,11.7,35165,6655,41831.7,0,0,2400,,,161.4954476,30.25274915,191.8041323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.9,2.3,0,300,302.3,0,0,0,0.02199578,0.01032455,0,1.346680433,1.357004983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.991619496,0,0,0,0.971405272,0,0,0.020214224,0,0,Mozambique,2000,0.034010073,0.055935492,5219.322076
0,0,276000,0,276000,0,0,0,0,0,1021.924778,0,1021.924778,0,0,0,0,0,0,0,0,0,0,0,0,0,117.6,205.1,638764.6,7865,646834.7,0,15000,228360,0.409722097,0.688273645,2277.482327,26.69507567,,0,0,0,0,0,0,0,0,0,0,0,0,0,44.7,14.2,86740.1,7715,94469.3,0,0,3510,0.16557291,0.050647564,323.7464745,26.15608896,349.953211,0,0,0,0,0,0,0,0,0,0,0,0,0,71.2,190.9,275994.5,150,276335.4,0,15000,224850,,,931.7093654,0.538986705,932.8859782,1.7,0,30,0,30,0,0,0,0.005763493,0,0.101708706,0,0.101708706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1.493557307,0,0,0,0.021109055,0,0,1.472448252,0,0,Mozambique,2010,0.238385694,0.637626081,2304.865676
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,60,0,0,0,0,,,,0.571630166,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,60,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Myanmar,1900,0.571630166,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Myanmar,1910,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,270.6,0,0,4000,4000,,,,1.954735171,0,0,28.89278861,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,270.6,0,0,4000,4000,,,,,,0,28.89278861,28.89278861,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Myanmar,1920,1.954735171,0,28.89278861
0,0,0,0,0,,,,0,0,0,0,0,58.6,0,0,0,0,,,,0.405957826,0,0,0,0,158.6,0,0,15000,15000,,,,1.046078394,0,0,96.0180852,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,100,0,0,15000,15000,,,,,,0,96.0180852,96.0180852,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Myanmar,1930,0.640120568,0,96.0180852
0,0,0,0,0,,,,0,0,0,0,0,1.5,0,0,0,0,,,,0.008999917,0,0,0,0,1.5,0,0,0,0,,,,0.008999917,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Myanmar,1940,0,0,0
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Myanmar,1950,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148.2,20,71731.9,3020,74771.9,0,0,1170,0.57594415,0.07870917,291.0849293,11.6180229,,0,0,0,0,0,0,0,0,0,0,0,0,0,3.4,0,0,0,0,0,0,0,0.014015417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144.8,20,71731.9,3020,74771.9,0,0,1170,,,291.0849293,11.6180229,302.7816614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Myanmar,1960,0.561928733,0.07870917,302.7816614
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.3,0,152100,25400,177500,0,0,1100,0.099277211,0,504.6470236,80.35824899,,0,0,0,0,0,0,0,0,0,0,0,0,0,9.3,0,141300,20000,161300,0,0,0,0.03394122,0,471.8691966,63.86919589,535.7383924,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,7800,5400,13200,0,0,0,,,23.81752115,16.4890531,40.30657425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3000,0,3000,0,0,1100,0,0,8.960305845,0,8.960305845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Myanmar,1970,0.06533599,0,585.0052725
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.9,0,6458.8,2000,8458.8,0,0,0,0.005365583,0,18.24804367,5.71820677,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1,0,3600,0,3600,0,0,0,,,10.07443891,0,10.07443891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,2858.8,2000,4858.8,0,0,0,0.002287283,0,8.173604758,5.71820677,13.89181153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Myanmar,1980,0.003078301,0,23.96625044
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,16,0,0,0,0,0,0.038195273,0,0.038195273,18.6,0,55292.5,9616.9,64909.4,0,0,14495.5,0.042071042,0,129.5097487,21.15116424,,0,0,0,0,0,0,0,0,0,0,0,0,0,16.9,0,48779.5,9616.9,58396.4,0,0,13495.5,0.038152457,0,114.4956412,21.15116424,135.6468054,0,0,0,0,0,0,0,0,0,0,0,0,0,1.7,0,6497,0,6497,0,0,1000,,,14.97591222,0,14.97591222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Myanmar,1990,0.003918586,0,150.6609129
0,0,0,0,0,0,0,0,0,0,0,0,0,7.1,0,1250,320,1570,0,0,50000,0.014619883,0,2.573923071,0.658924306,3.232847377,13885,2015.7,269624.3,3618.7,275258.7,0,0,450068.8,27.81163803,4.037332431,540.9225214,7.454713737,,0,0,0,0,0,0,0,0,0,0,0,0,0,10.2,11,22231.7,798.7,23041.4,0,0,0,0.021280225,0.022168034,45.22144928,1.647943289,46.8915606,0,0,0,0,0,0,0,0,0,0,0,0,0,13863.6,2003.1,246007.5,2500,250510.6,0,0,400068.8,,,492.8582933,5.147846141,502.0180352,4.1,1.6,135.1,0,136.7,0,0,0,0.008249051,0.003268641,0.268855721,0,0.272124363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,1.821903575,0,0.564499379,0,0,0,0,1.257404196,0,0,Myanmar,2000,27.76748887,4.011895756,552.4145676
0,0,0,0,0,0,0,0,0,0,0,0,0,11.6,35.8,2040.5,315.2,2391.5,0,0,1477,0.022657425,0.069820565,3.99092871,0.618148301,4.678897575,90.9,50.3,361405.9,1822.7,363278.9,0,0,19907,0.174111895,0.097497286,687.8272627,3.455097703,,0,0,0,0,0,0,0,0,0,0,0,0,0,50.4,0,299321.4,187.5,299508.9,0,0,12270,0.095940532,0,567.0825402,0.346933111,567.4294733,1.7,0,0,0,0,0,0,0,0.003165264,0,0,0,0,8,8.5,45544,1200,46752.5,0,0,6160,,,88.09823368,2.262230182,90.37693416,19.2,6,14500,120,14626,0,0,0,0.03685349,0.011206428,28.65556017,0.227786109,28.8945527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.034701299,0,0.002511898,0,0.020376789,0,0,0.011812612,0,0,Myanmar,2010,0.015495184,0.016470294,691.3798577
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,0,0,Namibia,1980,0,0,0
0,0,43820,0,43820,0,0,5100,0,0,2891.390569,0,2891.390569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43820,0,43820,0,0,5100,0,0,2891.390569,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.181796947,0.181796947,0,0,0,0,0,0,0,0,Namibia,1990,0,0,2891.390569
0,0,34500,0,34500,0,0,0,0,0,1862.850972,0,1862.850972,0,0,0,0,0,0,0,0,0,0,0,0,0,14.8,0,81930,0,81930,0,0,849,0.718564896,0,4172.048034,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,14.8,0,47430,0,47430,0,0,849,0.718564896,0,2309.197062,0,2309.197062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.01061014,0,0,0,0.01061014,0,0,0,0,0,Namibia,2000,0,0,4172.048034
0,0,191600,0,191600,0,0,12400,0,0,8268.136474,0,8268.136474,0,0,0,0,0,0,0,0,0,0,0,0,0,11.6,0,254365.2,0,254365.2,0,0,13600,0.538449068,0,11183.56283,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,11.6,0,62765.2,0,62765.2,0,0,1200,0.538449068,0,2915.426355,0,2915.426355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,0.115656299,0.106074239,0,0,0.009582061,0,0,0,0,0,Namibia,2010,0,0,11183.56283
0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,6,0,0,0,0,,,,0.065509335,0,0,0,,0,0,0,0,0,,,,0,0,0,0,0,6,0,0,0,0,,,,0.065509335,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,Nepal,1950,0,0,0