-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSecondary_Filtered.twb
4762 lines (4761 loc) · 595 KB
/
Secondary_Filtered.twb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version='1.0' encoding='utf-8' ?>
<!-- build 20191.19.0213.2333 -->
<workbook original-version='18.1' source-build='2019.1.0 (20191.19.0213.2333)' source-platform='mac' version='18.1' xmlns:user='http://www.tableausoftware.com/xml/user'>
<document-format-change-manifest>
<IntuitiveSorting />
<IntuitiveSorting_SP2 />
<SheetIdentifierTracking />
<WindowsPersistSimpleIdentifiers />
</document-format-change-manifest>
<preferences>
<preference name='ui.encoding.shelf.height' value='24' />
<preference name='ui.shelf.height' value='26' />
</preferences>
<datasources>
<datasource inline='true' name='Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70' version='18.1'>
<connection class='federated'>
<named-connections>
<named-connection name='hyper_0'>
<connection access_mode='readwrite' author-locale='en_US' class='hyper' dbname='/Users/jabs/Documents/My Tableau Prep Repository/Datasources/Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70.hyper' default-settings='yes' output-to-hyper-file='yes' prep-protocol-role=':prep-protocol-writer' schema='Extract' sslmode='' tablename='Extract' username='tableau_internal_user' />
</named-connection>
</named-connections>
<relation connection='hyper_0' name='Extract' table='[Extract].[Extract]' type='table' />
<metadata-records>
<metadata-record class='column'>
<remote-name>DALY Lower</remote-name>
<remote-type>5</remote-type>
<local-name>[DALY Lower]</local-name>
<parent-name>[Extract]</parent-name>
<remote-alias>DALY Lower</remote-alias>
<ordinal>0</ordinal>
<local-type>real</local-type>
<aggregation>Sum</aggregation>
<approx-count>581360</approx-count>
<contains-null>true</contains-null>
</metadata-record>
<metadata-record class='column'>
<remote-name>DALY Upper</remote-name>
<remote-type>5</remote-type>
<local-name>[DALY Upper]</local-name>
<parent-name>[Extract]</parent-name>
<remote-alias>DALY Upper</remote-alias>
<ordinal>1</ordinal>
<local-type>real</local-type>
<aggregation>Sum</aggregation>
<approx-count>606620</approx-count>
<contains-null>true</contains-null>
</metadata-record>
<metadata-record class='column'>
<remote-name>DALY Mean</remote-name>
<remote-type>5</remote-type>
<local-name>[DALY Mean]</local-name>
<parent-name>[Extract]</parent-name>
<remote-alias>DALY Mean</remote-alias>
<ordinal>2</ordinal>
<local-type>real</local-type>
<aggregation>Sum</aggregation>
<approx-count>584128</approx-count>
<contains-null>true</contains-null>
</metadata-record>
<metadata-record class='column'>
<remote-name>location</remote-name>
<remote-type>129</remote-type>
<local-name>[location]</local-name>
<parent-name>[Extract]</parent-name>
<remote-alias>location</remote-alias>
<ordinal>3</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<approx-count>195</approx-count>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RUS_S2' />
</metadata-record>
<metadata-record class='column'>
<remote-name>sex</remote-name>
<remote-type>129</remote-type>
<local-name>[sex]</local-name>
<parent-name>[Extract]</parent-name>
<remote-alias>sex</remote-alias>
<ordinal>4</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<approx-count>2</approx-count>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RUS_S2' />
</metadata-record>
<metadata-record class='column'>
<remote-name>cause</remote-name>
<remote-type>129</remote-type>
<local-name>[cause]</local-name>
<parent-name>[Extract]</parent-name>
<remote-alias>cause</remote-alias>
<ordinal>5</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<approx-count>22</approx-count>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RUS_S2' />
</metadata-record>
<metadata-record class='column'>
<remote-name>rei_value</remote-name>
<remote-type>129</remote-type>
<local-name>[rei_value]</local-name>
<parent-name>[Extract]</parent-name>
<remote-alias>rei_value</remote-alias>
<ordinal>6</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<approx-count>36</approx-count>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RUS_S2' />
</metadata-record>
<metadata-record class='column'>
<remote-name>metric</remote-name>
<remote-type>129</remote-type>
<local-name>[metric]</local-name>
<parent-name>[Extract]</parent-name>
<remote-alias>metric</remote-alias>
<ordinal>7</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<approx-count>2</approx-count>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RUS_S2' />
</metadata-record>
<metadata-record class='column'>
<remote-name>year</remote-name>
<remote-type>20</remote-type>
<local-name>[year]</local-name>
<parent-name>[Extract]</parent-name>
<remote-alias>year</remote-alias>
<ordinal>8</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<approx-count>11</approx-count>
<contains-null>true</contains-null>
</metadata-record>
<metadata-record class='column'>
<remote-name>Table Names</remote-name>
<remote-type>129</remote-type>
<local-name>[Table Names]</local-name>
<parent-name>[Extract]</parent-name>
<remote-alias>Table Names</remote-alias>
<ordinal>9</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<approx-count>1</approx-count>
<contains-null>true</contains-null>
<collation flag='0' name='binary' />
</metadata-record>
<metadata-record class='column'>
<remote-name>File Paths</remote-name>
<remote-type>129</remote-type>
<local-name>[File Paths]</local-name>
<parent-name>[Extract]</parent-name>
<remote-alias>File Paths</remote-alias>
<ordinal>10</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<approx-count>1</approx-count>
<contains-null>true</contains-null>
<collation flag='0' name='binary' />
</metadata-record>
</metadata-records>
</connection>
<column datatype='integer' name='[Number of Records]' role='measure' type='quantitative' user:auto-column='numrec'>
<calculation class='tableau' formula='1' />
</column>
<column datatype='string' name='[location]' role='dimension' semantic-role='[Country].[Name]' type='nominal' />
<column aggregation='Sum' datatype='integer' name='[year]' role='dimension' type='ordinal' />
<column-instance column='[location]' derivation='None' name='[none:location:nk]' pivot='key' type='nominal' />
<layout dim-ordering='alphabetic' dim-percentage='0.545648' measure-ordering='alphabetic' measure-percentage='0.454352' show-structure='true' />
<style>
<style-rule element='mark'>
<encoding attr='color' field='[none:location:nk]' type='palette'>
<map to='#499894'>
<bucket>"Armenia"</bucket>
</map>
<map to='#499894'>
<bucket>"Burundi"</bucket>
</map>
<map to='#499894'>
<bucket>"Djibouti"</bucket>
</map>
<map to='#499894'>
<bucket>"Grenada"</bucket>
</map>
<map to='#499894'>
<bucket>"Kazakhstan"</bucket>
</map>
<map to='#499894'>
<bucket>"Marshall Islands"</bucket>
</map>
<map to='#499894'>
<bucket>"Oman"</bucket>
</map>
<map to='#499894'>
<bucket>"Senegal"</bucket>
</map>
<map to='#499894'>
<bucket>"Taiwan"</bucket>
</map>
<map to='#499894'>
<bucket>"Vanuatu"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Afghanistan"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Bhutan"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Costa Rica"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Finland"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Iran"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Luxembourg"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Netherlands"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Romania"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Spain"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Turkmenistan"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Andorra"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Brazil"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Cyprus"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Germany"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Italy"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Malaysia"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Nigeria"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Saint Vincent and the Grenadines"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Swaziland"</bucket>
</map>
<map to='#59a14f'>
<bucket>"United Kingdom"</bucket>
</map>
<map to='#79706e'>
<bucket>"Bahrain"</bucket>
</map>
<map to='#79706e'>
<bucket>"Cape Verde"</bucket>
</map>
<map to='#79706e'>
<bucket>"Egypt"</bucket>
</map>
<map to='#79706e'>
<bucket>"Guinea-Bissau"</bucket>
</map>
<map to='#79706e'>
<bucket>"Kyrgyzstan"</bucket>
</map>
<map to='#79706e'>
<bucket>"Moldova"</bucket>
</map>
<map to='#79706e'>
<bucket>"Papua New Guinea"</bucket>
</map>
<map to='#79706e'>
<bucket>"Singapore"</bucket>
</map>
<map to='#79706e'>
<bucket>"The Bahamas"</bucket>
</map>
<map to='#79706e'>
<bucket>"Yemen"</bucket>
</map>
<map to='#86bcb6'>
<bucket>"Australia"</bucket>
</map>
<map to='#86bcb6'>
<bucket>"Cambodia"</bucket>
</map>
<map to='#86bcb6'>
<bucket>"Dominica"</bucket>
</map>
<map to='#86bcb6'>
<bucket>"Guam"</bucket>
</map>
<map to='#86bcb6'>
<bucket>"Kenya"</bucket>
</map>
<map to='#86bcb6'>
<bucket>"Mauritania"</bucket>
</map>
<map to='#86bcb6'>
<bucket>"Pakistan"</bucket>
</map>
<map to='#86bcb6'>
<bucket>"Serbia"</bucket>
</map>
<map to='#86bcb6'>
<bucket>"Tajikistan"</bucket>
</map>
<map to='#86bcb6'>
<bucket>"Venezuela"</bucket>
</map>
<map to='#8cd17d'>
<bucket>"Angola"</bucket>
</map>
<map to='#8cd17d'>
<bucket>"Brunei"</bucket>
</map>
<map to='#8cd17d'>
<bucket>"Czech Republic"</bucket>
</map>
<map to='#8cd17d'>
<bucket>"Ghana"</bucket>
</map>
<map to='#8cd17d'>
<bucket>"Jamaica"</bucket>
</map>
<map to='#8cd17d'>
<bucket>"Maldives"</bucket>
</map>
<map to='#8cd17d'>
<bucket>"North Korea"</bucket>
</map>
<map to='#8cd17d'>
<bucket>"Samoa"</bucket>
</map>
<map to='#8cd17d'>
<bucket>"Sweden"</bucket>
</map>
<map to='#8cd17d'>
<bucket>"United States"</bucket>
</map>
<map to='#9d7660'>
<bucket>"Benin"</bucket>
</map>
<map to='#9d7660'>
<bucket>"Comoros"</bucket>
</map>
<map to='#9d7660'>
<bucket>"Federated States of Micronesia"</bucket>
</map>
<map to='#9d7660'>
<bucket>"India"</bucket>
</map>
<map to='#9d7660'>
<bucket>"Libya"</bucket>
</map>
<map to='#9d7660'>
<bucket>"Namibia"</bucket>
</map>
<map to='#9d7660'>
<bucket>"Puerto Rico"</bucket>
</map>
<map to='#9d7660'>
<bucket>"South Korea"</bucket>
</map>
<map to='#9d7660'>
<bucket>"Tunisia"</bucket>
</map>
<map to='#a0cbe8'>
<bucket>"Albania"</bucket>
</map>
<map to='#a0cbe8'>
<bucket>"Bolivia"</bucket>
</map>
<map to='#a0cbe8'>
<bucket>"Cote d'Ivoire"</bucket>
</map>
<map to='#a0cbe8'>
<bucket>"France"</bucket>
</map>
<map to='#a0cbe8'>
<bucket>"Iraq"</bucket>
</map>
<map to='#a0cbe8'>
<bucket>"Macedonia"</bucket>
</map>
<map to='#a0cbe8'>
<bucket>"New Zealand"</bucket>
</map>
<map to='#a0cbe8'>
<bucket>"Russian Federation"</bucket>
</map>
<map to='#a0cbe8'>
<bucket>"Sri Lanka"</bucket>
</map>
<map to='#a0cbe8'>
<bucket>"Uganda"</bucket>
</map>
<map to='#b07aa1'>
<bucket>"Belgium"</bucket>
</map>
<map to='#b07aa1'>
<bucket>"China"</bucket>
</map>
<map to='#b07aa1'>
<bucket>"Estonia"</bucket>
</map>
<map to='#b07aa1'>
<bucket>"Hungary"</bucket>
</map>
<map to='#b07aa1'>
<bucket>"Lesotho"</bucket>
</map>
<map to='#b07aa1'>
<bucket>"Mozambique"</bucket>
</map>
<map to='#b07aa1'>
<bucket>"Poland"</bucket>
</map>
<map to='#b07aa1'>
<bucket>"Somalia"</bucket>
</map>
<map to='#b07aa1'>
<bucket>"Tonga"</bucket>
</map>
<map to='#b6992d'>
<bucket>"Antigua and Barbuda"</bucket>
</map>
<map to='#b6992d'>
<bucket>"Bulgaria"</bucket>
</map>
<map to='#b6992d'>
<bucket>"Democratic Republic of the Congo"</bucket>
</map>
<map to='#b6992d'>
<bucket>"Greece"</bucket>
</map>
<map to='#b6992d'>
<bucket>"Japan"</bucket>
</map>
<map to='#b6992d'>
<bucket>"Mali"</bucket>
</map>
<map to='#b6992d'>
<bucket>"Northern Mariana Islands"</bucket>
</map>
<map to='#b6992d'>
<bucket>"Sao Tome and Principe"</bucket>
</map>
<map to='#b6992d'>
<bucket>"Switzerland"</bucket>
</map>
<map to='#b6992d'>
<bucket>"Uruguay"</bucket>
</map>
<map to='#bab0ac'>
<bucket>"Bangladesh"</bucket>
</map>
<map to='#bab0ac'>
<bucket>"Central African Republic"</bucket>
</map>
<map to='#bab0ac'>
<bucket>"El Salvador"</bucket>
</map>
<map to='#bab0ac'>
<bucket>"Guyana"</bucket>
</map>
<map to='#bab0ac'>
<bucket>"Laos"</bucket>
</map>
<map to='#bab0ac'>
<bucket>"Mongolia"</bucket>
</map>
<map to='#bab0ac'>
<bucket>"Paraguay"</bucket>
</map>
<map to='#bab0ac'>
<bucket>"Slovakia"</bucket>
</map>
<map to='#bab0ac'>
<bucket>"The Gambia"</bucket>
</map>
<map to='#bab0ac'>
<bucket>"Zambia"</bucket>
</map>
<map to='#d37295'>
<bucket>"Barbados"</bucket>
</map>
<map to='#d37295'>
<bucket>"Chad"</bucket>
</map>
<map to='#d37295'>
<bucket>"Equatorial Guinea"</bucket>
</map>
<map to='#d37295'>
<bucket>"Haiti"</bucket>
</map>
<map to='#d37295'>
<bucket>"Latvia"</bucket>
</map>
<map to='#d37295'>
<bucket>"Montenegro"</bucket>
</map>
<map to='#d37295'>
<bucket>"Peru"</bucket>
</map>
<map to='#d37295'>
<bucket>"Slovenia"</bucket>
</map>
<map to='#d37295'>
<bucket>"Timor-Leste"</bucket>
</map>
<map to='#d37295'>
<bucket>"Zimbabwe"</bucket>
</map>
<map to='#d4a6c8'>
<bucket>"Belize"</bucket>
</map>
<map to='#d4a6c8'>
<bucket>"Colombia"</bucket>
</map>
<map to='#d4a6c8'>
<bucket>"Ethiopia"</bucket>
</map>
<map to='#d4a6c8'>
<bucket>"Iceland"</bucket>
</map>
<map to='#d4a6c8'>
<bucket>"Liberia"</bucket>
</map>
<map to='#d4a6c8'>
<bucket>"Myanmar"</bucket>
</map>
<map to='#d4a6c8'>
<bucket>"Portugal"</bucket>
</map>
<map to='#d4a6c8'>
<bucket>"South Africa"</bucket>
</map>
<map to='#d4a6c8'>
<bucket>"Trinidad and Tobago"</bucket>
</map>
<map to='#d7b5a6'>
<bucket>"Bermuda"</bucket>
</map>
<map to='#d7b5a6'>
<bucket>"Congo"</bucket>
</map>
<map to='#d7b5a6'>
<bucket>"Fiji"</bucket>
</map>
<map to='#d7b5a6'>
<bucket>"Indonesia"</bucket>
</map>
<map to='#d7b5a6'>
<bucket>"Lithuania"</bucket>
</map>
<map to='#d7b5a6'>
<bucket>"Nepal"</bucket>
</map>
<map to='#d7b5a6'>
<bucket>"Qatar"</bucket>
</map>
<map to='#d7b5a6'>
<bucket>"South Sudan"</bucket>
</map>
<map to='#d7b5a6'>
<bucket>"Turkey"</bucket>
</map>
<map to='#e15759'>
<bucket>"Austria"</bucket>
</map>
<map to='#e15759'>
<bucket>"Cameroon"</bucket>
</map>
<map to='#e15759'>
<bucket>"Dominican Republic"</bucket>
</map>
<map to='#e15759'>
<bucket>"Guatemala"</bucket>
</map>
<map to='#e15759'>
<bucket>"Kiribati"</bucket>
</map>
<map to='#e15759'>
<bucket>"Mauritius"</bucket>
</map>
<map to='#e15759'>
<bucket>"Palestine"</bucket>
</map>
<map to='#e15759'>
<bucket>"Seychelles"</bucket>
</map>
<map to='#e15759'>
<bucket>"Tanzania"</bucket>
</map>
<map to='#e15759'>
<bucket>"Vietnam"</bucket>
</map>
<map to='#f1ce63'>
<bucket>"Argentina"</bucket>
</map>
<map to='#f1ce63'>
<bucket>"Burkina Faso"</bucket>
</map>
<map to='#f1ce63'>
<bucket>"Denmark"</bucket>
</map>
<map to='#f1ce63'>
<bucket>"Greenland"</bucket>
</map>
<map to='#f1ce63'>
<bucket>"Jordan"</bucket>
</map>
<map to='#f1ce63'>
<bucket>"Malta"</bucket>
</map>
<map to='#f1ce63'>
<bucket>"Norway"</bucket>
</map>
<map to='#f1ce63'>
<bucket>"Saudi Arabia"</bucket>
</map>
<map to='#f1ce63'>
<bucket>"Syria"</bucket>
</map>
<map to='#f1ce63'>
<bucket>"Uzbekistan"</bucket>
</map>
<map to='#f28e2b'>
<bucket>"Algeria"</bucket>
</map>
<map to='#f28e2b'>
<bucket>"Bosnia and Herzegovina"</bucket>
</map>
<map to='#f28e2b'>
<bucket>"Croatia"</bucket>
</map>
<map to='#f28e2b'>
<bucket>"Gabon"</bucket>
</map>
<map to='#f28e2b'>
<bucket>"Ireland"</bucket>
</map>
<map to='#f28e2b'>
<bucket>"Madagascar"</bucket>
</map>
<map to='#f28e2b'>
<bucket>"Nicaragua"</bucket>
</map>
<map to='#f28e2b'>
<bucket>"Rwanda"</bucket>
</map>
<map to='#f28e2b'>
<bucket>"Sudan"</bucket>
</map>
<map to='#f28e2b'>
<bucket>"Ukraine"</bucket>
</map>
<map to='#fabfd2'>
<bucket>"Belarus"</bucket>
</map>
<map to='#fabfd2'>
<bucket>"Chile"</bucket>
</map>
<map to='#fabfd2'>
<bucket>"Eritrea"</bucket>
</map>
<map to='#fabfd2'>
<bucket>"Honduras"</bucket>
</map>
<map to='#fabfd2'>
<bucket>"Lebanon"</bucket>
</map>
<map to='#fabfd2'>
<bucket>"Morocco"</bucket>
</map>
<map to='#fabfd2'>
<bucket>"Philippines"</bucket>
</map>
<map to='#fabfd2'>
<bucket>"Solomon Islands"</bucket>
</map>
<map to='#fabfd2'>
<bucket>"Togo"</bucket>
</map>
<map to='#ff9d9a'>
<bucket>"Azerbaijan"</bucket>
</map>
<map to='#ff9d9a'>
<bucket>"Canada"</bucket>
</map>
<map to='#ff9d9a'>
<bucket>"Ecuador"</bucket>
</map>
<map to='#ff9d9a'>
<bucket>"Guinea"</bucket>
</map>
<map to='#ff9d9a'>
<bucket>"Kuwait"</bucket>
</map>
<map to='#ff9d9a'>
<bucket>"Mexico"</bucket>
</map>
<map to='#ff9d9a'>
<bucket>"Panama"</bucket>
</map>
<map to='#ff9d9a'>
<bucket>"Sierra Leone"</bucket>
</map>
<map to='#ff9d9a'>
<bucket>"Thailand"</bucket>
</map>
<map to='#ff9d9a'>
<bucket>"Virgin Islands, U.S."</bucket>
</map>
<map to='#ffbe7d'>
<bucket>"American Samoa"</bucket>
</map>
<map to='#ffbe7d'>
<bucket>"Botswana"</bucket>
</map>
<map to='#ffbe7d'>
<bucket>"Cuba"</bucket>
</map>
<map to='#ffbe7d'>
<bucket>"Georgia"</bucket>
</map>
<map to='#ffbe7d'>
<bucket>"Israel"</bucket>
</map>
<map to='#ffbe7d'>
<bucket>"Malawi"</bucket>
</map>
<map to='#ffbe7d'>
<bucket>"Niger"</bucket>
</map>
<map to='#ffbe7d'>
<bucket>"Saint Lucia"</bucket>
</map>
<map to='#ffbe7d'>
<bucket>"Suriname"</bucket>
</map>
<map to='#ffbe7d'>
<bucket>"United Arab Emirates"</bucket>
</map>
</encoding>
</style-rule>
</style>
<semantic-values>
<semantic-value key='[Country].[Name]' value='"United States"' />
</semantic-values>
</datasource>
</datasources>
<mapsources>
<mapsource name='Tableau' />
</mapsources>
<worksheets>
<worksheet name='DALY Map'>
<layout-options>
<title>
<formatted-text>
<run fontalignment='1'>Global DALY Rate Map for the Year of 2017</run>
</formatted-text>
</title>
</layout-options>
<table>
<view>
<datasources>
<datasource name='Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70' />
</datasources>
<mapsources>
<mapsource name='Tableau' />
</mapsources>
<datasource-dependencies datasource='Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70'>
<column datatype='real' name='[DALY Mean]' role='measure' type='quantitative' />
<column datatype='string' name='[cause]' role='dimension' type='nominal' />
<column datatype='string' name='[location]' role='dimension' semantic-role='[Country].[Name]' type='nominal' />
<column datatype='string' name='[metric]' role='dimension' type='nominal' />
<column-instance column='[cause]' derivation='None' name='[none:cause:nk]' pivot='key' type='nominal' />
<column-instance column='[location]' derivation='None' name='[none:location:nk]' pivot='key' type='nominal' />
<column-instance column='[metric]' derivation='None' name='[none:metric:nk]' pivot='key' type='nominal' />
<column-instance column='[rei_value]' derivation='None' name='[none:rei_value:nk]' pivot='key' type='nominal' />
<column-instance column='[sex]' derivation='None' name='[none:sex:nk]' pivot='key' type='nominal' />
<column-instance column='[year]' derivation='None' name='[none:year:ok]' pivot='key' type='ordinal' />
<column datatype='string' name='[rei_value]' role='dimension' type='nominal' />
<column datatype='string' name='[sex]' role='dimension' type='nominal' />
<column-instance column='[DALY Mean]' derivation='Sum' name='[sum:DALY Mean:qk]' pivot='key' type='quantitative' />
<column aggregation='Sum' datatype='integer' name='[year]' role='dimension' type='ordinal' />
</datasource-dependencies>
<filter class='categorical' column='[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[none:cause:nk]'>
<groupfilter function='level-members' level='[none:cause:nk]' user:ui-enumeration='all' user:ui-marker='enumerate' />
</filter>
<filter class='categorical' column='[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[none:metric:nk]'>
<groupfilter function='member' level='[none:metric:nk]' member='"Rate"' user:ui-domain='relevant' user:ui-enumeration='inclusive' user:ui-marker='enumerate' />
</filter>
<filter class='categorical' column='[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[none:rei_value:nk]'>
<groupfilter from='"Adenovirus"' function='range' level='[none:rei_value:nk]' to='"Unsafe water, sanitation, and handwashing"' user:ui-domain='relevant' user:ui-enumeration='inclusive' user:ui-marker='enumerate' />
</filter>
<filter class='categorical' column='[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[none:sex:nk]'>
<groupfilter function='union' user:ui-domain='relevant' user:ui-enumeration='inclusive' user:ui-marker='enumerate'>
<groupfilter function='member' level='[none:sex:nk]' member='"Female"' />
<groupfilter function='member' level='[none:sex:nk]' member='"Male"' />
</groupfilter>
</filter>
<filter class='categorical' column='[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[none:year:ok]'>
<groupfilter function='member' level='[none:year:ok]' member='2017' user:ui-domain='relevant' user:ui-enumeration='inclusive' user:ui-marker='enumerate' />
</filter>
<slices>
<column>[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[none:metric:nk]</column>
<column>[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[none:cause:nk]</column>
<column>[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[none:year:ok]</column>
<column>[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[none:sex:nk]</column>
<column>[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[none:rei_value:nk]</column>
</slices>
<aggregation value='true' />
</view>
<style>
<style-rule element='axis'>
<encoding attr='space' class='0' field='[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[Longitude (generated)]' field-type='quantitative' max='19706778.514015526' min='-21540794.313392714' projection='EPSG:3857' range-type='fixed' scope='cols' type='space' />
<encoding attr='space' class='0' field='[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[Latitude (generated)]' field-type='quantitative' max='20115349.591513272' min='-11764130.424246326' projection='EPSG:3857' range-type='fixed' scope='rows' type='space' />
</style-rule>
<style-rule element='mark'>
<encoding attr='color' field='[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[sum:DALY Mean:qk]' palette='tableau-map-temperatur' type='interpolated' />
</style-rule>
<style-rule element='annotation'>
<format attr='line-end-size' id='annotation_0' value='medium' />
<format attr='stroke-size' id='annotation_3' value='2' />
<format attr='stroke-size' id='annotation_0' value='2' />
<format attr='stroke-size' id='annotation_4' value='2' />
<format attr='line-end' id='annotation_0' value='none' />
</style-rule>
<style-rule element='map-layer'>
<format attr='enabled' id='tab_base' value='true' />
<format attr='enabled' id='um_lcover' value='true' />
<format attr='enabled' id='tab_coastline' value='false' />
<format attr='enabled' id='pp2_line' value='false' />
<format attr='enabled' id='light_adm0_bnd' value='false' />
<format attr='enabled' id='light_adm0_lbl' value='false' />
<format attr='enabled' id='um_adm0_bnd' value='true' />
<format attr='enabled' id='um_adm0_lbl' value='true' />
<format attr='enabled' id='light_pp2_statebounds' value='false' />
<format attr='enabled' id='light_pp2_statelabels' value='false' />
<format attr='enabled' id='pp2_adminlabels' value='false' />
<format attr='enabled' id='pp2_statebounds' value='true' />
<format attr='enabled' id='pp2_statelabels' value='true' />
<format attr='enabled' id='countybounds' value='false' />
<format attr='enabled' id='countylabels' value='false' />
<format attr='enabled' id='zipbounds' value='false' />
<format attr='enabled' id='ziplabels' value='false' />
<format attr='enabled' id='tab_areabounds' value='false' />
<format attr='enabled' id='tab_arealabels' value='false' />
<format attr='enabled' id='tab_msabounds' value='false' />
<format attr='enabled' id='tab_msalabels' value='false' />
</style-rule>
<style-rule element='map'>
<format attr='washout' value='0.0' />
</style-rule>
</style>
<panes>
<pane selection-relaxation-option='selection-relaxation-allow'>
<view>
<breakdown value='auto' />
</view>
<mark class='Automatic' />
<encodings>
<color column='[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[sum:DALY Mean:qk]' />
<lod column='[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[none:location:nk]' />
<geometry column='[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[Geometry (generated)]' />
</encodings>
</pane>
</panes>
<rows>[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[Latitude (generated)]</rows>
<cols>[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[Longitude (generated)]</cols>
<annotations>
<annotation class='point' id='0' mark-position='1' pullback='0' text-width='192'>
<formatted-text>
<run fontcolor='#787878' fontsize='8'>location: </run>
<run bold='true' fontsize='8'><[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[none:location:nk]></run>
<run>Æ </run>
<run fontcolor='#787878' fontsize='8'>DALY Mean: </run>
<run bold='true' fontsize='8'><[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[sum:DALY Mean:qk]></run>
</formatted-text>
<point>
<visual-coordinate class='mark'>
<tuple-reference>
<tuple-descriptor>
<pane-descriptor>
<x-fields>
<field>[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[Longitude (generated)]</field>
</x-fields>
<y-fields>
<field>[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[Latitude (generated)]</field>
</y-fields>
</pane-descriptor>
<columns>
<field>[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[none:location:nk]</field>
<field>[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[sum:DALY Mean:qk]</field>
<field>[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[Geometry (generated)]</field>
<field>[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[Latitude (generated)]</field>
<field>[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[Longitude (generated)]</field>
</columns>
</tuple-descriptor>
<tuple>
<value>"Central African Republic"</value>
<value>188033.858982323</value>
<value>"POLYGON((15.5031 7.5314,15.5627 7.51,15.6577 7.5183,15.7197 7.5176,15.7602 7.4623,15.8089 7.4424,15.87 7.4554,15.933 7.4845,15.9701 7.4868,16.0066 7.5096,16.0559 7.5801,16.1023 7.5943,16.1612 7.5945,16.1971 7.6171,16.2472 7.6119,16.2956 7.6544,16.3986 7.6823,16.4242 7.7157,16.4055 7.7716,16.4308 7.81,16.4515 7.787,16.4866 7.8093,16.5369 7.8597,16.5784 7.8575,16.5911 7.7729,16.6593 7.7451,16.6585 7.6742,16.6906 7.6517,16.7216 7.6536,16.7767 7.6059,16.8074 7.5393,16.8594 7.5449,16.9228 7.6256,16.9506 7.6455,17.0357 7.6387,17.0881 7.6656,17.1538 7.6703,17.1664 7.7186,17.2001 7.7213,17.2073 7.7465,17.2581 7.7531,17.2762 7.8093,17.2959 7.8311,17.3223 7.8253,17.3586 7.8554,17.4721 7.9005,17.5088 7.8719,17.5352 7.8909,17.5489 7.9313,17.6056 7.9294,17.6436 7.9451,17.6614 7.985,17.6948 7.9723,17.7248 7.9784,17.9256 7.9591,18.0055 7.9995,18.0435 8.0111,18.1149 8.0125,18.5714 8.046,18.6113 8.0542,18.6336 8.0819,18.6309 8.1351,18.6388 8.1615,18.6765 8.2156,18.8026 8.2637,18.833 8.2915,18.8487 8.3454,18.8928 8.3638,18.9366 8.4489,18.9616 8.4633,18.9914 8.5209,19.0276 8.5214,19.0454 8.5894,19.0816 8.6407,19.1236 8.6739,19.1008 8.7001,19.0318 8.7325,19.0145 8.7604,18.9739 8.7772,18.9436 8.8123,18.9142 8.8067,18.9066 8.8486,18.8612 8.8538,18.8617 8.8793,18.8989 8.8991,18.9156 8.9264,18.9727 8.9426,18.9829 8.9698,19.0123 8.9667,19.0217 8.9932,19.0614 8.9968,19.0813 9.0202,19.1144 9.0061,19.146 9.0091,19.2171 9.0347,19.302 9.0093,19.342 9.0279,19.3603 8.9999,19.3998 9.0215,19.4638 9.0057,19.4883 9.0202,19.5404 9.0179,19.5805 9.0319,19.6049 9.0205,19.6887 9.0276,19.7194 9.048,19.735 9.037,19.7721 9.0628,19.8429 9.0534,19.9031 9.0789,19.9708 9.0861,19.9828 9.1088,20.0603 9.145,20.0789 9.132,20.108 9.1559,20.1321 9.1415,20.1927 9.137,20.2142 9.1565,20.2472 9.1305,20.3067 9.1179,20.3708 9.1288,20.3879 9.1474,20.4442 9.1504,20.4638 9.195,20.4872 9.2244,20.5171 9.2237,20.4955 9.2978,20.5242 9.3007,20.5378 9.3363,20.5985 9.3143,20.6544 9.3177,20.6476 9.3352,20.6626 9.3925,20.6855 9.4027,20.765 9.4005,20.7889 9.4294,20.864 9.4991,20.8789 9.5234,20.921 9.5226,20.9268 9.567,20.9527 9.5619,20.9493 9.6096,20.9945 9.628,21.0036 9.7448,21.0462 9.7829,21.0685 9.7645,21.1212 9.804,21.1121 9.8216,21.1545 9.8783,21.2029 9.9018,21.2129 9.9531,21.2432 9.9661,21.2547 9.9952,21.3503 9.9622,21.3581 9.9859,21.3857 9.9884,21.4038 10.0383,21.4294 10.0494,21.4746 10.1661,21.525 10.2214,21.5572 10.2138,21.6056 10.2178,21.6782 10.242,21.674 10.2791,21.6997 10.286,21.7403 10.323,21.7408 10.3921,21.7728 10.4255,21.751 10.4662,21.715 10.4941,21.7284 10.6299,21.7798 10.6591,21.7895 10.6957,21.7875 10.7975,21.8396 10.8496,21.861 10.843,21.8854 10.87,21.9287 10.851,21.986 10.8622,22.0208 10.8959,22.0995 10.8852,22.1718 10.884,22.1833 10.909,22.2481 10.9207,22.3649 10.9551,22.3737 10.9688,22.4268 10.9733,22.4373 10.9971,22.5242 11.0128,22.5636 10.9857,22.5966 11.0077,22.659 10.9955,22.7098 10.9764,22.7225 10.9844,22.7833 10.9504,22.8333 10.9356,22.8807 10.9419,22.9327 10.8826,22.9473 10.845,23.0102 10.7547,23.0273 10.711,23.075 10.6686,23.1499 10.62,23.1676 10.5868,23.2375 10.5396,23.2682 10.4971,23.3071 10.4629,23.67 9.8926,23.6992 9.6799,23.6303 9.5596,23.6438 9.5415,23.6296 9.4817,23.6401 9.4453,23.6761 9.4369,23.647 9.3998,23.6335 9.3303,23.6575 9.286,23.6254 9.2704,23.6085 9.2253,23.5408 9.1815,23.5005 9.187,23.4695 9.1413,23.4704 9.0961,23.4569 9.0408,23.4407 9.0198,23.4568 8.9876,23.4985 8.9676,23.5332 8.9647,23.5552 9.0101,23.5894 8.9954,23.5771 8.9493,23.5694 8.8702,23.5074 8.8143,23.5043 8.7756,23.5407 8.7266,23.5604 8.715,23.5812 8.7489,23.6255 8.7563,23.6698 8.7269,23.6945 8.7313,23.7295 8.7161,23.7577 8.7257,23.7912 8.7072,23.8069 8.718,23.8686 8.7231,23.8836 8.7157,23.9592 8.7297,24.0039 8.6999,24.0352 8.7103,24.0764 8.6914,24.1442 8.683,24.1674 8.7066,24.2063 8.6879,24.2263 8.702,24.2622 8.6994,24.2352 8.645,24.2315 8.6201,24.2594 8.5984,24.2494 8.5712,24.2187 8.545,24.1715 8.4812,24.1535 8.3822,24.1938 8.3153,24.2262 8.2893,24.3547 8.2586,24.42 8.286,24.4709 8.2699,24.5022 8.2279,24.5406 8.2073,24.5779 8.2092,24.6482 8.2291,24.6917 8.2106,24.7224 8.2101,24.7518 8.1878,24.8055 8.1941,24.8621 8.1759,24.8931 8.1182,24.8997 8.071,24.9165 8.0457,24.9549 8.016,24.9775 7.9815,25.0604 7.9243,25.0868 7.8894,25.1129 7.8871,25.1787 7.901,25.2247 7.8686,25.2884 7.799,25.294 7.7445,25.285 7.6975,25.3091 7.6783,25.29 7.6456,25.2462 7.6301,25.1745 7.5774,25.2015 7.5423,25.1962 7.5052,25.2517 7.4716,25.2883 7.4584,25.3093 7.4316,25.3368 7.4284,25.3597 7.3518,25.4034 7.3342,25.4556 7.2862,25.5297 7.2825,25.5608 7.2624,25.5766 7.2294,25.5979 7.2168,25.6404 7.215,25.7486 7.1607,25.7997 7.1575,25.8198 7.1448,25.813 7.1156,25.8513 7.113,25.9014 7.0953,25.8975 7.0658,25.9317 7.0433,25.974 7.0392,25.9892 7.0111,26.0467 7.0029,26.0556 6.9518,26.0414 6.9289,26.064 6.9082,26.0936 6.9042,26.0888 6.8579,26.115 6.8215,26.1693 6.8167,26.2079 6.7545,26.2547 6.7383,26.2759 6.7089,26.3547 6.6936,26.4088 6.6411,26.4033 6.6163,26.3705 6.5931,26.3643 6.5664,26.3257 6.5335,26.3231 6.5012,26.2962 6.4966,26.2859 6.4676,26.3089 6.4276,26.2977 6.3977,26.3592 6.351,26.3859 6.3157,26.4214 6.3066,26.4732 6.2798,26.4723 6.2258,26.509 6.2332,26.5357 6.2172,26.5184 6.1605,26.4783 6.1438,26.4557 6.121,26.4629 6.0817,26.5064 6.1142,26.5358 6.0969,26.5388 6.0692,26.5616 6.0384,26.6288 6.0067,26.7503 6.0136,26.7981 5.9832,26.8152 5.9878,26.8341 5.9537,26.8366 5.9056,26.8691 5.888,26.9179 5.8942,26.9621 5.8472,27.01 5.853,27.0263 5.8174,27.0507 5.7948,27.0916 5.8004,27.1404 5.7775,27.1505 5.7462,27.1891 5.7393,27.2342 5.6582,27.2326 5.6146,27.2826 5.5921,27.2773 5.5366,27.2622 5.5158,27.2389 5.4477,27.2345 5.3978,27.2537 5.3707,27.2493 5.3385,27.2935 5.2693,27.3061 5.2191,27.349 5.1968,27.4015 5.1522,27.4131 5.1156,27.4514 5.0834,27.4471 5.0594,27.4397 5.075,27.2644 5.1497,27.2299 5.1526,27.1828 5.1868,27.1331 5.2074,27.0835 5.2079,27.0195 5.1845,26.9318 5.1412,26.8993 5.0755,26.8664 5.036,26.8408 5.056,26.8025 5.0491,26.7468 5.1074,26.619 5.0716,26.5815 5.0882,26.5209 5.0528,26.4607 5.0613,26.4523 5.098,26.4132 5.1337,26.3684 5.1429,26.3483 5.1603,26.3241 5.1401,26.2285 5.2091,26.1627 5.236,26.1332 5.257,26.0856 5.2186,26.0464 5.209,26.0047 5.214,25.9802 5.2466,25.9546 5.2079,25.9314 5.2104,25.9135 5.1808,25.8829 5.2223,25.8611 5.2262,25.8189 5.2009,25.8152 5.2491,25.7936 5.2562,25.7393 5.2409,25.7147 5.2709,25.7045 5.3036,25.6762 5.3067,25.6494 5.3319,25.6186 5.3233,25.5778 5.3606,25.5439 5.3617,25.4976 5.344,25.4342 5.3413,25.405 5.3091,25.3496 5.2827,25.3358 5.2635,25.3287 5.2077,25.3075 5.1906,25.3442 5.1112,25.32 5.0738,25.315 5.032,25.2504 5.0275,25.2371 5.0141,25.1697 5.0015,25.1517 5.0305,25.1243 4.989,25.0859 4.9786,25.0617 4.9266,25.0177 4.9594,24.9972 4.9576,24.9571 4.9876,24.9205 4.975,24.9095 4.9511,24.8735 4.9494,24.849 4.9247,24.7974 4.9258,24.7824 4.8955,24.7212 4.8963,24.6593 4.9201,24.674 4.962,24.631 4.9759,24.6114 5.0287,24.5705 5.0317,24.5342 5.0826,24.4641 5.105,24.4408 5.0559,24.4163 5.0959,24.3756 5.1125,24.3557 5.0448,24.3858 5.053,24.3926 5.0291,24.3646 5.0083,24.3366 5.0113,24.2821 4.9963,24.2668 4.9681,24.2166 4.9543,24.1784 4.928,24.1648 4.8989,24.1348 4.8962,24.1074 4.9178,24.0192 4.8582,23.9864 4.8768,23.9613 4.8745,23.9607 4.8156,23.8877 4.832,23.8543 4.8129,23.8311 4.8347,23.763 4.7832,23.7139 4.7868,23.676 4.7651,23.5882 4.7591,23.5768 4.7369,23.5023 4.6773,23.462 4.6784,23.4281 4.6512,23.4297 4.6016,23.3849 4.5936,23.349 4.615,23.3323 4.6051,23.2914 4.6362,23.2723 4.6386,23.2606 4.6725,23.2295 4.6759,23.1918 4.7274,23.1589 4.7408,23.1131 4.7122,23.007 4.7611,22.9823 4.8273,22.9637 4.8381,22.9295 4.8134,22.9112 4.8186,22.8844 4.7933,22.8978 4.7617,22.8363 4.7023,22.8179 4.7263,22.7944 4.7268,22.7676 4.6944,22.7609 4.6665,22.7348 4.6298,22.7307 4.5577,22.7056 4.5268,22.6902 4.4788,22.6603 4.4929,22.6143 4.4901,22.5954 4.454,22.5831 4.3945,22.6218 4.3713,22.5768 4.3432,22.5448 4.2882,22.5395 4.2553,22.5487 4.2168,22.5096 4.1878,22.4844 4.1549,22.4488 4.1321,22.3722 4.1202,22.3359 4.1258,22.2533 4.1164,22.1948 4.1392,22.1534 4.1671,22.1267 4.1976,22.0866 4.2223,22.0379 4.224,22.0057 4.2456,21.9505 4.229,21.9321 4.2424,21.856 4.2468,21.7922 4.284,21.7333 4.2998,21.7028 4.2979,21.6582 4.3123,21.5501 4.2516,21.4764 4.2653,21.448 4.289,21.3731 4.2806,21.3498 4.2888,21.2863 4.341,21.2517 4.3346,21.225 4.2924,21.1644 4.3159,21.0636 4.402,21.0113 4.4154,20.993 4.4321,20.9238 4.4408,20.8892 4.4522,20.8278 4.4425,20.7946 4.4232,20.7338 4.4325,20.6329 4.4193,20.5815 4.4177,20.5266 4.4531,20.4655 4.5206,20.4468 4.5666,20.453 4.63,20.4061 4.6829,20.3613 4.7064,20.3515 4.7452,20.3247 4.7697,20.2766 4.7797,20.2253 4.8043,20.1837 4.8397,20.1561 4.8883,20.1002 4.9042,20.0503 4.9452,19.9807 4.9841,19.9191 4.9814,19.8912 5.0022,19.8281 5.0992,19.6637 5.1434,19.6072 5.1325,19.5534 5.1491,19.4943 5.1224,19.4176 5.1261,19.373 5.0975,19.3533 5.0689,19.2246 4.9982,19.208 4.9525,19.1188 4.939,19.0691 4.8867,19.057 4.8498,19.0045 4.7736,18.9981 4.7459,18.9684 4.727,18.9206 4.665,18.9016 4.6622,18.8777 4.6097,18.8328 4.5826,18.8179 4.5425,18.8064 4.4731,18.7818 4.4228,18.7289 4.3756,18.7005 4.3645,18.5537 4.3507,18.5451 4.3243,18.5691 4.2545,18.6024 4.2017,18.6066 4.1711,18.6443 4.0635,18.6528 3.9926,18.6323 3.9404,18.601 3.8992,18.5937 3.8167,18.58 3.7715,18.6002 3.6416,18.6076 3.5246,18.632 3.4736,18.5923 3.4831,18.5594 3.5489,18.5444 3.6007,18.4899 3.6503,18.4502 3.602,18.4259 3.6066,18.4128 3.5792,18.3399 3.6055,18.305 3.5872,18.2662 3.5862,18.2494 3.5139,18.232 3.4916,18.1838 3.4822,18.1431 3.5551,18.1054 3.5712,18.0389 3.5693,17.9997 3.5758,17.9701 3.5627,17.9427 3.5989,17.9045 3.5636,17.8711 3.5456,17.8443 3.5511,17.823 3.6314,17.7214 3.6465,17.6409 3.638,17.6084 3.6435,17.543 3.6917,17.5157 3.6914,17.4649 3.7104,17.4476 3.6917,17.3905 3.6611,17.3751 3.6216,17.3407 3.6118,17.2945 3.6308,17.2632 3.6229,17.2502 3.5889,17.2238 3.5705,17.1488 3.5583,16.9929 3.56,16.8883 3.5855,16.8595 3.5457,16.8097 3.5307,16.6866 3.524,16.6064 3.51,16.5691 3.4935,16.5777 3.3663,16.5266 3.2187,16.4885 3.0738,16.4937 2.9917,16.4774 2.9491,16.5142 2.896,16.517 2.859,16.4821 2.8048,16.4615 2.7545,16.3963 2.6219,16.1908 2.2227,16.1601 2.2515,16.169 2.2717,16.147 2.3465,16.0945 2.4336,16.0773 2.4475,16.0786 2.5044,16.0657 2.5352,16.0825 2.5984,16.0658 2.6434,16.0756 2.6841,16.0601 2.71,16.0607 2.7535,16.0469 2.7958,16.0901 2.8323,16.0735 2.9059,16.005 3.0008,15.9681 2.9894,15.916 3.0549,15.8831 3.1052,15.838 3.1153,15.7989 3.0979,15.7158 3.2001,15.6205 3.3048,15.5081 3.4395,15.4153 3.5338,15.2472 3.7151,15.1066 3.9449,15.0992 3.9918,15.0648 4.0176,15.127 4.0337,15.1778 4.0584,15.1392 4.0729,15.1325 4.1052,15.1079 4.1209,15.0879 4.2433,15.0862 4.3012,15.0261 4.368,15.0138 4.414,14.9677 4.4395,14.8886 4.469,14.8501 4.5148,14.8117 4.5247,14.7833 4.5609,14.7293 4.6123,14.7162 4.6834,14.7183 4.802,14.7031 4.8584,14.7114 4.8683,14.6807 4.9294,14.6929 4.9588,14.6746 4.9895,14.6864 5.0212,14.6726 5.0746,14.6946 5.1053,14.6813 5.1788,14.6517 5.2133,14.5765 5.2322,14.5292 5.2726,14.5623 5.3535,14.5719 5.4027,14.593 5.4098,14.6255 5.509,14.6122 5.5324,14.5908 5.6055,14.6266 5.7171,14.6236 5.7993,14.6127 5.8539,14.6187 5.8921,14.5986 5.9243,14.5686 5.9045,14.5114 5.8961,14.4876 5.9165,14.4631 5.972,14.4335 5.998,14.4152 6.0443,14.4271 6.0739,14.4695 6.0998,14.5115 6.15,14.5643 6.1958,14.6049 6.2006,14.7417 6.2567,14.8122 6.3632,14.8143 6.4172,14.8817 6.5466,14.9478 6.7132,14.9877 6.7543,15.0138 6.7682,15.0576 6.7735,15.0691 6.8187,15.1261 6.9359,15.1422 7.0232,15.1667 7.0727,15.1869 7.0691,15.2179 7.1022,15.2062 7.1781,15.2329 7.2155,15.211 7.2243,15.2425 7.2677,15.378 7.3774,15.4224 7.4171,15.4754 7.4989,15.5031 7.5314))"</value>
<value>7.0430000000000001</value>
<value>21.423999999999999</value>
</tuple>
</tuple-reference>
</visual-coordinate>
</point>
<body x='-121' y='144' />
</annotation>
<annotation class='point' id='3' mark-position='1' pullback='0' text-width='139'>
<formatted-text>
<run fontcolor='#787878' fontsize='8'>location: </run>
<run bold='true' fontsize='8'><[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[none:location:nk]></run>
<run>Æ </run>
<run fontcolor='#787878' fontsize='8'>DALY Mean: </run>
<run bold='true' fontsize='8'><[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[sum:DALY Mean:qk]></run>
</formatted-text>
<point>
<visual-coordinate class='mark'>
<tuple-reference>
<tuple-descriptor>
<pane-descriptor>
<x-fields>
<field>[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[Longitude (generated)]</field>
</x-fields>
<y-fields>
<field>[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[Latitude (generated)]</field>
</y-fields>
</pane-descriptor>
<columns>
<field>[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[none:location:nk]</field>
<field>[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[sum:DALY Mean:qk]</field>
<field>[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[Geometry (generated)]</field>
<field>[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[Latitude (generated)]</field>
<field>[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[Longitude (generated)]</field>
</columns>
</tuple-descriptor>
<tuple>
<value>"Saudi Arabia"</value>
<value>44261.252898553998</value>
<value>"MULTIPOLYGON(((38.9644 21.9161,38.9473 21.9286,38.9481 21.9708,38.9308 22.0182,38.9782 22.018,38.9873 21.9911,39.0186 22.0094,39.013 22.0542,39.0473 22.0803,39.0617 22.1472,39.0423 22.1468,39.041 22.2032,39.0815 22.2531,39.0934 22.3043,39.0874 22.3401,39.1353 22.3704,39.1395 22.4108,39.0756 22.4033,39.0892 22.4605,39.0798 22.4953,39.0865 22.555,39.0784 22.5803,39.0319 22.6431,39.0283 22.6685,38.9879 22.7323,38.9844 22.7523,38.9201 22.8316,38.8844 22.891,38.9575 22.8459,38.971 22.8656,38.9367 22.902,38.9084 22.9651,38.8269 22.9795,38.7883 23.0374,38.8085 23.0617,38.8092 23.114,38.7912 23.1576,38.7426 23.2003,38.7158 23.2426,38.703 23.288,38.6668 23.3562,38.6744 23.3804,38.6663 23.4237,38.6465 23.4485,38.6377 23.5069,38.5994 23.5441,38.5593 23.5681,38.5284 23.6361,38.4919 23.6618,38.4626 23.7401,38.4635 23.7804,38.4325 23.8117,38.4046 23.8142,38.3785 23.8582,38.3116 23.9006,38.2863 23.9381,38.2418 23.9555,38.2163 23.9529,38.1351 24.0313,38.0974 24.0535,38.0747 24.0803,38.0454 24.0685,37.9507 24.1381,37.8935 24.1551,37.8477 24.1572,37.814 24.1906,37.7827 24.2077,37.7486 24.2614,37.7211 24.2578,37.6927 24.3006,37.6143 24.2886,37.6304 24.2473,37.5739 24.2484,37.5488 24.2742,37.5222 24.2699,37.501 24.2868,37.4697 24.3409,37.4269 24.3695,37.425 24.3939,37.4516 24.4071,37.4611 24.4353,37.4279 24.4756,37.4147 24.5109,37.3712 24.5522,37.3475 24.6068,37.3277 24.6219,37.2939 24.6759,37.228 24.7026,37.2095 24.7653,37.2129 24.8036,37.2649 24.8742,37.2492 24.8956,37.2594 24.9339,37.2843 24.964,37.286 24.9893,37.2553 25.0333,37.244 25.0717,37.2666 25.1049,37.2589 25.1497,37.2389 25.1903,37.2073 25.2093,37.1303 25.2971,37.0888 25.3532,37.0911 25.3807,37.0768 25.442,36.9996 25.4995,37.0027 25.5223,36.9651 25.5733,36.9677 25.6058,36.9404 25.6444,36.8803 25.6763,36.8273 25.7336,36.7986 25.7095,36.7677 25.7391,36.747 25.738,36.7043 25.7782,36.6669 25.8458,36.6457 25.8563,36.6945 25.922,36.7102 25.9769,36.7057 26.0307,36.6762 26.0508,36.5715 26.0636,36.4963 26.1166,36.4849 26.1675,36.4639 26.2155,36.4158 26.2798,36.344 26.4105,36.3408 26.4372,36.283 26.547,36.2473 26.5888,36.2232 26.6369,36.1739 26.669,36.1494 26.7161,36.1079 26.7312,36.0922 26.7524,36.0453 26.8558,36.0449 26.8898,35.9992 26.9408,35.9495 26.9833,35.9217 26.9921,35.7883 27.1408,35.7896 27.1701,35.8173 27.1987,35.8073 27.2243,35.7547 27.2887,35.7412 27.3227,35.661 27.3608,35.6107 27.4226,35.5923 27.4337,35.5846 27.4705,35.5349 27.5314,35.5253 27.6057,35.4873 27.6495,35.4708 27.7029,35.4281 27.775,35.3606 27.7965,35.3479 27.853,35.2818 27.9161,35.2676 27.9502,35.1708 27.9966,35.1675 28.0129,35.2223 28.0464,35.107 28.07,35.059 28.1107,35.0218 28.1172,34.9498 28.0932,34.9275 28.0759,34.8842 28.0813,34.8488 28.0703,34.8383 28.0952,34.7876 28.0898,34.6797 28.1317,34.6485 28.0909,34.6447 28.0335,34.6046 28.0619,34.6101 28.0952,34.5742 28.1072,34.6338 28.175,34.664 28.2012,34.6738 28.2584,34.6958 28.2933,34.7732 28.4799,34.8055 28.5238,34.7923 28.5769,34.7966 28.6155,34.7756 28.6624,34.8057 28.7247,34.8156 28.7771,34.8331 28.8125,34.839 28.8724,34.8216 28.8838,34.8611 28.995,34.8478 29.0251,34.8729 29.0714,34.8818 29.1433,34.894 29.1778,34.9378 29.2374,34.9289 29.2913,34.9624 29.3583,35.3854 29.2964,35.6766 29.25,35.9101 29.21,36.0722 29.1896,36.3582 29.4016,36.3969 29.4095,36.4376 29.4343,36.4488 29.4565,36.5156 29.5181,36.5812 29.6126,36.6196 29.6597,36.6316 29.698,36.6689 29.7534,36.723 29.7922,36.7732 29.8721,36.8656 29.892,37.4926 29.9974,37.5162 30.027,37.6596 30.3215,37.6786 30.3415,37.8666 30.4341,38.0016 30.5038,37.73 30.7814,37.3845 31.1277,37.3299 31.1792,37.2406 31.278,37.1884 31.3212,37.0059 31.5,37.3641 31.5902,37.8127 31.7068,37.8371 31.6982,37.8739 31.7197,38.0736 31.772,38.7896 31.9479,39.004 31.9992,39.1277 32.0944,39.1994 32.1537,39.2713 32.1468,39.6173 32.0902,40.0314 32.0185,40.1292 31.9941,40.3504 31.9552,40.4157 31.9475,41.4449 31.3688,41.6958 31.2634,41.7959 31.2268,41.9669 31.1562,42.0823 31.0941,42.1191 31.0653,42.1605 31.0505,42.2235 31.008,42.3596 30.9059,42.4304 30.8593,42.4747 30.8205,42.5433 30.7787,42.7026 30.6709,42.8647 30.549,43.0685 30.4059,43.1851 30.3194,43.2233 30.2992,43.3048 30.2324,43.3363 30.2144,43.6236 30.0028,43.7439 29.9176,43.8869 29.808,43.9369 29.7789,44.0683 29.6762,44.2488 29.5442,44.2678 29.5209,44.3315 29.4809,44.486 29.368,44.717 29.1932,44.7587 29.1798,44.919 29.1867,45.2969 29.1557,45.7275 29.1217,45.8799 29.1036,45.9167 29.1028,46.1689 29.0822,46.4237 29.0583,46.4795 29.072,46.558 29.1019,46.8389 29.068,46.9318 29.0598,47.465 28.999,47.4949 28.9667,47.5068 28.9368,47.5834 28.8373,47.5963 28.7759,47.5934 28.6924,47.6053 28.6549,47.6353 28.631,47.6527 28.5968,47.7068 28.542,47.7039 28.5235,48.3954 28.5376,48.4304 28.5345,48.4671 28.5055,48.5016 28.4941,48.4997 28.4434,48.5235 28.4124,48.5279 28.384,48.5135 28.3374,48.545 28.2774,48.5854 28.2524,48.63 28.1974,48.6122 28.173,48.6087 28.1229,48.6244 28.0826,48.7003 28.014,48.7934 27.9989,48.7544 27.984,48.7428 27.9664,48.7952 27.9033,48.8237 27.9002,48.8431 27.8609,48.8882 27.8192,48.8525 27.816,48.8331 27.7986,48.8089 27.8155,48.8097 27.7246,48.8257 27.6819,48.8534 27.6959,48.8501 27.6026,48.9176 27.5948,48.9695 27.622,48.9948 27.6127,49.0276 27.5723,49.1311 27.5375,49.2046 27.5441,49.254 27.5259,49.2751 27.4887,49.3071 27.4702,49.2695 27.43,49.2225 27.4461,49.1656 27.4232,49.202 27.3753,49.2525 27.365,49.2351 27.323,49.2843 27.3412,49.3089 27.3349,49.3147 27.2786,49.3271 27.2485,49.3152 27.2148,49.326 27.1779,49.3968 27.1996,49.4145 27.1882,49.367 27.1184,49.3996 27.1116,49.4326 27.1441,49.4426 27.1151,49.5022 27.1367,49.4954 27.1623,49.5248 27.1895,49.5693 27.1518,49.5839 27.0918,49.6276 27.0621,49.6465 27.0233,49.668 27.0128,49.6679 26.9847,49.7007 26.9544,49.7822 26.8987,49.846 26.8763,49.8707 26.8594,49.9416 26.8537,49.997 26.8211,50.0092 26.7997,50.0733 26.7252,50.1048 26.7069,50.0449 26.67,50.0208 26.7048,49.9872 26.7181,49.9926 26.656,50.0218 26.5898,50.0789 26.5966,50.0908 26.5707,50.0801 26.5424,50.0371 26.5469,50.0507 26.4993,50.068 26.4747,50.1004 26.4766,50.1348 26.4972,50.1316 26.4372,50.2204 26.41,50.2171 26.3871,50.2299 26.3179,50.219 26.2672,50.2203 26.1839,50.1931 26.1607,50.1671 26.1737,50.161 26.0946,50.1504 26.0676,50.1215 26.0775,50.0933 26.1225,50.0797 26.1244,50.0583 26.1856,50.0306 26.2004,49.9888 26.1089,50.002 26.0782,50.0082 25.9827,50.0376 26.0056,50.0643 25.9894,50.1031 25.9866,50.1192 25.9662,50.1036 25.8972,50.1825 25.7617,50.2139 25.7455,50.2431 25.6829,50.2206 25.6798,50.1772 25.7069,50.1642 25.6861,50.195 25.661,50.2316 25.603,50.2531 25.5924,50.2723 25.5561,50.3124 25.5398,50.3116 25.5149,50.3338 25.4995,50.3706 25.4481,50.3862 25.4858,50.4305 25.444,50.4485 25.4424,50.4908 25.4065,50.494 25.3803,50.532 25.2996,50.5249 25.2265,50.5588 25.183,50.5457 25.1334,50.5597 25.0836,50.6096 25.0393,50.6759 24.9352,50.673 24.9106,50.7279 24.8717,50.7293 24.8417,50.7711 24.7182,50.8124 24.7446,50.8596 24.6739,50.932 24.5429,50.9988 24.5006,51.0982 24.4701,51.3033 24.5048,51.3446 24.5294,51.3561 24.5657,51.4022 24.6004,51.3979 24.6241,51.451 24.6093,51.486 24.5899,51.4873 24.5582,51.456 24.5585,51.4184 24.5293,51.41 24.4951,51.3764 24.4649,51.3303 24.4381,51.3062 24.4048,51.2883 24.3467,51.297 24.285,51.3562 24.2888,51.4045 24.3275,51.4424 24.3252,51.4884 24.3072,51.5332 24.2513,51.5912 24.2539,51.5897 24.1259,51.6203 24.0916,52.3606 23.2044,52.5813 22.9388,55.1404 22.6282,55.2855 22.4818,55.3044 22.4755,55.3529 22.4314,55.392 22.4238,55.4563 22.3273,55.6666 21.9967,55.542 21.6242,55.3873 21.1678,55.2721 20.8171,55.1349 20.4083,55 20.0018,54.6109 19.8756,54.2948 19.77,54.0749 19.699,53.9866 19.668,53.0537 19.3596,53.002 19.3411,52.4747 19.1656,52.2876 19.1023,52 19,50.7833 18.7833,50.2907 18.7357,49.7343 18.6803,49.1167 18.6167,48.5957 18.3665,48.1833 18.1667,47.6 17.45,47.4667 17.1167,47.1833 16.95,47 16.95,46.75 17.2833,46.3667 17.2333,46.1 17.25,45.4 17.3333,45.2167 17.4333,44.65 17.4333,44.5667 17.4,44.4667 17.4333,44.3661 17.4333,44.1381 17.4089,44.1308 17.3836,44.1006 17.3661,44.0667 17.4058,44.0233 17.3913,44.0114 17.4025,43.9667 17.3306,43.9055 17.3417,43.8319 17.3389,43.7889 17.375,43.6833 17.3667,43.6178 17.4261,43.5665 17.4834,43.4846 17.5451,43.4454 17.55,43.4196 17.5658,43.3548 17.5564,43.2854 17.5173,43.2408 17.4805,43.2565 17.4578,43.2255 17.4262,43.2471 17.4015,43.228 17.3855,43.326 17.3284,43.3365 17.304,43.2672 17.2922,43.2559 17.2785,43.2017 17.2588,43.2163 17.2104,43.1708 17.1727,43.1779 17.1307,43.158 17.1141,43.2272 17.0754,43.2397 17.0474,43.2254 17.0114,43.1795 17.0302,43.1781 16.9633,43.1947 16.9445,43.1381 16.9176,43.1516 16.8801,43.2213 16.8381,43.2518 16.7793,43.2556 16.7374,43.2305 16.7305,43.2347 16.6428,43.1314 16.6715,43.1463 16.6364,43.1207 16.5286,42.9922 16.5217,42.9448 16.4898,42.9373 16.4414,42.95 16.4076,42.9233 16.3947,42.8306 16.3795,42.8037 16.4013,42.7712 16.4041,42.7608 16.4277,42.778 16.4693,42.7388 16.5005,42.715 16.5678,42.73 16.6495,42.7049 16.7205,42.6723 16.7798,42.6319 16.8235,42.6102 16.8215,42.5298 16.8923,42.5471 16.9268,42.5416 16.9872,42.5565 17.012,42.5013 17.0426,42.4663 17.0458,42.4153 17.1047,42.425 17.1521,42.3582 17.1911,42.3803 17.1338,42.3693 17.1016,42.3343 17.2416,42.3378 17.2793,42.3144 17.3647,42.3218 17.4283,42.2303 17.517,42.1785 17.5604,42.1361 17.5728,42.1369 17.6033,42.0422 17.6835,41.967 17.7219,41.877 17.8024,41.8352 17.8107,41.8058 17.8359,41.7715 17.8432,41.7714 17.8664,41.6818 17.9485,41.6636 17.9856,41.6341 18.0157,41.6417 18.054,41.6026 18.0617,41.587 18.0905,41.5713 18.1649,41.5283 18.2365,41.5156 18.2727,41.4714 18.3033,41.4415 18.4042,41.4532 18.4225,41.4141 18.4874,41.4193 18.5125,41.3834 18.5382,41.3549 18.5821,41.2924 18.5835,41.2573 18.6115,41.2386 18.6743,41.2055 18.7178,41.2362 18.8074,41.2424 18.8502,41.1898 18.86,41.1604 18.8831,41.1452 18.9437,41.1502 19.012,41.1667 19.0405,41.1596 19.09,41.0983 19.1035,41.0702 19.1245,41.0407 19.1959,41.0508 19.2338,41.0126 19.3183,40.9824 19.3322,40.9489 19.3936,40.9477 19.4219,40.9626 19.4967,40.927 19.5316,40.861 19.5478,40.81 19.5771,40.7995 19.639,40.8106 19.666,40.7901 19.7313,40.7383 19.7973,40.634 19.7766,40.6244 19.812,40.5981 19.8212,40.5734 19.8888,40.5373 19.9025,40.5493 19.9375,40.5416 19.9636,40.4281 20.0313,40.4201 20.0504,40.3722 20.0755,40.2858 20.1001,40.2378 20.1863,40.1691 20.1908,40.1263 20.2327,40.1112 20.273,40.0634 20.2884,40.0456 20.2789,39.9806 20.2763,39.9347 20.303,39.9107 20.2914,39.87 20.2952,39.82 20.3379,39.7965 20.3458,39.7329 20.3902,39.6654 20.4555,39.6337 20.5112,39.6001 20.5421,39.5618 20.6196,39.5338 20.6432,39.5231 20.6732,39.4866 20.7263,39.4616 20.7403,39.4324 20.7888,39.4648 20.8041,39.4521 20.8266,39.4261 20.8208,39.3637 20.8672,39.3476 20.9233,39.3228 20.9178,39.2712 20.9817,39.2767 21.0126,39.2379 21.0755,39.1911 21.1009,39.1693 21.1531,39.1743 21.1903,39.1042 21.3,39.1217 21.3336,39.1689 21.3632,39.19 21.4137,39.161 21.4318,39.1656 21.4932,39.1502 21.5236,39.1186 21.5327,39.1052 21.597,39.0902 21.7075,39.0678 21.7332,39.0386 21.7997,38.9825 21.8521,38.9644 21.9161),(38.9646 21.9159,38.9728 21.8954,39.0317 21.8613,38.9991 21.947,38.9646 21.9159)),((49.529 27.355,49.5482 27.3542,49.6191 27.3119,49.5563 27.2918,49.5618 27.3216,49.533 27.3351,49.4997 27.3219,49.4857 27.3438,49.529 27.355)),((49.502 27.2688,49.5143 27.2421,49.5398 27.2363,49.5489 27.1961,49.5138 27.2078,49.4978 27.2288,49.502 27.2688)),((41.7617 16.8921,41.79 16.8709,41.8251 16.8618,41.8674 16.8186,41.8654 16.7946,41.8884 16.7583,41.933 16.7506,41.9733 16.733,42.0188 16.7377,42.048 16.7673,42.0485 16.7917,42.096 16.7897,42.1258 16.7439,42.1568 16.7173,42.1804 16.7223,42.1922 16.6851,42.1743 16.6662,42.1865 16.5835,42.1595 16.5815,42.1389 16.6115,42.0976 16.6393,42.1075 16.6827,42.0596 16.6953,41.9861 16.684,41.9761 16.6675,41.9333 16.6858,41.9083 16.7152,41.8887 16.7163,41.8415 16.752,41.8335 16.7846,41.809 16.8091,41.7743 16.8057,41.7882 16.8417,41.7617 16.8921)),((41.929 16.9534,41.9469 16.9318,41.9331 16.9075,41.9687 16.8562,41.9341 16.8528,41.9423 16.82,41.9723 16.8123,41.9839 16.7833,41.9236 16.7934,41.8811 16.8198,41.837 16.8991,41.8732 16.9152,41.929 16.9534)),((41.7937 16.7273,41.8276 16.6922,41.7604 16.6971,41.7426 16.7379,41.7937 16.7273)),((41.7 16.954,41.7266 16.9293,41.6835 16.8914,41.652 16.918,41.6771 16.9594,41.7 16.954)),((37.1139 24.9573,37.0663 24.9652,37.0728 24.9868,37.1139 24.9573)),((36.5479 25.6247,36.5088 25.6135,36.5111 25.6417,36.5479 25.6247)),((34.6935 27.9586,34.7118 27.9575,34.7411 27.9226,34.7082 27.9033,34.6935 27.9586)),((34.5196 28.0143,34.5033 27.9828,34.5211 27.9681,34.5863 27.9667,34.5939 27.9125,34.554 27.9122,34.5033 27.946,34.4956 28.0011,34.5196 28.0143)))"</value>
<value>24.190999999999999</value>
<value>44.32</value>
</tuple>
</tuple-reference>
</visual-coordinate>
</point>
<body x='58' y='171' />
</annotation>
<annotation class='point' id='4' mark-position='1' pullback='0' text-width='135'>
<formatted-text>
<run fontalignment='0' fontcolor='#787878' fontsize='8'>location: </run>
<run bold='true' fontalignment='0' fontsize='8'><[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[none:location:nk]></run>
<run fontalignment='0'>Æ </run>
<run fontalignment='0' fontcolor='#787878' fontsize='8'>DALY Mean: </run>
<run bold='true' fontalignment='0' fontsize='8'><[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[sum:DALY Mean:qk]></run>
</formatted-text>
<point>
<visual-coordinate class='mark'>
<tuple-reference>
<tuple-descriptor>
<pane-descriptor>
<x-fields>
<field>[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[Longitude (generated)]</field>
</x-fields>
<y-fields>
<field>[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[Latitude (generated)]</field>
</y-fields>
</pane-descriptor>
<columns>
<field>[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[none:location:nk]</field>
<field>[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[sum:DALY Mean:qk]</field>
<field>[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[Geometry (generated)]</field>
<field>[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[Latitude (generated)]</field>
<field>[Flow1-node-Clean 2-79cfda505e9547c18c9c8f7ad9398b70].[Longitude (generated)]</field>
</columns>
</tuple-descriptor>
<tuple>
<value>"Japan"</value>
<value>17301.918862641003</value>