-
Notifications
You must be signed in to change notification settings - Fork 0
/
ontology.nt
2185 lines (2184 loc) · 216 KB
/
ontology.nt
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
<http://example.org/Semi-constitutional_monarchy> <http://example.org/Government> <http://example.org/United_Arab_Emirates> .
<http://example.org/11,708,370> <http://example.org/Population> <http://example.org/Tunisia> .
<http://example.org/11,900> <http://example.org/Population> <http://example.org/Tuvalu> .
<http://example.org/49,035\u00A0km> <http://example.org/Area> <http://example.org/Slovakia> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Lesotho> .
<http://example.org/16,244,513> <http://example.org/Population> <http://example.org/Chad> .
<http://example.org/Republic> <http://example.org/Government> <http://example.org/Switzerland> .
<http://example.org/Washington,_D.C.> <http://example.org/Capital> <http://example.org/United_States> .
<http://example.org/George_Vella> <http://example.org/Born_at> <http://example.org/1942-04-24> .
<http://example.org/Republic> <http://example.org/Government> <http://example.org/El_Salvador> .
<http://example.org/Juba> <http://example.org/Capital> <http://example.org/South_Sudan> .
<http://example.org/Keith_Mitchell> <http://example.org/Prime_Minister> <http://example.org/Grenada> .
<http://example.org/6,031,187> <http://example.org/Population> <http://example.org/Turkmenistan> .
<http://example.org/\u00C9variste_Ndayishimiye> <http://example.org/President> <http://example.org/Burundi> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Barbados> .
<http://example.org/Hakainde_Hichilema> <http://example.org/President> <http://example.org/Zambia> .
<http://example.org/Presidential_system> <http://example.org/Government> <http://example.org/Kazakhstan> .
<http://example.org/Teodoro_Obiang_Nguema_Mbasogo> <http://example.org/President> <http://example.org/Equatorial_Guinea> .
<http://example.org/Republic> <http://example.org/Government> <http://example.org/Zambia> .
<http://example.org/Alejandro_Giammattei> <http://example.org/President> <http://example.org/Guatemala> .
<http://example.org/3,796,742\u00A0sq\u00A0mi_(9,833,520\u00A0km> <http://example.org/Area> <http://example.org/United_States> .
<http://example.org/Macky_Sall> <http://example.org/Born_at> <http://example.org/1961-12-11> .
<http://example.org/Sergio_Mattarella> <http://example.org/Born_in> <http://example.org/Kingdom_of_Italy> .
<http://example.org/Semi-presidential> <http://example.org/Government> <http://example.org/Ukraine> .
<http://example.org/Choguel_Kokalla_Ma\u00EFga> <http://example.org/Prime_Minister> <http://example.org/Mali> .
<http://example.org/Lusaka> <http://example.org/Capital> <http://example.org/Zambia> .
<http://example.org/Saara_Kuugongelwa> <http://example.org/Born_in> <http://example.org/South_West_Africa> .
<http://example.org/Ukhnaagiin_Kh\u00FCrels\u00FCkh> <http://example.org/Born_at> <http://example.org/1968-06-14> .
<http://example.org/Siaosi_Sovaleni> <http://example.org/Prime_Minister> <http://example.org/Tonga> .
<http://example.org/Tokyo> <http://example.org/Capital> <http://example.org/Japan> .
<http://example.org/Anthony_Albanese> <http://example.org/Prime_Minister> <http://example.org/Australia> .
<http://example.org/Tbilisi> <http://example.org/Capital> <http://example.org/Georgia_(country)> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Spain> .
<http://example.org/Andrew_Holness> <http://example.org/Born_at> <http://example.org/1972-07-22> .
<http://example.org/Djibouti_(city)> <http://example.org/Capital> <http://example.org/Djibouti> .
<http://example.org/Dominant-party_system> <http://example.org/Government> <http://example.org/Burundi> .
<http://example.org/Mohamed_Bazoum> <http://example.org/Born_in> <http://example.org/French_Niger> .
<http://example.org/Salva_Kiir_Mayardit> <http://example.org/President> <http://example.org/South_Sudan> .
<http://example.org/743,700> <http://example.org/Population> <http://example.org/Guyana> .
<http://example.org/10,452\u00A0km> <http://example.org/Area> <http://example.org/Lebanon> .
<http://example.org/5,765\u00A0km> <http://example.org/Area> <http://example.org/Brunei> .
<http://example.org/Alexander_Van_der_Bellen> <http://example.org/President> <http://example.org/Austria> .
<http://example.org/Constitutionalism_in_the_United_States> <http://example.org/Government> <http://example.org/United_States> .
<http://example.org/Prayut_Chan-o-cha> <http://example.org/Born_in> <http://example.org/Thailand> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Singapore> .
<http://example.org/Presidential_system> <http://example.org/Government> <http://example.org/Central_African_Republic> .
<http://example.org/Alexander_De_Croo> <http://example.org/Born_in> <http://example.org/Belgium> .
<http://example.org/Dependent_territory> <http://example.org/Government> <http://example.org/Northern_Mariana_Islands> .
<http://example.org/10,834> <http://example.org/Population> <http://example.org/Nauru> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Saint_Lucia> .
<http://example.org/Republic> <http://example.org/Government> <http://example.org/North_Korea> .
<http://example.org/756,096.3> <http://example.org/Area> <http://example.org/Chile> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Cuba> .
<http://example.org/Luxembourg_City> <http://example.org/Capital> <http://example.org/Luxembourg> .
<http://example.org/Barham_Salih> <http://example.org/Born_at> <http://example.org/1960-09-12> .
<http://example.org/Klaus_Iohannis> <http://example.org/Born_at> <http://example.org/1959-06-13> .
<http://example.org/Khalid_bin_Khalifa_bin_Abdul_Aziz_Al_Thani> <http://example.org/Prime_Minister> <http://example.org/Qatar> .
<http://example.org/69,656> <http://example.org/Population> <http://example.org/Cayman_Islands> .
<http://example.org/30,030> <http://example.org/Population> <http://example.org/British_Virgin_Islands> .
<http://example.org/Taur_Matan_Ruak> <http://example.org/Prime_Minister> <http://example.org/East_Timor> .
<http://example.org/Denis_Sassou_Nguesso> <http://example.org/Born_in> <http://example.org/French_Equatorial_Africa> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Ukraine> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Grenada> .
<http://example.org/Charles_Savarin> <http://example.org/Born_in> <http://example.org/British_Leeward_Islands> .
<http://example.org/Republic> <http://example.org/Government> <http://example.org/France> .
<http://example.org/Hereditary_dictatorship> <http://example.org/Government> <http://example.org/Syria> .
<http://example.org/Aleksandar_Vu\u010Di\u0107> <http://example.org/President> <http://example.org/Serbia> .
<http://example.org/Anthony_Albanese> <http://example.org/Born_at> <http://example.org/1963-03-02> .
<http://example.org/34,218,000> <http://example.org/Population> <http://example.org/Saudi_Arabia> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Papua_New_Guinea> .
<http://example.org/Republic> <http://example.org/Government> <http://example.org/China> .
<http://example.org/1,030,000\u00A0km> <http://example.org/Area> <http://example.org/Mauritania> .
<http://example.org/71,625> <http://example.org/Population> <http://example.org/Dominica> .
<http://example.org/Non-partisan_democracy> <http://example.org/Government> <http://example.org/Palau> .
<http://example.org/Dependent_territory> <http://example.org/Government> <http://example.org/Saint_Pierre_and_Miquelon> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Bangladesh> .
<http://example.org/Dependent_territory> <http://example.org/Government> <http://example.org/British_Virgin_Islands> .
<http://example.org/Daniel_Risch> <http://example.org/Prime_Minister> <http://example.org/Liechtenstein> .
<http://example.org/33,846> <http://example.org/Area> <http://example.org/Moldova> .
<http://example.org/2,845,955> <http://example.org/Population> <http://example.org/Albania> .
<http://example.org/17,500,657> <http://example.org/Population> <http://example.org/Syria> .
<http://example.org/David_Kabua> <http://example.org/President> <http://example.org/Marshall_Islands> .
<http://example.org/Federal_state> <http://example.org/Government> <http://example.org/Venezuela> .
<http://example.org/Authoritarian> <http://example.org/Government> <http://example.org/Djibouti> .
<http://example.org/160\u00A0km> <http://example.org/Area> <http://example.org/Liechtenstein> .
<http://example.org/Miguel_D\u00EDaz-Canel> <http://example.org/Born_in> <http://example.org/Cuba> .
<http://example.org/1,010,408> <http://example.org/Area> <http://example.org/Egypt> .
<http://example.org/Siaosi_Sovaleni> <http://example.org/Born_at> <http://example.org/1970-02-28> .
<http://example.org/Patrice_Talon> <http://example.org/President> <http://example.org/Benin> .
<http://example.org/268,021\u00A0km> <http://example.org/Area> <http://example.org/New_Zealand> .
<http://example.org/Joseph_Ngute> <http://example.org/Prime_Minister> <http://example.org/Cameroon> .
<http://example.org/One-party_state> <http://example.org/Government> <http://example.org/Laos> .
<http://example.org/Malabo> <http://example.org/Capital> <http://example.org/Equatorial_Guinea> .
<http://example.org/Semi-presidential_system> <http://example.org/Government> <http://example.org/Syria> .
<http://example.org/Republic> <http://example.org/Government> <http://example.org/Belarus> .
<http://example.org/112,492\u00A0km> <http://example.org/Area> <http://example.org/Honduras> .
<http://example.org/San_Juan,_Puerto_Rico> <http://example.org/Capital> <http://example.org/Puerto_Rico> .
<http://example.org/783,356\u00A0km> <http://example.org/Area> <http://example.org/Turkey> .
<http://example.org/Jos\u00E9_Maria_Neves> <http://example.org/President> <http://example.org/Cape_Verde> .
<http://example.org/Ismail_Sabri_Yaakob> <http://example.org/Born_at> <http://example.org/1960-01-18> .
<http://example.org/Dominant-party_system> <http://example.org/Government> <http://example.org/Zimbabwe> .
<http://example.org/Xi_Jinping> <http://example.org/President> <http://example.org/China> .
<http://example.org/Isaac_Herzog> <http://example.org/President> <http://example.org/Israel> .
<http://example.org/7,359,000> <http://example.org/Population> <http://example.org/Paraguay> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Liberia> .
<http://example.org/483,628> <http://example.org/Population> <http://example.org/Cape_Verde> .
<http://example.org/Devolution> <http://example.org/Government> <http://example.org/Macau> .
<http://example.org/Port_Louis> <http://example.org/Capital> <http://example.org/Mauritius> .
<http://example.org/Francisco_Pascual_Obama_Asue> <http://example.org/Prime_Minister> <http://example.org/Equatorial_Guinea> .
<http://example.org/266,000\u00A0km> <http://example.org/Area> <http://example.org/Western_Sahara> .
<http://example.org/Nicolae_Ciuc\u0103> <http://example.org/Prime_Minister> <http://example.org/Romania> .
<http://example.org/Muhammadu_Buhari> <http://example.org/Born_at> <http://example.org/1942-12-17> .
<http://example.org/Uhuru_Kenyatta> <http://example.org/Born_at> <http://example.org/1961-10-26> .
<http://example.org/Semi-presidential> <http://example.org/Government> <http://example.org/Burkina_Faso> .
<http://example.org/28,887,118> <http://example.org/Population> <http://example.org/Venezuela> .
<http://example.org/Ouhoumoudou_Mahamadou> <http://example.org/Prime_Minister> <http://example.org/Niger> .
<http://example.org/Ngerulmud> <http://example.org/Capital> <http://example.org/Palau> .
<http://example.org/Republic> <http://example.org/Government> <http://example.org/Guinea-Bissau> .
<http://example.org/Constitutional_monarchy> <http://example.org/Government> <http://example.org/Faroe_Islands> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Ecuador> .
<http://example.org/Faure_Gnassingb\u00E9> <http://example.org/Born_in> <http://example.org/Togo> .
<http://example.org/Absolute_monarchy> <http://example.org/Government> <http://example.org/Vatican_City> .
<http://example.org/Alar_Karis> <http://example.org/President> <http://example.org/Estonia> .
<http://example.org/Shavkat_Mirziyoyev> <http://example.org/President> <http://example.org/Uzbekistan> .
<http://example.org/Parliamentary_system> <http://example.org/Government> <http://example.org/Jamaica> .
<http://example.org/111,369\u00A0km> <http://example.org/Area> <http://example.org/Liberia> .
<http://example.org/An\u00EDbal_Torres> <http://example.org/Born_at> <http://example.org/1942-12-28> .
<http://example.org/Brussels> <http://example.org/Capital> <http://example.org/Belgium> .
<http://example.org/Robinah_Nabbanja> <http://example.org/Born_at> <http://example.org/1969-12-17> .
<http://example.org/Presidential_system> <http://example.org/Government> <http://example.org/Mexico> .
<http://example.org/Abuja> <http://example.org/Capital> <http://example.org/Nigeria> .
<http://example.org/111,454> <http://example.org/Population> <http://example.org/Grenada> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Jamaica> .
<http://example.org/17,300,000> <http://example.org/Population> <http://example.org/Cambodia> .
<http://example.org/Abdul_Hamid_(politician)> <http://example.org/Born_at> <http://example.org/1944-01-01> .
<http://example.org/Socialist_state> <http://example.org/Government> <http://example.org/Macau> .
<http://example.org/28,095,714> <http://example.org/Population> <http://example.org/Nepal> .
<http://example.org/450,295\u00A0km> <http://example.org/Area> <http://example.org/Sweden> .
<http://example.org/Arturs_Kri\u0161j\u0101nis_Kari\u0146\u0161> <http://example.org/Born_at> <http://example.org/1964-12-13> .
<http://example.org/Constitutional_monarchy> <http://example.org/Government> <http://example.org/Sint_Maarten> .
<http://example.org/Gilmar_Pisas> <http://example.org/Born_at> <http://example.org/1971-10-28> .
<http://example.org/Tunis> <http://example.org/Capital> <http://example.org/Tunisia> .
<http://example.org/Hassanal_Bolkiah> <http://example.org/Born_at> <http://example.org/1946-07-15> .
<http://example.org/List_of_countries_by_system_of_government#Parliamentary_republics_with_an_executive_presidency> <http://example.org/Government> <http://example.org/Kiribati> .
<http://example.org/312,696\u00A0km> <http://example.org/Area> <http://example.org/Poland> .
<http://example.org/Presidential_system> <http://example.org/Government> <http://example.org/Uganda> .
<http://example.org/Ant\u00F3nio_Costa> <http://example.org/Born_at> <http://example.org/1961-07-17> .
<http://example.org/Willemstad> <http://example.org/Capital> <http://example.org/Cura\u00E7ao> .
<http://example.org/5,997> <http://example.org/Population> <http://example.org/Saint_Pierre_and_Miquelon> .
<http://example.org/Parliamentary_system> <http://example.org/Government> <http://example.org/Anguilla> .
<http://example.org/Volodymyr_Zelenskyy> <http://example.org/President> <http://example.org/Ukraine> .
<http://example.org/Dublin> <http://example.org/Capital> <http://example.org/Republic_of_Ireland> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Cambodia> .
<http://example.org/Gabriel_Boric> <http://example.org/Born_in> <http://example.org/Chile> .
<http://example.org/Mark_Rutte> <http://example.org/Born_at> <http://example.org/1967-02-14> .
<http://example.org/Emmanuel_Macron> <http://example.org/Born_in> <http://example.org/France> .
<http://example.org/25,713\u00A0km> <http://example.org/Area> <http://example.org/North_Macedonia> .
<http://example.org/Alberto_Fern\u00E1ndez> <http://example.org/Born_at> <http://example.org/1959-04-02> .
<http://example.org/Han_Duck-soo> <http://example.org/Born_in> <http://example.org/South_Korea> .
<http://example.org/460,345> <http://example.org/Population> <http://example.org/Brunei> .
<http://example.org/Republic> <http://example.org/Government> <http://example.org/Comoros> .
<http://example.org/Semi-presidential_system> <http://example.org/Government> <http://example.org/Azerbaijan> .
<http://example.org/Republic> <http://example.org/Government> <http://example.org/East_Timor> .
<http://example.org/Presidential_system> <http://example.org/Government> <http://example.org/South_Korea> .
<http://example.org/Keith_Rowley> <http://example.org/Born_in> <http://example.org/Trinidad_and_Tobago> .
<http://example.org/Republic> <http://example.org/Government> <http://example.org/Vietnam> .
<http://example.org/Totalitarian> <http://example.org/Government> <http://example.org/Eritrea> .
<http://example.org/Rodrigo_Duterte> <http://example.org/Born_in> <http://example.org/Philippine_Commonwealth> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Italy> .
<http://example.org/Volodymyr_Zelenskyy> <http://example.org/Born_in> <http://example.org/Soviet_Union_(now_Ukraine)> .
<http://example.org/Francisco_Pascual_Obama_Asue> <http://example.org/Born_in> <http://example.org/1949> .
<http://example.org/Bishkek> <http://example.org/Capital> <http://example.org/Kyrgyzstan> .
<http://example.org/4,403,313> <http://example.org/Population> <http://example.org/Mauritania> .
<http://example.org/83,600\u00A0km> <http://example.org/Area> <http://example.org/United_Arab_Emirates> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Turkmenistan> .
<http://example.org/17,725,800> <http://example.org/Population> <http://example.org/Netherlands> .
<http://example.org/10,344,802> <http://example.org/Population> <http://example.org/Portugal> .
<http://example.org/Min_Aung_Hlaing> <http://example.org/Prime_Minister> <http://example.org/Myanmar> .
<http://example.org/Parliamentary_republic> <http://example.org/Government> <http://example.org/Fiji> .
<http://example.org/Andorra_la_Vella> <http://example.org/Capital> <http://example.org/Andorra> .
<http://example.org/James_Marape> <http://example.org/Born_in> <http://example.org/Papua_New_Guinea> .
<http://example.org/Klaus_Iohannis> <http://example.org/President> <http://example.org/Romania> .
<http://example.org/Bisher_Al-Khasawneh> <http://example.org/Prime_Minister> <http://example.org/Jordan> .
<http://example.org/\u00C9douard_Ngirente> <http://example.org/Prime_Minister> <http://example.org/Rwanda> .
<http://example.org/Elective_monarchy> <http://example.org/Government> <http://example.org/Cambodia> .
<http://example.org/Kassim_Majaliwa> <http://example.org/Prime_Minister> <http://example.org/Tanzania> .
<http://example.org/2,166,086\u00A0km> <http://example.org/Area> <http://example.org/Greenland> .
<http://example.org/Dominant-party_system> <http://example.org/Government> <http://example.org/Kazakhstan> .
<http://example.org/Republic> <http://example.org/Government> <http://example.org/Niger> .
<http://example.org/Unitary_system> <http://example.org/Government> <http://example.org/Democratic_Republic_of_the_Congo> .
<http://example.org/2,173,999> <http://example.org/Population> <http://example.org/The_Gambia> .
<http://example.org/491,210\u00A0km> <http://example.org/Area> <http://example.org/Turkmenistan> .
<http://example.org/Semi-presidential_system> <http://example.org/Government> <http://example.org/Egypt> .
<http://example.org/Kabul> <http://example.org/Capital> <http://example.org/Afghanistan> .
<http://example.org/5,873,420> <http://example.org/Population> <http://example.org/Denmark> .
<http://example.org/Gu\u00F0ni_Th._J\u00F3hannesson> <http://example.org/President> <http://example.org/Iceland> .
<http://example.org/330,803\u00A0km> <http://example.org/Area> <http://example.org/Malaysia> .
<http://example.org/Republic> <http://example.org/Government> <http://example.org/Myanmar> .
<http://example.org/Republic> <http://example.org/Government> <http://example.org/Nicaragua> .
<http://example.org/Semi-presidential_system> <http://example.org/Government> <http://example.org/France> .
<http://example.org/Diarchy> <http://example.org/Government> <http://example.org/Andorra> .
<http://example.org/Abdulla_Aripov> <http://example.org/Prime_Minister> <http://example.org/Uzbekistan> .
<http://example.org/Budapest> <http://example.org/Capital> <http://example.org/Hungary> .
<http://example.org/Nicos_Anastasiades> <http://example.org/Born_in> <http://example.org/British_Cyprus> .
<http://example.org/Hun_Sen> <http://example.org/Born_in> <http://example.org/French_Indochina> .
<http://example.org/Timothy_Harris> <http://example.org/Born_at> <http://example.org/1964-12-06> .
<http://example.org/Zuzana_\u010Caputov\u00E1> <http://example.org/President> <http://example.org/Slovakia> .
<http://example.org/1,340,513> <http://example.org/Population> <http://example.org/East_Timor> .
<http://example.org/Parliamentary_system> <http://example.org/Government> <http://example.org/United_Kingdom> .
<http://example.org/Hun_Sen> <http://example.org/Born_at> <http://example.org/1952-08-05> .
<http://example.org/Chan_Santokhi> <http://example.org/Born_at> <http://example.org/1959-02-03> .
<http://example.org/Petr_Fiala> <http://example.org/Born_at> <http://example.org/1964-09-01> .
<http://example.org/Nicolae_Ciuc\u0103> <http://example.org/Born_in> <http://example.org/Romania> .
<http://example.org/Gaston_Browne> <http://example.org/Born_in> <http://example.org/Colony_of> .
<http://example.org/264\u00A0km> <http://example.org/Area> <http://example.org/Cayman_Islands> .
<http://example.org/56,785\u00A0km> <http://example.org/Area> <http://example.org/Togo> .
<http://example.org/38,526,760> <http://example.org/Population> <http://example.org/Canada> .
<http://example.org/750\u00A0km> <http://example.org/Area> <http://example.org/Dominica> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/State_of_Palestine> .
<http://example.org/Constitutional_monarchy> <http://example.org/Government> <http://example.org/Niue> .
<http://example.org/Parliamentary_republic> <http://example.org/Government> <http://example.org/Finland> .
<http://example.org/Wiliame_Katonivere> <http://example.org/Born_in> <http://example.org/Fiji> .
<http://example.org/Federalism_in_the_United_States> <http://example.org/Government> <http://example.org/United_States> .
<http://example.org/Presidential_system> <http://example.org/Government> <http://example.org/Sierra_Leone> .
<http://example.org/Kyriakos_Mitsotakis> <http://example.org/Prime_Minister> <http://example.org/Greece> .
<http://example.org/212,688,125> <http://example.org/Population> <http://example.org/Brazil> .
<http://example.org/1,189,265> <http://example.org/Population> <http://example.org/Cyprus> .
<http://example.org/83,190,556> <http://example.org/Population> <http://example.org/Germany> .
<http://example.org/Emomali_Rahmon> <http://example.org/Born_in> <http://example.org/Tajikistan> .
<http://example.org/Constitution> <http://example.org/Government> <http://example.org/Guam> .
<http://example.org/Parliamentary_system> <http://example.org/Government> <http://example.org/Saint_Pierre_and_Miquelon> .
<http://example.org/100,363\u00A0km> <http://example.org/Area> <http://example.org/South_Korea> .
<http://example.org/44,700,000> <http://example.org/Population> <http://example.org/Algeria> .
<http://example.org/Federalism> <http://example.org/Government> <http://example.org/Switzerland> .
<http://example.org/881,913\u00A0km> <http://example.org/Area> <http://example.org/Pakistan> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Madagascar> .
<http://example.org/Nicosia> <http://example.org/Capital> <http://example.org/Cyprus> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Saudi_Arabia> .
<http://example.org/Valletta> <http://example.org/Capital> <http://example.org/Malta> .
<http://example.org/Luis_Abinader> <http://example.org/Born_in> <http://example.org/Dominican_Republic> .
<http://example.org/Naypyidaw> <http://example.org/Capital> <http://example.org/Myanmar> .
<http://example.org/Jamestown,_Saint_Helena> <http://example.org/Capital> <http://example.org/Saint_Helena,_Ascension_and_Tristan_da_Cunha> .
<http://example.org/99,331> <http://example.org/Population> <http://example.org/Seychelles> .
<http://example.org/Parliamentary_system> <http://example.org/Government> <http://example.org/Montserrat> .
<http://example.org/Umaro_Sissoco_Embal\u00F3> <http://example.org/Born_in> <http://example.org/Portuguese_Guinea> .
<http://example.org/Taipei> <http://example.org/Capital> <http://example.org/Taiwan> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Azerbaijan> .
<http://example.org/B\u00E1r\u00F0ur_\u00E1_Steig_Nielsen> <http://example.org/Born_at> <http://example.org/1972-04-16> .
<http://example.org/9,537,645> <http://example.org/Population> <http://example.org/Tajikistan> .
<http://example.org/Semi-constitutional_monarchy> <http://example.org/Government> <http://example.org/Bhutan> .
<http://example.org/Michael_D._Higgins> <http://example.org/Born_at> <http://example.org/1941-04-18> .
<http://example.org/Republic> <http://example.org/Government> <http://example.org/State_of_Palestine> .
<http://example.org/Parliamentary_republic> <http://example.org/Government> <http://example.org/Vanuatu> .
<http://example.org/Federation> <http://example.org/Government> <http://example.org/Germany> .
<http://example.org/Alassane_Ouattara> <http://example.org/Born_in> <http://example.org/French_West_Africa> .
<http://example.org/637,657> <http://example.org/Area> <http://example.org/Somalia> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Bahrain> .
<http://example.org/Mokgweetsi_Masisi> <http://example.org/Born_at> <http://example.org/1961-07-21> .
<http://example.org/1,972,550\u00A0km> <http://example.org/Area> <http://example.org/Mexico> .
<http://example.org/Choguel_Kokalla_Ma\u00EFga> <http://example.org/Born_in> <http://example.org/French_Sudan> .
<http://example.org/Parliamentary_system> <http://example.org/Government> <http://example.org/Cambodia> .
<http://example.org/587,041\u00A0km> <http://example.org/Area> <http://example.org/Madagascar> .
<http://example.org/Dominant-party_system> <http://example.org/Government> <http://example.org/Republic_of_the_Congo> .
<http://example.org/Abdulla_Aripov> <http://example.org/Born_at> <http://example.org/1961-05-24> .
<http://example.org/Sheikh_Hasina> <http://example.org/Prime_Minister> <http://example.org/Bangladesh> .
<http://example.org/Socialist_state> <http://example.org/Government> <http://example.org/Cuba> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Morocco> .
<http://example.org/Salman_bin_Hamad_Al_Khalifa> <http://example.org/Born_at> <http://example.org/1969-10-21> .
<http://example.org/Republic> <http://example.org/Government> <http://example.org/Madagascar> .
<http://example.org/83,879\u00A0km> <http://example.org/Area> <http://example.org/Austria> .
<http://example.org/Mario_Abdo_Ben\u00EDtez> <http://example.org/President> <http://example.org/Paraguay> .
<http://example.org/Kausea_Natano> <http://example.org/Prime_Minister> <http://example.org/Tuvalu> .
<http://example.org/Gaston_Browne> <http://example.org/Born_at> <http://example.org/1967-02-09> .
<http://example.org/5,159,076> <http://example.org/Population> <http://example.org/State_of_Palestine> .
<http://example.org/Mogadishu> <http://example.org/Capital> <http://example.org/Somalia> .
<http://example.org/Mateusz_Morawiecki> <http://example.org/Born_at> <http://example.org/1968-06-20> .
<http://example.org/84,680,273> <http://example.org/Population> <http://example.org/Turkey> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Palau> .
<http://example.org/Presidential_system> <http://example.org/Government> <http://example.org/Iran> .
<http://example.org/9,587,522> <http://example.org/Population> <http://example.org/Honduras> .
<http://example.org/Presidential_system> <http://example.org/Government> <http://example.org/Malawi> .
<http://example.org/Paul_Kagame> <http://example.org/President> <http://example.org/Rwanda> .
<http://example.org/Mark_Phillips_(Guyanese_politician)> <http://example.org/Born_at> <http://example.org/1961-10-05> .
<http://example.org/Jos\u00E9_Ramos-Horta> <http://example.org/Born_at> <http://example.org/1949-12-26> .
<http://example.org/Tsai_Ing-wen> <http://example.org/Born_in> <http://example.org/Taiwan> .
<http://example.org/Arturs_Kri\u0161j\u0101nis_Kari\u0146\u0161> <http://example.org/Born_in> <http://example.org/U.S.> .
<http://example.org/Hage_Geingob> <http://example.org/Born_in> <http://example.org/Namibia> .
<http://example.org/168,801> <http://example.org/Population> <http://example.org/Guam> .
<http://example.org/8,935,000> <http://example.org/Population> <http://example.org/Papua_New_Guinea> .
<http://example.org/Mohamed_bin_Zayed_Al_Nahyan> <http://example.org/Born_at> <http://example.org/1961-03-11> .
<http://example.org/Anatole_Collinet_Makosso> <http://example.org/Born_in> <http://example.org/Republic_of_the_Congo> .
<http://example.org/Vladimir_Putin> <http://example.org/Born_in> <http://example.org/Soviet_Union> .
<http://example.org/Parliamentary_system> <http://example.org/Government> <http://example.org/Belgium> .
<http://example.org/James_Marape> <http://example.org/Prime_Minister> <http://example.org/Papua_New_Guinea> .
<http://example.org/384,239> <http://example.org/Population> <http://example.org/Guadeloupe> .
<http://example.org/Republic> <http://example.org/Government> <http://example.org/South_Korea> .
<http://example.org/Ariel_Henry> <http://example.org/Born_at> <http://example.org/1949-11-06> .
<http://example.org/555,000> <http://example.org/Area> <http://example.org/Yemen> .
<http://example.org/Semi-presidential_system> <http://example.org/Government> <http://example.org/Guinea-Bissau> .
<http://example.org/Federalism> <http://example.org/Government> <http://example.org/India> .
<http://example.org/114,763\u00A0km> <http://example.org/Area> <http://example.org/Benin> .
<http://example.org/Robert_Abela> <http://example.org/Prime_Minister> <http://example.org/Malta> .
<http://example.org/Presidential_system> <http://example.org/Government> <http://example.org/Comoros> .
<http://example.org/Devolution> <http://example.org/Government> <http://example.org/American_Samoa> .
<http://example.org/Muscat,_Oman> <http://example.org/Capital> <http://example.org/Oman> .
<http://example.org/Parliamentary_republic> <http://example.org/Government> <http://example.org/Slovakia> .
<http://example.org/Andrzej_Duda> <http://example.org/President> <http://example.org/Poland> .
<http://example.org/100,209> <http://example.org/Population> <http://example.org/Tonga> .
<http://example.org/Sergio_Mattarella> <http://example.org/Born_at> <http://example.org/1941-07-23> .
<http://example.org/Gu\u00F0ni_Th._J\u00F3hannesson> <http://example.org/Born_in> <http://example.org/Iceland> .
<http://example.org/309,500\u00A0km> <http://example.org/Area> <http://example.org/Oman> .
<http://example.org/Tegucigalpa> <http://example.org/Capital> <http://example.org/Honduras> .
<http://example.org/Parliamentary_system> <http://example.org/Government> <http://example.org/Antigua_and_Barbuda> .
<http://example.org/Luis_Arce> <http://example.org/Born_in> <http://example.org/Bolivia> .
<http://example.org/Socialist_state> <http://example.org/Government> <http://example.org/Hong_Kong> .
<http://example.org/Copenhagen> <http://example.org/Capital> <http://example.org/Denmark> .
<http://example.org/Ariel_Henry> <http://example.org/President> <http://example.org/Haiti> .
<http://example.org/Military_junta> <http://example.org/Government> <http://example.org/Sudan> .
<http://example.org/Semi-presidential_system> <http://example.org/Government> <http://example.org/S\u00E3o_Tom\u00E9_and_Pr\u00EDncipe> .
<http://example.org/Dictatorship> <http://example.org/Government> <http://example.org/Djibouti> .
<http://example.org/Paramaribo> <http://example.org/Capital> <http://example.org/Suriname> .
<http://example.org/Constitutional_monarchy> <http://example.org/Government> <http://example.org/Cura\u00E7ao> .
<http://example.org/Michael_D._Higgins> <http://example.org/Born_in> <http://example.org/Ireland> .
<http://example.org/Parliamentary_system> <http://example.org/Government> <http://example.org/Saint_Kitts_and_Nevis> .
<http://example.org/850,886> <http://example.org/Population> <http://example.org/Comoros> .
<http://example.org/Fiam\u0113_Naomi_Mata\u02BBafa> <http://example.org/Born_in> <http://example.org/Samoa> .
<http://example.org/242,495\u00A0km> <http://example.org/Area> <http://example.org/United_Kingdom> .
<http://example.org/Nguy\u1EC5n_Xu\u00E2n_Ph\u00FAc> <http://example.org/Born_in> <http://example.org/State_of_Vietnam> .
<http://example.org/Naftali_Bennett> <http://example.org/Born_at> <http://example.org/1972-03-25> .
<http://example.org/Diarchy> <http://example.org/Government> <http://example.org/San_Marino> .
<http://example.org/Irfaan_Ali> <http://example.org/Born_in> <http://example.org/Guyana> .
<http://example.org/Luanda> <http://example.org/Capital> <http://example.org/Angola> .
<http://example.org/125,502,000> <http://example.org/Population> <http://example.org/Japan> .
<http://example.org/Abiy_Ahmed> <http://example.org/Born_at> <http://example.org/1976-08-15> .
<http://example.org/Niamey> <http://example.org/Capital> <http://example.org/Niger> .
<http://example.org/Barham_Salih> <http://example.org/President> <http://example.org/Iraq> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Guatemala> .
<http://example.org/George_Weah> <http://example.org/Born_at> <http://example.org/1966-10-01> .
<http://example.org/300,000\u00A0km> <http://example.org/Area> <http://example.org/Philippines> .
<http://example.org/Non-partisan_democracy> <http://example.org/Government> <http://example.org/Federated_States_of_Micronesia> .
<http://example.org/Nur-Sultan> <http://example.org/Capital> <http://example.org/Kazakhstan> .
<http://example.org/Military_junta> <http://example.org/Government> <http://example.org/Guinea> .
<http://example.org/Nicol\u00E1s_Maduro> <http://example.org/President> <http://example.org/Venezuela> .
<http://example.org/Unitary_parliamentary_republic> <http://example.org/Government> <http://example.org/Moldova> .
<http://example.org/Parliamentary_republic> <http://example.org/Government> <http://example.org/Bosnia_and_Herzegovina> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/The_Gambia> .
<http://example.org/Parliamentary_republic> <http://example.org/Government> <http://example.org/Armenia> .
<http://example.org/Maeen_Abdulmalik_Saeed> <http://example.org/Born_in> <http://example.org/North_Yemen> .
<http://example.org/Aymen_Benabderrahmane> <http://example.org/Prime_Minister> <http://example.org/Algeria> .
<http://example.org/Republic> <http://example.org/Government> <http://example.org/Dominica> .
<http://example.org/Manasseh_Sogavare> <http://example.org/Born_in> <http://example.org/Papua_New_Guinea> .
<http://example.org/Republic> <http://example.org/Government> <http://example.org/Uganda> .
<http://example.org/Parliamentary_system> <http://example.org/Government> <http://example.org/Papua_New_Guinea> .
<http://example.org/10,516,707> <http://example.org/Population> <http://example.org/Czech_Republic> .
<http://example.org/Constitutional_monarchy> <http://example.org/Government> <http://example.org/Denmark> .
<http://example.org/Parliamentary_system> <http://example.org/Government> <http://example.org/Belize> .
<http://example.org/331,699\u00A0km> <http://example.org/Area> <http://example.org/Vietnam> .
<http://example.org/Nguy\u1EC5n_Xu\u00E2n_Ph\u00FAc> <http://example.org/Born_at> <http://example.org/1954-07-20> .
<http://example.org/17,907> <http://example.org/Population> <http://example.org/Palau> .
<http://example.org/Doha> <http://example.org/Capital> <http://example.org/Qatar> .
<http://example.org/5,131\u00A0km> <http://example.org/Area> <http://example.org/Trinidad_and_Tobago> .
<http://example.org/Johnny_Brice\u00F1o> <http://example.org/Born_at> <http://example.org/1960-07-17> .
<http://example.org/Paul_Biya> <http://example.org/Born_at> <http://example.org/1933-02-13> .
<http://example.org/Havana> <http://example.org/Capital> <http://example.org/Cuba> .
<http://example.org/180> <http://example.org/Area> <http://example.org/Aruba> .
<http://example.org/459\u00A0km> <http://example.org/Area> <http://example.org/Seychelles> .
<http://example.org/Taneti_Maamau> <http://example.org/President> <http://example.org/Kiribati> .
<http://example.org/440\u00A0km> <http://example.org/Area> <http://example.org/Antigua_and_Barbuda> .
<http://example.org/Michel_Aoun> <http://example.org/Born_at> <http://example.org/1933-09-30> .
<http://example.org/Mohamed_Ould_Ghazouani> <http://example.org/Born_in> <http://example.org/Colonial_Mauritania> .
<http://example.org/Guillermo_Lasso> <http://example.org/Born_in> <http://example.org/Ecuador> .
<http://example.org/Semi-presidential_system> <http://example.org/Government> <http://example.org/Algeria> .
<http://example.org/Dritan_Abazovi\u0107> <http://example.org/Born_at> <http://example.org/1985-12-25> .
<http://example.org/Republic> <http://example.org/Government> <http://example.org/Central_African_Republic> .
<http://example.org/Presidential_system> <http://example.org/Government> <http://example.org/United_States> .
<http://example.org/Najib_Mikati> <http://example.org/Born_at> <http://example.org/1955-11-24> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Uganda> .
<http://example.org/41,285\u00A0km> <http://example.org/Area> <http://example.org/Switzerland> .
<http://example.org/Provisional_government> <http://example.org/Government> <http://example.org/Afghanistan> .
<http://example.org/Lee_Hsien_Loong> <http://example.org/Born_at> <http://example.org/1952-02-10> .
<http://example.org/2,795,680> <http://example.org/Population> <http://example.org/Lithuania> .
<http://example.org/1,564,116\u00A0km> <http://example.org/Area> <http://example.org/Mongolia> .
<http://example.org/Ilham_Aliyev> <http://example.org/Born_at> <http://example.org/1961-12-24> .
<http://example.org/Roman_Golovchenko> <http://example.org/Born_in> <http://example.org/USSR> .
<http://example.org/785.08> <http://example.org/Area> <http://example.org/Bahrain> .
<http://example.org/Mohamed_bin_Zayed_Al_Nahyan> <http://example.org/Born_in> <http://example.org/Trucial_States> .
<http://example.org/390,757\u00A0km> <http://example.org/Area> <http://example.org/Zimbabwe> .
<http://example.org/La_Paz> <http://example.org/Capital> <http://example.org/Bolivia> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Ivory_Coast> .
<http://example.org/Hakainde_Hichilema> <http://example.org/Born_in> <http://example.org/Zambia)> .
<http://example.org/Republic> <http://example.org/Government> <http://example.org/Malawi> .
<http://example.org/Min_Aung_Hlaing> <http://example.org/Born_in> <http://example.org/Burma> .
<http://example.org/Mark_Phillips_(Guyanese_politician)> <http://example.org/Born_in> <http://example.org/British_Guiana> .
<http://example.org/Conakry> <http://example.org/Capital> <http://example.org/Guinea> .
<http://example.org/Miguel_D\u00EDaz-Canel> <http://example.org/President> <http://example.org/Cuba> .
<http://example.org/1,861\u00A0km> <http://example.org/Area> <http://example.org/Comoros> .
<http://example.org/Presidential_system> <http://example.org/Government> <http://example.org/Nicaragua> .
<http://example.org/Parliamentary_system> <http://example.org/Government> <http://example.org/Malaysia> .
<http://example.org/Presidential_system> <http://example.org/Government> <http://example.org/Ecuador> .
<http://example.org/Ali_Asadov> <http://example.org/Prime_Minister> <http://example.org/Azerbaijan> .
<http://example.org/Centralized_government> <http://example.org/Government> <http://example.org/Russia> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/China> .
<http://example.org/Abdelmadjid_Tebboune> <http://example.org/Born_at> <http://example.org/1945-11-17> .
<http://example.org/Honiara> <http://example.org/Capital> <http://example.org/Solomon_Islands> .
<http://example.org/Devolution> <http://example.org/Government> <http://example.org/Saint_Pierre_and_Miquelon> .
<http://example.org/Confessionalism_(politics)> <http://example.org/Government> <http://example.org/Lebanon> .
<http://example.org/18,576\u00A0km> <http://example.org/Area> <http://example.org/New_Caledonia> .
<http://example.org/Alberto_Fern\u00E1ndez> <http://example.org/President> <http://example.org/Argentina> .
<http://example.org/25,549,604> <http://example.org/Population> <http://example.org/North_Korea> .
<http://example.org/1,904,569> <http://example.org/Area> <http://example.org/Indonesia> .
<http://example.org/George_Weah> <http://example.org/President> <http://example.org/Liberia> .
<http://example.org/216,746,934> <http://example.org/Population> <http://example.org/Nigeria> .
<http://example.org/21,041\u00A0km> <http://example.org/Area> <http://example.org/El_Salvador> .
<http://example.org/56,081> <http://example.org/Population> <http://example.org/Greenland> .
<http://example.org/Christian_state> <http://example.org/Government> <http://example.org/Vatican_City> .
<http://example.org/Wavel_Ramkalawan> <http://example.org/Born_at> <http://example.org/1961-03-15> .
<http://example.org/2,963,900> <http://example.org/Population> <http://example.org/Armenia> .
<http://example.org/3,398> <http://example.org/Population> <http://example.org/Falkland_Islands> .
<http://example.org/Dependent_territory> <http://example.org/Government> <http://example.org/Wallis_and_Futuna> .
<http://example.org/2,149,690> <http://example.org/Area> <http://example.org/Saudi_Arabia> .
<http://example.org/Aymen_Benabderrahmane> <http://example.org/Born_at> <http://example.org/1966-08-30> .
<http://example.org/Milo\u0161_Zeman> <http://example.org/President> <http://example.org/Czech_Republic> .
<http://example.org/Jean-Michel_Sama_Lukonde> <http://example.org/Prime_Minister> <http://example.org/Democratic_Republic_of_the_Congo> .
<http://example.org/Kais_Saied> <http://example.org/Born_in> <http://example.org/Tunisia> .
<http://example.org/575,990> <http://example.org/Population> <http://example.org/Suriname> .
<http://example.org/Parliamentary_republic_with_an_executive_presidency> <http://example.org/Government> <http://example.org/Marshall_Islands> .
<http://example.org/2,550,226> <http://example.org/Population> <http://example.org/Namibia> .
<http://example.org/Xavier_Bettel> <http://example.org/Born_in> <http://example.org/Luxembourg> .
<http://example.org/Vladimir_Putin> <http://example.org/Born_at> <http://example.org/1952-10-07> .
<http://example.org/Parliamentary_republic> <http://example.org/Government> <http://example.org/Lebanon> .
<http://example.org/Nicolae_Ciuc\u0103> <http://example.org/Born_at> <http://example.org/1967-02-07> .
<http://example.org/Kais_Saied> <http://example.org/Born_at> <http://example.org/1958-02-22> .
<http://example.org/400,516> <http://example.org/Population> <http://example.org/The_Bahamas> .
<http://example.org/Naftali_Bennett> <http://example.org/Prime_Minister> <http://example.org/Israel> .
<http://example.org/Mohamed_bin_Zayed_Al_Nahyan> <http://example.org/President> <http://example.org/United_Arab_Emirates> .
<http://example.org/Baku> <http://example.org/Capital> <http://example.org/Azerbaijan> .
<http://example.org/Tallinn> <http://example.org/Capital> <http://example.org/Estonia> .
<http://example.org/Janez_Jan\u0161a> <http://example.org/Born_at> <http://example.org/1958-09-17> .
<http://example.org/51,745,000> <http://example.org/Population> <http://example.org/South_Korea> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Mauritania> .
<http://example.org/Semi-presidential_system> <http://example.org/Government> <http://example.org/Tunisia> .
<http://example.org/Unitary_system> <http://example.org/Government> <http://example.org/Tajikistan> .
<http://example.org/Ouhoumoudou_Mahamadou> <http://example.org/Born_in> <http://example.org/French_Niger> .
<http://example.org/Mohamed_B\u00E9avogui> <http://example.org/Prime_Minister> <http://example.org/Guinea> .
<http://example.org/Jo\u00E3o_Louren\u00E7o> <http://example.org/President> <http://example.org/Angola> .
<http://example.org/Sahle-Work_Zewde> <http://example.org/Born_at> <http://example.org/1950-02-21> .
<http://example.org/Reykjav\u00EDk> <http://example.org/Capital> <http://example.org/Iceland> .
<http://example.org/Nikol_Pashinyan> <http://example.org/Prime_Minister> <http://example.org/Armenia> .
<http://example.org/Gabriel_Boric> <http://example.org/Born_at> <http://example.org/1986-02-11> .
<http://example.org/Jos\u00E9_Ramos-Horta> <http://example.org/Born_in> <http://example.org/East_Timor> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Republic_of_the_Congo> .
<http://example.org/Nuku\u02BBalofa> <http://example.org/Capital> <http://example.org/Tonga> .
<http://example.org/58,413> <http://example.org/Population> <http://example.org/Marshall_Islands> .
<http://example.org/Presidential_system> <http://example.org/Government> <http://example.org/Senegal> .
<http://example.org/Presidential_system> <http://example.org/Government> <http://example.org/Colombia> .
<http://example.org/The_Valley,_Anguilla> <http://example.org/Capital> <http://example.org/Anguilla> .
<http://example.org/Halimah_Yacob> <http://example.org/President> <http://example.org/Singapore> .
<http://example.org/Dhaka> <http://example.org/Capital> <http://example.org/Bangladesh> .
<http://example.org/Semi-presidential_system> <http://example.org/Government> <http://example.org/Namibia> .
<http://example.org/Mario_Draghi> <http://example.org/Prime_Minister> <http://example.org/Italy> .
<http://example.org/Parliamentary_system> <http://example.org/Government> <http://example.org/Tuvalu> .
<http://example.org/Hag\u00E5t\u00F1a> <http://example.org/Capital> <http://example.org/Guam> .
<http://example.org/1,648,195\u00A0km> <http://example.org/Area> <http://example.org/Iran> .
<http://example.org/348.5\u00A0km> <http://example.org/Area> <http://example.org/Grenada> .
<http://example.org/Albert_Ou\u00E9draogo> <http://example.org/Prime_Minister> <http://example.org/Burkina_Faso> .
<http://example.org/Lionel_Aingimea> <http://example.org/President> <http://example.org/Nauru> .
<http://example.org/Andrej_Plenkovi\u0107> <http://example.org/Born_at> <http://example.org/1970-04-08> .
<http://example.org/Parliamentary_system> <http://example.org/Government> <http://example.org/New_Zealand> .
<http://example.org/Natalia_Gavrili\u021Ba> <http://example.org/Prime_Minister> <http://example.org/Moldova> .
<http://example.org/Devolution> <http://example.org/Government> <http://example.org/Hong_Kong> .
<http://example.org/110,211> <http://example.org/Population> <http://example.org/Saint_Vincent_and_the_Grenadines> .
<http://example.org/Nguy\u1EC5n_Xu\u00E2n_Ph\u00FAc> <http://example.org/President> <http://example.org/Vietnam> .
<http://example.org/Dominant-party_system> <http://example.org/Government> <http://example.org/Togo> .
<http://example.org/Devolution> <http://example.org/Government> <http://example.org/French_Polynesia> .
<http://example.org/15,007> <http://example.org/Area> <http://example.org/East_Timor> .
<http://example.org/Sheikh_Hasina> <http://example.org/Born_at> <http://example.org/1947-09-28> .
<http://example.org/Joe_Biden> <http://example.org/Born_at> <http://example.org/1942-11-20> .
<http://example.org/Sarajevo> <http://example.org/Capital> <http://example.org/Bosnia_and_Herzegovina> .
<http://example.org/438,317\u00A0km> <http://example.org/Area> <http://example.org/Iraq> .
<http://example.org/Lazarus_Chakwera> <http://example.org/Born_at> <http://example.org/1955-04-05> .
<http://example.org/11,042,719> <http://example.org/Population> <http://example.org/Jordan> .
<http://example.org/Fiam\u0113_Naomi_Mata\u02BBafa> <http://example.org/Born_at> <http://example.org/1957-04-29> .
<http://example.org/643,801\u00A0km> <http://example.org/Area> <http://example.org/France> .
<http://example.org/Sher_Bahadur_Deuba> <http://example.org/Born_in> <http://example.org/Nepal> .
<http://example.org/Parliamentary_system> <http://example.org/Government> <http://example.org/Bhutan> .
<http://example.org/Mikhail_Mishustin> <http://example.org/Prime_Minister> <http://example.org/Russia> .
<http://example.org/Islamic_republic> <http://example.org/Government> <http://example.org/Pakistan> .
<http://example.org/55,650> <http://example.org/Population> <http://example.org/Northern_Mariana_Islands> .
<http://example.org/Petr_Fiala> <http://example.org/Prime_Minister> <http://example.org/Czech_Republic> .
<http://example.org/Saint-Pierre,_Saint-Pierre_and_Miquelon> <http://example.org/Capital> <http://example.org/Saint_Pierre_and_Miquelon> .
<http://example.org/Roman_Golovchenko> <http://example.org/Born_at> <http://example.org/1973-08-10> .
<http://example.org/Maia_Sandu> <http://example.org/Born_at> <http://example.org/1972-05-24> .
<http://example.org/Kokhir_Rasulzoda> <http://example.org/Born_in> <http://example.org/Soviet_Union> .
<http://example.org/Skopje> <http://example.org/Capital> <http://example.org/North_Macedonia> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Iceland> .
<http://example.org/Sandra_Mason> <http://example.org/Born_in> <http://example.org/Barbados> .
<http://example.org/513,120\u00A0km> <http://example.org/Area> <http://example.org/Thailand> .
<http://example.org/David_Kabua> <http://example.org/Born_at> <http://example.org/1951-05-26> .
<http://example.org/Andry_Rajoelina> <http://example.org/President> <http://example.org/Madagascar> .
<http://example.org/Castries> <http://example.org/Capital> <http://example.org/Saint_Lucia> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Niger> .
<http://example.org/40,218,234> <http://example.org/Population> <http://example.org/Afghanistan> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Kazakhstan> .
<http://example.org/Timothy_Harris> <http://example.org/Prime_Minister> <http://example.org/Saint_Kitts_and_Nevis> .
<http://example.org/Semi-presidential_system> <http://example.org/Government> <http://example.org/Mongolia> .
<http://example.org/Republic> <http://example.org/Government> <http://example.org/Turkey> .
<http://example.org/38,179,800> <http://example.org/Population> <http://example.org/Poland> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Guyana> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/The_Bahamas> .
<http://example.org/Sauli_Niinist\u00F6> <http://example.org/Born_in> <http://example.org/Finland> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Rwanda> .
<http://example.org/Patrice_Talon> <http://example.org/Born_at> <http://example.org/1958-05-01> .
<http://example.org/Xavier_Bettel> <http://example.org/Prime_Minister> <http://example.org/Luxembourg> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Oman> .
<http://example.org/28,748\u00A0km> <http://example.org/Area> <http://example.org/Albania> .
<http://example.org/Federation> <http://example.org/Government> <http://example.org/Nigeria> .
<http://example.org/Republic> <http://example.org/Government> <http://example.org/Azerbaijan> .
<http://example.org/Federal_monarchy> <http://example.org/Government> <http://example.org/Malaysia> .
<http://example.org/Jorge_Bom_Jesus> <http://example.org/Prime_Minister> <http://example.org/S\u00E3o_Tom\u00E9_and_Pr\u00EDncipe> .
<http://example.org/Saipan> <http://example.org/Capital> <http://example.org/Northern_Mariana_Islands> .
<http://example.org/Egils_Levits> <http://example.org/President> <http://example.org/Latvia> .
<http://example.org/33,600> <http://example.org/Population> <http://example.org/San_Marino> .
<http://example.org/Podgorica> <http://example.org/Capital> <http://example.org/Montenegro> .
<http://example.org/34,003> <http://example.org/Population> <http://example.org/Gibraltar> .
<http://example.org/84,069> <http://example.org/Population> <http://example.org/Isle_of_Man> .
<http://example.org/Parliamentary_republic> <http://example.org/Government> <http://example.org/North_Macedonia> .
<http://example.org/Sanna_Marin> <http://example.org/Prime_Minister> <http://example.org/Finland> .
<http://example.org/Taur_Matan_Ruak> <http://example.org/Born_in> <http://example.org/Portuguese_Timor> .
<http://example.org/5,453,600> <http://example.org/Population> <http://example.org/Singapore> .
<http://example.org/Maputo> <http://example.org/Capital> <http://example.org/Mozambique> .
<http://example.org/Parliamentary> <http://example.org/Government> <http://example.org/Bahrain> .
<http://example.org/Hasan_Akhund> <http://example.org/Born_in> <http://example.org/Kingdom_of_Afghanistan> .
<http://example.org/947,303\u00A0km> <http://example.org/Area> <http://example.org/Tanzania> .
<http://example.org/Nicos_Anastasiades> <http://example.org/President> <http://example.org/Cyprus> .
<http://example.org/Michel_Aoun> <http://example.org/Born_in> <http://example.org/Lebanon> .
<http://example.org/Ibrahim_Mohamed_Solih> <http://example.org/Born_at> <http://example.org/1962-03-01> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Kenya> .
<http://example.org/96,208,984> <http://example.org/Population> <http://example.org/Vietnam> .
<http://example.org/Naftali_Bennett> <http://example.org/Born_in> <http://example.org/Israel> .
<http://example.org/467.63\u00A0km> <http://example.org/Area> <http://example.org/Andorra> .
<http://example.org/Republic> <http://example.org/Government> <http://example.org/Sierra_Leone> .
<http://example.org/National_unity_government> <http://example.org/Government> <http://example.org/Libya> .
<http://example.org/118,484\u00A0km> <http://example.org/Area> <http://example.org/Malawi> .
<http://example.org/Mark_Brown_(Cook_Islands)> <http://example.org/Prime_Minister> <http://example.org/Cook_Islands> .
<http://example.org/Mohammed_Ould_Bilal> <http://example.org/Born_in> <http://example.org/Mauritania> .
<http://example.org/Islamic_monarchy> <http://example.org/Government> <http://example.org/United_Arab_Emirates> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Eswatini> .
<http://example.org/Alberto_Fern\u00E1ndez> <http://example.org/Born_in> <http://example.org/Argentina> .
<http://example.org/Canberra> <http://example.org/Capital> <http://example.org/Australia> .
<http://example.org/181,035\u00A0km> <http://example.org/Area> <http://example.org/Cambodia> .
<http://example.org/Kokhir_Rasulzoda> <http://example.org/Prime_Minister> <http://example.org/Tajikistan> .
<http://example.org/Asunci\u00F3n> <http://example.org/Capital> <http://example.org/Paraguay> .
<http://example.org/Mario_Draghi> <http://example.org/Born_in> <http://example.org/Italy> .
<http://example.org/Xi_Jinping> <http://example.org/Born_at> <http://example.org/1953-06-15> .
<http://example.org/Alain-Guillaume_Bunyoni> <http://example.org/Born_in> <http://example.org/Burundi> .
<http://example.org/Emmerson_Mnangagwa> <http://example.org/President> <http://example.org/Zimbabwe> .
<http://example.org/Semi-presidential_system> <http://example.org/Government> <http://example.org/Mauritania> .
<http://example.org/Christian_Ntsay> <http://example.org/Born_at> <http://example.org/1961-03-27> .
<http://example.org/23,451,837> <http://example.org/Population> <http://example.org/Taiwan> .
<http://example.org/Elective_monarchy> <http://example.org/Government> <http://example.org/Vatican_City> .
<http://example.org/Prithvirajsing_Roopun> <http://example.org/President> <http://example.org/Mauritius> .
<http://example.org/Albert_Ou\u00E9draogo> <http://example.org/Born_in> <http://example.org/Burkina_Faso> .
<http://example.org/Constitutional_monarchy> <http://example.org/Government> <http://example.org/Anguilla> .
<http://example.org/Parliamentary_republic_with_an_executive_presidency> <http://example.org/Government> <http://example.org/Nauru> .
<http://example.org/Gitega> <http://example.org/Capital> <http://example.org/Burundi> .
<http://example.org/46,366> <http://example.org/Population> <http://example.org/American_Samoa> .
<http://example.org/8,570,146> <http://example.org/Population> <http://example.org/Switzerland> .
<http://example.org/26,338\u00A0km> <http://example.org/Area> <http://example.org/Rwanda> .
<http://example.org/Presidential_system> <http://example.org/Government> <http://example.org/Bolivia> .
<http://example.org/Pravind_Jugnauth> <http://example.org/Born_at> <http://example.org/1961-12-25> .
<http://example.org/Semi-presidential_system> <http://example.org/Government> <http://example.org/Sri_Lanka> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Tonga> .
<http://example.org/Dependent_territory> <http://example.org/Government> <http://example.org/Saint_Helena,_Ascension_and_Tristan_da_Cunha> .
<http://example.org/2,780,400\u00A0km> <http://example.org/Area> <http://example.org/Argentina> .
<http://example.org/Moroni,_Comoros> <http://example.org/Capital> <http://example.org/Comoros> .
<http://example.org/Semi-constitutional_monarchy> <http://example.org/Government> <http://example.org/Monaco> .
<http://example.org/Republic> <http://example.org/Government> <http://example.org/Guatemala> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Togo> .
<http://example.org/Hanoi> <http://example.org/Capital> <http://example.org/Vietnam> .
<http://example.org/579,330_or_392,040> <http://example.org/Population> <http://example.org/Maldives> .
<http://example.org/Joe_Biden> <http://example.org/President> <http://example.org/United_States> .
<http://example.org/21\u00A0km> <http://example.org/Area> <http://example.org/Nauru> .
<http://example.org/Mohamed_Ould_Ghazouani> <http://example.org/President> <http://example.org/Mauritania> .
<http://example.org/Alihan_Smaiylov> <http://example.org/Born_in> <http://example.org/Soviet_Union> .
<http://example.org/B\u00E1r\u00F0ur_\u00E1_Steig_Nielsen> <http://example.org/Born_in> <http://example.org/Faroe_Islands> .
<http://example.org/Kausea_Natano> <http://example.org/Born_in> <http://example.org/Funafuti> .
<http://example.org/Beijing> <http://example.org/Capital> <http://example.org/China> .
<http://example.org/3,688,647> <http://example.org/Population> <http://example.org/Georgia_(country)> .
<http://example.org/1,246,700\u00A0km> <http://example.org/Area> <http://example.org/Angola> .
<http://example.org/Parliamentary_republic> <http://example.org/Government> <http://example.org/Pakistan> .
<http://example.org/Andry_Rajoelina> <http://example.org/Born_in> <http://example.org/Madagascar> .
<http://example.org/142.42\u00A0km> <http://example.org/Area> <http://example.org/Wallis_and_Futuna> .
<http://example.org/Semi-constitutional_monarchy> <http://example.org/Government> <http://example.org/Jordan> .
<http://example.org/Irfaan_Ali> <http://example.org/Born_at> <http://example.org/1980-04-25> .
<http://example.org/Oranjestad,_Aruba> <http://example.org/Capital> <http://example.org/Aruba> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Brunei> .
<http://example.org/676,578\u00A0km> <http://example.org/Area> <http://example.org/Myanmar> .
<http://example.org/Federalism> <http://example.org/Government> <http://example.org/Belgium> .
<http://example.org/Adama_Barrow> <http://example.org/Born_in> <http://example.org/British_Gambia> .
<http://example.org/Federal_monarchy> <http://example.org/Government> <http://example.org/Saint_Kitts_and_Nevis> .
<http://example.org/Dictatorship> <http://example.org/Government> <http://example.org/Eritrea> .
<http://example.org/Sahle-Work_Zewde> <http://example.org/President> <http://example.org/Ethiopia> .
<http://example.org/Alain-Guillaume_Bunyoni> <http://example.org/Born_at> <http://example.org/1972-04-23> .
<http://example.org/Philip_J._Pierre> <http://example.org/Born_in> <http://example.org/St._Lucia> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Denmark> .
<http://example.org/Moustafa_Madbouly> <http://example.org/Born_at> <http://example.org/1966-04-28> .
<http://example.org/Kiril_Petkov> <http://example.org/Born_in> <http://example.org/Bulgaria> .
<http://example.org/Isaac_Herzog> <http://example.org/Born_at> <http://example.org/1960-09-22> .
<http://example.org/9,984,670\u00A0km> <http://example.org/Area> <http://example.org/Canada> .
<http://example.org/Mal\u00E9> <http://example.org/Capital> <http://example.org/Maldives> .
<http://example.org/Fumio_Kishida> <http://example.org/Prime_Minister> <http://example.org/Japan> .
<http://example.org/Pedro_Castillo> <http://example.org/Born_in> <http://example.org/Peru> .
<http://example.org/Dictatorship> <http://example.org/Government> <http://example.org/Equatorial_Guinea> .
<http://example.org/Daniel_Risch> <http://example.org/Born_in> <http://example.org/Switzerland> .
<http://example.org/Parliamentary_system> <http://example.org/Government> <http://example.org/Norway> .
<http://example.org/Semi-presidential> <http://example.org/Government> <http://example.org/Lithuania> .
<http://example.org/Praia> <http://example.org/Capital> <http://example.org/Cape_Verde> .
<http://example.org/Republic> <http://example.org/Government> <http://example.org/Seychelles> .
<http://example.org/Chan_Santokhi> <http://example.org/President> <http://example.org/Suriname> .
<http://example.org/Parliamentary_system> <http://example.org/Government> <http://example.org/Thailand> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Mongolia> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Zambia> .
<http://example.org/1,352,642,280> <http://example.org/Population> <http://example.org/India> .
<http://example.org/Constitutional_monarchy> <http://example.org/Government> <http://example.org/Spain> .
<http://example.org/28,400\u00A0km> <http://example.org/Area> <http://example.org/Solomon_Islands> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Nauru> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Afghanistan> .
<http://example.org/Iv\u00E1n_Duque_M\u00E1rquez> <http://example.org/Born_in> <http://example.org/Colombia> .
<http://example.org/Macky_Sall> <http://example.org/President> <http://example.org/Senegal> .
<http://example.org/Shehbaz_Sharif> <http://example.org/Prime_Minister> <http://example.org/Pakistan> .
<http://example.org/108,889\u00A0km> <http://example.org/Area> <http://example.org/Guatemala> .
<http://example.org/Parliamentary_republic> <http://example.org/Government> <http://example.org/Bangladesh> .
<http://example.org/Republic> <http://example.org/Government> <http://example.org/Mongolia> .
<http://example.org/Andrew_Holness> <http://example.org/Prime_Minister> <http://example.org/Jamaica> .
<http://example.org/419,199> <http://example.org/Population> <http://example.org/Belize> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Eritrea> .
<http://example.org/Luis_Abinader> <http://example.org/President> <http://example.org/Dominican_Republic> .
<http://example.org/921,804> <http://example.org/Population> <http://example.org/Djibouti> .
<http://example.org/Socialist_state> <http://example.org/Government> <http://example.org/Vietnam> .
<http://example.org/130,375\u00A0km> <http://example.org/Area> <http://example.org/Nicaragua> .
<http://example.org/Teodoro_Obiang_Nguema_Mbasogo> <http://example.org/Born_in> <http://example.org/Equatorial_Guinea> .
<http://example.org/Parliamentary_system> <http://example.org/Government> <http://example.org/Tokelau> .
<http://example.org/377,975\u00A0km> <http://example.org/Area> <http://example.org/Japan> .
<http://example.org/Constitutional_monarchy> <http://example.org/Government> <http://example.org/Grenada> .
<http://example.org/Jair_Bolsonaro> <http://example.org/Born_in> <http://example.org/Brazil> .
<http://example.org/540\u00A0km> <http://example.org/Area> <http://example.org/Guam> .
<http://example.org/Riyadh> <http://example.org/Capital> <http://example.org/Saudi_Arabia> .
<http://example.org/Dependent_territory> <http://example.org/Government> <http://example.org/Puerto_Rico> .
<http://example.org/Yerevan> <http://example.org/Capital> <http://example.org/Armenia> .
<http://example.org/Parliamentary_system> <http://example.org/Government> <http://example.org/Bermuda> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Norway> .
<http://example.org/748\u00A0km> <http://example.org/Area> <http://example.org/Tonga> .
<http://example.org/Mahmoud_Abbas> <http://example.org/Born_at> <http://example.org/1935-11-15> .
<http://example.org/Absolute_monarchy> <http://example.org/Government> <http://example.org/Eswatini> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Cameroon> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Belarus> .
<http://example.org/4,649_(2018)> <http://example.org/Population> <http://example.org/Montserrat> .
<http://example.org/Bob_Loughman> <http://example.org/Born_in> <http://example.org/New_Hebrides> .
<http://example.org/Shehbaz_Sharif> <http://example.org/Born_at> <http://example.org/1951-09-23> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/North_Korea> .
<http://example.org/652,857> <http://example.org/Population> <http://example.org/Solomon_Islands> .
<http://example.org/Beirut> <http://example.org/Capital> <http://example.org/Lebanon> .
<http://example.org/Isma\u00EFl_Omar_Guelleh> <http://example.org/President> <http://example.org/Djibouti> .
<http://example.org/Presidential_system> <http://example.org/Government> <http://example.org/Djibouti> .
<http://example.org/Non-partisan_democracy> <http://example.org/Government> <http://example.org/Niue> .
<http://example.org/Semi-presidential_system> <http://example.org/Government> <http://example.org/Haiti> .
<http://example.org/Theocratic> <http://example.org/Government> <http://example.org/Vatican_City> .
<http://example.org/Democracy> <http://example.org/Government> <http://example.org/Isle_of_Man> .
<http://example.org/Semi-constitutional_monarchy> <http://example.org/Government> <http://example.org/Qatar> .
<http://example.org/0.49> <http://example.org/Area> <http://example.org/Vatican_City> .
<http://example.org/Ph\u1EA1m_Minh_Ch\u00EDnh> <http://example.org/Born_in> <http://example.org/North_Vietnam> .
<http://example.org/2,795,484> <http://example.org/Population> <http://example.org/Qatar> .
<http://example.org/41,865> <http://example.org/Area> <http://example.org/Netherlands> .
<http://example.org/Presidential_system> <http://example.org/Government> <http://example.org/El_Salvador> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Lithuania> .
<http://example.org/Irakli_Garibashvili> <http://example.org/Born_at> <http://example.org/1982-06-28> .
<http://example.org/Narendra_Modi> <http://example.org/Prime_Minister> <http://example.org/India> .
<http://example.org/David_W._Panuelo> <http://example.org/Born_in> <http://example.org/Trust_Territory_of_the_Pacific_Islands> .
<http://example.org/Parliamentary_system> <http://example.org/Government> <http://example.org/Tonga> .
<http://example.org/Constitution_of_Turkey> <http://example.org/Government> <http://example.org/Turkey> .
<http://example.org/170,499> <http://example.org/Population> <http://example.org/Channel_Islands> .
<http://example.org/Constitutional_monarchy> <http://example.org/Government> <http://example.org/Isle_of_Man> .
<http://example.org/Dictatorship> <http://example.org/Government> <http://example.org/Belarus> .
<http://example.org/148,460> <http://example.org/Area> <http://example.org/Bangladesh> .
<http://example.org/5,657,000> <http://example.org/Population> <http://example.org/Republic_of_the_Congo> .
<http://example.org/Republic> <http://example.org/Government> <http://example.org/Zimbabwe> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Malawi> .
<http://example.org/Parliamentary_system> <http://example.org/Government> <http://example.org/Niue> .
<http://example.org/8,608,444> <http://example.org/Population> <http://example.org/Togo> .
<http://example.org/Surangel_Whipps_Jr.> <http://example.org/Born_at> <http://example.org/1968-08-09> .
<http://example.org/Pedro_S\u00E1nchez> <http://example.org/Born_at> <http://example.org/1972-02-29> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Bulgaria> .
<http://example.org/Monrovia> <http://example.org/Capital> <http://example.org/Liberia> .
<http://example.org/622,984\u00A0km> <http://example.org/Area> <http://example.org/Central_African_Republic> .
<http://example.org/Adriano_Maleiane> <http://example.org/Prime_Minister> <http://example.org/Mozambique> .
<http://example.org/Georgetown,_Guyana> <http://example.org/Capital> <http://example.org/Guyana> .
<http://example.org/294,436> <http://example.org/Population> <http://example.org/French_Guiana> .
<http://example.org/Filipe_Nyusi> <http://example.org/Born_at> <http://example.org/1959-02-09> .
<http://example.org/Libreville> <http://example.org/Capital> <http://example.org/Gabon> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Liechtenstein> .
<http://example.org/Papeete> <http://example.org/Capital> <http://example.org/French_Polynesia> .
<http://example.org/Alexander_De_Croo> <http://example.org/Born_at> <http://example.org/1975-11-03> .
<http://example.org/Ingrida_\u0160imonyt\u0117> <http://example.org/Prime_Minister> <http://example.org/Lithuania> .
<http://example.org/Milo_\u0110ukanovi\u0107> <http://example.org/President> <http://example.org/Montenegro> .
<http://example.org/Presidential_system> <http://example.org/Government> <http://example.org/Ivory_Coast> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Hong_Kong> .
<http://example.org/603,628> <http://example.org/Area> <http://example.org/Ukraine> .
<http://example.org/Andrzej_Duda> <http://example.org/Born_at> <http://example.org/1972-05-16> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Equatorial_Guinea> .
<http://example.org/List_of_countries_by_system_of_government#Parliamentary_republics_with_an_executive_presidency> <http://example.org/Government> <http://example.org/Botswana> .
<http://example.org/Mark_Phillips_(Guyanese_politician)> <http://example.org/Prime_Minister> <http://example.org/Guyana> .
<http://example.org/Cyril_Ramaphosa> <http://example.org/President> <http://example.org/South_Africa> .
<http://example.org/Katerina_Sakellaropoulou> <http://example.org/Born_at> <http://example.org/1956-05-30> .
<http://example.org/Tsai_Ing-wen> <http://example.org/Born_at> <http://example.org/1956-08-31> .
<http://example.org/Jorge_Bom_Jesus> <http://example.org/Born_in> <http://example.org/Sao_Tome_and_Principe> .
<http://example.org/Executive_(government)> <http://example.org/Government> <http://example.org/Macau> .
<http://example.org/Viktor_Orb\u00E1n> <http://example.org/Born_at> <http://example.org/1963-05-31> .
<http://example.org/Kaja_Kallas> <http://example.org/Prime_Minister> <http://example.org/Estonia> .
<http://example.org/Jorge_Bom_Jesus> <http://example.org/Born_at> <http://example.org/1962-07-26> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Solomon_Islands> .
<http://example.org/923,769\u00A0km> <http://example.org/Area> <http://example.org/Nigeria> .
<http://example.org/69,700\u00A0km> <http://example.org/Area> <http://example.org/Georgia_(country)> .
<http://example.org/Constitutional_monarchy> <http://example.org/Government> <http://example.org/Cambodia> .
<http://example.org/2.02\u00A0km> <http://example.org/Area> <http://example.org/Monaco> .
<http://example.org/Luvsannamsrain_Oyun-Erdene> <http://example.org/Prime_Minister> <http://example.org/Mongolia> .
<http://example.org/Military_junta> <http://example.org/Government> <http://example.org/Mali> .
<http://example.org/52,441> <http://example.org/Population> <http://example.org/Saint_Kitts_and_Nevis> .
<http://example.org/Prayut_Chan-o-cha> <http://example.org/Prime_Minister> <http://example.org/Thailand> .
<http://example.org/1,499> <http://example.org/Population> <http://example.org/Tokelau> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Vatican_City> .
<http://example.org/5,425,270> <http://example.org/Population> <http://example.org/Norway> .
<http://example.org/Devolution> <http://example.org/Government> <http://example.org/Tokelau> .
<http://example.org/Non-partisan_democracy> <http://example.org/Government> <http://example.org/Tuvalu> .
<http://example.org/Tashkent> <http://example.org/Capital> <http://example.org/Uzbekistan> .
<http://example.org/389\u00A0km> <http://example.org/Area> <http://example.org/Saint_Vincent_and_the_Grenadines> .
<http://example.org/Alihan_Smaiylov> <http://example.org/Born_at> <http://example.org/1972-12-18> .
<http://example.org/Communist_state> <http://example.org/Government> <http://example.org/Cuba> .
<http://example.org/Dependent_territory> <http://example.org/Government> <http://example.org/French_Polynesia> .
<http://example.org/1,128\u00A0km> <http://example.org/Area> <http://example.org/Martinique> .
<http://example.org/948\u00A0km> <http://example.org/Area> <http://example.org/Turks_and_Caicos_Islands> .
<http://example.org/List_of_countries_by_system_of_government#Parliamentary_republics_with_an_executive_presidency> <http://example.org/Government> <http://example.org/South_Africa> .
<http://example.org/Presidential_system> <http://example.org/Government> <http://example.org/Paraguay> .
<http://example.org/2,597,100> <http://example.org/Population> <http://example.org/Moldova> .
<http://example.org/Dominant-party> <http://example.org/Government> <http://example.org/Uganda> .
<http://example.org/Bras\u00EDlia> <http://example.org/Capital> <http://example.org/Brazil> .
<http://example.org/Andrej_Plenkovi\u0107> <http://example.org/Prime_Minister> <http://example.org/Croatia> .
<http://example.org/Moeketsi_Majoro> <http://example.org/Born_at> <http://example.org/1961-11-03> .
<http://example.org/9,730,000> <http://example.org/Population> <http://example.org/Hungary> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Israel> .
<http://example.org/Daniel_Risch> <http://example.org/Born_at> <http://example.org/1978-03-05> .
<http://example.org/Lazarus_Chakwera> <http://example.org/Born_in> <http://example.org/Malawi> .
<http://example.org/Republic> <http://example.org/Government> <http://example.org/United_States> .
<http://example.org/41,486> <http://example.org/Population> <http://example.org/Sint_Maarten> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Uzbekistan> .
<http://example.org/37,112,080> <http://example.org/Population> <http://example.org/Morocco> .
<http://example.org/10,678,632_(1_January_2021)> <http://example.org/Population> <http://example.org/Greece> .
<http://example.org/Siaosi_Sovaleni> <http://example.org/Born_in> <http://example.org/Kingdom_of_Tonga> .
<http://example.org/Parliamentary_system> <http://example.org/Government> <http://example.org/The_Bahamas> .
<http://example.org/65,610\u00A0km> <http://example.org/Area> <http://example.org/Sri_Lanka> .
<http://example.org/Republic> <http://example.org/Government> <http://example.org/Bolivia> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Iran> .
<http://example.org/Rome> <http://example.org/Capital> <http://example.org/Italy> .
<http://example.org/Kampala> <http://example.org/Capital> <http://example.org/Uganda> .
<http://example.org/Christian_Ntsay> <http://example.org/Prime_Minister> <http://example.org/Madagascar> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Burkina_Faso> .
<http://example.org/Constitutional_monarchy> <http://example.org/Government> <http://example.org/Saint_Helena,_Ascension_and_Tristan_da_Cunha> .
<http://example.org/51,129\u00A0km> <http://example.org/Area> <http://example.org/Bosnia_and_Herzegovina> .
<http://example.org/Pedro_S\u00E1nchez> <http://example.org/Born_in> <http://example.org/Spain> .
<http://example.org/Presidential_system> <http://example.org/Government> <http://example.org/Cyprus> .
<http://example.org/Abdul_Hamid_Dbeibeh> <http://example.org/Born_in> <http://example.org/Kingdom_of_Libya> .
<http://example.org/Emmanuel_Macron> <http://example.org/President> <http://example.org/France> .
<http://example.org/Guillermo_Lasso> <http://example.org/Born_at> <http://example.org/1955-11-16> .
<http://example.org/Semi-presidential_system> <http://example.org/Government> <http://example.org/Niger> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Nicaragua> .
<http://example.org/Miguel_D\u00EDaz-Canel> <http://example.org/Born_at> <http://example.org/1960-04-20> .
<http://example.org/Andr\u00E9s_Manuel_L\u00F3pez_Obrador> <http://example.org/Born_at> <http://example.org/1953-11-13> .
<http://example.org/Vienna> <http://example.org/Capital> <http://example.org/Austria> .
<http://example.org/7,275,556> <http://example.org/Population> <http://example.org/Laos> .
<http://example.org/Xavier_Espot> <http://example.org/Prime_Minister> <http://example.org/Andorra> .
<http://example.org/184,961> <http://example.org/Population> <http://example.org/Saint_Lucia> .
<http://example.org/Kais_Saied> <http://example.org/President> <http://example.org/Tunisia> .
<http://example.org/Dependent_territory> <http://example.org/Government> <http://example.org/Falkland_Islands> .
<http://example.org/Jonas_Gahr_St\u00F8re> <http://example.org/Born_at> <http://example.org/1960-08-25> .
<http://example.org/126,014,024> <http://example.org/Population> <http://example.org/Mexico> .
<http://example.org/Stockholm> <http://example.org/Capital> <http://example.org/Sweden> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Romania> .
<http://example.org/Parliamentary_republic> <http://example.org/Government> <http://example.org/Nepal> .
<http://example.org/Saara_Kuugongelwa> <http://example.org/Born_at> <http://example.org/1967-10-12> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Chad> .
<http://example.org/Presidential_system> <http://example.org/Government> <http://example.org/Panama> .
<http://example.org/198\u00A0km> <http://example.org/Area> <http://example.org/Channel_Islands> .
<http://example.org/Yoon_Suk-yeol> <http://example.org/President> <http://example.org/South_Korea> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Indonesia> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Vietnam> .
<http://example.org/23,200> <http://example.org/Area> <http://example.org/Djibouti> .
<http://example.org/567,402> <http://example.org/Population> <http://example.org/Western_Sahara> .
<http://example.org/Republic> <http://example.org/Government> <http://example.org/Romania> .
<http://example.org/Unitary_parliamentary_republic> <http://example.org/Government> <http://example.org/Greece> .
<http://example.org/Zoran_Milanovi\u0107> <http://example.org/President> <http://example.org/Croatia> .
<http://example.org/Yoon_Suk-yeol> <http://example.org/Born_at> <http://example.org/1960-12-18> .
<http://example.org/24,112,753> <http://example.org/Population> <http://example.org/Niger> .
<http://example.org/19,186,201> <http://example.org/Population> <http://example.org/Romania> .
<http://example.org/Rabat> <http://example.org/Capital> <http://example.org/Morocco> .
<http://example.org/Constitutional_monarchy> <http://example.org/Government> <http://example.org/Gibraltar> .
<http://example.org/Federal_system> <http://example.org/Government> <http://example.org/South_Sudan> .
<http://example.org/Vahagn_Khachaturyan> <http://example.org/Born_in> <http://example.org/Soviet_Union> .
<http://example.org/2,381,741\u00A0km> <http://example.org/Area> <http://example.org/Algeria> .
<http://example.org/Maia_Sandu> <http://example.org/Born_in> <http://example.org/Soviet_Union> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Sierra_Leone> .
<http://example.org/Mario_Abdo_Ben\u00EDtez> <http://example.org/Born_at> <http://example.org/1971-11-10> .
<http://example.org/1,468,777> <http://example.org/Population> <http://example.org/Equatorial_Guinea> .
<http://example.org/Azali_Assoumani> <http://example.org/President> <http://example.org/Comoros> .
<http://example.org/Roman_Golovchenko> <http://example.org/Prime_Minister> <http://example.org/Belarus> .
<http://example.org/Alar_Karis> <http://example.org/Born_in> <http://example.org/Estonia> .
<http://example.org/Sher_Bahadur_Deuba> <http://example.org/Born_at> <http://example.org/1946-06-13> .
<http://example.org/22,966\u00A0km> <http://example.org/Area> <http://example.org/Belize> .
<http://example.org/Presidential_system> <http://example.org/Government> <http://example.org/Costa_Rica> .
<http://example.org/Marxism\u2013Leninism> <http://example.org/Government> <http://example.org/Vietnam> .
<http://example.org/916,445\u00A0km> <http://example.org/Area> <http://example.org/Venezuela> .
<http://example.org/11,581\u00A0km> <http://example.org/Area> <http://example.org/Qatar> .
<http://example.org/Patrick_Achi> <http://example.org/Born_at> <http://example.org/1955-11-17> .
<http://example.org/Noum\u00E9a> <http://example.org/Capital> <http://example.org/New_Caledonia> .
<http://example.org/Presidential_republic> <http://example.org/Government> <http://example.org/Eritrea> .
<http://example.org/Ali_Asadov> <http://example.org/Born_in> <http://example.org/Soviet_Union> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Tanzania> .
<http://example.org/Republic> <http://example.org/Government> <http://example.org/Taiwan> .
<http://example.org/Lotay_Tshering> <http://example.org/Prime_Minister> <http://example.org/Bhutan> .
<http://example.org/60,142,978> <http://example.org/Population> <http://example.org/South_Africa> .
<http://example.org/Assembly-independent> <http://example.org/Government> <http://example.org/Switzerland> .
<http://example.org/Vilnius> <http://example.org/Capital> <http://example.org/Lithuania> .
<http://example.org/79,535> <http://example.org/Population> <http://example.org/Andorra> .
<http://example.org/Presidential_system> <http://example.org/Government> <http://example.org/Tanzania> .
<http://example.org/Boris_Johnson> <http://example.org/Born_at> <http://example.org/1964-06-19> .
<http://example.org/Addis_Ababa> <http://example.org/Capital> <http://example.org/Ethiopia> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Antigua_and_Barbuda> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Japan> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Cyprus> .
<http://example.org/Bashar_al-Assad> <http://example.org/Born_in> <http://example.org/Syria> .
<http://example.org/Parliamentary_system> <http://example.org/Government> <http://example.org/Canada> .
<http://example.org/N'Djamena> <http://example.org/Capital> <http://example.org/Chad> .
<http://example.org/Parliamentary> <http://example.org/Government> <http://example.org/Dominica> .
<http://example.org/Mata_Utu> <http://example.org/Capital> <http://example.org/Wallis_and_Futuna> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Kuwait> .
<http://example.org/342,000\u00A0km> <http://example.org/Area> <http://example.org/Republic_of_the_Congo> .
<http://example.org/12,200\u00A0km> <http://example.org/Area> <http://example.org/Falkland_Islands> .
<http://example.org/Keith_Mitchell> <http://example.org/Born_in> <http://example.org/British_Windward_Islands> .
<http://example.org/374\u00A0km> <http://example.org/Area> <http://example.org/Mayotte> .
<http://example.org/Socialist_state> <http://example.org/Government> <http://example.org/Burkina_Faso> .
<http://example.org/28,050\u00A0km> <http://example.org/Area> <http://example.org/Equatorial_Guinea> .
<http://example.org/Katalin_Nov\u00E1k> <http://example.org/President> <http://example.org/Hungary> .
<http://example.org/Republic> <http://example.org/Government> <http://example.org/Palau> .
<http://example.org/Narendra_Modi> <http://example.org/Born_at> <http://example.org/1950-09-17> .
<http://example.org/Faustin-Archange_Touad\u00E9ra> <http://example.org/Born_at> <http://example.org/1957-04-21> .
<http://example.org/Marcelo_Rebelo_de_Sousa> <http://example.org/Born_at> <http://example.org/1948-12-12> .
<http://example.org/Abdoulkader_Kamil_Mohamed> <http://example.org/Born_at> <http://example.org/1951-07-01> .
<http://example.org/Islamic_state> <http://example.org/Government> <http://example.org/Oman> .
<http://example.org/66,171,439> <http://example.org/Population> <http://example.org/Thailand> .
<http://example.org/Rodrigo_Duterte> <http://example.org/President> <http://example.org/Philippines> .
<http://example.org/30,689> <http://example.org/Area> <http://example.org/Belgium> .
<http://example.org/\u00C9variste_Ndayishimiye> <http://example.org/Born_in> <http://example.org/Burundi> .
<http://example.org/Presidential_system> <http://example.org/Government> <http://example.org/Liberia> .
<http://example.org/Ba'athism> <http://example.org/Government> <http://example.org/Syria> .
<http://example.org/St._George's,_Grenada> <http://example.org/Capital> <http://example.org/Grenada> .
<http://example.org/Devolution> <http://example.org/Government> <http://example.org/United_States_Virgin_Islands> .
<http://example.org/Baghdad> <http://example.org/Capital> <http://example.org/Iraq> .
<http://example.org/Constitutional_monarchy> <http://example.org/Government> <http://example.org/Luxembourg> .
<http://example.org/Monaco_City> <http://example.org/Capital> <http://example.org/Monaco> .
<http://example.org/Parliamentary_republic> <http://example.org/Government> <http://example.org/Italy> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Chile> .
<http://example.org/15,893,219> <http://example.org/Population> <http://example.org/Somalia> .
<http://example.org/Putrajaya> <http://example.org/Capital> <http://example.org/Malaysia> .
<http://example.org/11,558> <http://example.org/Population> <http://example.org/Wallis_and_Futuna> .
<http://example.org/1,836,713> <http://example.org/Population> <http://example.org/North_Macedonia> .
<http://example.org/Charles_Savarin> <http://example.org/Born_at> <http://example.org/1943-10-02> .
<http://example.org/Han_Duck-soo> <http://example.org/Prime_Minister> <http://example.org/South_Korea> .
<http://example.org/Gaborone> <http://example.org/Capital> <http://example.org/Botswana> .
<http://example.org/Zuzana_\u010Caputov\u00E1> <http://example.org/Born_at> <http://example.org/1973-06-21> .
<http://example.org/Kassim_Majaliwa> <http://example.org/Born_at> <http://example.org/1961-12-22> .
<http://example.org/Sergio_Mattarella> <http://example.org/President> <http://example.org/Italy> .
<http://example.org/Executive_(government)> <http://example.org/Government> <http://example.org/Hong_Kong> .
<http://example.org/Parliamentary_republic> <http://example.org/Government> <http://example.org/Ethiopia> .
<http://example.org/Republic> <http://example.org/Government> <http://example.org/Peru> .
<http://example.org/120,540\u00A0km> <http://example.org/Area> <http://example.org/North_Korea> .
<http://example.org/Recep_Tayyip_Erdo\u011Fan> <http://example.org/President> <http://example.org/Turkey> .
<http://example.org/30,066,648> <http://example.org/Population> <http://example.org/Mozambique> .
<http://example.org/Christian_Ntsay> <http://example.org/Born_in> <http://example.org/Madagascar> .
<http://example.org/Hamilton,_Bermuda> <http://example.org/Capital> <http://example.org/Bermuda> .
<http://example.org/Robert_Abela> <http://example.org/Born_at> <http://example.org/1977-12-07> .
<http://example.org/Eduard_Heger> <http://example.org/Prime_Minister> <http://example.org/Slovakia> .
<http://example.org/Presidential_system> <http://example.org/Government> <http://example.org/Zimbabwe> .
<http://example.org/Luis_Arce> <http://example.org/President> <http://example.org/Bolivia> .
<http://example.org/Klaus_Iohannis> <http://example.org/Born_in> <http://example.org/Romania> .
<http://example.org/Constitutional_monarchy> <http://example.org/Government> <http://example.org/Belgium> .
<http://example.org/Republic> <http://example.org/Government> <http://example.org/Venezuela> .
<http://example.org/Anatole_Collinet_Makosso> <http://example.org/Prime_Minister> <http://example.org/Republic_of_the_Congo> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Luxembourg> .
<http://example.org/Sandra_Mason> <http://example.org/President> <http://example.org/Barbados> .
<http://example.org/Luis_Lacalle_Pou> <http://example.org/President> <http://example.org/Uruguay> .
<http://example.org/Nayib_Bukele> <http://example.org/Born_at> <http://example.org/1981-07-24> .
<http://example.org/1,628\u00A0km> <http://example.org/Area> <http://example.org/Guadeloupe> .
<http://example.org/108,407,721> <http://example.org/Population> <http://example.org/Democratic_Republic_of_the_Congo> .
<http://example.org/644,329\u00A0km> <http://example.org/Area> <http://example.org/South_Sudan> .
<http://example.org/Maeen_Abdulmalik_Saeed> <http://example.org/Prime_Minister> <http://example.org/Yemen> .
<http://example.org/1,160,164> <http://example.org/Population> <http://example.org/Eswatini> .
<http://example.org/Abdel_Fattah_el-Sisi> <http://example.org/Born_in> <http://example.org/Republic_of_Egypt> .
<http://example.org/117,876,227> <http://example.org/Population> <http://example.org/Ethiopia> .
<http://example.org/2,119,275> <http://example.org/Population> <http://example.org/Gabon> .
<http://example.org/Ram_Nath_Kovind> <http://example.org/Born_at> <http://example.org/1945-10-01> .
<http://example.org/Paul_Kagame> <http://example.org/Born_at> <http://example.org/1957-10-23> .
<http://example.org/Constitutional_monarchy> <http://example.org/Government> <http://example.org/Japan> .
<http://example.org/Thongloun_Sisoulith> <http://example.org/Born_in> <http://example.org/Laos> .
<http://example.org/5,011,500> <http://example.org/Population> <http://example.org/Republic_of_Ireland> .
<http://example.org/Presidential_system> <http://example.org/Government> <http://example.org/Ghana> .
<http://example.org/10,991\u00A0km> <http://example.org/Area> <http://example.org/Jamaica> .
<http://example.org/Ilham_Aliyev> <http://example.org/Born_in> <http://example.org/Soviet_Union> .
<http://example.org/15,854,323> <http://example.org/Population> <http://example.org/Senegal> .
<http://example.org/Elective_monarchy> <http://example.org/Government> <http://example.org/United_Arab_Emirates> .
<http://example.org/Ana_Brnabi\u0107> <http://example.org/Born_at> <http://example.org/1975-09-28> .
<http://example.org/Montevideo> <http://example.org/Capital> <http://example.org/Uruguay> .
<http://example.org/Republic> <http://example.org/Government> <http://example.org/Democratic_Republic_of_the_Congo> .
<http://example.org/Tirana> <http://example.org/Capital> <http://example.org/Albania> .
<http://example.org/Egils_Levits> <http://example.org/Born_at> <http://example.org/1955-06-30> .
<http://example.org/Republic> <http://example.org/Government> <http://example.org/Kyrgyzstan> .
<http://example.org/Bob_Loughman> <http://example.org/Prime_Minister> <http://example.org/Vanuatu> .
<http://example.org/Alexander_Lukashenko> <http://example.org/Born_at> <http://example.org/1954-08-30> .
<http://example.org/B\u00E1r\u00F0ur_\u00E1_Steig_Nielsen> <http://example.org/Prime_Minister> <http://example.org/Faroe_Islands> .
<http://example.org/Republic> <http://example.org/Government> <http://example.org/Ukraine> .
<http://example.org/5,094,118> <http://example.org/Population> <http://example.org/Costa_Rica> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Central_African_Republic> .
<http://example.org/Constitution> <http://example.org/Government> <http://example.org/American_Samoa> .
<http://example.org/Paula-Mae_Weekes> <http://example.org/Born_at> <http://example.org/1958-12-23> .
<http://example.org/George_Vella> <http://example.org/Born_in> <http://example.org/Crown_Colony_of_Malta> .
<http://example.org/Ralph_Gonsalves> <http://example.org/Prime_Minister> <http://example.org/Saint_Vincent_and_the_Grenadines> .
<http://example.org/10,402,070> <http://example.org/Population> <http://example.org/Sweden> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Bhutan> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Samoa> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Armenia> .
<http://example.org/Nuuk> <http://example.org/Capital> <http://example.org/Greenland> .
<http://example.org/Ulisses_Correia_e_Silva> <http://example.org/Born_in> <http://example.org/Cape_Verde> .
<http://example.org/Constitutional_monarchy> <http://example.org/Government> <http://example.org/Aruba> .
<http://example.org/Sanna_Marin> <http://example.org/Born_in> <http://example.org/Finland> .
<http://example.org/Republic> <http://example.org/Government> <http://example.org/Laos> .
<http://example.org/Antananarivo> <http://example.org/Capital> <http://example.org/Madagascar> .
<http://example.org/Constitutional_monarchy> <http://example.org/Government> <http://example.org/Papua_New_Guinea> .
<http://example.org/Stevo_Pendarovski> <http://example.org/Born_at> <http://example.org/1963-04-03> .
<http://example.org/Semi-constitutional_monarchy> <http://example.org/Government> <http://example.org/Morocco> .
<http://example.org/Parliamentary_republic> <http://example.org/Government> <http://example.org/Malta> .
<http://example.org/Islamic_state> <http://example.org/Government> <http://example.org/Brunei> .
<http://example.org/Constitutional_monarchy> <http://example.org/Government> <http://example.org/Belize> .
<http://example.org/1,367,558> <http://example.org/Population> <http://example.org/Trinidad_and_Tobago> .
<http://example.org/Devolution> <http://example.org/Government> <http://example.org/Faroe_Islands> .
<http://example.org/Bissau> <http://example.org/Capital> <http://example.org/Guinea-Bissau> .
<http://example.org/83,183,741> <http://example.org/Population> <http://example.org/Iran> .
<http://example.org/Katr\u00EDn_Jakobsd\u00F3ttir> <http://example.org/Born_in> <http://example.org/Iceland> .
<http://example.org/Constitutional_monarchy> <http://example.org/Government> <http://example.org/Australia> .
<http://example.org/Riga> <http://example.org/Capital> <http://example.org/Latvia> .
<http://example.org/Dominant-party_system> <http://example.org/Government> <http://example.org/Mozambique> .
<http://example.org/Eduard_Heger> <http://example.org/Born_at> <http://example.org/1976-05-03> .
<http://example.org/Paul_Biya> <http://example.org/President> <http://example.org/Cameroon> .
<http://example.org/Amman> <http://example.org/Capital> <http://example.org/Jordan> .
<http://example.org/581,730\u00A0km> <http://example.org/Area> <http://example.org/Botswana> .
<http://example.org/Republic> <http://example.org/Government> <http://example.org/Mozambique> .
<http://example.org/Porto-Novo> <http://example.org/Capital> <http://example.org/Benin> .
<http://example.org/Najla_Bouden> <http://example.org/Prime_Minister> <http://example.org/Tunisia> .
<http://example.org/7,186,862_(excluding_Kosovo)> <http://example.org/Population> <http://example.org/Serbia> .
<http://example.org/Mohammad_Shtayyeh> <http://example.org/Prime_Minister> <http://example.org/State_of_Palestine> .
<http://example.org/Hassanal_Bolkiah> <http://example.org/Born_in> <http://example.org/British_Protectorate_of_Brunei> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Mali> .
<http://example.org/Lazarus_Chakwera> <http://example.org/President> <http://example.org/Malawi> .
<http://example.org/Paul_Kagame> <http://example.org/Born_in> <http://example.org/Rwanda> .
<http://example.org/3,518,552> <http://example.org/Population> <http://example.org/Uruguay> .
<http://example.org/1,331,796> <http://example.org/Population> <http://example.org/Estonia> .
<http://example.org/2,108,708> <http://example.org/Population> <http://example.org/Slovenia> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/Suriname> .
<http://example.org/Semi-direct_democracy> <http://example.org/Government> <http://example.org/Liechtenstein> .
<http://example.org/Dependent_territory> <http://example.org/Government> <http://example.org/Guam> .
<http://example.org/516,100> <http://example.org/Population> <http://example.org/Malta> .
<http://example.org/13,812\u00A0km> <http://example.org/Area> <http://example.org/Montenegro> .
<http://example.org/Cockburn_Town> <http://example.org/Capital> <http://example.org/Turks_and_Caicos_Islands> .
<http://example.org/Presidential_system> <http://example.org/Government> <http://example.org/Brazil> .
<http://example.org/Ebrahim_Raisi> <http://example.org/Born_at> <http://example.org/1960-12-14> .
<http://example.org/Ebrahim_Raisi> <http://example.org/Born_in> <http://example.org/Imperial_State_of_Iran> .
<http://example.org/Yamoussoukro> <http://example.org/Capital> <http://example.org/Ivory_Coast> .
<http://example.org/Devolution> <http://example.org/Government> <http://example.org/Puerto_Rico> .
<http://example.org/Republic> <http://example.org/Government> <http://example.org/Liberia> .
<http://example.org/Natalia_Gavrili\u021Ba> <http://example.org/Born_in> <http://example.org/Soviet_Union> .
<http://example.org/Apia> <http://example.org/Capital> <http://example.org/Samoa> .
<http://example.org/Rodrigo_Chaves_Robles> <http://example.org/Born_at> <http://example.org/1961-06-10> .
<http://example.org/Republic> <http://example.org/Government> <http://example.org/Namibia> .
<http://example.org/Federation> <http://example.org/Government> <http://example.org/Austria> .
<http://example.org/Ana_Brnabi\u0107> <http://example.org/Born_in> <http://example.org/SFR_Yugoslavia> .
<http://example.org/Unitary_state> <http://example.org/Government> <http://example.org/S\u00E3o_Tom\u00E9_and_Pr\u00EDncipe> .
<http://example.org/19,129,952> <http://example.org/Population> <http://example.org/Malawi> .
<http://example.org/Presidential_system> <http://example.org/Government> <http://example.org/Turkmenistan> .
<http://example.org/Ranil_Wickremesinghe> <http://example.org/Born_at> <http://example.org/1949-03-24> .
<http://example.org/Pedro_S\u00E1nchez> <http://example.org/Prime_Minister> <http://example.org/Spain> .
<http://example.org/Ismail_Sabri_Yaakob> <http://example.org/Born_in> <http://example.org/Federation_of_Malaya> .
<http://example.org/1,221,037\u00A0km> <http://example.org/Area> <http://example.org/South_Africa> .
<http://example.org/Ralph_Gonsalves> <http://example.org/Born_in> <http://example.org/British_Windward_Islands> .
<http://example.org/Wellington> <http://example.org/Capital> <http://example.org/New_Zealand> .