@genspectrum/dashboard-components 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (186) hide show
  1. package/LICENSE +661 -0
  2. package/README.md +109 -0
  3. package/custom-elements.json +1587 -0
  4. package/dist/dashboard-components.js +7322 -0
  5. package/dist/dashboard-components.js.map +1 -0
  6. package/dist/genspectrum-components.d.ts +298 -0
  7. package/dist/style.css +2930 -0
  8. package/package.json +109 -0
  9. package/src/constants.ts +6 -0
  10. package/src/index.ts +1 -0
  11. package/src/lapisApi/ReferenceGenome.ts +30 -0
  12. package/src/lapisApi/__mockData__/referenceGenome.json +58 -0
  13. package/src/lapisApi/lapisApi.ts +99 -0
  14. package/src/lapisApi/lapisTypes.ts +51 -0
  15. package/src/operator/Dataset.ts +3 -0
  16. package/src/operator/DivisionOperator.spec.ts +27 -0
  17. package/src/operator/DivisionOperator.ts +60 -0
  18. package/src/operator/FetchAggregatedOperator.ts +44 -0
  19. package/src/operator/FetchInsertionsOperator.ts +24 -0
  20. package/src/operator/FetchSubstitutionsOrDeletionsOperator.ts +49 -0
  21. package/src/operator/FillMissingOperator.spec.ts +26 -0
  22. package/src/operator/FillMissingOperator.ts +30 -0
  23. package/src/operator/GroupByAndSumOperator.spec.ts +26 -0
  24. package/src/operator/GroupByAndSumOperator.ts +26 -0
  25. package/src/operator/GroupByOperator.spec.ts +43 -0
  26. package/src/operator/GroupByOperator.ts +32 -0
  27. package/src/operator/MapOperator.spec.ts +13 -0
  28. package/src/operator/MapOperator.ts +16 -0
  29. package/src/operator/MockOperator.spec.ts +11 -0
  30. package/src/operator/MockOperator.ts +12 -0
  31. package/src/operator/Operator.ts +5 -0
  32. package/src/operator/SlidingOperator.spec.ts +52 -0
  33. package/src/operator/SlidingOperator.ts +23 -0
  34. package/src/operator/SortOperator.spec.ts +13 -0
  35. package/src/operator/SortOperator.ts +16 -0
  36. package/src/preact/LapisUrlContext.ts +3 -0
  37. package/src/preact/ReferenceGenomeContext.ts +5 -0
  38. package/src/preact/components/SegmentSelector.tsx +62 -0
  39. package/src/preact/components/chart.stories.tsx +42 -0
  40. package/src/preact/components/chart.tsx +32 -0
  41. package/src/preact/components/checkbox-selector.stories.tsx +56 -0
  42. package/src/preact/components/checkbox-selector.tsx +46 -0
  43. package/src/preact/components/confidence-interval-selector.tsx +45 -0
  44. package/src/preact/components/csv-download-button.stories.tsx +25 -0
  45. package/src/preact/components/csv-download-button.tsx +51 -0
  46. package/src/preact/components/error-display.stories.tsx +22 -0
  47. package/src/preact/components/error-display.tsx +5 -0
  48. package/src/preact/components/headline.stories.tsx +29 -0
  49. package/src/preact/components/headline.tsx +16 -0
  50. package/src/preact/components/info.stories.tsx +22 -0
  51. package/src/preact/components/info.tsx +16 -0
  52. package/src/preact/components/loading-display.stories.tsx +20 -0
  53. package/src/preact/components/loading-display.tsx +5 -0
  54. package/src/preact/components/min-max-percent-slider.css +40 -0
  55. package/src/preact/components/min-max-range-slider.tsx +95 -0
  56. package/src/preact/components/mutation-type-selector.tsx +30 -0
  57. package/src/preact/components/no-data-display.stories.tsx +20 -0
  58. package/src/preact/components/no-data-display.tsx +5 -0
  59. package/src/preact/components/percent-intput.tsx +49 -0
  60. package/src/preact/components/proportion-selector-dropdown.stories.tsx +66 -0
  61. package/src/preact/components/proportion-selector-dropdown.tsx +33 -0
  62. package/src/preact/components/proportion-selector.stories.tsx +81 -0
  63. package/src/preact/components/proportion-selector.tsx +43 -0
  64. package/src/preact/components/scaling-selector.stories.tsx +25 -0
  65. package/src/preact/components/scaling-selector.tsx +36 -0
  66. package/src/preact/components/select.stories.tsx +42 -0
  67. package/src/preact/components/select.tsx +21 -0
  68. package/src/preact/components/table.stories.tsx +24 -0
  69. package/src/preact/components/table.tsx +51 -0
  70. package/src/preact/components/tabs.stories.tsx +60 -0
  71. package/src/preact/components/tabs.tsx +49 -0
  72. package/src/preact/dateRangeSelector/date-range-selector.stories.tsx +32 -0
  73. package/src/preact/dateRangeSelector/date-range-selector.tsx +228 -0
  74. package/src/preact/dateRangeSelector/dateConversion.ts +8 -0
  75. package/src/preact/locationFilter/__mockData__/aggregated.json +775 -0
  76. package/src/preact/locationFilter/fetchAutocompletionList.spec.ts +36 -0
  77. package/src/preact/locationFilter/fetchAutocompletionList.ts +43 -0
  78. package/src/preact/locationFilter/location-filter.stories.tsx +50 -0
  79. package/src/preact/locationFilter/location-filter.tsx +112 -0
  80. package/src/preact/mutationComparison/__mockData__/nucleotideMutationsOtherVariant.json +295 -0
  81. package/src/preact/mutationComparison/__mockData__/nucleotideMutationsSomeVariant.json +304 -0
  82. package/src/preact/mutationComparison/fetchMutationData.spec.ts +118 -0
  83. package/src/preact/mutationComparison/getMutationComparisonTableData.spec.ts +125 -0
  84. package/src/preact/mutationComparison/getMutationComparisonTableData.ts +40 -0
  85. package/src/preact/mutationComparison/mutation-comparison-table.tsx +43 -0
  86. package/src/preact/mutationComparison/mutation-comparison-venn.tsx +122 -0
  87. package/src/preact/mutationComparison/mutation-comparison.stories.tsx +152 -0
  88. package/src/preact/mutationComparison/mutation-comparison.tsx +179 -0
  89. package/src/preact/mutationComparison/queryMutationData.ts +53 -0
  90. package/src/preact/mutationFilter/mutation-filter.stories.tsx +164 -0
  91. package/src/preact/mutationFilter/mutation-filter.tsx +268 -0
  92. package/src/preact/mutationFilter/parseAndValidateMutation.ts +54 -0
  93. package/src/preact/mutationFilter/parseMutation.spec.ts +150 -0
  94. package/src/preact/mutationFilter/sequenceTypeFromSegment.spec.ts +66 -0
  95. package/src/preact/mutationFilter/sequenceTypeFromSegment.ts +20 -0
  96. package/src/preact/mutations/__mockData__/nucleotideInsertions.json +252 -0
  97. package/src/preact/mutations/__mockData__/nucleotideMutations.json +880 -0
  98. package/src/preact/mutations/getInsertionsTableData.spec.ts +36 -0
  99. package/src/preact/mutations/getInsertionsTableData.ts +10 -0
  100. package/src/preact/mutations/getMutationsGridData.spec.ts +135 -0
  101. package/src/preact/mutations/getMutationsGridData.ts +92 -0
  102. package/src/preact/mutations/getMutationsTableData.spec.ts +94 -0
  103. package/src/preact/mutations/getMutationsTableData.ts +17 -0
  104. package/src/preact/mutations/mutations-grid.tsx +84 -0
  105. package/src/preact/mutations/mutations-insertions-table.tsx +33 -0
  106. package/src/preact/mutations/mutations-table.tsx +47 -0
  107. package/src/preact/mutations/mutations.stories.tsx +95 -0
  108. package/src/preact/mutations/mutations.tsx +192 -0
  109. package/src/preact/mutations/queryMutations.ts +55 -0
  110. package/src/preact/prevalenceOverTime/__mockData__/denominator.json +1700 -0
  111. package/src/preact/prevalenceOverTime/__mockData__/denominatorOneVariant.json +608 -0
  112. package/src/preact/prevalenceOverTime/__mockData__/numeratorEG.json +1560 -0
  113. package/src/preact/prevalenceOverTime/__mockData__/numeratorJN1.json +592 -0
  114. package/src/preact/prevalenceOverTime/__mockData__/numeratorOneVariant.json +604 -0
  115. package/src/preact/prevalenceOverTime/getPrevalenceOverTimeTableData.spec.ts +67 -0
  116. package/src/preact/prevalenceOverTime/getPrevalenceOverTimeTableData.ts +18 -0
  117. package/src/preact/prevalenceOverTime/prevalence-over-time-bar-chart.tsx +105 -0
  118. package/src/preact/prevalenceOverTime/prevalence-over-time-bubble-chart.tsx +86 -0
  119. package/src/preact/prevalenceOverTime/prevalence-over-time-line-chart.tsx +141 -0
  120. package/src/preact/prevalenceOverTime/prevalence-over-time-table.tsx +46 -0
  121. package/src/preact/prevalenceOverTime/prevalence-over-time.stories.tsx +165 -0
  122. package/src/preact/prevalenceOverTime/prevalence-over-time.tsx +202 -0
  123. package/src/preact/relativeGrowthAdvantage/__mockData__/denominator.json +376 -0
  124. package/src/preact/relativeGrowthAdvantage/__mockData__/numerator.json +332 -0
  125. package/src/preact/relativeGrowthAdvantage/relative-growth-advantage-chart.tsx +138 -0
  126. package/src/preact/relativeGrowthAdvantage/relative-growth-advantage.stories.tsx +71 -0
  127. package/src/preact/relativeGrowthAdvantage/relative-growth-advantage.tsx +136 -0
  128. package/src/preact/shared/charts/LogitScale.ts +48 -0
  129. package/src/preact/shared/charts/colors.ts +26 -0
  130. package/src/preact/shared/charts/confideceInterval.ts +29 -0
  131. package/src/preact/shared/charts/getYAxisScale.ts +16 -0
  132. package/src/preact/shared/charts/scales.ts +16 -0
  133. package/src/preact/shared/icons/DeleteIcon.tsx +17 -0
  134. package/src/preact/shared/sort/sortInsertions.spec.ts +47 -0
  135. package/src/preact/shared/sort/sortInsertions.ts +21 -0
  136. package/src/preact/shared/sort/sortMutationPositions.spec.ts +31 -0
  137. package/src/preact/shared/sort/sortMutationPositions.ts +14 -0
  138. package/src/preact/shared/sort/sortSubstitutionsAndDeletions.spec.ts +47 -0
  139. package/src/preact/shared/sort/sortSubstitutionsAndDeletions.ts +17 -0
  140. package/src/preact/shared/table/formatProportion.ts +3 -0
  141. package/src/preact/textInput/__mockData__/aggregated_hosts.json +24 -0
  142. package/src/preact/textInput/fetchAutocompleteList.ts +9 -0
  143. package/src/preact/textInput/text-input.stories.tsx +49 -0
  144. package/src/preact/textInput/text-input.tsx +73 -0
  145. package/src/preact/useQuery.ts +27 -0
  146. package/src/query/queryInsertions.ts +14 -0
  147. package/src/query/queryPrevalenceOverTime.ts +126 -0
  148. package/src/query/queryRelativeGrowthAdvantage.ts +131 -0
  149. package/src/query/querySubstitutionsOrDeletions.ts +19 -0
  150. package/src/styles/tailwind.css +3 -0
  151. package/src/styles/tailwind.d.ts +3 -0
  152. package/src/types.ts +23 -0
  153. package/src/utils/mutations.spec.ts +64 -0
  154. package/src/utils/mutations.ts +165 -0
  155. package/src/utils/temporal.spec.ts +97 -0
  156. package/src/utils/temporal.ts +348 -0
  157. package/src/utils/test-utils.ts +5 -0
  158. package/src/utils/type-utils.ts +15 -0
  159. package/src/utils/utils.spec.ts +16 -0
  160. package/src/utils/utils.ts +38 -0
  161. package/src/web-components/PreactLitAdapter.tsx +62 -0
  162. package/src/web-components/PreactLitAdapterWithGridJsStyles.tsx +12 -0
  163. package/src/web-components/app.ts +51 -0
  164. package/src/web-components/display/index.ts +4 -0
  165. package/src/web-components/display/mutation-comparison-component.stories.ts +138 -0
  166. package/src/web-components/display/mutation-comparison-component.tsx +31 -0
  167. package/src/web-components/display/mutations-component.stories.ts +107 -0
  168. package/src/web-components/display/mutations-component.tsx +27 -0
  169. package/src/web-components/display/prevalence-over-time-component.stories.ts +205 -0
  170. package/src/web-components/display/prevalence-over-time-component.tsx +46 -0
  171. package/src/web-components/display/relative-growth-advantage-component.stories.ts +89 -0
  172. package/src/web-components/display/relative-growth-advantage-component.tsx +37 -0
  173. package/src/web-components/index.ts +3 -0
  174. package/src/web-components/input/date-range-selector-component.stories.ts +53 -0
  175. package/src/web-components/input/date-range-selector-component.tsx +33 -0
  176. package/src/web-components/input/index.ts +4 -0
  177. package/src/web-components/input/location-filter-component.stories.ts +184 -0
  178. package/src/web-components/input/location-filter-component.tsx +68 -0
  179. package/src/web-components/input/location-filter.mdx +25 -0
  180. package/src/web-components/input/mutation-filter-component.stories.ts +97 -0
  181. package/src/web-components/input/mutation-filter-component.tsx +27 -0
  182. package/src/web-components/input/text-input-component.stories.ts +92 -0
  183. package/src/web-components/input/text-input-component.tsx +30 -0
  184. package/src/web-components/lapis-context.ts +3 -0
  185. package/src/web-components/reference-genome-context.ts +5 -0
  186. package/src/web-components/withinShadowRoot.story.ts +34 -0
