claire891018 commited on
Commit
ad47775
·
verified ·
1 Parent(s): 938233d

Update parquet data and add Dataset Viewer configs

Browse files
README.md CHANGED
@@ -1,287 +1,52 @@
1
  ---
2
- license: cc-by-4.0
3
- language:
4
- - en
5
- - fr
6
- - de
7
- - hr
8
- - ru
9
- - es
10
- - pl
11
- - cs
12
- - uk
13
- - pt
14
- - ro
15
- - it
16
- - lt
17
- - sl
18
- - tr
19
- - mk
20
- - et
21
- - lv
22
- - 'no'
23
- - zh
24
- - sk
25
- - be
26
- - sr
27
- - sq
28
- - sv
29
- - hu
30
- - kk
31
- - ko
32
- - da
33
- - ky
34
- - az
35
- - bg
36
- - ca
37
- - fi
38
- - el
39
- - bs
40
- - ar
41
- - ka
42
- - he
43
- - mn
44
- - af
45
- - nl
46
- size_categories:
47
- - 10K<n<100K
48
- task_categories:
49
- - text-classification
50
- - text-retrieval
51
- - zero-shot-classification
52
- pretty_name: "CODICES Constitutional Case Law"
53
  tags:
54
- - legal
55
- - constitutional-law
56
- - multi-label
57
- - multilingual
58
- - case-law
59
- - venice-commission
60
  configs:
61
- - config_name: with_fulltext
62
- data_files:
63
- - split: train
64
- path: data/with_fulltext/train-*.parquet
65
- default: true
66
- - config_name: precis_only
67
- data_files:
68
- - split: train
69
- path: data/precis_only/train-*.parquet
70
- - config_name: full
71
- data_files:
72
- - split: train
73
- path: data/full/train-*.parquet
74
- - config_name: classification
75
- data_files:
76
- - split: train
77
- path: data/classification/train-*.parquet
78
- - split: validation
79
- path: data/classification/validation-*.parquet
80
- - split: test
81
- path: data/classification/test-*.parquet
82
  ---
83
 
84
- # CODICES Constitutional Case Law Dataset (v0.1)
85
 
86
- A multilingual, multi-label corpus of constitutional and supreme court case law
87
- collected from the [Venice Commission CODICES](https://codices.coe.int/) database,
88
- enriched with country-level legal-origin and colonial-history metadata following
89
- [Klerman, Mahoney, Spamann & Weinstein (2011)](https://academic.oup.com/jla/article/3/2/379/899816).
90
 
91
- **12,792 cases · 120 jurisdictions · 43 fulltext languages · 807 thesaurus codes**
92
 
93
- ## Quick Start
 
 
 
94
 
95
- ```python
96
- from datasets import load_dataset
97
 
98
- # Default config: cases with at least one fulltext in an official language (8,276)
99
- ds = load_dataset("claire891018/codices-data", split="all")
100
 
101
- # Other configs
102
- ds_full = load_dataset("claire891018/codices-data", "full", split="all")
103
- ds_precis = load_dataset("claire891018/codices-data", "precis_only", split="all")
104
- ds_class = load_dataset("claire891018/codices-data", "classification") # train/val/test
105
 
106
- # Filter examples
107
- british_common = ds.filter(lambda x: x["legal_origin"] == "english"
108
- and x["colonial_history"] == "british")
109
- spanish_civil = ds.filter(lambda x: x["colonial_history"] == "spanish") # ~240 LatAm cases
110
- klerman_only = ds.filter(lambda x: x["klerman_2011_sample"])
111
- ```
112
-
113
- ## Configurations
114
-
115
- | Config | Records | Description |
116
- |---|---:|---|
117
- | `with_fulltext` (default) | 8,276 | Cases with fulltext in at least one official language |
118
- | `precis_only` | 4,516 | Cases without official-language fulltext (translation-only or no fulltext at all) |
119
- | `full` | 12,792 | All cases, with quality flags |
120
- | `classification` | 9,884 / 1,406 / 1,502 | Pre-existing train/val/test splits |
121
-
122
- > **Note on the classification split**: All 3,785 no-fulltext cases were placed in the
123
- > training split by the original curators. If you require fulltext for inference,
124
- > filter on `has_fulltext=True` before training, or build your own splits from `full`.
125
-
126
- ## Data Fields
127
-
128
- ### Identifiers & metadata
129
-
130
- | field | type | description |
131
- |---|---|---|
132
- | `precis_id` | string | Venice Commission internal UUID |
133
- | `reference_code` | string | CODICES reference code, e.g., `KOR-2016-1-003` |
134
- | `decision_date` | string | ISO 8601 timestamp |
135
- | `court` | int | CODICES internal court ID |
136
- | `case_title` | string | Case title (may be empty) |
137
- | `official_publication` | string | Citation in official gazette (may be empty) |
138
- | `non_official_publication` | string | Other citation |
139
- | `additional_info` | string | Auxiliary text (legal norms referenced, etc.) |
140
- | `cross_reference` | string | Citations to related case law |
141
-
142
- ### Entity (jurisdiction) — denormalized from `country_reference.json`
143
-
144
- | field | type | description |
145
- |---|---|---|
146
- | `country_code` | string | CODICES 3-letter code (`ger`, `fra`, `kor`, `ecj`, …) |
147
- | `country_name` | string | Display name |
148
- | `continent` | string | Europe / Americas / Africa / Asia |
149
- | `entity_type` | string | `country` or `supranational` |
150
- | `legal_origin` | string | `english` / `french` / `german` / `scandinavian` / `socialist` / `other` (per La Porta) |
151
- | `colonial_history` | string | `british` / `french` / `spanish` / `portuguese` / `belgian` / `german` / `dutch` / `ottoman` / `russian` / `soviet` / `japanese` / `american` / `south_african` / `swedish` / `danish` / `not_colonized` / `other` (per Klerman 2011 framework) |
152
- | `klerman_2011_sample` | bool | Whether this entity appears in Klerman et al. 2011 Table 2 |
153
-
154
- ### Languages
155
-
156
- | field | type | description |
157
- |---|---|---|
158
- | `precis_languages` | list[string] | Languages of the précis (typically `["eng", "fra"]` — Venice Commission summary languages) |
159
- | `official_languages` | list[string] | Constitutional/statutory official languages of the entity |
160
- | `fulltext_languages` | list[string] | Languages actually present in `fulltext` |
161
-
162
- > Language codes follow CODICES convention (non-standard 3-letter), see `reference/codices_lang_codes.json` for ISO 639-3 mapping.
163
-
164
- ### Content
165
-
166
- | field | type | description |
167
- |---|---|---|
168
- | `precis` | struct | `{alphabetical_keywords, headnotes, summary}` — Venice Commission structured summary |
169
- | `fulltext` | list[struct] | `[{language, text}, …]` — full judgment text(s) |
170
- | `systematic_thesaurus` | list[struct] | `[{code, keyword_chain}, …]` — Venice Commission Systematic Thesaurus annotations |
171
- | `labels` | list[string] | Flat list of thesaurus codes (e.g., `["3.17", "4.9.2"]`) — for multi-label classification |
172
- | `label_chapters` | list[string] | Top-level chapter codes (e.g., `["3", "4"]`) — for coarse classification |
173
-
174
- ### Quality flags
175
-
176
- | field | type | description |
177
- |---|---|---|
178
- | `has_fulltext` | bool | At least one fulltext language has non-empty content |
179
- | `fulltext_in_official_lang` | bool | Fulltext includes at least one official language |
180
- | `is_translation_only` | bool | Has fulltext, but only in non-official languages (translations) |
181
- | `data_bucket` | string | `with_fulltext` / `translation_only` / `no_fulltext` |
182
-
183
- ## Data Coverage
184
-
185
- ### Bucket distribution
186
-
187
- | bucket | count | % |
188
- |---|---:|---:|
189
- | `with_fulltext` (≥1 official-language fulltext) | 8,276 | 64.7% |
190
- | `translation_only` (only translations available) | 731 | 5.7% |
191
- | `no_fulltext` (metadata + précis only) | 3,785 | 29.6% |
192
-
193
- ### Top jurisdictions
194
-
195
- | Jurisdiction | Cases | With fulltext |
196
- |---|---:|---:|
197
- | Germany | 762 | 645 |
198
- | EU Court of Justice | 604 | 449 |
199
- | Croatia | 512 | 396 |
200
- | Council of Europe / ECtHR | 508 | 317 |
201
- | France | 460 | 444 |
202
- | South Africa | 432 | 320 |
203
- | Belgium | 416 | 394 |
204
- | Poland | 404 | 350 |
205
- | Portugal | 374 | 259 |
206
- | Czech Republic | 367 | 335 |
207
- | Brazil | 366 | 3 (most are précis-only) |
208
- | Ukraine | 366 | 327 |
209
-
210
- ### Known coverage gaps
211
-
212
- - **Brazil, Mexico, Hungary, Korea, Israel, Spain** publish only précis on CODICES; fulltext coverage is <35%.
213
- - **ECJ** judgments are officially in 24 EU languages; CODICES collected only English and French versions.
214
- - **South Africa** has 11 official languages, but fulltexts are nearly all in English (judgment language in practice).
215
- - For **Bahrain, Jordan, Armenia, Indonesia, Japan, Philippines**, only English translations are available — `is_translation_only=True`.
216
-
217
- See `reference/fulltext_lang_crosscheck.json` (forthcoming) for full cross-check details.
218
 
219
  ## Reference Files
220
 
221
- The `reference/` directory contains:
222
-
223
- | file | description |
224
- |---|---|
225
- | `country_reference.json` | Per-entity metadata (120 entries): name, type, official languages, legal origin, colonial history, Klerman sample membership |
226
- | `codices_lang_codes.json` | CODICES language code → ISO 639-3 + English name mapping (65 codes) |
227
- | `systematic_thesaurus.csv` | Venice Commission Systematic Thesaurus — full label hierarchy (807 codes with footnotes) |
228
- | `thesaurus_stats.csv` | Frequency of each thesaurus code in this dataset |
229
-
230
- ## Source
231
-
232
- - **Cases**: [Venice Commission CODICES database](https://codices.coe.int/) (accessed March 2025)
233
- - **Systematic Thesaurus**: Venice Commission, [Systematic Thesaurus](https://www.venice.coe.int/webforms/documents/?pdf=CDL-JU(2017)015-e)
234
- - **Legal-origin classification**: La Porta, Lopez-de-Silanes & Shleifer (2008) "The Economic Consequences of Legal Origins" *J. Econ. Lit.*
235
- - **Colonial-history classification**: Klerman, Mahoney, Spamann & Weinstein (2011) "Legal Origin or Colonial History?" *Journal of Legal Analysis* 3(2)
236
-
237
- ## Limitations & Caveats
238
-
239
- 1. **Précis languages ≠ fulltext languages**: The original `languages` field in CODICES records the *précis* (summary) languages — almost always `eng, fra` because Venice Commission translates summaries into both. The actual judgment language is in `fulltext_languages`.
240
- 2. **Translation availability**: Roughly 5.7% of cases have fulltext only in CODICES-provided translations (typically English), not the original judgment language. Use `is_translation_only` to filter.
241
- 3. **Klerman 2011 sample**: 74 of 120 entities appear in the original Klerman et al. (2011) Table 2 — `klerman_2011_sample=True`. The other 46 (post-Soviet, ex-Yugoslav, micro-states, supranational) are extensions following the same framework. For strict replication, filter on this flag.
242
- 4. **No-fulltext concentration**: 99.2% of Brazilian cases, 78.7% of Mexican, 83.6% of Hungarian, and 75.3% of Korean cases have *no* fulltext on CODICES. Filtering to `with_fulltext` substantially reduces representation of these jurisdictions.
243
- 5. **Pre-existing classification split**: The original `train` split contains all 3,785 no-fulltext cases. This may be intentional (training on précis only) or accidental — re-split if needed.
244
-
245
- ## Citation
246
-
247
- ```bibtex
248
- @misc{codices_dataset_2026,
249
- title = {CODICES Constitutional Case Law Dataset (v0.1)},
250
- author = {Claire},
251
- year = {2026},
252
- url = {https://huggingface.co/datasets/claire891018/codices-data},
253
- note = {Cases from the Venice Commission CODICES database; legal-origin and colonial-history metadata following Klerman et al. (2011).}
254
- }
255
- ```
256
-
257
- When using the legal-origin or colonial-history fields, please also cite:
258
-
259
- ```bibtex
260
- @article{klerman2011legal,
261
- title = {Legal Origin or Colonial History?},
262
- author = {Klerman, Daniel M. and Mahoney, Paul G. and Spamann, Holger and Weinstein, Mark I.},
263
- journal = {Journal of Legal Analysis},
264
- volume = {3},
265
- number = {2},
266
- pages = {379--409},
267
- year = {2011},
268
- doi = {10.1093/jla/lar003}
269
- }
270
-
271
- @article{laporta2008economic,
272
- title = {The Economic Consequences of Legal Origins},
273
- author = {La Porta, Rafael and Lopez-de-Silanes, Florencio and Shleifer, Andrei},
274
- journal = {Journal of Economic Literature},
275
- volume = {46},
276
- number = {2},
277
- pages = {285--332},
278
- year = {2008}
279
- }
280
- ```
281
-
282
- ## License
283
-
284
- The dataset is released under [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/).
285
- The underlying case law and metadata are sourced from the Council of Europe's
286
- Venice Commission [CODICES](https://codices.coe.int/) database; please attribute
287
- them as the original source of judicial materials when using this dataset.
 
1
  ---
2
+ pretty_name: CODICES Data
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  tags:
4
+ - legal
5
+ - multilingual
6
+ - parquet
7
+ - tabular
 
 
8
  configs:
9
+ - config_name: with_fulltext
10
+ data_files:
11
+ - split: train
12
+ path: data/with_fulltext/train-00000-of-00001.parquet
13
+ - config_name: full
14
+ data_files:
15
+ - split: train
16
+ path: data/full/train-00000-of-00001.parquet
17
+ - config_name: precis_only
18
+ data_files:
19
+ - split: train
20
+ path: data/precis_only/train-00000-of-00001.parquet
21
+ - config_name: classification
22
+ data_files:
23
+ - split: train
24
+ path: data/classification/train-00000-of-00001.parquet
25
+ - split: validation
26
+ path: data/classification/validation-00000-of-00001.parquet
27
+ - split: test
28
+ path: data/classification/test-00000-of-00001.parquet
 
29
  ---
30
 
31
+ # CODICES Data
32
 
33
+ This dataset contains CODICES case metadata, precis fields, full text where available, systematic thesaurus labels, and country-level reference fields.
 
 
 
34
 
35
+ ## Configs
36
 
37
+ - `with_fulltext`: cases with full text in at least one official language.
38
+ - `full`: all cases, including no-fulltext and translation-only records.
39
+ - `precis_only`: cases outside the `with_fulltext` bucket.
40
+ - `classification`: train, validation, and test splits for classification experiments.
41
 
42
+ ## Legal Origin And Colonial History
 
43
 
44
+ `legal_origin`, `colonial_history`, and `klerman_2011_sample` are assigned only from `legal_origin_colonial_history_table2_total.csv`. If a country/entity is not present in that CSV, these fields are left blank.
 
45
 
46
+ Allowed `legal_origin` values: `French`, `Common`, `Mixed`, `German`, `Scandinavia`, `Islamic`.
 
 
 
47
 
48
+ Allowed `colonial_history` values: `French`, `Other French`, `British`, `Austro-Hungarian`, `Other`, `Not Colonized`.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
49
 
50
  ## Reference Files
51
 
52
+ Reference files are kept under `reference/`. The parquet files remain under `data/` so Hugging Face can render them in the Dataset Viewer.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/classification/test-00000-of-00001.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:d45f4c579e77ac2b1285d590e8caddc0d08ef232dad2edf680e8a5b33f63999d
3
- size 33112597
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d01452d45bca452c900cf85722dae90602d06bab9b86422c8967cf3c950b3219
3
+ size 33112484
data/classification/train-00000-of-00001.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:8149441338bd738314be9eefe5f4e18b6ec6e5fc85cf4f781cfe4cbbb1574a72
3
- size 141763614
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b3c1cf9652de6a1e41881efff40d98e8807cc074adb699ec76e217c6fa9cd4bc
3
+ size 141761389
data/classification/validation-00000-of-00001.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:e99eb893789f331be11b6ceb2497cd83e5804999bcda590f6810df66537e9847
3
- size 31116677
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6bb3e21742dba70c228538149c93b8990fc701922be25edbdc6839ac23843c67
3
+ size 31116551
data/full/train-00000-of-00001.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:adea7c6d99216d5319682ed7ba25cac8f344af572739d61d52f037c0baf57594
3
- size 192359915
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:43fac2e862c62edb35d4ffb1f4899874cfb20a1afa154288b239eedeb5887e3b
3
+ size 192361104
data/precis_only/train-00000-of-00001.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:b81c9d01f6181f5e82b0f348336f90e685b4cbb7ee03ff41c4d6b7ef0f8304e0
3
- size 16584600
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c6cf35b645eaa9d79c6f12cc4e0a61d439abd7975aff9ece14c10dc2c038290f
3
+ size 16584444
data/with_fulltext/train-00000-of-00001.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:5b9f129ac675efae697252cd5d7de99333051f3fe45fff0f53a656feeb10ba0e
3
- size 175819476
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8e64e7898ce8c4ccb5449521e555a7b4cccba890352810c41fe43f199b20f604
3
+ size 175815900
legal_origin_colonial_history_table2_total.csv ADDED
@@ -0,0 +1,111 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ legal_origin,colonial_origin_group,colonizer_detail,country_as_in_table,gdp_growth_1960_2007_percent,source
2
+ French Legal Origin,Former French Colony,French,Morocco,2.93,"Klerman et al., Legal Origin or Colonial History?, Table 2"
3
+ French Legal Origin,Former French Colony,French,Italy,2.66,"Klerman et al., Legal Origin or Colonial History?, Table 2"
4
+ French Legal Origin,Former French Colony,French,Belgium,2.63,"Klerman et al., Legal Origin or Colonial History?, Table 2"
5
+ French Legal Origin,Former French Colony,French,Netherlands,2.26,"Klerman et al., Legal Origin or Colonial History?, Table 2"
6
+ French Legal Origin,Former French Colony,French,Congo,2.14,"Klerman et al., Legal Origin or Colonial History?, Table 2"
7
+ French Legal Origin,Former French Colony,French,Mauritania,2.11,"Klerman et al., Legal Origin or Colonial History?, Table 2"
8
+ French Legal Origin,Former French Colony,French,Gabon,1.63,"Klerman et al., Legal Origin or Colonial History?, Table 2"
9
+ French Legal Origin,Former French Colony,French,Mali,1.25,"Klerman et al., Legal Origin or Colonial History?, Table 2"
10
+ French Legal Origin,Former French Colony,French,Burkina Faso,1.04,"Klerman et al., Legal Origin or Colonial History?, Table 2"
11
+ French Legal Origin,Former French Colony,French,Chad,1.04,"Klerman et al., Legal Origin or Colonial History?, Table 2"
12
+ French Legal Origin,Former French Colony,French,Benin,0.96,"Klerman et al., Legal Origin or Colonial History?, Table 2"
13
+ French Legal Origin,Former French Colony,French,Cameroon,0.86,"Klerman et al., Legal Origin or Colonial History?, Table 2"
14
+ French Legal Origin,Former French Colony,French,Algeria,0.83,"Klerman et al., Legal Origin or Colonial History?, Table 2"
15
+ French Legal Origin,Former French Colony,French,Comoro Island,0.58,"Klerman et al., Legal Origin or Colonial History?, Table 2"
16
+ French Legal Origin,Former French Colony,French,Cote D'Ivoire,0.53,"Klerman et al., Legal Origin or Colonial History?, Table 2"
17
+ French Legal Origin,Former French Colony,French,Togo,0.1,"Klerman et al., Legal Origin or Colonial History?, Table 2"
18
+ French Legal Origin,Former French Colony,French,Guinea,-0.03,"Klerman et al., Legal Origin or Colonial History?, Table 2"
19
+ French Legal Origin,Former French Colony,French,Madagascar,-0.13,"Klerman et al., Legal Origin or Colonial History?, Table 2"
20
+ French Legal Origin,Former French Colony,French,Senegal,-0.22,"Klerman et al., Legal Origin or Colonial History?, Table 2"
21
+ French Legal Origin,Former French Colony,French,Haiti,-0.35,"Klerman et al., Legal Origin or Colonial History?, Table 2"
22
+ French Legal Origin,Former French Colony,French,Niger,-0.76,"Klerman et al., Legal Origin or Colonial History?, Table 2"
23
+ French Legal Origin,Former French Colony,French,Central Africa,-1.25,"Klerman et al., Legal Origin or Colonial History?, Table 2"
24
+ French Legal Origin,Former Colony of Other French Civil Law Country,Belgian,Rwanda,-0.03,"Klerman et al., Legal Origin or Colonial History?, Table 2"
25
+ French Legal Origin,Former Colony of Other French Civil Law Country,Belgian,Burundi,0.18,"Klerman et al., Legal Origin or Colonial History?, Table 2"
26
+ French Legal Origin,Former Colony of Other French Civil Law Country,Belgian,Zaire,-3.5,"Klerman et al., Legal Origin or Colonial History?, Table 2"
27
+ French Legal Origin,Former Colony of Other French Civil Law Country,Dutch,Luxemburg,3.17,"Klerman et al., Legal Origin or Colonial History?, Table 2"
28
+ French Legal Origin,Former Colony of Other French Civil Law Country,Dutch,Indonesia,3.54,"Klerman et al., Legal Origin or Colonial History?, Table 2"
29
+ French Legal Origin,Former Colony of Other French Civil Law Country,Ottoman,Greece,3.25,"Klerman et al., Legal Origin or Colonial History?, Table 2"
30
+ French Legal Origin,Former Colony of Other French Civil Law Country,Ottoman,Egypt,3.09,"Klerman et al., Legal Origin or Colonial History?, Table 2"
31
+ French Legal Origin,Former Colony of Other French Civil Law Country,Ottoman,Syria,2.06,"Klerman et al., Legal Origin or Colonial History?, Table 2"
32
+ French Legal Origin,Former Colony of Other French Civil Law Country,Portuguese,Cape Verde,2.88,"Klerman et al., Legal Origin or Colonial History?, Table 2"
33
+ French Legal Origin,Former Colony of Other French Civil Law Country,Portuguese,Brazil,2.4,"Klerman et al., Legal Origin or Colonial History?, Table 2"
34
+ French Legal Origin,Former Colony of Other French Civil Law Country,Portuguese,Mozambique,1.51,"Klerman et al., Legal Origin or Colonial History?, Table 2"
35
+ French Legal Origin,Former Colony of Other French Civil Law Country,Portuguese,Guinea-Bissau,0.56,"Klerman et al., Legal Origin or Colonial History?, Table 2"
36
+ French Legal Origin,Former Colony of Other French Civil Law Country,Russian,Romania,3.9,"Klerman et al., Legal Origin or Colonial History?, Table 2"
37
+ French Legal Origin,Former Colony of Other French Civil Law Country,Spanish,Equatorial Guinea,7.08,"Klerman et al., Legal Origin or Colonial History?, Table 2"
38
+ French Legal Origin,Former Colony of Other French Civil Law Country,Spanish,Panama,3.03,"Klerman et al., Legal Origin or Colonial History?, Table 2"
39
+ French Legal Origin,Former Colony of Other French Civil Law Country,Spanish,Dominican Rep.,3.01,"Klerman et al., Legal Origin or Colonial History?, Table 2"
40
+ French Legal Origin,Former Colony of Other French Civil Law Country,Spanish,Chile,2.48,"Klerman et al., Legal Origin or Colonial History?, Table 2"
41
+ French Legal Origin,Former Colony of Other French Civil Law Country,Spanish,Mexico,1.97,"Klerman et al., Legal Origin or Colonial History?, Table 2"
42
+ French Legal Origin,Former Colony of Other French Civil Law Country,Spanish,Colombia,1.94,"Klerman et al., Legal Origin or Colonial History?, Table 2"
43
+ French Legal Origin,Former Colony of Other French Civil Law Country,Spanish,Costa Rica,1.76,"Klerman et al., Legal Origin or Colonial History?, Table 2"
44
+ French Legal Origin,Former Colony of Other French Civil Law Country,Spanish,Ecuador,1.67,"Klerman et al., Legal Origin or Colonial History?, Table 2"
45
+ French Legal Origin,Former Colony of Other French Civil Law Country,Spanish,Guatemala,1.47,"Klerman et al., Legal Origin or Colonial History?, Table 2"
46
+ French Legal Origin,Former Colony of Other French Civil Law Country,Spanish,Uruguay,1.44,"Klerman et al., Legal Origin or Colonial History?, Table 2"
47
+ French Legal Origin,Former Colony of Other French Civil Law Country,Spanish,Paraguay,1.31,"Klerman et al., Legal Origin or Colonial History?, Table 2"
48
+ French Legal Origin,Former Colony of Other French Civil Law Country,Spanish,Peru,1.21,"Klerman et al., Legal Origin or Colonial History?, Table 2"
49
+ French Legal Origin,Former Colony of Other French Civil Law Country,Spanish,Argentina,1.17,"Klerman et al., Legal Origin or Colonial History?, Table 2"
50
+ French Legal Origin,Former Colony of Other French Civil Law Country,Spanish,El Salvador,1.02,"Klerman et al., Legal Origin or Colonial History?, Table 2"
51
+ French Legal Origin,Former Colony of Other French Civil Law Country,Spanish,Honduras,0.99,"Klerman et al., Legal Origin or Colonial History?, Table 2"
52
+ French Legal Origin,Former Colony of Other French Civil Law Country,Spanish,Bolivia,0.59,"Klerman et al., Legal Origin or Colonial History?, Table 2"
53
+ French Legal Origin,Former Colony of Other French Civil Law Country,Spanish,Venezuela,0.78,"Klerman et al., Legal Origin or Colonial History?, Table 2"
54
+ French Legal Origin,Former Colony of Other French Civil Law Country,Spanish,Nicaragua,-0.47,"Klerman et al., Legal Origin or Colonial History?, Table 2"
55
+ French Legal Origin,Never colonized,None,Spain,3.51,"Klerman et al., Legal Origin or Colonial History?, Table 2"
56
+ French Legal Origin,Never colonized,None,Portugal,3.43,"Klerman et al., Legal Origin or Colonial History?, Table 2"
57
+ French Legal Origin,Never colonized,None,France,2.43,"Klerman et al., Legal Origin or Colonial History?, Table 2"
58
+ French Legal Origin,Never colonized,None,Turkey,2.34,"Klerman et al., Legal Origin or Colonial History?, Table 2"
59
+ French Legal Origin,Never colonized,None,Iran,1.87,"Klerman et al., Legal Origin or Colonial History?, Table 2"
60
+ French Legal Origin,Never colonized,None,Ethiopia,0.63,"Klerman et al., Legal Origin or Colonial History?, Table 2"
61
+ Common Law,Former British Colony,British,Hong Kong,5.24,"Klerman et al., Legal Origin or Colonial History?, Table 2"
62
+ Common Law,Former British Colony,British,Singapore,5.08,"Klerman et al., Legal Origin or Colonial History?, Table 2"
63
+ Common Law,Former British Colony,British,Malaysia,4.49,"Klerman et al., Legal Origin or Colonial History?, Table 2"
64
+ Common Law,Former British Colony,British,Ireland,3.82,"Klerman et al., Legal Origin or Colonial History?, Table 2"
65
+ Common Law,Former British Colony,British,Trinidad And Tob.,2.9,"Klerman et al., Legal Origin or Colonial History?, Table 2"
66
+ Common Law,Former British Colony,British,India,2.89,"Klerman et al., Legal Origin or Colonial History?, Table 2"
67
+ Common Law,Former British Colony,British,Pakistan,2.87,"Klerman et al., Legal Origin or Colonial History?, Table 2"
68
+ Common Law,Former British Colony,British,Barbados,2.56,"Klerman et al., Legal Origin or Colonial History?, Table 2"
69
+ Common Law,Former British Colony,British,Australia,2.31,"Klerman et al., Legal Origin or Colonial History?, Table 2"
70
+ Common Law,Former British Colony,British,Canada,2.26,"Klerman et al., Legal Origin or Colonial History?, Table 2"
71
+ Common Law,Former British Colony,British,United States,2.12,"Klerman et al., Legal Origin or Colonial History?, Table 2"
72
+ Common Law,Former British Colony,British,Fiji,1.56,"Klerman et al., Legal Origin or Colonial History?, Table 2"
73
+ Common Law,Former British Colony,British,New Zealand,1.5,"Klerman et al., Legal Origin or Colonial History?, Table 2"
74
+ Common Law,Former British Colony,British,Malawi,1.49,"Klerman et al., Legal Origin or Colonial History?, Table 2"
75
+ Common Law,Former British Colony,British,Tanzania,1.38,"Klerman et al., Legal Origin or Colonial History?, Table 2"
76
+ Common Law,Former British Colony,British,Ghana,1.36,"Klerman et al., Legal Origin or Colonial History?, Table 2"
77
+ Common Law,Former British Colony,British,Bangladesh,0.86,"Klerman et al., Legal Origin or Colonial History?, Table 2"
78
+ Common Law,Former British Colony,British,Uganda,0.82,"Klerman et al., Legal Origin or Colonial History?, Table 2"
79
+ Common Law,Former British Colony,British,Jamaica,0.68,"Klerman et al., Legal Origin or Colonial History?, Table 2"
80
+ Common Law,Former British Colony,British,Kenya,0.44,"Klerman et al., Legal Origin or Colonial History?, Table 2"
81
+ Common Law,Former British Colony,British,Nigeria,0.29,"Klerman et al., Legal Origin or Colonial History?, Table 2"
82
+ Common Law,Former British Colony,British,Gambia,0.11,"Klerman et al., Legal Origin or Colonial History?, Table 2"
83
+ Common Law,Former British Colony,British,Zambia,-0.19,"Klerman et al., Legal Origin or Colonial History?, Table 2"
84
+ Common Law,Other Former Colony,Australian,Papua New Guinea,1.92,"Klerman et al., Legal Origin or Colonial History?, Table 2"
85
+ Common Law,Never colonized,None,UK,2.15,"Klerman et al., Legal Origin or Colonial History?, Table 2"
86
+ Common Law,Never colonized,None,Nepal,1.23,"Klerman et al., Legal Origin or Colonial History?, Table 2"
87
+ Mixed Legal Origin,Former British Colony,British,Botswana,5.67,"Klerman et al., Legal Origin or Colonial History?, Table 2"
88
+ Mixed Legal Origin,Former British Colony,British,Cyprus,4.28,"Klerman et al., Legal Origin or Colonial History?, Table 2"
89
+ Mixed Legal Origin,Former British Colony,British,Seychelles,3.48,"Klerman et al., Legal Origin or Colonial History?, Table 2"
90
+ Mixed Legal Origin,Former British Colony,British,Sri Lanka,3.32,"Klerman et al., Legal Origin or Colonial History?, Table 2"
91
+ Mixed Legal Origin,Former British Colony,British,Mauritius,3.06,"Klerman et al., Legal Origin or Colonial History?, Table 2"
92
+ Mixed Legal Origin,Former British Colony,British,Lesotho,2.67,"Klerman et al., Legal Origin or Colonial History?, Table 2"
93
+ Mixed Legal Origin,Former British Colony,British,South Africa,1.43,"Klerman et al., Legal Origin or Colonial History?, Table 2"
94
+ Mixed Legal Origin,Former British Colony,British,Zimbabwe,0.57,"Klerman et al., Legal Origin or Colonial History?, Table 2"
95
+ Mixed Legal Origin,Former Colony of Other French Civil Law Country,Ottoman,Israel,2.66,"Klerman et al., Legal Origin or Colonial History?, Table 2"
96
+ Mixed Legal Origin,Former Colony of Other French Civil Law Country,Ottoman,Jordan,0.75,"Klerman et al., Legal Origin or Colonial History?, Table 2"
97
+ Mixed Legal Origin,Other Former Colony,U.S.,Puerto Rico,3.22,"Klerman et al., Legal Origin or Colonial History?, Table 2"
98
+ Mixed Legal Origin,Other Former Colony,U.S.,Philippines,1.66,"Klerman et al., Legal Origin or Colonial History?, Table 2"
99
+ Mixed Legal Origin,Other Former Colony,South African,Namibia,1.1,"Klerman et al., Legal Origin or Colonial History?, Table 2"
100
+ Mixed Legal Origin,Never colonized,None,Thailand,4.39,"Klerman et al., Legal Origin or Colonial History?, Table 2"
101
+ German Legal Origin,Other Former Colony,Japanese,Taiwan,5.86,"Klerman et al., Legal Origin or Colonial History?, Table 2"
102
+ German Legal Origin,Other Former Colony,Japanese,"Korea, Rep.",5.19,"Klerman et al., Legal Origin or Colonial History?, Table 2"
103
+ German Legal Origin,Never colonized,None,China,5.14,"Klerman et al., Legal Origin or Colonial History?, Table 2"
104
+ German Legal Origin,Never colonized,None,Japan,3.6,"Klerman et al., Legal Origin or Colonial History?, Table 2"
105
+ German Legal Origin,Never colonized,None,Austria,2.73,"Klerman et al., Legal Origin or Colonial History?, Table 2"
106
+ German Legal Origin,Never colonized,None,Switzerland,1.58,"Klerman et al., Legal Origin or Colonial History?, Table 2"
107
+ Scandinavian Legal Origin,Other Former Colony,Danish,Iceland,2.87,"Klerman et al., Legal Origin or Colonial History?, Table 2"
108
+ Scandinavian Legal Origin,Other Former Colony,Swedish,Finland,2.85,"Klerman et al., Legal Origin or Colonial History?, Table 2"
109
+ Scandinavian Legal Origin,Never colonized,None,Norway,3.05,"Klerman et al., Legal Origin or Colonial History?, Table 2"
110
+ Scandinavian Legal Origin,Never colonized,None,Denmark,2.32,"Klerman et al., Legal Origin or Colonial History?, Table 2"
111
+ Scandinavian Legal Origin,Never colonized,None,Sweden,2.15,"Klerman et al., Legal Origin or Colonial History?, Table 2"
reference/country_reference.json CHANGED
@@ -1,9 +1,9 @@
1
  {
2
  "alb": {
3
- "colonial_history": "ottoman",
4
  "continent": "Europe",
5
  "klerman_2011_sample": false,
6
- "legal_origin": "socialist",
7
  "name": "Albania",
8
  "notes": null,
9
  "official_languages": [
@@ -12,12 +12,12 @@
12
  "type": "country"
13
  },
14
  "alg": {
15
- "colonial_history": "french",
16
  "continent": "Africa",
17
  "klerman_2011_sample": true,
18
- "legal_origin": "french",
19
  "name": "Algeria",
20
- "notes": null,
21
  "official_languages": [
22
  "ara",
23
  "fra"
@@ -25,46 +25,46 @@
25
  "type": "country"
26
  },
27
  "and": {
28
- "colonial_history": "not_colonized",
29
  "continent": "Europe",
30
  "klerman_2011_sample": false,
31
- "legal_origin": "french",
32
  "name": "Andorra",
33
- "notes": "Micro-state, not in Klerman sample",
34
  "official_languages": [
35
  "cat"
36
  ],
37
  "type": "country"
38
  },
39
  "ang": {
40
- "colonial_history": "portuguese",
41
  "continent": "Africa",
42
  "klerman_2011_sample": false,
43
- "legal_origin": "french",
44
  "name": "Angola",
45
- "notes": "Likely in Klerman sample but not explicitly visible in Table 2 image",
46
  "official_languages": [
47
  "por"
48
  ],
49
  "type": "country"
50
  },
51
  "arg": {
52
- "colonial_history": "spanish",
53
  "continent": "Americas",
54
  "klerman_2011_sample": true,
55
- "legal_origin": "french",
56
  "name": "Argentina",
57
- "notes": null,
58
  "official_languages": [
59
  "esp"
60
  ],
61
  "type": "country"
62
  },
63
  "arm": {
64
- "colonial_history": "soviet",
65
  "continent": "Europe",
66
  "klerman_2011_sample": false,
67
- "legal_origin": "socialist",
68
  "name": "Armenia",
69
  "notes": null,
70
  "official_languages": [
@@ -73,22 +73,22 @@
73
  "type": "country"
74
  },
75
  "aut": {
76
- "colonial_history": "not_colonized",
77
  "continent": "Europe",
78
  "klerman_2011_sample": true,
79
- "legal_origin": "german",
80
  "name": "Austria",
81
- "notes": null,
82
  "official_languages": [
83
  "ger"
84
  ],
85
  "type": "country"
86
  },
87
  "aze": {
88
- "colonial_history": "soviet",
89
  "continent": "Europe",
90
  "klerman_2011_sample": false,
91
- "legal_origin": "socialist",
92
  "name": "Azerbaijan",
93
  "notes": null,
94
  "official_languages": [
@@ -97,24 +97,24 @@
97
  "type": "country"
98
  },
99
  "bar": {
100
- "colonial_history": "british",
101
  "continent": "Americas",
102
  "klerman_2011_sample": true,
103
- "legal_origin": "english",
104
  "name": "Barbados",
105
- "notes": null,
106
  "official_languages": [
107
  "eng"
108
  ],
109
  "type": "country"
110
  },
111
  "bel": {
112
- "colonial_history": "french",
113
  "continent": "Europe",
114
  "klerman_2011_sample": true,
115
- "legal_origin": "french",
116
  "name": "Belgium",
117
- "notes": "Klerman codes Belgium as former French colony (Napoleonic)",
118
  "official_languages": [
119
  "ned",
120
  "fra",
@@ -123,22 +123,22 @@
123
  "type": "country"
124
  },
125
  "ben": {
126
- "colonial_history": "french",
127
  "continent": "Africa",
128
  "klerman_2011_sample": true,
129
- "legal_origin": "french",
130
  "name": "Benin",
131
- "notes": null,
132
  "official_languages": [
133
  "fra"
134
  ],
135
  "type": "country"
136
  },
137
  "bih": {
138
- "colonial_history": "ottoman",
139
  "continent": "Europe",
140
  "klerman_2011_sample": false,
141
- "legal_origin": "socialist",
142
  "name": "Bosnia and Herzegovina",
143
  "notes": null,
144
  "official_languages": [
@@ -149,22 +149,22 @@
149
  "type": "country"
150
  },
151
  "biz": {
152
- "colonial_history": "british",
153
  "continent": "Americas",
154
  "klerman_2011_sample": false,
155
- "legal_origin": "english",
156
  "name": "Belize",
157
- "notes": "Not in Klerman main sample",
158
  "official_languages": [
159
  "eng"
160
  ],
161
  "type": "country"
162
  },
163
  "blr": {
164
- "colonial_history": "soviet",
165
  "continent": "Europe",
166
  "klerman_2011_sample": false,
167
- "legal_origin": "socialist",
168
  "name": "Belarus",
169
  "notes": null,
170
  "official_languages": [
@@ -174,82 +174,82 @@
174
  "type": "country"
175
  },
176
  "bol": {
177
- "colonial_history": "spanish",
178
  "continent": "Americas",
179
  "klerman_2011_sample": true,
180
- "legal_origin": "french",
181
  "name": "Bolivia",
182
- "notes": null,
183
  "official_languages": [
184
  "esp"
185
  ],
186
  "type": "country"
187
  },
188
  "bra": {
189
- "colonial_history": "portuguese",
190
  "continent": "Americas",
191
  "klerman_2011_sample": true,
192
- "legal_origin": "french",
193
  "name": "Brazil",
194
- "notes": null,
195
  "official_languages": [
196
  "por"
197
  ],
198
  "type": "country"
199
  },
200
  "brn": {
201
- "colonial_history": "british",
202
  "continent": "Asia",
203
  "klerman_2011_sample": false,
204
- "legal_origin": "english",
205
  "name": "Bahrain",
206
- "notes": "British protectorate; not in Klerman main sample",
207
  "official_languages": [
208
  "ara"
209
  ],
210
  "type": "country"
211
  },
212
  "bul": {
213
- "colonial_history": "ottoman",
214
  "continent": "Europe",
215
  "klerman_2011_sample": false,
216
- "legal_origin": "socialist",
217
  "name": "Bulgaria",
218
- "notes": "Ottoman to 1878; not in Klerman Table 2 visible",
219
  "official_languages": [
220
  "bul"
221
  ],
222
  "type": "country"
223
  },
224
  "bur": {
225
- "colonial_history": "french",
226
  "continent": "Africa",
227
  "klerman_2011_sample": true,
228
- "legal_origin": "french",
229
  "name": "Burkina Faso",
230
- "notes": null,
231
  "official_languages": [
232
  "fra"
233
  ],
234
  "type": "country"
235
  },
236
  "caf": {
237
- "colonial_history": "french",
238
  "continent": "Africa",
239
  "klerman_2011_sample": true,
240
- "legal_origin": "french",
241
  "name": "Central African Republic",
242
- "notes": null,
243
  "official_languages": [
244
  "fra"
245
  ],
246
  "type": "country"
247
  },
248
  "cam": {
249
- "colonial_history": "french",
250
  "continent": "Asia",
251
  "klerman_2011_sample": false,
252
- "legal_origin": "french",
253
  "name": "Cambodia",
254
  "notes": null,
255
  "official_languages": [
@@ -258,12 +258,12 @@
258
  "type": "country"
259
  },
260
  "can": {
261
- "colonial_history": "british",
262
  "continent": "Americas",
263
  "klerman_2011_sample": true,
264
- "legal_origin": "english",
265
  "name": "Canada",
266
- "notes": null,
267
  "official_languages": [
268
  "eng",
269
  "fra"
@@ -271,36 +271,36 @@
271
  "type": "country"
272
  },
273
  "car": {
274
- "colonial_history": "other",
275
  "continent": "Americas",
276
  "klerman_2011_sample": false,
277
- "legal_origin": "other",
278
  "name": "Caribbean Community",
279
- "notes": "Includes Caribbean Court of Justice",
280
  "official_languages": [
281
  "eng"
282
  ],
283
  "type": "supranational"
284
  },
285
  "cgo": {
286
- "colonial_history": "french",
287
  "continent": "Africa",
288
  "klerman_2011_sample": true,
289
- "legal_origin": "french",
290
  "name": "Congo-Brazzaville",
291
- "notes": null,
292
  "official_languages": [
293
  "fra"
294
  ],
295
  "type": "country"
296
  },
297
  "cha": {
298
- "colonial_history": "french",
299
  "continent": "Africa",
300
  "klerman_2011_sample": true,
301
- "legal_origin": "french",
302
  "name": "Chad",
303
- "notes": null,
304
  "official_languages": [
305
  "fra",
306
  "ara"
@@ -308,24 +308,24 @@
308
  "type": "country"
309
  },
310
  "chi": {
311
- "colonial_history": "spanish",
312
  "continent": "Americas",
313
  "klerman_2011_sample": true,
314
- "legal_origin": "french",
315
  "name": "Chile",
316
- "notes": null,
317
  "official_languages": [
318
  "esp"
319
  ],
320
  "type": "country"
321
  },
322
  "cmr": {
323
- "colonial_history": "french",
324
  "continent": "Africa",
325
  "klerman_2011_sample": true,
326
- "legal_origin": "french",
327
  "name": "Cameroon",
328
- "notes": "Klerman: dominant colonial power per population (fn. 11)",
329
  "official_languages": [
330
  "fra",
331
  "eng"
@@ -333,46 +333,46 @@
333
  "type": "country"
334
  },
335
  "cod": {
336
- "colonial_history": "belgian",
337
  "continent": "Africa",
338
  "klerman_2011_sample": true,
339
- "legal_origin": "french",
340
  "name": "Congo, Democratic Republic (Kinshasa)",
341
- "notes": "Klerman: 'Zaire' coded as Belgian colony",
342
  "official_languages": [
343
  "fra"
344
  ],
345
  "type": "country"
346
  },
347
  "col": {
348
- "colonial_history": "spanish",
349
  "continent": "Americas",
350
  "klerman_2011_sample": true,
351
- "legal_origin": "french",
352
  "name": "Colombia",
353
- "notes": null,
354
  "official_languages": [
355
  "esp"
356
  ],
357
  "type": "country"
358
  },
359
  "crc": {
360
- "colonial_history": "spanish",
361
  "continent": "Americas",
362
  "klerman_2011_sample": true,
363
- "legal_origin": "french",
364
  "name": "Costa Rica",
365
- "notes": null,
366
  "official_languages": [
367
  "esp"
368
  ],
369
  "type": "country"
370
  },
371
  "cro": {
372
- "colonial_history": "not_colonized",
373
  "continent": "Europe",
374
  "klerman_2011_sample": false,
375
- "legal_origin": "socialist",
376
  "name": "Croatia",
377
  "notes": null,
378
  "official_languages": [
@@ -381,12 +381,12 @@
381
  "type": "country"
382
  },
383
  "cyp": {
384
- "colonial_history": "british",
385
  "continent": "Europe",
386
  "klerman_2011_sample": true,
387
- "legal_origin": "english",
388
  "name": "Cyprus",
389
- "notes": "Mixed legal origin in Klerman; classified as English here",
390
  "official_languages": [
391
  "gre",
392
  "tur"
@@ -394,10 +394,10 @@
394
  "type": "country"
395
  },
396
  "cze": {
397
- "colonial_history": "not_colonized",
398
  "continent": "Europe",
399
  "klerman_2011_sample": false,
400
- "legal_origin": "socialist",
401
  "name": "Czech Republic",
402
  "notes": null,
403
  "official_languages": [
@@ -406,48 +406,48 @@
406
  "type": "country"
407
  },
408
  "den": {
409
- "colonial_history": "not_colonized",
410
  "continent": "Europe",
411
  "klerman_2011_sample": true,
412
- "legal_origin": "scandinavian",
413
  "name": "Denmark",
414
- "notes": null,
415
  "official_languages": [
416
  "den"
417
  ],
418
  "type": "country"
419
  },
420
  "dma": {
421
- "colonial_history": "british",
422
  "continent": "Americas",
423
  "klerman_2011_sample": false,
424
- "legal_origin": "english",
425
  "name": "Dominica",
426
- "notes": "Small Caribbean state, not in Klerman main sample",
427
  "official_languages": [
428
  "eng"
429
  ],
430
  "type": "country"
431
  },
432
  "dom": {
433
- "colonial_history": "spanish",
434
  "continent": "Americas",
435
  "klerman_2011_sample": true,
436
- "legal_origin": "french",
437
  "name": "Dominican Republic",
438
- "notes": null,
439
  "official_languages": [
440
  "esp"
441
  ],
442
  "type": "country"
443
  },
444
  "ech": {
445
- "colonial_history": "other",
446
  "continent": "Europe",
447
  "klerman_2011_sample": false,
448
- "legal_origin": "other",
449
  "name": "Council of Europe",
450
- "notes": "Includes ECtHR; both languages have equal status",
451
  "official_languages": [
452
  "eng",
453
  "fra"
@@ -455,12 +455,12 @@
455
  "type": "supranational"
456
  },
457
  "ecj": {
458
- "colonial_history": "other",
459
  "continent": "Europe",
460
  "klerman_2011_sample": false,
461
- "legal_origin": "other",
462
  "name": "European Union, Court of Justice",
463
- "notes": "All 24 EU official languages; French is the deliberation language",
464
  "official_languages": [
465
  "eng",
466
  "fra",
@@ -490,36 +490,36 @@
490
  "type": "supranational"
491
  },
492
  "ecu": {
493
- "colonial_history": "spanish",
494
  "continent": "Americas",
495
  "klerman_2011_sample": true,
496
- "legal_origin": "french",
497
  "name": "Ecuador",
498
- "notes": null,
499
  "official_languages": [
500
  "esp"
501
  ],
502
  "type": "country"
503
  },
504
  "egy": {
505
- "colonial_history": "ottoman",
506
  "continent": "Africa",
507
  "klerman_2011_sample": true,
508
- "legal_origin": "french",
509
  "name": "Egypt",
510
- "notes": "Klerman codes Egypt as Ottoman colony (French civil law via Napoleonic codes)",
511
  "official_languages": [
512
  "ara"
513
  ],
514
  "type": "country"
515
  },
516
  "esp": {
517
- "colonial_history": "not_colonized",
518
  "continent": "Europe",
519
  "klerman_2011_sample": true,
520
- "legal_origin": "french",
521
  "name": "Spain",
522
- "notes": "Klerman explicitly: French occupation contested, not coded as French colony (fn. 15)",
523
  "official_languages": [
524
  "esp",
525
  "cat"
@@ -527,10 +527,10 @@
527
  "type": "country"
528
  },
529
  "est": {
530
- "colonial_history": "soviet",
531
  "continent": "Europe",
532
  "klerman_2011_sample": false,
533
- "legal_origin": "socialist",
534
  "name": "Estonia",
535
  "notes": null,
536
  "official_languages": [
@@ -539,24 +539,24 @@
539
  "type": "country"
540
  },
541
  "eth": {
542
- "colonial_history": "not_colonized",
543
  "continent": "Africa",
544
  "klerman_2011_sample": true,
545
- "legal_origin": "french",
546
  "name": "Ethiopia",
547
- "notes": "Adopted French civil code 1960; never formally colonized",
548
  "official_languages": [
549
  "amh"
550
  ],
551
  "type": "country"
552
  },
553
  "fin": {
554
- "colonial_history": "swedish",
555
  "continent": "Europe",
556
  "klerman_2011_sample": true,
557
- "legal_origin": "scandinavian",
558
  "name": "Finland",
559
- "notes": "Klerman codes Finland as Swedish colony",
560
  "official_languages": [
561
  "fin",
562
  "swe"
@@ -564,46 +564,46 @@
564
  "type": "country"
565
  },
566
  "fra": {
567
- "colonial_history": "not_colonized",
568
  "continent": "Europe",
569
  "klerman_2011_sample": true,
570
- "legal_origin": "french",
571
  "name": "France",
572
- "notes": null,
573
  "official_languages": [
574
  "fra"
575
  ],
576
  "type": "country"
577
  },
578
  "gab": {
579
- "colonial_history": "french",
580
  "continent": "Africa",
581
  "klerman_2011_sample": true,
582
- "legal_origin": "french",
583
  "name": "Gabon",
584
- "notes": null,
585
  "official_languages": [
586
  "fra"
587
  ],
588
  "type": "country"
589
  },
590
  "gbr": {
591
- "colonial_history": "not_colonized",
592
  "continent": "Europe",
593
  "klerman_2011_sample": true,
594
- "legal_origin": "english",
595
  "name": "United Kingdom",
596
- "notes": null,
597
  "official_languages": [
598
  "eng"
599
  ],
600
  "type": "country"
601
  },
602
  "geo": {
603
- "colonial_history": "soviet",
604
  "continent": "Europe",
605
  "klerman_2011_sample": false,
606
- "legal_origin": "socialist",
607
  "name": "Georgia",
608
  "notes": null,
609
  "official_languages": [
@@ -612,82 +612,82 @@
612
  "type": "country"
613
  },
614
  "ger": {
615
- "colonial_history": "not_colonized",
616
  "continent": "Europe",
617
  "klerman_2011_sample": false,
618
- "legal_origin": "german",
619
  "name": "Germany",
620
- "notes": "Not visible in Klerman 2011 Table 2; coding follows La Porta",
621
  "official_languages": [
622
  "ger"
623
  ],
624
  "type": "country"
625
  },
626
  "gha": {
627
- "colonial_history": "british",
628
  "continent": "Africa",
629
  "klerman_2011_sample": true,
630
- "legal_origin": "english",
631
  "name": "Ghana",
632
- "notes": null,
633
  "official_languages": [
634
  "eng"
635
  ],
636
  "type": "country"
637
  },
638
  "gre": {
639
- "colonial_history": "ottoman",
640
  "continent": "Europe",
641
  "klerman_2011_sample": true,
642
- "legal_origin": "french",
643
  "name": "Greece",
644
- "notes": null,
645
  "official_languages": [
646
  "gre"
647
  ],
648
  "type": "country"
649
  },
650
  "gua": {
651
- "colonial_history": "spanish",
652
  "continent": "Americas",
653
  "klerman_2011_sample": true,
654
- "legal_origin": "french",
655
  "name": "Guatemala",
656
- "notes": null,
657
  "official_languages": [
658
  "esp"
659
  ],
660
  "type": "country"
661
  },
662
  "guy": {
663
- "colonial_history": "british",
664
  "continent": "Americas",
665
  "klerman_2011_sample": false,
666
- "legal_origin": "english",
667
  "name": "Guyana",
668
- "notes": "Klerman fn. 16: excluded due to no GDP data 1960-2007",
669
  "official_languages": [
670
  "eng"
671
  ],
672
  "type": "country"
673
  },
674
  "hai": {
675
- "colonial_history": "french",
676
  "continent": "Americas",
677
  "klerman_2011_sample": true,
678
- "legal_origin": "french",
679
  "name": "Haiti",
680
- "notes": null,
681
  "official_languages": [
682
  "fra"
683
  ],
684
  "type": "country"
685
  },
686
  "hun": {
687
- "colonial_history": "not_colonized",
688
  "continent": "Europe",
689
  "klerman_2011_sample": false,
690
- "legal_origin": "socialist",
691
  "name": "Hungary",
692
  "notes": null,
693
  "official_languages": [
@@ -696,12 +696,12 @@
696
  "type": "country"
697
  },
698
  "iac": {
699
- "colonial_history": "other",
700
  "continent": "Americas",
701
  "klerman_2011_sample": false,
702
- "legal_origin": "other",
703
  "name": "Organisation of American States",
704
- "notes": "Includes Inter-American Court of Human Rights",
705
  "official_languages": [
706
  "esp",
707
  "eng",
@@ -711,24 +711,24 @@
711
  "type": "supranational"
712
  },
713
  "ina": {
714
- "colonial_history": "dutch",
715
  "continent": "Asia",
716
  "klerman_2011_sample": true,
717
- "legal_origin": "french",
718
  "name": "Indonesia",
719
- "notes": "Klerman codes Indonesia as Dutch colony / French civil law",
720
  "official_languages": [
721
  "ind"
722
  ],
723
  "type": "country"
724
  },
725
  "ind": {
726
- "colonial_history": "british",
727
  "continent": "Asia",
728
  "klerman_2011_sample": true,
729
- "legal_origin": "english",
730
  "name": "India",
731
- "notes": null,
732
  "official_languages": [
733
  "hin",
734
  "eng"
@@ -736,12 +736,12 @@
736
  "type": "country"
737
  },
738
  "irl": {
739
- "colonial_history": "british",
740
  "continent": "Europe",
741
  "klerman_2011_sample": true,
742
- "legal_origin": "english",
743
  "name": "Ireland",
744
- "notes": "Independent from UK 1922",
745
  "official_languages": [
746
  "gle",
747
  "eng"
@@ -749,24 +749,24 @@
749
  "type": "country"
750
  },
751
  "isl": {
752
- "colonial_history": "danish",
753
  "continent": "Europe",
754
  "klerman_2011_sample": true,
755
- "legal_origin": "scandinavian",
756
  "name": "Iceland",
757
- "notes": "Klerman codes Iceland as Danish colony",
758
  "official_languages": [
759
  "ice"
760
  ],
761
  "type": "country"
762
  },
763
  "isr": {
764
- "colonial_history": "ottoman",
765
  "continent": "Asia",
766
  "klerman_2011_sample": true,
767
- "legal_origin": "english",
768
  "name": "Israel",
769
- "notes": "Klerman codes Mandate territories as Ottoman (fn. 12)",
770
  "official_languages": [
771
  "heb",
772
  "ara"
@@ -774,46 +774,46 @@
774
  "type": "country"
775
  },
776
  "ita": {
777
- "colonial_history": "french",
778
  "continent": "Europe",
779
  "klerman_2011_sample": true,
780
- "legal_origin": "french",
781
  "name": "Italy",
782
- "notes": "Klerman codes Italy as former French colony (Napoleonic occupation imposed Civil Code)",
783
  "official_languages": [
784
  "ita"
785
  ],
786
  "type": "country"
787
  },
788
  "jor": {
789
- "colonial_history": "ottoman",
790
  "continent": "Asia",
791
  "klerman_2011_sample": true,
792
- "legal_origin": "english",
793
  "name": "Jordan",
794
- "notes": "Mixed legal origin in Klerman; Ottoman colonial (fn. 12)",
795
  "official_languages": [
796
  "ara"
797
  ],
798
  "type": "country"
799
  },
800
  "jpn": {
801
- "colonial_history": "not_colonized",
802
  "continent": "Asia",
803
  "klerman_2011_sample": true,
804
- "legal_origin": "german",
805
  "name": "Japan",
806
- "notes": null,
807
  "official_languages": [
808
  "jpn"
809
  ],
810
  "type": "country"
811
  },
812
  "kaz": {
813
- "colonial_history": "soviet",
814
  "continent": "Asia",
815
  "klerman_2011_sample": false,
816
- "legal_origin": "socialist",
817
  "name": "Kazakhstan",
818
  "notes": null,
819
  "official_languages": [
@@ -823,10 +823,10 @@
823
  "type": "country"
824
  },
825
  "kgz": {
826
- "colonial_history": "soviet",
827
  "continent": "Asia",
828
  "klerman_2011_sample": false,
829
- "legal_origin": "socialist",
830
  "name": "Kyrgyzstan",
831
  "notes": null,
832
  "official_languages": [
@@ -836,22 +836,22 @@
836
  "type": "country"
837
  },
838
  "kor": {
839
- "colonial_history": "japanese",
840
  "continent": "Asia",
841
  "klerman_2011_sample": true,
842
- "legal_origin": "german",
843
  "name": "Korea, Republic",
844
- "notes": null,
845
  "official_languages": [
846
  "kor"
847
  ],
848
  "type": "country"
849
  },
850
  "kos": {
851
- "colonial_history": "ottoman",
852
  "continent": "Europe",
853
  "klerman_2011_sample": false,
854
- "legal_origin": "socialist",
855
  "name": "Kosovo",
856
  "notes": null,
857
  "official_languages": [
@@ -861,10 +861,10 @@
861
  "type": "country"
862
  },
863
  "lat": {
864
- "colonial_history": "soviet",
865
  "continent": "Europe",
866
  "klerman_2011_sample": false,
867
- "legal_origin": "socialist",
868
  "name": "Latvia",
869
  "notes": null,
870
  "official_languages": [
@@ -873,12 +873,12 @@
873
  "type": "country"
874
  },
875
  "les": {
876
- "colonial_history": "british",
877
  "continent": "Africa",
878
  "klerman_2011_sample": true,
879
- "legal_origin": "english",
880
  "name": "Lesotho",
881
- "notes": "Klerman codes as Mixed legal origin",
882
  "official_languages": [
883
  "eng",
884
  "sot"
@@ -886,34 +886,34 @@
886
  "type": "country"
887
  },
888
  "lib": {
889
- "colonial_history": "ottoman",
890
  "continent": "Asia",
891
  "klerman_2011_sample": false,
892
- "legal_origin": "french",
893
  "name": "Lebanon",
894
- "notes": "Mandate territory; following Klerman framework would be Ottoman",
895
  "official_languages": [
896
  "ara"
897
  ],
898
  "type": "country"
899
  },
900
  "lie": {
901
- "colonial_history": "not_colonized",
902
  "continent": "Europe",
903
  "klerman_2011_sample": false,
904
- "legal_origin": "german",
905
  "name": "Liechtenstein",
906
- "notes": "Micro-state, not in Klerman sample",
907
  "official_languages": [
908
  "ger"
909
  ],
910
  "type": "country"
911
  },
912
  "ltu": {
913
- "colonial_history": "soviet",
914
  "continent": "Europe",
915
  "klerman_2011_sample": false,
916
- "legal_origin": "socialist",
917
  "name": "Lithuania",
918
  "notes": null,
919
  "official_languages": [
@@ -922,12 +922,12 @@
922
  "type": "country"
923
  },
924
  "lux": {
925
- "colonial_history": "dutch",
926
  "continent": "Europe",
927
  "klerman_2011_sample": true,
928
- "legal_origin": "french",
929
  "name": "Luxembourg",
930
- "notes": "Klerman codes Luxembourg as Dutch colony (Duke of Orange 1815-67, fn. 15)",
931
  "official_languages": [
932
  "lux",
933
  "fra",
@@ -936,24 +936,24 @@
936
  "type": "country"
937
  },
938
  "mad": {
939
- "colonial_history": "french",
940
  "continent": "Africa",
941
  "klerman_2011_sample": true,
942
- "legal_origin": "french",
943
  "name": "Madagascar",
944
- "notes": null,
945
  "official_languages": [
946
  "fra"
947
  ],
948
  "type": "country"
949
  },
950
  "mar": {
951
- "colonial_history": "french",
952
  "continent": "Africa",
953
  "klerman_2011_sample": true,
954
- "legal_origin": "french",
955
  "name": "Morocco",
956
- "notes": null,
957
  "official_languages": [
958
  "ara",
959
  "fra"
@@ -961,22 +961,22 @@
961
  "type": "country"
962
  },
963
  "maw": {
964
- "colonial_history": "british",
965
  "continent": "Africa",
966
  "klerman_2011_sample": true,
967
- "legal_origin": "english",
968
  "name": "Malawi",
969
- "notes": null,
970
  "official_languages": [
971
  "eng"
972
  ],
973
  "type": "country"
974
  },
975
  "mda": {
976
- "colonial_history": "soviet",
977
  "continent": "Europe",
978
  "klerman_2011_sample": false,
979
- "legal_origin": "socialist",
980
  "name": "Moldova, Republic of",
981
  "notes": null,
982
  "official_languages": [
@@ -985,22 +985,22 @@
985
  "type": "country"
986
  },
987
  "mex": {
988
- "colonial_history": "spanish",
989
  "continent": "Americas",
990
  "klerman_2011_sample": true,
991
- "legal_origin": "french",
992
  "name": "Mexico",
993
- "notes": null,
994
  "official_languages": [
995
  "esp"
996
  ],
997
  "type": "country"
998
  },
999
  "mgl": {
1000
- "colonial_history": "soviet",
1001
  "continent": "Asia",
1002
  "klerman_2011_sample": false,
1003
- "legal_origin": "socialist",
1004
  "name": "Mongolia",
1005
  "notes": null,
1006
  "official_languages": [
@@ -1009,10 +1009,10 @@
1009
  "type": "country"
1010
  },
1011
  "mkd": {
1012
- "colonial_history": "ottoman",
1013
  "continent": "Europe",
1014
  "klerman_2011_sample": false,
1015
- "legal_origin": "socialist",
1016
  "name": "North Macedonia",
1017
  "notes": null,
1018
  "official_languages": [
@@ -1022,22 +1022,22 @@
1022
  "type": "country"
1023
  },
1024
  "mli": {
1025
- "colonial_history": "french",
1026
  "continent": "Africa",
1027
  "klerman_2011_sample": true,
1028
- "legal_origin": "french",
1029
  "name": "Mali",
1030
- "notes": null,
1031
  "official_languages": [
1032
  "fra"
1033
  ],
1034
  "type": "country"
1035
  },
1036
  "mne": {
1037
- "colonial_history": "ottoman",
1038
  "continent": "Europe",
1039
  "klerman_2011_sample": false,
1040
- "legal_origin": "socialist",
1041
  "name": "Montenegro",
1042
  "notes": null,
1043
  "official_languages": [
@@ -1046,48 +1046,48 @@
1046
  "type": "country"
1047
  },
1048
  "mon": {
1049
- "colonial_history": "not_colonized",
1050
  "continent": "Europe",
1051
  "klerman_2011_sample": false,
1052
- "legal_origin": "french",
1053
  "name": "Monaco",
1054
- "notes": "Micro-state, not in Klerman sample",
1055
  "official_languages": [
1056
  "fra"
1057
  ],
1058
  "type": "country"
1059
  },
1060
  "moz": {
1061
- "colonial_history": "portuguese",
1062
  "continent": "Africa",
1063
  "klerman_2011_sample": true,
1064
- "legal_origin": "french",
1065
  "name": "Mozambique",
1066
- "notes": null,
1067
  "official_languages": [
1068
  "por"
1069
  ],
1070
  "type": "country"
1071
  },
1072
  "mri": {
1073
- "colonial_history": "british",
1074
  "continent": "Africa",
1075
  "klerman_2011_sample": true,
1076
- "legal_origin": "french",
1077
  "name": "Mauritius",
1078
- "notes": "Klerman codes as Mixed legal origin",
1079
  "official_languages": [
1080
  "eng"
1081
  ],
1082
  "type": "country"
1083
  },
1084
  "mtn": {
1085
- "colonial_history": "french",
1086
  "continent": "Africa",
1087
  "klerman_2011_sample": true,
1088
- "legal_origin": "french",
1089
  "name": "Mauritania",
1090
- "notes": null,
1091
  "official_languages": [
1092
  "ara",
1093
  "fra"
@@ -1095,58 +1095,58 @@
1095
  "type": "country"
1096
  },
1097
  "nam": {
1098
- "colonial_history": "south_african",
1099
  "continent": "Africa",
1100
  "klerman_2011_sample": true,
1101
- "legal_origin": "english",
1102
  "name": "Namibia",
1103
- "notes": "Klerman codes Namibia under German legal origin / South African colony",
1104
  "official_languages": [
1105
  "eng"
1106
  ],
1107
  "type": "country"
1108
  },
1109
  "ned": {
1110
- "colonial_history": "french",
1111
  "continent": "Europe",
1112
  "klerman_2011_sample": true,
1113
- "legal_origin": "french",
1114
  "name": "Netherlands",
1115
- "notes": "Klerman codes Netherlands as former French colony (Napoleonic)",
1116
  "official_languages": [
1117
  "ned"
1118
  ],
1119
  "type": "country"
1120
  },
1121
  "nig": {
1122
- "colonial_history": "french",
1123
  "continent": "Africa",
1124
  "klerman_2011_sample": true,
1125
- "legal_origin": "french",
1126
  "name": "Niger",
1127
- "notes": null,
1128
  "official_languages": [
1129
  "fra"
1130
  ],
1131
  "type": "country"
1132
  },
1133
  "nor": {
1134
- "colonial_history": "not_colonized",
1135
  "continent": "Europe",
1136
  "klerman_2011_sample": true,
1137
- "legal_origin": "scandinavian",
1138
  "name": "Norway",
1139
- "notes": null,
1140
  "official_languages": [
1141
  "nor"
1142
  ],
1143
  "type": "country"
1144
  },
1145
  "oau": {
1146
- "colonial_history": "other",
1147
  "continent": "Africa",
1148
  "klerman_2011_sample": false,
1149
- "legal_origin": "other",
1150
  "name": "African Union",
1151
  "notes": null,
1152
  "official_languages": [
@@ -1160,12 +1160,12 @@
1160
  "type": "supranational"
1161
  },
1162
  "pak": {
1163
- "colonial_history": "british",
1164
  "continent": "Asia",
1165
  "klerman_2011_sample": true,
1166
- "legal_origin": "english",
1167
  "name": "Pakistan",
1168
- "notes": null,
1169
  "official_languages": [
1170
  "urd",
1171
  "eng"
@@ -1173,24 +1173,24 @@
1173
  "type": "country"
1174
  },
1175
  "per": {
1176
- "colonial_history": "spanish",
1177
  "continent": "Americas",
1178
  "klerman_2011_sample": true,
1179
- "legal_origin": "french",
1180
  "name": "Peru",
1181
- "notes": null,
1182
  "official_languages": [
1183
  "esp"
1184
  ],
1185
  "type": "country"
1186
  },
1187
  "phi": {
1188
- "colonial_history": "american",
1189
  "continent": "Asia",
1190
  "klerman_2011_sample": true,
1191
- "legal_origin": "french",
1192
  "name": "Philippines",
1193
- "notes": "Klerman Table 2 places Philippines under German legal origin / US colony (close call per fn. 12); we use La Porta default 'french' for legal_origin",
1194
  "official_languages": [
1195
  "tgl",
1196
  "eng"
@@ -1198,60 +1198,60 @@
1198
  "type": "country"
1199
  },
1200
  "ple": {
1201
- "colonial_history": "ottoman",
1202
  "continent": "Asia",
1203
  "klerman_2011_sample": false,
1204
- "legal_origin": "english",
1205
  "name": "Palestine",
1206
- "notes": "British Mandate origin; mixed legal system today; not in Klerman sample",
1207
  "official_languages": [
1208
  "ara"
1209
  ],
1210
  "type": "country"
1211
  },
1212
  "pol": {
1213
- "colonial_history": "not_colonized",
1214
  "continent": "Europe",
1215
  "klerman_2011_sample": false,
1216
- "legal_origin": "socialist",
1217
  "name": "Poland",
1218
- "notes": "Soviet sphere 1945-89 but not USSR formal colony; coding 'not_colonized' is conservative",
1219
  "official_languages": [
1220
  "pol"
1221
  ],
1222
  "type": "country"
1223
  },
1224
  "por": {
1225
- "colonial_history": "not_colonized",
1226
  "continent": "Europe",
1227
  "klerman_2011_sample": true,
1228
- "legal_origin": "french",
1229
  "name": "Portugal",
1230
- "notes": "Same rationale as Spain (Klerman fn. 15)",
1231
  "official_languages": [
1232
  "por"
1233
  ],
1234
  "type": "country"
1235
  },
1236
  "rom": {
1237
- "colonial_history": "russian",
1238
  "continent": "Europe",
1239
  "klerman_2011_sample": true,
1240
- "legal_origin": "socialist",
1241
  "name": "Romania",
1242
- "notes": "Klerman explicitly codes Romania as French civil law / Russian colony",
1243
  "official_languages": [
1244
  "rom"
1245
  ],
1246
  "type": "country"
1247
  },
1248
  "rsa": {
1249
- "colonial_history": "british",
1250
  "continent": "Africa",
1251
  "klerman_2011_sample": true,
1252
- "legal_origin": "english",
1253
  "name": "South Africa",
1254
- "notes": "Mixed legal origin in Klerman (Roman-Dutch + English); classified English per La Porta",
1255
  "official_languages": [
1256
  "eng",
1257
  "afr",
@@ -1268,24 +1268,24 @@
1268
  "type": "country"
1269
  },
1270
  "rus": {
1271
- "colonial_history": "not_colonized",
1272
  "continent": "Europe",
1273
  "klerman_2011_sample": false,
1274
- "legal_origin": "socialist",
1275
  "name": "Russia",
1276
- "notes": "Was the colonizer",
1277
  "official_languages": [
1278
  "rus"
1279
  ],
1280
  "type": "country"
1281
  },
1282
  "rwa": {
1283
- "colonial_history": "belgian",
1284
  "continent": "Africa",
1285
  "klerman_2011_sample": true,
1286
- "legal_origin": "french",
1287
  "name": "Rwanda",
1288
- "notes": null,
1289
  "official_languages": [
1290
  "eng",
1291
  "fra",
@@ -1294,24 +1294,24 @@
1294
  "type": "country"
1295
  },
1296
  "sen": {
1297
- "colonial_history": "french",
1298
  "continent": "Africa",
1299
  "klerman_2011_sample": true,
1300
- "legal_origin": "french",
1301
  "name": "Senegal",
1302
- "notes": null,
1303
  "official_languages": [
1304
  "fra"
1305
  ],
1306
  "type": "country"
1307
  },
1308
  "sey": {
1309
- "colonial_history": "british",
1310
  "continent": "Africa",
1311
  "klerman_2011_sample": true,
1312
- "legal_origin": "french",
1313
  "name": "Seychelles",
1314
- "notes": "Klerman codes as Mixed legal origin",
1315
  "official_languages": [
1316
  "eng",
1317
  "fra"
@@ -1319,10 +1319,10 @@
1319
  "type": "country"
1320
  },
1321
  "slo": {
1322
- "colonial_history": "not_colonized",
1323
  "continent": "Europe",
1324
  "klerman_2011_sample": false,
1325
- "legal_origin": "socialist",
1326
  "name": "Slovenia",
1327
  "notes": null,
1328
  "official_languages": [
@@ -1331,10 +1331,10 @@
1331
  "type": "country"
1332
  },
1333
  "srb": {
1334
- "colonial_history": "ottoman",
1335
  "continent": "Europe",
1336
  "klerman_2011_sample": false,
1337
- "legal_origin": "socialist",
1338
  "name": "Serbia",
1339
  "notes": null,
1340
  "official_languages": [
@@ -1343,12 +1343,12 @@
1343
  "type": "country"
1344
  },
1345
  "sui": {
1346
- "colonial_history": "not_colonized",
1347
  "continent": "Europe",
1348
  "klerman_2011_sample": true,
1349
- "legal_origin": "german",
1350
  "name": "Switzerland",
1351
- "notes": null,
1352
  "official_languages": [
1353
  "ger",
1354
  "fra",
@@ -1357,10 +1357,10 @@
1357
  "type": "country"
1358
  },
1359
  "svk": {
1360
- "colonial_history": "not_colonized",
1361
  "continent": "Europe",
1362
  "klerman_2011_sample": false,
1363
- "legal_origin": "socialist",
1364
  "name": "Slovakia",
1365
  "notes": null,
1366
  "official_languages": [
@@ -1369,22 +1369,22 @@
1369
  "type": "country"
1370
  },
1371
  "swe": {
1372
- "colonial_history": "not_colonized",
1373
  "continent": "Europe",
1374
  "klerman_2011_sample": true,
1375
- "legal_origin": "scandinavian",
1376
  "name": "Sweden",
1377
- "notes": null,
1378
  "official_languages": [
1379
  "swe"
1380
  ],
1381
  "type": "country"
1382
  },
1383
  "tjk": {
1384
- "colonial_history": "soviet",
1385
  "continent": "Asia",
1386
  "klerman_2011_sample": false,
1387
- "legal_origin": "socialist",
1388
  "name": "Tajikistan",
1389
  "notes": null,
1390
  "official_languages": [
@@ -1393,36 +1393,36 @@
1393
  "type": "country"
1394
  },
1395
  "tog": {
1396
- "colonial_history": "french",
1397
  "continent": "Africa",
1398
  "klerman_2011_sample": true,
1399
- "legal_origin": "french",
1400
  "name": "Togo",
1401
- "notes": null,
1402
  "official_languages": [
1403
  "fra"
1404
  ],
1405
  "type": "country"
1406
  },
1407
  "tpe": {
1408
- "colonial_history": "japanese",
1409
  "continent": "Asia",
1410
  "klerman_2011_sample": true,
1411
- "legal_origin": "german",
1412
  "name": "Taiwan/\"Chinese Taipei\"",
1413
- "notes": null,
1414
  "official_languages": [
1415
  "chn"
1416
  ],
1417
  "type": "country"
1418
  },
1419
  "tun": {
1420
- "colonial_history": "french",
1421
  "continent": "Africa",
1422
  "klerman_2011_sample": false,
1423
- "legal_origin": "french",
1424
  "name": "Tunisia",
1425
- "notes": "Standard French colony coding; not explicitly verified in Table 2 image",
1426
  "official_languages": [
1427
  "ara",
1428
  "fra"
@@ -1430,24 +1430,24 @@
1430
  "type": "country"
1431
  },
1432
  "tur": {
1433
- "colonial_history": "not_colonized",
1434
  "continent": "Europe",
1435
  "klerman_2011_sample": true,
1436
- "legal_origin": "french",
1437
  "name": "Türkiye",
1438
- "notes": "Ottoman successor; adopted Swiss/Italian civil/penal codes",
1439
  "official_languages": [
1440
  "tur"
1441
  ],
1442
  "type": "country"
1443
  },
1444
  "uga": {
1445
- "colonial_history": "british",
1446
  "continent": "Africa",
1447
  "klerman_2011_sample": true,
1448
- "legal_origin": "english",
1449
  "name": "Uganda",
1450
- "notes": null,
1451
  "official_languages": [
1452
  "eng",
1453
  "swa"
@@ -1455,10 +1455,10 @@
1455
  "type": "country"
1456
  },
1457
  "ukr": {
1458
- "colonial_history": "soviet",
1459
  "continent": "Europe",
1460
  "klerman_2011_sample": false,
1461
- "legal_origin": "socialist",
1462
  "name": "Ukraine",
1463
  "notes": null,
1464
  "official_languages": [
@@ -1467,48 +1467,48 @@
1467
  "type": "country"
1468
  },
1469
  "usa": {
1470
- "colonial_history": "british",
1471
  "continent": "Americas",
1472
  "klerman_2011_sample": true,
1473
- "legal_origin": "english",
1474
  "name": "United States of America",
1475
- "notes": null,
1476
  "official_languages": [
1477
  "eng"
1478
  ],
1479
  "type": "country"
1480
  },
1481
  "yem": {
1482
- "colonial_history": "ottoman",
1483
  "continent": "Asia",
1484
  "klerman_2011_sample": false,
1485
- "legal_origin": "english",
1486
  "name": "Yemen",
1487
- "notes": "Klerman fn. 10: coded as Islamic Law; excluded due to no GDP data",
1488
  "official_languages": [
1489
  "ara"
1490
  ],
1491
  "type": "country"
1492
  },
1493
  "zam": {
1494
- "colonial_history": "british",
1495
  "continent": "Africa",
1496
  "klerman_2011_sample": true,
1497
- "legal_origin": "english",
1498
  "name": "Zambia",
1499
- "notes": null,
1500
  "official_languages": [
1501
  "eng"
1502
  ],
1503
  "type": "country"
1504
  },
1505
  "zim": {
1506
- "colonial_history": "british",
1507
  "continent": "Africa",
1508
  "klerman_2011_sample": true,
1509
- "legal_origin": "english",
1510
  "name": "Zimbabwe",
1511
- "notes": "Klerman codes as Mixed legal origin / former British colony",
1512
  "official_languages": [
1513
  "eng"
1514
  ],
 
1
  {
2
  "alb": {
3
+ "colonial_history": "",
4
  "continent": "Europe",
5
  "klerman_2011_sample": false,
6
+ "legal_origin": "",
7
  "name": "Albania",
8
  "notes": null,
9
  "official_languages": [
 
12
  "type": "country"
13
  },
14
  "alg": {
15
+ "colonial_history": "French",
16
  "continent": "Africa",
17
  "klerman_2011_sample": true,
18
+ "legal_origin": "French",
19
  "name": "Algeria",
20
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
21
  "official_languages": [
22
  "ara",
23
  "fra"
 
25
  "type": "country"
26
  },
27
  "and": {
28
+ "colonial_history": "",
29
  "continent": "Europe",
30
  "klerman_2011_sample": false,
31
+ "legal_origin": "",
32
  "name": "Andorra",
33
+ "notes": null,
34
  "official_languages": [
35
  "cat"
36
  ],
37
  "type": "country"
38
  },
39
  "ang": {
40
+ "colonial_history": "",
41
  "continent": "Africa",
42
  "klerman_2011_sample": false,
43
+ "legal_origin": "",
44
  "name": "Angola",
45
+ "notes": null,
46
  "official_languages": [
47
  "por"
48
  ],
49
  "type": "country"
50
  },
51
  "arg": {
52
+ "colonial_history": "Other French",
53
  "continent": "Americas",
54
  "klerman_2011_sample": true,
55
+ "legal_origin": "French",
56
  "name": "Argentina",
57
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
58
  "official_languages": [
59
  "esp"
60
  ],
61
  "type": "country"
62
  },
63
  "arm": {
64
+ "colonial_history": "",
65
  "continent": "Europe",
66
  "klerman_2011_sample": false,
67
+ "legal_origin": "",
68
  "name": "Armenia",
69
  "notes": null,
70
  "official_languages": [
 
73
  "type": "country"
74
  },
75
  "aut": {
76
+ "colonial_history": "Not Colonized",
77
  "continent": "Europe",
78
  "klerman_2011_sample": true,
79
+ "legal_origin": "German",
80
  "name": "Austria",
81
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
82
  "official_languages": [
83
  "ger"
84
  ],
85
  "type": "country"
86
  },
87
  "aze": {
88
+ "colonial_history": "",
89
  "continent": "Europe",
90
  "klerman_2011_sample": false,
91
+ "legal_origin": "",
92
  "name": "Azerbaijan",
93
  "notes": null,
94
  "official_languages": [
 
97
  "type": "country"
98
  },
99
  "bar": {
100
+ "colonial_history": "British",
101
  "continent": "Americas",
102
  "klerman_2011_sample": true,
103
+ "legal_origin": "Common",
104
  "name": "Barbados",
105
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
106
  "official_languages": [
107
  "eng"
108
  ],
109
  "type": "country"
110
  },
111
  "bel": {
112
+ "colonial_history": "French",
113
  "continent": "Europe",
114
  "klerman_2011_sample": true,
115
+ "legal_origin": "French",
116
  "name": "Belgium",
117
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
118
  "official_languages": [
119
  "ned",
120
  "fra",
 
123
  "type": "country"
124
  },
125
  "ben": {
126
+ "colonial_history": "French",
127
  "continent": "Africa",
128
  "klerman_2011_sample": true,
129
+ "legal_origin": "French",
130
  "name": "Benin",
131
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
132
  "official_languages": [
133
  "fra"
134
  ],
135
  "type": "country"
136
  },
137
  "bih": {
138
+ "colonial_history": "",
139
  "continent": "Europe",
140
  "klerman_2011_sample": false,
141
+ "legal_origin": "",
142
  "name": "Bosnia and Herzegovina",
143
  "notes": null,
144
  "official_languages": [
 
149
  "type": "country"
150
  },
151
  "biz": {
152
+ "colonial_history": "",
153
  "continent": "Americas",
154
  "klerman_2011_sample": false,
155
+ "legal_origin": "",
156
  "name": "Belize",
157
+ "notes": null,
158
  "official_languages": [
159
  "eng"
160
  ],
161
  "type": "country"
162
  },
163
  "blr": {
164
+ "colonial_history": "",
165
  "continent": "Europe",
166
  "klerman_2011_sample": false,
167
+ "legal_origin": "",
168
  "name": "Belarus",
169
  "notes": null,
170
  "official_languages": [
 
174
  "type": "country"
175
  },
176
  "bol": {
177
+ "colonial_history": "Other French",
178
  "continent": "Americas",
179
  "klerman_2011_sample": true,
180
+ "legal_origin": "French",
181
  "name": "Bolivia",
182
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
183
  "official_languages": [
184
  "esp"
185
  ],
186
  "type": "country"
187
  },
188
  "bra": {
189
+ "colonial_history": "Other French",
190
  "continent": "Americas",
191
  "klerman_2011_sample": true,
192
+ "legal_origin": "French",
193
  "name": "Brazil",
194
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
195
  "official_languages": [
196
  "por"
197
  ],
198
  "type": "country"
199
  },
200
  "brn": {
201
+ "colonial_history": "",
202
  "continent": "Asia",
203
  "klerman_2011_sample": false,
204
+ "legal_origin": "",
205
  "name": "Bahrain",
206
+ "notes": null,
207
  "official_languages": [
208
  "ara"
209
  ],
210
  "type": "country"
211
  },
212
  "bul": {
213
+ "colonial_history": "",
214
  "continent": "Europe",
215
  "klerman_2011_sample": false,
216
+ "legal_origin": "",
217
  "name": "Bulgaria",
218
+ "notes": null,
219
  "official_languages": [
220
  "bul"
221
  ],
222
  "type": "country"
223
  },
224
  "bur": {
225
+ "colonial_history": "French",
226
  "continent": "Africa",
227
  "klerman_2011_sample": true,
228
+ "legal_origin": "French",
229
  "name": "Burkina Faso",
230
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
231
  "official_languages": [
232
  "fra"
233
  ],
234
  "type": "country"
235
  },
236
  "caf": {
237
+ "colonial_history": "French",
238
  "continent": "Africa",
239
  "klerman_2011_sample": true,
240
+ "legal_origin": "French",
241
  "name": "Central African Republic",
242
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
243
  "official_languages": [
244
  "fra"
245
  ],
246
  "type": "country"
247
  },
248
  "cam": {
249
+ "colonial_history": "",
250
  "continent": "Asia",
251
  "klerman_2011_sample": false,
252
+ "legal_origin": "",
253
  "name": "Cambodia",
254
  "notes": null,
255
  "official_languages": [
 
258
  "type": "country"
259
  },
260
  "can": {
261
+ "colonial_history": "British",
262
  "continent": "Americas",
263
  "klerman_2011_sample": true,
264
+ "legal_origin": "Common",
265
  "name": "Canada",
266
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
267
  "official_languages": [
268
  "eng",
269
  "fra"
 
271
  "type": "country"
272
  },
273
  "car": {
274
+ "colonial_history": "",
275
  "continent": "Americas",
276
  "klerman_2011_sample": false,
277
+ "legal_origin": "",
278
  "name": "Caribbean Community",
279
+ "notes": null,
280
  "official_languages": [
281
  "eng"
282
  ],
283
  "type": "supranational"
284
  },
285
  "cgo": {
286
+ "colonial_history": "French",
287
  "continent": "Africa",
288
  "klerman_2011_sample": true,
289
+ "legal_origin": "French",
290
  "name": "Congo-Brazzaville",
291
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
292
  "official_languages": [
293
  "fra"
294
  ],
295
  "type": "country"
296
  },
297
  "cha": {
298
+ "colonial_history": "French",
299
  "continent": "Africa",
300
  "klerman_2011_sample": true,
301
+ "legal_origin": "French",
302
  "name": "Chad",
303
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
304
  "official_languages": [
305
  "fra",
306
  "ara"
 
308
  "type": "country"
309
  },
310
  "chi": {
311
+ "colonial_history": "Other French",
312
  "continent": "Americas",
313
  "klerman_2011_sample": true,
314
+ "legal_origin": "French",
315
  "name": "Chile",
316
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
317
  "official_languages": [
318
  "esp"
319
  ],
320
  "type": "country"
321
  },
322
  "cmr": {
323
+ "colonial_history": "French",
324
  "continent": "Africa",
325
  "klerman_2011_sample": true,
326
+ "legal_origin": "French",
327
  "name": "Cameroon",
328
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
329
  "official_languages": [
330
  "fra",
331
  "eng"
 
333
  "type": "country"
334
  },
335
  "cod": {
336
+ "colonial_history": "Other French",
337
  "continent": "Africa",
338
  "klerman_2011_sample": true,
339
+ "legal_origin": "French",
340
  "name": "Congo, Democratic Republic (Kinshasa)",
341
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
342
  "official_languages": [
343
  "fra"
344
  ],
345
  "type": "country"
346
  },
347
  "col": {
348
+ "colonial_history": "Other French",
349
  "continent": "Americas",
350
  "klerman_2011_sample": true,
351
+ "legal_origin": "French",
352
  "name": "Colombia",
353
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
354
  "official_languages": [
355
  "esp"
356
  ],
357
  "type": "country"
358
  },
359
  "crc": {
360
+ "colonial_history": "Other French",
361
  "continent": "Americas",
362
  "klerman_2011_sample": true,
363
+ "legal_origin": "French",
364
  "name": "Costa Rica",
365
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
366
  "official_languages": [
367
  "esp"
368
  ],
369
  "type": "country"
370
  },
371
  "cro": {
372
+ "colonial_history": "",
373
  "continent": "Europe",
374
  "klerman_2011_sample": false,
375
+ "legal_origin": "",
376
  "name": "Croatia",
377
  "notes": null,
378
  "official_languages": [
 
381
  "type": "country"
382
  },
383
  "cyp": {
384
+ "colonial_history": "British",
385
  "continent": "Europe",
386
  "klerman_2011_sample": true,
387
+ "legal_origin": "Mixed",
388
  "name": "Cyprus",
389
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
390
  "official_languages": [
391
  "gre",
392
  "tur"
 
394
  "type": "country"
395
  },
396
  "cze": {
397
+ "colonial_history": "",
398
  "continent": "Europe",
399
  "klerman_2011_sample": false,
400
+ "legal_origin": "",
401
  "name": "Czech Republic",
402
  "notes": null,
403
  "official_languages": [
 
406
  "type": "country"
407
  },
408
  "den": {
409
+ "colonial_history": "Not Colonized",
410
  "continent": "Europe",
411
  "klerman_2011_sample": true,
412
+ "legal_origin": "Scandinavia",
413
  "name": "Denmark",
414
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
415
  "official_languages": [
416
  "den"
417
  ],
418
  "type": "country"
419
  },
420
  "dma": {
421
+ "colonial_history": "",
422
  "continent": "Americas",
423
  "klerman_2011_sample": false,
424
+ "legal_origin": "",
425
  "name": "Dominica",
426
+ "notes": null,
427
  "official_languages": [
428
  "eng"
429
  ],
430
  "type": "country"
431
  },
432
  "dom": {
433
+ "colonial_history": "Other French",
434
  "continent": "Americas",
435
  "klerman_2011_sample": true,
436
+ "legal_origin": "French",
437
  "name": "Dominican Republic",
438
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
439
  "official_languages": [
440
  "esp"
441
  ],
442
  "type": "country"
443
  },
444
  "ech": {
445
+ "colonial_history": "",
446
  "continent": "Europe",
447
  "klerman_2011_sample": false,
448
+ "legal_origin": "",
449
  "name": "Council of Europe",
450
+ "notes": null,
451
  "official_languages": [
452
  "eng",
453
  "fra"
 
455
  "type": "supranational"
456
  },
457
  "ecj": {
458
+ "colonial_history": "",
459
  "continent": "Europe",
460
  "klerman_2011_sample": false,
461
+ "legal_origin": "",
462
  "name": "European Union, Court of Justice",
463
+ "notes": null,
464
  "official_languages": [
465
  "eng",
466
  "fra",
 
490
  "type": "supranational"
491
  },
492
  "ecu": {
493
+ "colonial_history": "Other French",
494
  "continent": "Americas",
495
  "klerman_2011_sample": true,
496
+ "legal_origin": "French",
497
  "name": "Ecuador",
498
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
499
  "official_languages": [
500
  "esp"
501
  ],
502
  "type": "country"
503
  },
504
  "egy": {
505
+ "colonial_history": "Other French",
506
  "continent": "Africa",
507
  "klerman_2011_sample": true,
508
+ "legal_origin": "French",
509
  "name": "Egypt",
510
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
511
  "official_languages": [
512
  "ara"
513
  ],
514
  "type": "country"
515
  },
516
  "esp": {
517
+ "colonial_history": "Not Colonized",
518
  "continent": "Europe",
519
  "klerman_2011_sample": true,
520
+ "legal_origin": "French",
521
  "name": "Spain",
522
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
523
  "official_languages": [
524
  "esp",
525
  "cat"
 
527
  "type": "country"
528
  },
529
  "est": {
530
+ "colonial_history": "",
531
  "continent": "Europe",
532
  "klerman_2011_sample": false,
533
+ "legal_origin": "",
534
  "name": "Estonia",
535
  "notes": null,
536
  "official_languages": [
 
539
  "type": "country"
540
  },
541
  "eth": {
542
+ "colonial_history": "Not Colonized",
543
  "continent": "Africa",
544
  "klerman_2011_sample": true,
545
+ "legal_origin": "French",
546
  "name": "Ethiopia",
547
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
548
  "official_languages": [
549
  "amh"
550
  ],
551
  "type": "country"
552
  },
553
  "fin": {
554
+ "colonial_history": "Other",
555
  "continent": "Europe",
556
  "klerman_2011_sample": true,
557
+ "legal_origin": "Scandinavia",
558
  "name": "Finland",
559
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
560
  "official_languages": [
561
  "fin",
562
  "swe"
 
564
  "type": "country"
565
  },
566
  "fra": {
567
+ "colonial_history": "Not Colonized",
568
  "continent": "Europe",
569
  "klerman_2011_sample": true,
570
+ "legal_origin": "French",
571
  "name": "France",
572
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
573
  "official_languages": [
574
  "fra"
575
  ],
576
  "type": "country"
577
  },
578
  "gab": {
579
+ "colonial_history": "French",
580
  "continent": "Africa",
581
  "klerman_2011_sample": true,
582
+ "legal_origin": "French",
583
  "name": "Gabon",
584
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
585
  "official_languages": [
586
  "fra"
587
  ],
588
  "type": "country"
589
  },
590
  "gbr": {
591
+ "colonial_history": "Not Colonized",
592
  "continent": "Europe",
593
  "klerman_2011_sample": true,
594
+ "legal_origin": "Common",
595
  "name": "United Kingdom",
596
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
597
  "official_languages": [
598
  "eng"
599
  ],
600
  "type": "country"
601
  },
602
  "geo": {
603
+ "colonial_history": "",
604
  "continent": "Europe",
605
  "klerman_2011_sample": false,
606
+ "legal_origin": "",
607
  "name": "Georgia",
608
  "notes": null,
609
  "official_languages": [
 
612
  "type": "country"
613
  },
614
  "ger": {
615
+ "colonial_history": "",
616
  "continent": "Europe",
617
  "klerman_2011_sample": false,
618
+ "legal_origin": "",
619
  "name": "Germany",
620
+ "notes": null,
621
  "official_languages": [
622
  "ger"
623
  ],
624
  "type": "country"
625
  },
626
  "gha": {
627
+ "colonial_history": "British",
628
  "continent": "Africa",
629
  "klerman_2011_sample": true,
630
+ "legal_origin": "Common",
631
  "name": "Ghana",
632
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
633
  "official_languages": [
634
  "eng"
635
  ],
636
  "type": "country"
637
  },
638
  "gre": {
639
+ "colonial_history": "Other French",
640
  "continent": "Europe",
641
  "klerman_2011_sample": true,
642
+ "legal_origin": "French",
643
  "name": "Greece",
644
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
645
  "official_languages": [
646
  "gre"
647
  ],
648
  "type": "country"
649
  },
650
  "gua": {
651
+ "colonial_history": "Other French",
652
  "continent": "Americas",
653
  "klerman_2011_sample": true,
654
+ "legal_origin": "French",
655
  "name": "Guatemala",
656
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
657
  "official_languages": [
658
  "esp"
659
  ],
660
  "type": "country"
661
  },
662
  "guy": {
663
+ "colonial_history": "",
664
  "continent": "Americas",
665
  "klerman_2011_sample": false,
666
+ "legal_origin": "",
667
  "name": "Guyana",
668
+ "notes": null,
669
  "official_languages": [
670
  "eng"
671
  ],
672
  "type": "country"
673
  },
674
  "hai": {
675
+ "colonial_history": "French",
676
  "continent": "Americas",
677
  "klerman_2011_sample": true,
678
+ "legal_origin": "French",
679
  "name": "Haiti",
680
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
681
  "official_languages": [
682
  "fra"
683
  ],
684
  "type": "country"
685
  },
686
  "hun": {
687
+ "colonial_history": "",
688
  "continent": "Europe",
689
  "klerman_2011_sample": false,
690
+ "legal_origin": "",
691
  "name": "Hungary",
692
  "notes": null,
693
  "official_languages": [
 
696
  "type": "country"
697
  },
698
  "iac": {
699
+ "colonial_history": "",
700
  "continent": "Americas",
701
  "klerman_2011_sample": false,
702
+ "legal_origin": "",
703
  "name": "Organisation of American States",
704
+ "notes": null,
705
  "official_languages": [
706
  "esp",
707
  "eng",
 
711
  "type": "supranational"
712
  },
713
  "ina": {
714
+ "colonial_history": "Other French",
715
  "continent": "Asia",
716
  "klerman_2011_sample": true,
717
+ "legal_origin": "French",
718
  "name": "Indonesia",
719
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
720
  "official_languages": [
721
  "ind"
722
  ],
723
  "type": "country"
724
  },
725
  "ind": {
726
+ "colonial_history": "British",
727
  "continent": "Asia",
728
  "klerman_2011_sample": true,
729
+ "legal_origin": "Common",
730
  "name": "India",
731
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
732
  "official_languages": [
733
  "hin",
734
  "eng"
 
736
  "type": "country"
737
  },
738
  "irl": {
739
+ "colonial_history": "British",
740
  "continent": "Europe",
741
  "klerman_2011_sample": true,
742
+ "legal_origin": "Common",
743
  "name": "Ireland",
744
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
745
  "official_languages": [
746
  "gle",
747
  "eng"
 
749
  "type": "country"
750
  },
751
  "isl": {
752
+ "colonial_history": "Other",
753
  "continent": "Europe",
754
  "klerman_2011_sample": true,
755
+ "legal_origin": "Scandinavia",
756
  "name": "Iceland",
757
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
758
  "official_languages": [
759
  "ice"
760
  ],
761
  "type": "country"
762
  },
763
  "isr": {
764
+ "colonial_history": "Other French",
765
  "continent": "Asia",
766
  "klerman_2011_sample": true,
767
+ "legal_origin": "Mixed",
768
  "name": "Israel",
769
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
770
  "official_languages": [
771
  "heb",
772
  "ara"
 
774
  "type": "country"
775
  },
776
  "ita": {
777
+ "colonial_history": "French",
778
  "continent": "Europe",
779
  "klerman_2011_sample": true,
780
+ "legal_origin": "French",
781
  "name": "Italy",
782
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
783
  "official_languages": [
784
  "ita"
785
  ],
786
  "type": "country"
787
  },
788
  "jor": {
789
+ "colonial_history": "Other French",
790
  "continent": "Asia",
791
  "klerman_2011_sample": true,
792
+ "legal_origin": "Mixed",
793
  "name": "Jordan",
794
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
795
  "official_languages": [
796
  "ara"
797
  ],
798
  "type": "country"
799
  },
800
  "jpn": {
801
+ "colonial_history": "Not Colonized",
802
  "continent": "Asia",
803
  "klerman_2011_sample": true,
804
+ "legal_origin": "German",
805
  "name": "Japan",
806
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
807
  "official_languages": [
808
  "jpn"
809
  ],
810
  "type": "country"
811
  },
812
  "kaz": {
813
+ "colonial_history": "",
814
  "continent": "Asia",
815
  "klerman_2011_sample": false,
816
+ "legal_origin": "",
817
  "name": "Kazakhstan",
818
  "notes": null,
819
  "official_languages": [
 
823
  "type": "country"
824
  },
825
  "kgz": {
826
+ "colonial_history": "",
827
  "continent": "Asia",
828
  "klerman_2011_sample": false,
829
+ "legal_origin": "",
830
  "name": "Kyrgyzstan",
831
  "notes": null,
832
  "official_languages": [
 
836
  "type": "country"
837
  },
838
  "kor": {
839
+ "colonial_history": "Other",
840
  "continent": "Asia",
841
  "klerman_2011_sample": true,
842
+ "legal_origin": "German",
843
  "name": "Korea, Republic",
844
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
845
  "official_languages": [
846
  "kor"
847
  ],
848
  "type": "country"
849
  },
850
  "kos": {
851
+ "colonial_history": "",
852
  "continent": "Europe",
853
  "klerman_2011_sample": false,
854
+ "legal_origin": "",
855
  "name": "Kosovo",
856
  "notes": null,
857
  "official_languages": [
 
861
  "type": "country"
862
  },
863
  "lat": {
864
+ "colonial_history": "",
865
  "continent": "Europe",
866
  "klerman_2011_sample": false,
867
+ "legal_origin": "",
868
  "name": "Latvia",
869
  "notes": null,
870
  "official_languages": [
 
873
  "type": "country"
874
  },
875
  "les": {
876
+ "colonial_history": "British",
877
  "continent": "Africa",
878
  "klerman_2011_sample": true,
879
+ "legal_origin": "Mixed",
880
  "name": "Lesotho",
881
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
882
  "official_languages": [
883
  "eng",
884
  "sot"
 
886
  "type": "country"
887
  },
888
  "lib": {
889
+ "colonial_history": "",
890
  "continent": "Asia",
891
  "klerman_2011_sample": false,
892
+ "legal_origin": "",
893
  "name": "Lebanon",
894
+ "notes": null,
895
  "official_languages": [
896
  "ara"
897
  ],
898
  "type": "country"
899
  },
900
  "lie": {
901
+ "colonial_history": "",
902
  "continent": "Europe",
903
  "klerman_2011_sample": false,
904
+ "legal_origin": "",
905
  "name": "Liechtenstein",
906
+ "notes": null,
907
  "official_languages": [
908
  "ger"
909
  ],
910
  "type": "country"
911
  },
912
  "ltu": {
913
+ "colonial_history": "",
914
  "continent": "Europe",
915
  "klerman_2011_sample": false,
916
+ "legal_origin": "",
917
  "name": "Lithuania",
918
  "notes": null,
919
  "official_languages": [
 
922
  "type": "country"
923
  },
924
  "lux": {
925
+ "colonial_history": "Other French",
926
  "continent": "Europe",
927
  "klerman_2011_sample": true,
928
+ "legal_origin": "French",
929
  "name": "Luxembourg",
930
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
931
  "official_languages": [
932
  "lux",
933
  "fra",
 
936
  "type": "country"
937
  },
938
  "mad": {
939
+ "colonial_history": "French",
940
  "continent": "Africa",
941
  "klerman_2011_sample": true,
942
+ "legal_origin": "French",
943
  "name": "Madagascar",
944
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
945
  "official_languages": [
946
  "fra"
947
  ],
948
  "type": "country"
949
  },
950
  "mar": {
951
+ "colonial_history": "French",
952
  "continent": "Africa",
953
  "klerman_2011_sample": true,
954
+ "legal_origin": "French",
955
  "name": "Morocco",
956
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
957
  "official_languages": [
958
  "ara",
959
  "fra"
 
961
  "type": "country"
962
  },
963
  "maw": {
964
+ "colonial_history": "British",
965
  "continent": "Africa",
966
  "klerman_2011_sample": true,
967
+ "legal_origin": "Common",
968
  "name": "Malawi",
969
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
970
  "official_languages": [
971
  "eng"
972
  ],
973
  "type": "country"
974
  },
975
  "mda": {
976
+ "colonial_history": "",
977
  "continent": "Europe",
978
  "klerman_2011_sample": false,
979
+ "legal_origin": "",
980
  "name": "Moldova, Republic of",
981
  "notes": null,
982
  "official_languages": [
 
985
  "type": "country"
986
  },
987
  "mex": {
988
+ "colonial_history": "Other French",
989
  "continent": "Americas",
990
  "klerman_2011_sample": true,
991
+ "legal_origin": "French",
992
  "name": "Mexico",
993
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
994
  "official_languages": [
995
  "esp"
996
  ],
997
  "type": "country"
998
  },
999
  "mgl": {
1000
+ "colonial_history": "",
1001
  "continent": "Asia",
1002
  "klerman_2011_sample": false,
1003
+ "legal_origin": "",
1004
  "name": "Mongolia",
1005
  "notes": null,
1006
  "official_languages": [
 
1009
  "type": "country"
1010
  },
1011
  "mkd": {
1012
+ "colonial_history": "",
1013
  "continent": "Europe",
1014
  "klerman_2011_sample": false,
1015
+ "legal_origin": "",
1016
  "name": "North Macedonia",
1017
  "notes": null,
1018
  "official_languages": [
 
1022
  "type": "country"
1023
  },
1024
  "mli": {
1025
+ "colonial_history": "French",
1026
  "continent": "Africa",
1027
  "klerman_2011_sample": true,
1028
+ "legal_origin": "French",
1029
  "name": "Mali",
1030
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
1031
  "official_languages": [
1032
  "fra"
1033
  ],
1034
  "type": "country"
1035
  },
1036
  "mne": {
1037
+ "colonial_history": "",
1038
  "continent": "Europe",
1039
  "klerman_2011_sample": false,
1040
+ "legal_origin": "",
1041
  "name": "Montenegro",
1042
  "notes": null,
1043
  "official_languages": [
 
1046
  "type": "country"
1047
  },
1048
  "mon": {
1049
+ "colonial_history": "",
1050
  "continent": "Europe",
1051
  "klerman_2011_sample": false,
1052
+ "legal_origin": "",
1053
  "name": "Monaco",
1054
+ "notes": null,
1055
  "official_languages": [
1056
  "fra"
1057
  ],
1058
  "type": "country"
1059
  },
1060
  "moz": {
1061
+ "colonial_history": "Other French",
1062
  "continent": "Africa",
1063
  "klerman_2011_sample": true,
1064
+ "legal_origin": "French",
1065
  "name": "Mozambique",
1066
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
1067
  "official_languages": [
1068
  "por"
1069
  ],
1070
  "type": "country"
1071
  },
1072
  "mri": {
1073
+ "colonial_history": "British",
1074
  "continent": "Africa",
1075
  "klerman_2011_sample": true,
1076
+ "legal_origin": "Mixed",
1077
  "name": "Mauritius",
1078
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
1079
  "official_languages": [
1080
  "eng"
1081
  ],
1082
  "type": "country"
1083
  },
1084
  "mtn": {
1085
+ "colonial_history": "French",
1086
  "continent": "Africa",
1087
  "klerman_2011_sample": true,
1088
+ "legal_origin": "French",
1089
  "name": "Mauritania",
1090
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
1091
  "official_languages": [
1092
  "ara",
1093
  "fra"
 
1095
  "type": "country"
1096
  },
1097
  "nam": {
1098
+ "colonial_history": "Other",
1099
  "continent": "Africa",
1100
  "klerman_2011_sample": true,
1101
+ "legal_origin": "Mixed",
1102
  "name": "Namibia",
1103
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
1104
  "official_languages": [
1105
  "eng"
1106
  ],
1107
  "type": "country"
1108
  },
1109
  "ned": {
1110
+ "colonial_history": "French",
1111
  "continent": "Europe",
1112
  "klerman_2011_sample": true,
1113
+ "legal_origin": "French",
1114
  "name": "Netherlands",
1115
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
1116
  "official_languages": [
1117
  "ned"
1118
  ],
1119
  "type": "country"
1120
  },
1121
  "nig": {
1122
+ "colonial_history": "French",
1123
  "continent": "Africa",
1124
  "klerman_2011_sample": true,
1125
+ "legal_origin": "French",
1126
  "name": "Niger",
1127
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
1128
  "official_languages": [
1129
  "fra"
1130
  ],
1131
  "type": "country"
1132
  },
1133
  "nor": {
1134
+ "colonial_history": "Not Colonized",
1135
  "continent": "Europe",
1136
  "klerman_2011_sample": true,
1137
+ "legal_origin": "Scandinavia",
1138
  "name": "Norway",
1139
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
1140
  "official_languages": [
1141
  "nor"
1142
  ],
1143
  "type": "country"
1144
  },
1145
  "oau": {
1146
+ "colonial_history": "",
1147
  "continent": "Africa",
1148
  "klerman_2011_sample": false,
1149
+ "legal_origin": "",
1150
  "name": "African Union",
1151
  "notes": null,
1152
  "official_languages": [
 
1160
  "type": "supranational"
1161
  },
1162
  "pak": {
1163
+ "colonial_history": "British",
1164
  "continent": "Asia",
1165
  "klerman_2011_sample": true,
1166
+ "legal_origin": "Common",
1167
  "name": "Pakistan",
1168
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
1169
  "official_languages": [
1170
  "urd",
1171
  "eng"
 
1173
  "type": "country"
1174
  },
1175
  "per": {
1176
+ "colonial_history": "Other French",
1177
  "continent": "Americas",
1178
  "klerman_2011_sample": true,
1179
+ "legal_origin": "French",
1180
  "name": "Peru",
1181
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
1182
  "official_languages": [
1183
  "esp"
1184
  ],
1185
  "type": "country"
1186
  },
1187
  "phi": {
1188
+ "colonial_history": "Other",
1189
  "continent": "Asia",
1190
  "klerman_2011_sample": true,
1191
+ "legal_origin": "Mixed",
1192
  "name": "Philippines",
1193
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
1194
  "official_languages": [
1195
  "tgl",
1196
  "eng"
 
1198
  "type": "country"
1199
  },
1200
  "ple": {
1201
+ "colonial_history": "",
1202
  "continent": "Asia",
1203
  "klerman_2011_sample": false,
1204
+ "legal_origin": "",
1205
  "name": "Palestine",
1206
+ "notes": null,
1207
  "official_languages": [
1208
  "ara"
1209
  ],
1210
  "type": "country"
1211
  },
1212
  "pol": {
1213
+ "colonial_history": "",
1214
  "continent": "Europe",
1215
  "klerman_2011_sample": false,
1216
+ "legal_origin": "",
1217
  "name": "Poland",
1218
+ "notes": null,
1219
  "official_languages": [
1220
  "pol"
1221
  ],
1222
  "type": "country"
1223
  },
1224
  "por": {
1225
+ "colonial_history": "Not Colonized",
1226
  "continent": "Europe",
1227
  "klerman_2011_sample": true,
1228
+ "legal_origin": "French",
1229
  "name": "Portugal",
1230
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
1231
  "official_languages": [
1232
  "por"
1233
  ],
1234
  "type": "country"
1235
  },
1236
  "rom": {
1237
+ "colonial_history": "Other French",
1238
  "continent": "Europe",
1239
  "klerman_2011_sample": true,
1240
+ "legal_origin": "French",
1241
  "name": "Romania",
1242
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
1243
  "official_languages": [
1244
  "rom"
1245
  ],
1246
  "type": "country"
1247
  },
1248
  "rsa": {
1249
+ "colonial_history": "British",
1250
  "continent": "Africa",
1251
  "klerman_2011_sample": true,
1252
+ "legal_origin": "Mixed",
1253
  "name": "South Africa",
1254
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
1255
  "official_languages": [
1256
  "eng",
1257
  "afr",
 
1268
  "type": "country"
1269
  },
1270
  "rus": {
1271
+ "colonial_history": "",
1272
  "continent": "Europe",
1273
  "klerman_2011_sample": false,
1274
+ "legal_origin": "",
1275
  "name": "Russia",
1276
+ "notes": null,
1277
  "official_languages": [
1278
  "rus"
1279
  ],
1280
  "type": "country"
1281
  },
1282
  "rwa": {
1283
+ "colonial_history": "Other French",
1284
  "continent": "Africa",
1285
  "klerman_2011_sample": true,
1286
+ "legal_origin": "French",
1287
  "name": "Rwanda",
1288
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
1289
  "official_languages": [
1290
  "eng",
1291
  "fra",
 
1294
  "type": "country"
1295
  },
1296
  "sen": {
1297
+ "colonial_history": "French",
1298
  "continent": "Africa",
1299
  "klerman_2011_sample": true,
1300
+ "legal_origin": "French",
1301
  "name": "Senegal",
1302
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
1303
  "official_languages": [
1304
  "fra"
1305
  ],
1306
  "type": "country"
1307
  },
1308
  "sey": {
1309
+ "colonial_history": "British",
1310
  "continent": "Africa",
1311
  "klerman_2011_sample": true,
1312
+ "legal_origin": "Mixed",
1313
  "name": "Seychelles",
1314
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
1315
  "official_languages": [
1316
  "eng",
1317
  "fra"
 
1319
  "type": "country"
1320
  },
1321
  "slo": {
1322
+ "colonial_history": "",
1323
  "continent": "Europe",
1324
  "klerman_2011_sample": false,
1325
+ "legal_origin": "",
1326
  "name": "Slovenia",
1327
  "notes": null,
1328
  "official_languages": [
 
1331
  "type": "country"
1332
  },
1333
  "srb": {
1334
+ "colonial_history": "",
1335
  "continent": "Europe",
1336
  "klerman_2011_sample": false,
1337
+ "legal_origin": "",
1338
  "name": "Serbia",
1339
  "notes": null,
1340
  "official_languages": [
 
1343
  "type": "country"
1344
  },
1345
  "sui": {
1346
+ "colonial_history": "Not Colonized",
1347
  "continent": "Europe",
1348
  "klerman_2011_sample": true,
1349
+ "legal_origin": "German",
1350
  "name": "Switzerland",
1351
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
1352
  "official_languages": [
1353
  "ger",
1354
  "fra",
 
1357
  "type": "country"
1358
  },
1359
  "svk": {
1360
+ "colonial_history": "",
1361
  "continent": "Europe",
1362
  "klerman_2011_sample": false,
1363
+ "legal_origin": "",
1364
  "name": "Slovakia",
1365
  "notes": null,
1366
  "official_languages": [
 
1369
  "type": "country"
1370
  },
1371
  "swe": {
1372
+ "colonial_history": "Not Colonized",
1373
  "continent": "Europe",
1374
  "klerman_2011_sample": true,
1375
+ "legal_origin": "Scandinavia",
1376
  "name": "Sweden",
1377
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
1378
  "official_languages": [
1379
  "swe"
1380
  ],
1381
  "type": "country"
1382
  },
1383
  "tjk": {
1384
+ "colonial_history": "",
1385
  "continent": "Asia",
1386
  "klerman_2011_sample": false,
1387
+ "legal_origin": "",
1388
  "name": "Tajikistan",
1389
  "notes": null,
1390
  "official_languages": [
 
1393
  "type": "country"
1394
  },
1395
  "tog": {
1396
+ "colonial_history": "French",
1397
  "continent": "Africa",
1398
  "klerman_2011_sample": true,
1399
+ "legal_origin": "French",
1400
  "name": "Togo",
1401
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
1402
  "official_languages": [
1403
  "fra"
1404
  ],
1405
  "type": "country"
1406
  },
1407
  "tpe": {
1408
+ "colonial_history": "Other",
1409
  "continent": "Asia",
1410
  "klerman_2011_sample": true,
1411
+ "legal_origin": "German",
1412
  "name": "Taiwan/\"Chinese Taipei\"",
1413
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
1414
  "official_languages": [
1415
  "chn"
1416
  ],
1417
  "type": "country"
1418
  },
1419
  "tun": {
1420
+ "colonial_history": "",
1421
  "continent": "Africa",
1422
  "klerman_2011_sample": false,
1423
+ "legal_origin": "",
1424
  "name": "Tunisia",
1425
+ "notes": null,
1426
  "official_languages": [
1427
  "ara",
1428
  "fra"
 
1430
  "type": "country"
1431
  },
1432
  "tur": {
1433
+ "colonial_history": "Not Colonized",
1434
  "continent": "Europe",
1435
  "klerman_2011_sample": true,
1436
+ "legal_origin": "French",
1437
  "name": "Türkiye",
1438
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
1439
  "official_languages": [
1440
  "tur"
1441
  ],
1442
  "type": "country"
1443
  },
1444
  "uga": {
1445
+ "colonial_history": "British",
1446
  "continent": "Africa",
1447
  "klerman_2011_sample": true,
1448
+ "legal_origin": "Common",
1449
  "name": "Uganda",
1450
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
1451
  "official_languages": [
1452
  "eng",
1453
  "swa"
 
1455
  "type": "country"
1456
  },
1457
  "ukr": {
1458
+ "colonial_history": "",
1459
  "continent": "Europe",
1460
  "klerman_2011_sample": false,
1461
+ "legal_origin": "",
1462
  "name": "Ukraine",
1463
  "notes": null,
1464
  "official_languages": [
 
1467
  "type": "country"
1468
  },
1469
  "usa": {
1470
+ "colonial_history": "British",
1471
  "continent": "Americas",
1472
  "klerman_2011_sample": true,
1473
+ "legal_origin": "Common",
1474
  "name": "United States of America",
1475
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
1476
  "official_languages": [
1477
  "eng"
1478
  ],
1479
  "type": "country"
1480
  },
1481
  "yem": {
1482
+ "colonial_history": "",
1483
  "continent": "Asia",
1484
  "klerman_2011_sample": false,
1485
+ "legal_origin": "",
1486
  "name": "Yemen",
1487
+ "notes": null,
1488
  "official_languages": [
1489
  "ara"
1490
  ],
1491
  "type": "country"
1492
  },
1493
  "zam": {
1494
+ "colonial_history": "British",
1495
  "continent": "Africa",
1496
  "klerman_2011_sample": true,
1497
+ "legal_origin": "Common",
1498
  "name": "Zambia",
1499
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
1500
  "official_languages": [
1501
  "eng"
1502
  ],
1503
  "type": "country"
1504
  },
1505
  "zim": {
1506
+ "colonial_history": "British",
1507
  "continent": "Africa",
1508
  "klerman_2011_sample": true,
1509
+ "legal_origin": "Mixed",
1510
  "name": "Zimbabwe",
1511
+ "notes": "Klerman et al., Legal Origin or Colonial History?, Table 2",
1512
  "official_languages": [
1513
  "eng"
1514
  ],