@@ -0,0 +1,775 @@
1
+ {
2
+ "errors": [],
3
+ "info": {
4
+ "apiVersion": 1,
5
+ "dataVersion": 1709685650,
6
+ "deprecationDate": null,
7
+ "deprecationInfo": null,
8
+ "acknowledgement": null
9
+ },
10
+ "data": [
11
+ {
12
+ "region": "North America",
13
+ "country": "USA",
14
+ "division": "New York",
15
+ "location": "Nyc",
16
+ "count": 102
17
+ },
18
+ {
19
+ "region": "Asia",
20
+ "country": "India",
21
+ "division": "Gujarat",
22
+ "location": "Diu",
23
+ "count": 2
24
+ },
25
+ {
26
+ "region": "Africa",
27
+ "country": "Morocco",
28
+ "division": "Morocco",
29
+ "location": null,
30
+ "count": 22
31
+ },
32
+ {
33
+ "region": "Europe",
34
+ "country": "Czech Republic",
35
+ "division": "Czech Republic",
36
+ "location": null,
37
+ "count": 29
38
+ },
39
+ {
40
+ "region": "North America",
41
+ "country": "USA",
42
+ "division": "Arizona",
43
+ "location": "Portsmouth AZ",
44
+ "count": 2
45
+ },
46
+ {
47
+ "region": "North America",
48
+ "country": "USA",
49
+ "division": "Annandale",
50
+ "location": null,
51
+ "count": 14
52
+ },
53
+ {
54
+ "region": "Asia",
55
+ "country": "Iraq",
56
+ "division": "Iraqi Kurdistan",
57
+ "location": null,
58
+ "count": 2
59
+ },
60
+ {
61
+ "region": "North America",
62
+ "country": "USA",
63
+ "division": "New Jersey",
64
+ "location": "Mercer County NJ",
65
+ "count": 12
66
+ },
67
+ {
68
+ "region": "North America",
69
+ "country": "USA",
70
+ "division": "Wisconsin",
71
+ "location": "Forest County",
72
+ "count": 4
73
+ },
74
+ {
75
+ "region": "North America",
76
+ "country": "Mexico",
77
+ "division": "Baja California",
78
+ "location": "Tijuana",
79
+ "count": 398
80
+ },
81
+ {
82
+ "region": "Asia",
83
+ "country": "Singapore",
84
+ "division": "Singapore",
85
+ "location": null,
86
+ "count": 9
87
+ },
88
+ {
89
+ "region": "North America",
90
+ "country": "USA",
91
+ "division": "Texas",
92
+ "location": "Jefferson County TX",
93
+ "count": 1
94
+ },
95
+ {
96
+ "region": "North America",
97
+ "country": "USA",
98
+ "division": "Missouri",
99
+ "location": "McDonald County",
100
+ "count": 1
101
+ },
102
+ {
103
+ "region": "Europe",
104
+ "country": "Poland",
105
+ "division": "Kujawsko-Pomorskie",
106
+ "location": null,
107
+ "count": 3
108
+ },
109
+ {
110
+ "region": "Europe",
111
+ "country": "Sweden",
112
+ "division": "Orebro",
113
+ "location": null,
114
+ "count": 94
115
+ },
116
+ {
117
+ "region": "North America",
118
+ "country": "USA",
119
+ "division": "Arizona",
120
+ "location": "Stevens",
121
+ "count": 1
122
+ },
123
+ {
124
+ "region": "Europe",
125
+ "country": "Austria",
126
+ "division": "Upper Austria",
127
+ "location": "Zipf",
128
+ "count": 2
129
+ },
130
+ {
131
+ "region": "South America",
132
+ "country": "Peru",
133
+ "division": "Lambayeque",
134
+ "location": "Lambayeque",
135
+ "count": 1
136
+ },
137
+ {
138
+ "region": "Asia",
139
+ "country": "Uzbekistan",
140
+ "division": "Tashkent",
141
+ "location": "Yunusabad District, Center 5",
142
+ "count": 1
143
+ },
144
+ {
145
+ "region": "Asia",
146
+ "country": "Uzbekistan",
147
+ "division": "Tashkent",
148
+ "location": "Yunusabad District, Center 4",
149
+ "count": 2
150
+ },
151
+ {
152
+ "region": "North America",
153
+ "country": "USA",
154
+ "division": "Oklahoma",
155
+ "location": "0 OK",
156
+ "count": 3
157
+ },
158
+ {
159
+ "region": "Asia",
160
+ "country": "Uzbekistan",
161
+ "division": "Tashkent",
162
+ "location": "Yunusabad District, Center 7",
163
+ "count": 1
164
+ },
165
+ {
166
+ "region": "North America",
167
+ "country": "USA",
168
+ "division": "Arizona",
169
+ "location": "Fresno AZ",
170
+ "count": 1
171
+ },
172
+ {
173
+ "region": "North America",
174
+ "country": "USA",
175
+ "division": "South Carolina",
176
+ "location": "Newberry County",
177
+ "count": 27
178
+ },
179
+ {
180
+ "region": "North America",
181
+ "country": "USA",
182
+ "division": "South Carolina",
183
+ "location": "Longs",
184
+ "count": 1
185
+ },
186
+ {
187
+ "region": "Europe",
188
+ "country": "Netherlands",
189
+ "division": "South Holland",
190
+ "location": "Delft NL",
191
+ "count": 1
192
+ },
193
+ {
194
+ "region": "Europe",
195
+ "country": "Netherlands",
196
+ "division": "Gelderland",
197
+ "location": null,
198
+ "count": 11
199
+ },
200
+ {
201
+ "region": "Asia",
202
+ "country": "India",
203
+ "division": "Gujarat",
204
+ "location": "Adajan",
205
+ "count": 2
206
+ },
207
+ {
208
+ "region": "North America",
209
+ "country": "USA",
210
+ "division": "Louisiana",
211
+ "location": "West Feliciana",
212
+ "count": 1
213
+ },
214
+ {
215
+ "region": "North America",
216
+ "country": "USA",
217
+ "division": "Oklahoma",
218
+ "location": "Weatherford, Tx",
219
+ "count": 1
220
+ },
221
+ {
222
+ "region": "North America",
223
+ "country": "USA",
224
+ "division": "Mt Solon",
225
+ "location": null,
226
+ "count": 1
227
+ },
228
+ {
229
+ "region": "North America",
230
+ "country": "USA",
231
+ "division": "North Carolina",
232
+ "location": "New Hill",
233
+ "count": 4
234
+ },
235
+ {
236
+ "region": "North America",
237
+ "country": "USA",
238
+ "division": "Oklahoma",
239
+ "location": "Claire",
240
+ "count": 1
241
+ },
242
+ {
243
+ "region": "North America",
244
+ "country": "USA",
245
+ "division": "Wisconsin",
246
+ "location": "Iron County WI",
247
+ "count": 3
248
+ },
249
+ {
250
+ "region": "Asia",
251
+ "country": "Philippines",
252
+ "division": "Manila",
253
+ "location": "Pasay City",
254
+ "count": 6
255
+ },
256
+ {
257
+ "region": "North America",
258
+ "country": "USA",
259
+ "division": "Oklahoma",
260
+ "location": "Oklahoma County",
261
+ "count": 3471
262
+ },
263
+ {
264
+ "region": "Asia",
265
+ "country": "Bangladesh",
266
+ "division": "Chattogram",
267
+ "location": "Noakhali",
268
+ "count": 5
269
+ },
270
+ {
271
+ "region": "Europe",
272
+ "country": "Austria",
273
+ "division": "Upper Austria",
274
+ "location": "St. Konrad",
275
+ "count": 1
276
+ },
277
+ {
278
+ "region": "North America",
279
+ "country": "USA",
280
+ "division": "Louisiana",
281
+ "location": "Concodia",
282
+ "count": 1
283
+ },
284
+ {
285
+ "region": "North America",
286
+ "country": "USA",
287
+ "division": "Oregon",
288
+ "location": "Wasco County OR",
289
+ "count": 27
290
+ },
291
+ {
292
+ "region": "North America",
293
+ "country": "USA",
294
+ "division": "Mississippi",
295
+ "location": "Jackson County MS",
296
+ "count": 1
297
+ },
298
+ {
299
+ "region": "Asia",
300
+ "country": "Thailand",
301
+ "division": "Narathiwat",
302
+ "location": null,
303
+ "count": 12
304
+ },
305
+ {
306
+ "region": "North America",
307
+ "country": "USA",
308
+ "division": "Illinois",
309
+ "location": "Winnebago County IL",
310
+ "count": 91
311
+ },
312
+ {
313
+ "region": "Asia",
314
+ "country": "Bangladesh",
315
+ "division": "Rajshahi",
316
+ "location": "Chapainawabgonj",
317
+ "count": 9
318
+ },
319
+ {
320
+ "region": "North America",
321
+ "country": "USA",
322
+ "division": "South Carolina",
323
+ "location": "Long Creek",
324
+ "count": 1
325
+ },
326
+ {
327
+ "region": "Europe",
328
+ "country": "Austria",
329
+ "division": "Upper Austria",
330
+ "location": "Bad Goisern",
331
+ "count": 11
332
+ },
333
+ {
334
+ "region": "Asia",
335
+ "country": "Bhutan",
336
+ "division": "Dagana",
337
+ "location": null,
338
+ "count": 4
339
+ },
340
+ {
341
+ "region": "North America",
342
+ "country": "USA",
343
+ "division": "Wisconsin",
344
+ "location": "Calumet County",
345
+ "count": 20
346
+ },
347
+ {
348
+ "region": "Asia",
349
+ "country": "India",
350
+ "division": "Gujarat",
351
+ "location": "Kheda",
352
+ "count": 4
353
+ },
354
+ {
355
+ "region": "North America",
356
+ "country": "USA",
357
+ "division": "Oklahoma",
358
+ "location": "Tulsa County",
359
+ "count": 332
360
+ },
361
+ {
362
+ "region": "North America",
363
+ "country": "USA",
364
+ "division": "Wisconsin",
365
+ "location": "Rock County WI",
366
+ "count": 186
367
+ },
368
+ {
369
+ "region": "North America",
370
+ "country": "USA",
371
+ "division": "Texas",
372
+ "location": "Terrell",
373
+ "count": 1
374
+ },
375
+ {
376
+ "region": "Asia",
377
+ "country": "Iran",
378
+ "division": "Iran",
379
+ "location": null,
380
+ "count": 16
381
+ },
382
+ {
383
+ "region": "North America",
384
+ "country": "USA",
385
+ "division": "Wisconsin",
386
+ "location": "Milwaukee County",
387
+ "count": 892
388
+ },
389
+ {
390
+ "region": "North America",
391
+ "country": "USA",
392
+ "division": "Oklahoma",
393
+ "location": "Irving, Tx",
394
+ "count": 1
395
+ },
396
+ {
397
+ "region": "North America",
398
+ "country": "USA",
399
+ "division": "Wisconsin",
400
+ "location": null,
401
+ "count": 33452
402
+ },
403
+ {
404
+ "region": "North America",
405
+ "country": "USA",
406
+ "division": "Kentucky",
407
+ "location": "Jefferson KY",
408
+ "count": 1
409
+ },
410
+ {
411
+ "region": "North America",
412
+ "country": "USA",
413
+ "division": "Wisconsin",
414
+ "location": "0 County",
415
+ "count": 8
416
+ },
417
+ {
418
+ "region": "Asia",
419
+ "country": "Pakistan",
420
+ "division": "Khyber Pakhtunkhwa",
421
+ "location": null,
422
+ "count": 11
423
+ },
424
+ {
425
+ "region": "North America",
426
+ "country": "USA",
427
+ "division": "Arizona",
428
+ "location": "La Paz County",
429
+ "count": 1
430
+ },
431
+ {
432
+ "region": "Asia",
433
+ "country": "Palestine",
434
+ "division": "Tubas",
435
+ "location": null,
436
+ "count": 6
437
+ },
438
+ {
439
+ "region": "North America",
440
+ "country": "USA",
441
+ "division": "North Carolina",
442
+ "location": "Sampson County",
443
+ "count": 2
444
+ },
445
+ {
446
+ "region": "North America",
447
+ "country": "USA",
448
+ "division": "Wisconsin",
449
+ "location": "Door County",
450
+ "count": 60
451
+ },
452
+ {
453
+ "region": "North America",
454
+ "country": "USA",
455
+ "division": "Idaho",
456
+ "location": "Bannock County",
457
+ "count": 205
458
+ },
459
+ {
460
+ "region": "North America",
461
+ "country": "USA",
462
+ "division": "Illinois",
463
+ "location": "McLean County IL",
464
+ "count": 1
465
+ },
466
+ {
467
+ "region": "North America",
468
+ "country": "USA",
469
+ "division": "New York",
470
+ "location": "Broome County",
471
+ "count": 1
472
+ },
473
+ {
474
+ "region": "North America",
475
+ "country": "USA",
476
+ "division": "Louisiana",
477
+ "location": "Winn",
478
+ "count": 1
479
+ },
480
+ {
481
+ "region": "North America",
482
+ "country": "USA",
483
+ "division": "Arizona",
484
+ "location": "Maricopa County AZ",
485
+ "count": 12973
486
+ },
487
+ {
488
+ "region": "North America",
489
+ "country": "USA",
490
+ "division": "Oklahoma",
491
+ "location": "Creek County",
492
+ "count": 144
493
+ },
494
+ {
495
+ "region": "Asia",
496
+ "country": "Uzbekistan",
497
+ "division": "Tashkent",
498
+ "location": "Ortachirchik District, New Marriage Village",
499
+ "count": 1
500
+ },
501
+ {
502
+ "region": "Asia",
503
+ "country": "India",
504
+ "division": "Delhi",
505
+ "location": null,
506
+ "count": 68
507
+ },
508
+ {
509
+ "region": "Asia",
510
+ "country": "India",
511
+ "division": "Gujarat",
512
+ "location": "Veraval",
513
+ "count": 2
514
+ },
515
+ {
516
+ "region": "Europe",
517
+ "country": "Switzerland",
518
+ "division": "Appenzell Ausserrhoden",
519
+ "location": null,
520
+ "count": 369
521
+ },
522
+ {
523
+ "region": "Asia",
524
+ "country": "Uzbekistan",
525
+ "division": "Tashkent",
526
+ "location": "Zangiota District",
527
+ "count": 2
528
+ },
529
+ {
530
+ "region": "Europe",
531
+ "country": "Austria",
532
+ "division": "Upper Austria",
533
+ "location": "Aurach Am Hongar",
534
+ "count": 3
535
+ },
536
+ {
537
+ "region": "Asia",
538
+ "country": "India",
539
+ "division": "Gujarat",
540
+ "location": "Sutrapada",
541
+ "count": 6
542
+ },
543
+ {
544
+ "region": "North America",
545
+ "country": "USA",
546
+ "division": "Mississippi",
547
+ "location": "Amite MS",
548
+ "count": 1
549
+ },
550
+ {
551
+ "region": "North America",
552
+ "country": "USA",
553
+ "division": "South Dakota",
554
+ "location": null,
555
+ "count": 8620
556
+ },
557
+ {
558
+ "region": "Asia",
559
+ "country": "Thailand",
560
+ "division": "Chonburi",
561
+ "location": null,
562
+ "count": 11
563
+ },
564
+ {
565
+ "region": "Europe",
566
+ "country": "Germany",
567
+ "division": "Bavaria",
568
+ "location": "Augsburg",
569
+ "count": 42
570
+ },
571
+ {
572
+ "region": "North America",
573
+ "country": "USA",
574
+ "division": "Pennsylvania",
575
+ "location": "Northumberland County PA",
576
+ "count": 1
577
+ },
578
+ {
579
+ "region": "North America",
580
+ "country": "USA",
581
+ "division": "Colorado",
582
+ "location": "Arapahoe County CO",
583
+ "count": 2
584
+ },
585
+ {
586
+ "region": "Asia",
587
+ "country": "Palestine",
588
+ "division": "Jenin",
589
+ "location": "Jenin",
590
+ "count": 4
591
+ },
592
+ {
593
+ "region": "North America",
594
+ "country": "USA",
595
+ "division": "California",
596
+ "location": "Lawton CA",
597
+ "count": 1
598
+ },
599
+ {
600
+ "region": "North America",
601
+ "country": "USA",
602
+ "division": "Washington",
603
+ "location": "Garfield County WA",
604
+ "count": 14
605
+ },
606
+ {
607
+ "region": "North America",
608
+ "country": "USA",
609
+ "division": "Oregon",
610
+ "location": "Moore OR",
611
+ "count": 1
612
+ },
613
+ {
614
+ "region": "Europe",
615
+ "country": "Sweden",
616
+ "division": "Vastra Gotaland",
617
+ "location": "Goteborg",
618
+ "count": 1
619
+ },
620
+ {
621
+ "region": "North America",
622
+ "country": "USA",
623
+ "division": "Arizona",
624
+ "location": "Mohave County",
625
+ "count": 1261
626
+ },
627
+ {
628
+ "region": "Europe",
629
+ "country": "Austria",
630
+ "division": "Upper Austria",
631
+ "location": "Poendorf",
632
+ "count": 1
633
+ },
634
+ {
635
+ "region": "North America",
636
+ "country": "USA",
637
+ "division": "Oklahoma",
638
+ "location": "Ft. Gibson",
639
+ "count": 2
640
+ },
641
+ {
642
+ "region": "North America",
643
+ "country": "USA",
644
+ "division": "Oklahoma",
645
+ "location": "Sequoyah County",
646
+ "count": 245
647
+ },
648
+ {
649
+ "region": "Europe",
650
+ "country": "Austria",
651
+ "division": "Upper Austria",
652
+ "location": "Gosau",
653
+ "count": 2
654
+ },
655
+ {
656
+ "region": "North America",
657
+ "country": "USA",
658
+ "division": "Massachusetts",
659
+ "location": "Eastotis",
660
+ "count": 1
661
+ },
662
+ {
663
+ "region": "Asia",
664
+ "country": "Kazakhstan",
665
+ "division": "Almaty",
666
+ "location": null,
667
+ "count": 5
668
+ },
669
+ {
670
+ "region": "North America",
671
+ "country": "USA",
672
+ "division": "North Carolina",
673
+ "location": "Scotland County NC",
674
+ "count": 1
675
+ },
676
+ {
677
+ "region": "North America",
678
+ "country": "USA",
679
+ "division": "Colorado",
680
+ "location": "Pueblo County",
681
+ "count": 1
682
+ },
683
+ {
684
+ "region": "North America",
685
+ "country": "USA",
686
+ "division": "Washington",
687
+ "location": "Chelan County",
688
+ "count": 575
689
+ },
690
+ {
691
+ "region": "North America",
692
+ "country": "USA",
693
+ "division": "South Carolina",
694
+ "location": "Georgetown County",
695
+ "count": 134
696
+ },
697
+ {
698
+ "region": "North America",
699
+ "country": "USA",
700
+ "division": "New Jersey",
701
+ "location": "Morris County NJ",
702
+ "count": 1
703
+ },
704
+ {
705
+ "region": "Africa",
706
+ "country": "Mali",
707
+ "division": "Bamako",
708
+ "location": null,
709
+ "count": 31
710
+ },
711
+ {
712
+ "region": "Asia",
713
+ "country": "Uzbekistan",
714
+ "division": "Tashkent",
715
+ "location": "Yunusabad District, Center 3",
716
+ "count": 1
717
+ },
718
+ {
719
+ "region": "North America",
720
+ "country": "USA",
721
+ "division": "Alabama",
722
+ "location": "Monroe County AL",
723
+ "count": 1
724
+ },
725
+ {
726
+ "region": "North America",
727
+ "country": "USA",
728
+ "division": "Georgia",
729
+ "location": "Forsyth GA",
730
+ "count": 1
731
+ },
732
+ {
733
+ "region": "Europe",
734
+ "country": "Netherlands",
735
+ "division": "North Brabant",
736
+ "location": "Helmond",
737
+ "count": 1
738
+ },
739
+ {
740
+ "region": "North America",
741
+ "country": "USA",
742
+ "division": "Wisconsin",
743
+ "location": "Sheboygan County",
744
+ "count": 140
745
+ },
746
+ {
747
+ "region": "North America",
748
+ "country": "USA",
749
+ "division": "California",
750
+ "location": "Orange County CA",
751
+ "count": 5217
752
+ },
753
+ {
754
+ "region": "North America",
755
+ "country": "USA",
756
+ "division": "Oklahoma",
757
+ "location": "Finley OK",
758
+ "count": 2
759
+ },
760
+ {
761
+ "region": "Africa",
762
+ "country": "Sierra Leone",
763
+ "division": "Sierra Leone",
764
+ "location": null,
765
+ "count": 97
766
+ },
767
+ {
768
+ "region": "Asia",
769
+ "country": "Japan",
770
+ "division": "Sapporo",
771
+ "location": null,
772
+ "count": 4
773
+ }
774
+ ]
775
+ }