forked from jesusff/cmip6-for-cordex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMIP6_studies_table_EUR.html
8444 lines (8440 loc) · 851 KB
/
CMIP6_studies_table_EUR.html
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
<!DOCTYPE html>
<html><head>
<style>
tr:hover {background-color:#f5f5f5;}
th, td {text-align: center; padding: 3px;}
table {border-collapse: collapse;}
a {color: DodgerBlue}
a:link { text-decoration: none; }
a:visited { text-decoration: none; }
a:hover { text-decoration: underline; }
a:active { text-decoration: underline;}
</style>
</head><body>
<h1> CMIP6 for CORDEX summary tables (domain EUR)</h1>
<ul>
<li><a href="#avail-and-plausible">Filter: available and plausible</a></li>
<li><a href="#available">Filter: available</a></li>
<li><a href="#plausible">Filter: plausible</a></li>
<li><a href="#all">All members with 2 or more scenarios and/or some metric available</a></li>
<li><a href="#selected">Selected GCMs + institutional commitments</a></li></ul><h2 id="avail-and-plausible">Filter: available and plausible</h2>
<style type="text/css" >
#T_3938c_ .level0 {
min-width: 150px;
} #T_3938c_ th {
font-size: 8pt;
border-style: solid;
border-width: 1px;
}#T_3938c_row0_col0,#T_3938c_row0_col7,#T_3938c_row0_col8,#T_3938c_row0_col9,#T_3938c_row0_col10,#T_3938c_row0_col11,#T_3938c_row0_col12,#T_3938c_row0_col13,#T_3938c_row0_col14,#T_3938c_row0_col15,#T_3938c_row0_col16,#T_3938c_row0_col17,#T_3938c_row0_col18,#T_3938c_row0_col19,#T_3938c_row0_col20,#T_3938c_row0_col21,#T_3938c_row0_col22,#T_3938c_row1_col0,#T_3938c_row1_col7,#T_3938c_row1_col8,#T_3938c_row1_col9,#T_3938c_row1_col10,#T_3938c_row1_col11,#T_3938c_row1_col12,#T_3938c_row1_col13,#T_3938c_row1_col14,#T_3938c_row1_col15,#T_3938c_row1_col16,#T_3938c_row1_col17,#T_3938c_row1_col18,#T_3938c_row1_col19,#T_3938c_row1_col20,#T_3938c_row1_col21,#T_3938c_row1_col22{
font-size: 8pt;
border: 1px lightgrey solid !important;
background-color: lightgrey;
}#T_3938c_row0_col1,#T_3938c_row0_col2,#T_3938c_row0_col3,#T_3938c_row0_col4,#T_3938c_row0_col5,#T_3938c_row0_col6,#T_3938c_row0_col23,#T_3938c_row0_col24,#T_3938c_row0_col25,#T_3938c_row0_col26,#T_3938c_row0_col27,#T_3938c_row0_col28,#T_3938c_row0_col29,#T_3938c_row0_col30,#T_3938c_row1_col1,#T_3938c_row1_col2,#T_3938c_row1_col3,#T_3938c_row1_col4,#T_3938c_row1_col5,#T_3938c_row1_col6,#T_3938c_row1_col23,#T_3938c_row1_col24,#T_3938c_row1_col25,#T_3938c_row1_col26,#T_3938c_row1_col27,#T_3938c_row1_col28,#T_3938c_row1_col29,#T_3938c_row1_col30{
font-size: 8pt;
border: 1px lightgrey solid !important;
color: grey;
background-color: lightgrey;
}#T_3938c_row2_col0,#T_3938c_row2_col7,#T_3938c_row2_col8,#T_3938c_row2_col9,#T_3938c_row2_col10,#T_3938c_row2_col11,#T_3938c_row2_col12,#T_3938c_row2_col13,#T_3938c_row2_col14,#T_3938c_row2_col15,#T_3938c_row2_col16,#T_3938c_row2_col17,#T_3938c_row2_col18,#T_3938c_row2_col19,#T_3938c_row2_col20,#T_3938c_row2_col21,#T_3938c_row2_col22,#T_3938c_row2_col27,#T_3938c_row2_col28,#T_3938c_row2_col30,#T_3938c_row3_col0,#T_3938c_row3_col7,#T_3938c_row3_col8,#T_3938c_row3_col9,#T_3938c_row3_col10,#T_3938c_row3_col11,#T_3938c_row3_col12,#T_3938c_row3_col13,#T_3938c_row3_col14,#T_3938c_row3_col15,#T_3938c_row3_col16,#T_3938c_row3_col17,#T_3938c_row3_col18,#T_3938c_row3_col19,#T_3938c_row3_col20,#T_3938c_row3_col21,#T_3938c_row3_col22,#T_3938c_row3_col23,#T_3938c_row3_col24,#T_3938c_row3_col25,#T_3938c_row3_col26,#T_3938c_row3_col27,#T_3938c_row3_col28,#T_3938c_row3_col29,#T_3938c_row3_col30,#T_3938c_row4_col0,#T_3938c_row4_col7,#T_3938c_row4_col8,#T_3938c_row4_col9,#T_3938c_row4_col10,#T_3938c_row4_col11,#T_3938c_row4_col12,#T_3938c_row4_col13,#T_3938c_row4_col14,#T_3938c_row4_col15,#T_3938c_row4_col16,#T_3938c_row4_col17,#T_3938c_row4_col18,#T_3938c_row4_col19,#T_3938c_row4_col20,#T_3938c_row4_col21,#T_3938c_row4_col22,#T_3938c_row4_col24,#T_3938c_row4_col25,#T_3938c_row4_col26,#T_3938c_row4_col30,#T_3938c_row5_col0,#T_3938c_row5_col7,#T_3938c_row5_col8,#T_3938c_row5_col9,#T_3938c_row5_col10,#T_3938c_row5_col11,#T_3938c_row5_col12,#T_3938c_row5_col13,#T_3938c_row5_col14,#T_3938c_row5_col15,#T_3938c_row5_col16,#T_3938c_row5_col17,#T_3938c_row5_col18,#T_3938c_row5_col19,#T_3938c_row5_col20,#T_3938c_row5_col21,#T_3938c_row5_col22,#T_3938c_row5_col23,#T_3938c_row5_col24,#T_3938c_row5_col25,#T_3938c_row5_col26,#T_3938c_row5_col27,#T_3938c_row5_col28,#T_3938c_row5_col29,#T_3938c_row5_col30,#T_3938c_row6_col0,#T_3938c_row6_col7,#T_3938c_row6_col8,#T_3938c_row6_col9,#T_3938c_row6_col10,#T_3938c_row6_col11,#T_3938c_row6_col12,#T_3938c_row6_col13,#T_3938c_row6_col14,#T_3938c_row6_col15,#T_3938c_row6_col16,#T_3938c_row6_col17,#T_3938c_row6_col18,#T_3938c_row6_col19,#T_3938c_row6_col20,#T_3938c_row6_col21,#T_3938c_row6_col22,#T_3938c_row6_col30,#T_3938c_row7_col0,#T_3938c_row7_col7,#T_3938c_row7_col8,#T_3938c_row7_col9,#T_3938c_row7_col10,#T_3938c_row7_col11,#T_3938c_row7_col12,#T_3938c_row7_col13,#T_3938c_row7_col14,#T_3938c_row7_col15,#T_3938c_row7_col16,#T_3938c_row7_col17,#T_3938c_row7_col18,#T_3938c_row7_col19,#T_3938c_row7_col20,#T_3938c_row7_col21,#T_3938c_row7_col22,#T_3938c_row7_col30,#T_3938c_row8_col0,#T_3938c_row8_col7,#T_3938c_row8_col8,#T_3938c_row8_col9,#T_3938c_row8_col10,#T_3938c_row8_col11,#T_3938c_row8_col12,#T_3938c_row8_col13,#T_3938c_row8_col14,#T_3938c_row8_col15,#T_3938c_row8_col16,#T_3938c_row8_col17,#T_3938c_row8_col18,#T_3938c_row8_col19,#T_3938c_row8_col20,#T_3938c_row8_col21,#T_3938c_row8_col22,#T_3938c_row8_col30,#T_3938c_row9_col0,#T_3938c_row9_col7,#T_3938c_row9_col8,#T_3938c_row9_col9,#T_3938c_row9_col10,#T_3938c_row9_col11,#T_3938c_row9_col12,#T_3938c_row9_col13,#T_3938c_row9_col14,#T_3938c_row9_col15,#T_3938c_row9_col16,#T_3938c_row9_col17,#T_3938c_row9_col18,#T_3938c_row9_col19,#T_3938c_row9_col20,#T_3938c_row9_col21,#T_3938c_row9_col22,#T_3938c_row9_col23,#T_3938c_row9_col24,#T_3938c_row9_col25,#T_3938c_row9_col26,#T_3938c_row9_col27,#T_3938c_row9_col28,#T_3938c_row9_col29,#T_3938c_row9_col30,#T_3938c_row10_col0,#T_3938c_row10_col7,#T_3938c_row10_col8,#T_3938c_row10_col9,#T_3938c_row10_col10,#T_3938c_row10_col11,#T_3938c_row10_col12,#T_3938c_row10_col13,#T_3938c_row10_col14,#T_3938c_row10_col15,#T_3938c_row10_col16,#T_3938c_row10_col17,#T_3938c_row10_col18,#T_3938c_row10_col19,#T_3938c_row10_col20,#T_3938c_row10_col21,#T_3938c_row10_col22,#T_3938c_row10_col24,#T_3938c_row10_col25,#T_3938c_row10_col30,#T_3938c_row11_col0,#T_3938c_row11_col7,#T_3938c_row11_col8,#T_3938c_row11_col9,#T_3938c_row11_col10,#T_3938c_row11_col11,#T_3938c_row11_col12,#T_3938c_row11_col13,#T_3938c_row11_col14,#T_3938c_row11_col15,#T_3938c_row11_col16,#T_3938c_row11_col17,#T_3938c_row11_col18,#T_3938c_row11_col19,#T_3938c_row11_col20,#T_3938c_row11_col21,#T_3938c_row11_col22,#T_3938c_row11_col23,#T_3938c_row11_col24,#T_3938c_row11_col25,#T_3938c_row11_col26,#T_3938c_row11_col27,#T_3938c_row11_col28,#T_3938c_row11_col29,#T_3938c_row11_col30,#T_3938c_row12_col0,#T_3938c_row12_col7,#T_3938c_row12_col8,#T_3938c_row12_col9,#T_3938c_row12_col10,#T_3938c_row12_col11,#T_3938c_row12_col12,#T_3938c_row12_col13,#T_3938c_row12_col14,#T_3938c_row12_col15,#T_3938c_row12_col16,#T_3938c_row12_col17,#T_3938c_row12_col18,#T_3938c_row12_col19,#T_3938c_row12_col20,#T_3938c_row12_col21,#T_3938c_row12_col22,#T_3938c_row12_col23,#T_3938c_row12_col24,#T_3938c_row12_col25,#T_3938c_row12_col26,#T_3938c_row12_col27,#T_3938c_row12_col28,#T_3938c_row12_col29,#T_3938c_row12_col30,#T_3938c_row13_col0,#T_3938c_row13_col7,#T_3938c_row13_col8,#T_3938c_row13_col9,#T_3938c_row13_col10,#T_3938c_row13_col11,#T_3938c_row13_col12,#T_3938c_row13_col13,#T_3938c_row13_col14,#T_3938c_row13_col15,#T_3938c_row13_col16,#T_3938c_row13_col17,#T_3938c_row13_col18,#T_3938c_row13_col19,#T_3938c_row13_col20,#T_3938c_row13_col21,#T_3938c_row13_col22,#T_3938c_row13_col23,#T_3938c_row13_col24,#T_3938c_row13_col25,#T_3938c_row13_col26,#T_3938c_row13_col27,#T_3938c_row13_col28,#T_3938c_row13_col29,#T_3938c_row13_col30,#T_3938c_row14_col0,#T_3938c_row14_col7,#T_3938c_row14_col8,#T_3938c_row14_col9,#T_3938c_row14_col10,#T_3938c_row14_col11,#T_3938c_row14_col12,#T_3938c_row14_col13,#T_3938c_row14_col14,#T_3938c_row14_col15,#T_3938c_row14_col16,#T_3938c_row14_col17,#T_3938c_row14_col18,#T_3938c_row14_col19,#T_3938c_row14_col20,#T_3938c_row14_col21,#T_3938c_row14_col22,#T_3938c_row14_col23,#T_3938c_row14_col24,#T_3938c_row14_col25,#T_3938c_row14_col26,#T_3938c_row14_col27,#T_3938c_row14_col28,#T_3938c_row14_col29,#T_3938c_row14_col30,#T_3938c_row15_col0,#T_3938c_row15_col7,#T_3938c_row15_col8,#T_3938c_row15_col9,#T_3938c_row15_col10,#T_3938c_row15_col11,#T_3938c_row15_col12,#T_3938c_row15_col13,#T_3938c_row15_col14,#T_3938c_row15_col15,#T_3938c_row15_col16,#T_3938c_row15_col17,#T_3938c_row15_col18,#T_3938c_row15_col19,#T_3938c_row15_col20,#T_3938c_row15_col21,#T_3938c_row15_col22,#T_3938c_row15_col23,#T_3938c_row15_col24,#T_3938c_row15_col25,#T_3938c_row15_col26,#T_3938c_row15_col27,#T_3938c_row15_col28,#T_3938c_row15_col29,#T_3938c_row15_col30,#T_3938c_row16_col0,#T_3938c_row16_col7,#T_3938c_row16_col8,#T_3938c_row16_col9,#T_3938c_row16_col10,#T_3938c_row16_col11,#T_3938c_row16_col12,#T_3938c_row16_col13,#T_3938c_row16_col14,#T_3938c_row16_col15,#T_3938c_row16_col16,#T_3938c_row16_col17,#T_3938c_row16_col18,#T_3938c_row16_col19,#T_3938c_row16_col20,#T_3938c_row16_col21,#T_3938c_row16_col22,#T_3938c_row16_col23,#T_3938c_row16_col24,#T_3938c_row16_col25,#T_3938c_row16_col26,#T_3938c_row16_col27,#T_3938c_row16_col28,#T_3938c_row16_col29,#T_3938c_row16_col30,#T_3938c_row17_col0,#T_3938c_row17_col7,#T_3938c_row17_col8,#T_3938c_row17_col9,#T_3938c_row17_col10,#T_3938c_row17_col11,#T_3938c_row17_col12,#T_3938c_row17_col13,#T_3938c_row17_col14,#T_3938c_row17_col15,#T_3938c_row17_col16,#T_3938c_row17_col17,#T_3938c_row17_col18,#T_3938c_row17_col19,#T_3938c_row17_col20,#T_3938c_row17_col21,#T_3938c_row17_col22,#T_3938c_row17_col23,#T_3938c_row17_col24,#T_3938c_row17_col25,#T_3938c_row17_col26,#T_3938c_row17_col27,#T_3938c_row17_col28,#T_3938c_row17_col29,#T_3938c_row17_col30,#T_3938c_row18_col0,#T_3938c_row18_col7,#T_3938c_row18_col8,#T_3938c_row18_col9,#T_3938c_row18_col10,#T_3938c_row18_col11,#T_3938c_row18_col12,#T_3938c_row18_col13,#T_3938c_row18_col14,#T_3938c_row18_col15,#T_3938c_row18_col16,#T_3938c_row18_col17,#T_3938c_row18_col18,#T_3938c_row18_col19,#T_3938c_row18_col20,#T_3938c_row18_col21,#T_3938c_row18_col22,#T_3938c_row18_col23,#T_3938c_row18_col24,#T_3938c_row18_col25,#T_3938c_row18_col26,#T_3938c_row18_col27,#T_3938c_row18_col28,#T_3938c_row18_col29,#T_3938c_row18_col30,#T_3938c_row19_col0,#T_3938c_row19_col7,#T_3938c_row19_col8,#T_3938c_row19_col9,#T_3938c_row19_col10,#T_3938c_row19_col11,#T_3938c_row19_col12,#T_3938c_row19_col13,#T_3938c_row19_col14,#T_3938c_row19_col15,#T_3938c_row19_col16,#T_3938c_row19_col17,#T_3938c_row19_col18,#T_3938c_row19_col19,#T_3938c_row19_col20,#T_3938c_row19_col21,#T_3938c_row19_col22,#T_3938c_row19_col23,#T_3938c_row19_col24,#T_3938c_row19_col25,#T_3938c_row19_col26,#T_3938c_row19_col27,#T_3938c_row19_col28,#T_3938c_row19_col29,#T_3938c_row19_col30{
font-size: 8pt;
border: 1px lightgrey solid !important;
}#T_3938c_row2_col1,#T_3938c_row2_col2,#T_3938c_row3_col2,#T_3938c_row4_col2,#T_3938c_row5_col2,#T_3938c_row7_col2,#T_3938c_row8_col2,#T_3938c_row9_col2,#T_3938c_row10_col2,#T_3938c_row11_col2,#T_3938c_row12_col2,#T_3938c_row13_col2,#T_3938c_row14_col2,#T_3938c_row15_col2,#T_3938c_row16_col2,#T_3938c_row17_col2,#T_3938c_row18_col2,#T_3938c_row19_col2{
font-size: 8pt;
border: 1px lightgrey solid !important;
color: grey;
}#T_3938c_row2_col3,#T_3938c_row2_col4,#T_3938c_row2_col5,#T_3938c_row2_col6,#T_3938c_row3_col1,#T_3938c_row3_col3,#T_3938c_row3_col4,#T_3938c_row3_col5,#T_3938c_row3_col6,#T_3938c_row4_col1,#T_3938c_row4_col3,#T_3938c_row4_col4,#T_3938c_row4_col5,#T_3938c_row4_col6,#T_3938c_row5_col1,#T_3938c_row5_col3,#T_3938c_row5_col4,#T_3938c_row5_col5,#T_3938c_row5_col6,#T_3938c_row6_col1,#T_3938c_row6_col2,#T_3938c_row6_col3,#T_3938c_row6_col4,#T_3938c_row6_col5,#T_3938c_row6_col6,#T_3938c_row7_col1,#T_3938c_row7_col3,#T_3938c_row7_col4,#T_3938c_row7_col5,#T_3938c_row7_col6,#T_3938c_row8_col1,#T_3938c_row8_col3,#T_3938c_row8_col4,#T_3938c_row8_col5,#T_3938c_row8_col6,#T_3938c_row9_col1,#T_3938c_row9_col3,#T_3938c_row9_col4,#T_3938c_row9_col5,#T_3938c_row9_col6,#T_3938c_row10_col1,#T_3938c_row10_col3,#T_3938c_row10_col4,#T_3938c_row10_col5,#T_3938c_row10_col6,#T_3938c_row11_col1,#T_3938c_row11_col3,#T_3938c_row11_col4,#T_3938c_row11_col5,#T_3938c_row11_col6,#T_3938c_row12_col1,#T_3938c_row12_col3,#T_3938c_row12_col4,#T_3938c_row12_col5,#T_3938c_row12_col6,#T_3938c_row13_col1,#T_3938c_row13_col3,#T_3938c_row13_col4,#T_3938c_row13_col5,#T_3938c_row13_col6,#T_3938c_row14_col1,#T_3938c_row14_col3,#T_3938c_row14_col4,#T_3938c_row14_col5,#T_3938c_row14_col6,#T_3938c_row15_col1,#T_3938c_row15_col3,#T_3938c_row15_col4,#T_3938c_row15_col5,#T_3938c_row15_col6,#T_3938c_row16_col1,#T_3938c_row16_col3,#T_3938c_row16_col4,#T_3938c_row16_col5,#T_3938c_row16_col6,#T_3938c_row17_col1,#T_3938c_row17_col3,#T_3938c_row17_col4,#T_3938c_row17_col5,#T_3938c_row17_col6,#T_3938c_row18_col1,#T_3938c_row18_col3,#T_3938c_row18_col4,#T_3938c_row18_col5,#T_3938c_row18_col6,#T_3938c_row19_col1,#T_3938c_row19_col3,#T_3938c_row19_col4,#T_3938c_row19_col5,#T_3938c_row19_col6{
font-size: 8pt;
border: 1px lightgrey solid !important;
: ;
}#T_3938c_row2_col23,#T_3938c_row4_col28,#T_3938c_row6_col23,#T_3938c_row8_col25{
font-size: 8pt;
border: 1px lightgrey solid !important;
background-color: #f88c51;
}#T_3938c_row2_col24,#T_3938c_row6_col26,#T_3938c_row8_col26,#T_3938c_row10_col26{
font-size: 8pt;
border: 1px lightgrey solid !important;
background-color: #fee08b;
}#T_3938c_row2_col25,#T_3938c_row6_col27,#T_3938c_row6_col28,#T_3938c_row7_col23,#T_3938c_row7_col27,#T_3938c_row8_col23,#T_3938c_row8_col28,#T_3938c_row8_col29,#T_3938c_row10_col23,#T_3938c_row10_col28,#T_3938c_row10_col29{
font-size: 8pt;
border: 1px lightgrey solid !important;
background-color: #89d0a4;
}#T_3938c_row2_col26{
font-size: 8pt;
border: 1px lightgrey solid !important;
background-color: #f46d43;
}#T_3938c_row2_col29,#T_3938c_row4_col23,#T_3938c_row4_col27,#T_3938c_row4_col29,#T_3938c_row6_col25,#T_3938c_row6_col29,#T_3938c_row7_col25,#T_3938c_row7_col28,#T_3938c_row7_col29,#T_3938c_row8_col27,#T_3938c_row10_col27{
font-size: 8pt;
border: 1px lightgrey solid !important;
background-color: #fffebe;
}#T_3938c_row6_col24,#T_3938c_row7_col24,#T_3938c_row7_col26,#T_3938c_row8_col24{
font-size: 8pt;
border: 1px lightgrey solid !important;
background-color: #e6f598;
}</style><table id="T_3938c_" ><thead> <tr> <th class="blank" ></th> <th class="blank level0" ></th> <th class="col_heading level0 col0" colspan="7">1. Availability</th> <th class="col_heading level0 col7" colspan="16">2. Plausibility</th> <th class="col_heading level0 col23" colspan="7">3. Spread of future outcomes</th> <th class="col_heading level0 col30" >4. Independence</th> </tr> <tr> <th class="blank" ></th> <th class="blank level1" ></th> <th class="col_heading level1 col0" >synthesis</th> <th class="col_heading level1 col1" >historical</th> <th class="col_heading level1 col2" >ssp119</th> <th class="col_heading level1 col3" >ssp126</th> <th class="col_heading level1 col4" >ssp245</th> <th class="col_heading level1 col5" >ssp370</th> <th class="col_heading level1 col6" >ssp585</th> <th class="col_heading level1 col7" >Synthesis</th> <th class="col_heading level1 col8" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#rib21-constrained-tcr" target="_blank">Rib21 Constrained TCR</a></th> <th class="col_heading level1 col9" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#bru20-perf" target="_blank">Bru20 perf</a></th> <th class="col_heading level1 col10" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#qas21-constrained-dtas" target="_blank">Qas21 Constrained Dtas ssp245</a></th> <th class="col_heading level1 col11" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#oud20-jetpos" target="_blank">Oud20 jetpos</a></th> <th class="col_heading level1 col12" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#bra21-lamb-eur" target="_blank">Bra21 Lamb EUR</a></th> <th class="col_heading level1 col13" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#dobler-sst-rmse-eur" target="_blank">Dobler SST rmse EUR</a></th> <th class="col_heading level1 col14" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#p-nabat-eur-aod" target="_blank">P. Nabat EUR AOD</a></th> <th class="col_heading level1 col15" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#sevault-med-sst" target="_blank">Sevault MED SST</a></th> <th class="col_heading level1 col16" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#dobler-sice-rmse-nbs" target="_blank">Dobler SICE rmse NBS</a></th> <th class="col_heading level1 col17" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#dobler-sst-rmse-nbs" target="_blank">Dobler SST rmse NBS</a></th> <th class="col_heading level1 col18" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#dobler-sice-rmse-bal" target="_blank">Dobler SICE rmse BAL</a></th> <th class="col_heading level1 col19" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#dobler-sst-rmse-blk" target="_blank">Dobler SST rmse BLK</a></th> <th class="col_heading level1 col20" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#dobler-sst-rmse-sna" target="_blank">Dobler SST rmse SNA</a></th> <th class="col_heading level1 col21" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#atm-res-km" target="_blank">atm. res. km</a></th> <th class="col_heading level1 col22" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#bra21-complexity" target="_blank">Bra21 complexity</a></th> <th class="col_heading level1 col23" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#sch20-ecs" target="_blank">Sch20 ECS</a></th> <th class="col_heading level1 col24" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#tok20-tcr-as-spread" target="_blank">Tok20 TCR as spread</a></th> <th class="col_heading level1 col25" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#oud20-jetposdelta" target="_blank">Oud20 jetposdelta ssp585</a></th> <th class="col_heading level1 col26" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#qasmi-tas-warming-class" target="_blank">Qasmi tas warming class ssp245</a></th> <th class="col_heading level1 col27" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#atlas-dtas-neu-djf" target="_blank">Atlas Dtas NEU DJF ssp585</a></th> <th class="col_heading level1 col28" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#atlas-dpr-med-jja" target="_blank">Atlas Dpr MED JJA ssp585</a></th> <th class="col_heading level1 col29" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#sevault-med-sst-warming" target="_blank">Sevault MED SST warming ssp585</a></th> <th class="col_heading level1 col30" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#bru20-mfamily" target="_blank">Bru20 mfamily</a></th> </tr> <tr> <th class="index_name level0" >model</th> <th class="index_name level1" >run</th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> </tr></thead><tbody>
<tr>
<th id="T_3938c_level0_row0" class="row_heading level0 row0" rowspan="2">. Plausible values</th>
<th id="T_3938c_level1_row0" class="row_heading level1 row0" >max</th>
<td id="T_3938c_row0_col0" class="data row0 col0" ><NA></td>
<td id="T_3938c_row0_col1" class="data row0 col1" ></td>
<td id="T_3938c_row0_col2" class="data row0 col2" ></td>
<td id="T_3938c_row0_col3" class="data row0 col3" ></td>
<td id="T_3938c_row0_col4" class="data row0 col4" ></td>
<td id="T_3938c_row0_col5" class="data row0 col5" ></td>
<td id="T_3938c_row0_col6" class="data row0 col6" ></td>
<td id="T_3938c_row0_col7" class="data row0 col7" ><NA></td>
<td id="T_3938c_row0_col8" class="data row0 col8" >2.36</td>
<td id="T_3938c_row0_col9" class="data row0 col9" >0.20</td>
<td id="T_3938c_row0_col10" class="data row0 col10" >1</td>
<td id="T_3938c_row0_col11" class="data row0 col11" >4.00</td>
<td id="T_3938c_row0_col12" class="data row0 col12" >1.00</td>
<td id="T_3938c_row0_col13" class="data row0 col13" >4.00</td>
<td id="T_3938c_row0_col14" class="data row0 col14" >1</td>
<td id="T_3938c_row0_col15" class="data row0 col15" >2.00</td>
<td id="T_3938c_row0_col16" class="data row0 col16" >50.00</td>
<td id="T_3938c_row0_col17" class="data row0 col17" >4.00</td>
<td id="T_3938c_row0_col18" class="data row0 col18" >50.00</td>
<td id="T_3938c_row0_col19" class="data row0 col19" >4.00</td>
<td id="T_3938c_row0_col20" class="data row0 col20" >4.00</td>
<td id="T_3938c_row0_col21" class="data row0 col21" >300</td>
<td id="T_3938c_row0_col22" class="data row0 col22" >2222222222</td>
<td id="T_3938c_row0_col23" class="data row0 col23" ><NA></td>
<td id="T_3938c_row0_col24" class="data row0 col24" ><NA></td>
<td id="T_3938c_row0_col25" class="data row0 col25" ><NA></td>
<td id="T_3938c_row0_col26" class="data row0 col26" ><NA></td>
<td id="T_3938c_row0_col27" class="data row0 col27" ><NA></td>
<td id="T_3938c_row0_col28" class="data row0 col28" ><NA></td>
<td id="T_3938c_row0_col29" class="data row0 col29" ><NA></td>
<td id="T_3938c_row0_col30" class="data row0 col30" ></td>
</tr>
<tr>
<th id="T_3938c_level1_row1" class="row_heading level1 row1" >min</th>
<td id="T_3938c_row1_col0" class="data row1 col0" ><NA></td>
<td id="T_3938c_row1_col1" class="data row1 col1" ></td>
<td id="T_3938c_row1_col2" class="data row1 col2" ></td>
<td id="T_3938c_row1_col3" class="data row1 col3" ></td>
<td id="T_3938c_row1_col4" class="data row1 col4" ></td>
<td id="T_3938c_row1_col5" class="data row1 col5" ></td>
<td id="T_3938c_row1_col6" class="data row1 col6" ></td>
<td id="T_3938c_row1_col7" class="data row1 col7" ><NA></td>
<td id="T_3938c_row1_col8" class="data row1 col8" >1.33</td>
<td id="T_3938c_row1_col9" class="data row1 col9" >0.01</td>
<td id="T_3938c_row1_col10" class="data row1 col10" >1</td>
<td id="T_3938c_row1_col11" class="data row1 col11" >-4.00</td>
<td id="T_3938c_row1_col12" class="data row1 col12" >0.00</td>
<td id="T_3938c_row1_col13" class="data row1 col13" >0.00</td>
<td id="T_3938c_row1_col14" class="data row1 col14" >1</td>
<td id="T_3938c_row1_col15" class="data row1 col15" >0.00</td>
<td id="T_3938c_row1_col16" class="data row1 col16" >0.00</td>
<td id="T_3938c_row1_col17" class="data row1 col17" >0.00</td>
<td id="T_3938c_row1_col18" class="data row1 col18" >0.00</td>
<td id="T_3938c_row1_col19" class="data row1 col19" >0.00</td>
<td id="T_3938c_row1_col20" class="data row1 col20" >0.00</td>
<td id="T_3938c_row1_col21" class="data row1 col21" >0</td>
<td id="T_3938c_row1_col22" class="data row1 col22" >2222100000</td>
<td id="T_3938c_row1_col23" class="data row1 col23" ><NA></td>
<td id="T_3938c_row1_col24" class="data row1 col24" ><NA></td>
<td id="T_3938c_row1_col25" class="data row1 col25" ><NA></td>
<td id="T_3938c_row1_col26" class="data row1 col26" ><NA></td>
<td id="T_3938c_row1_col27" class="data row1 col27" ><NA></td>
<td id="T_3938c_row1_col28" class="data row1 col28" ><NA></td>
<td id="T_3938c_row1_col29" class="data row1 col29" ><NA></td>
<td id="T_3938c_row1_col30" class="data row1 col30" ></td>
</tr>
<tr>
<th id="T_3938c_level0_row2" class="row_heading level0 row2" rowspan="2">CESM2</th>
<th id="T_3938c_level1_row2" class="row_heading level1 row2" >r2i1p1f1</th>
<td id="T_3938c_row2_col0" class="data row2 col0" >1</td>
<td id="T_3938c_row2_col1" class="data row2 col1" >ESD</td>
<td id="T_3938c_row2_col2" class="data row2 col2" ></td>
<td id="T_3938c_row2_col3" class="data row2 col3" >RCM</td>
<td id="T_3938c_row2_col4" class="data row2 col4" >RCM</td>
<td id="T_3938c_row2_col5" class="data row2 col5" >RCM</td>
<td id="T_3938c_row2_col6" class="data row2 col6" >RCM</td>
<td id="T_3938c_row2_col7" class="data row2 col7" >0</td>
<td id="T_3938c_row2_col8" class="data row2 col8" >1.99</td>
<td id="T_3938c_row2_col9" class="data row2 col9" >0.02</td>
<td id="T_3938c_row2_col10" class="data row2 col10" >1</td>
<td id="T_3938c_row2_col11" class="data row2 col11" >1.42</td>
<td id="T_3938c_row2_col12" class="data row2 col12" ><NA></td>
<td id="T_3938c_row2_col13" class="data row2 col13" ><NA></td>
<td id="T_3938c_row2_col14" class="data row2 col14" >1</td>
<td id="T_3938c_row2_col15" class="data row2 col15" ><NA></td>
<td id="T_3938c_row2_col16" class="data row2 col16" ><NA></td>
<td id="T_3938c_row2_col17" class="data row2 col17" ><NA></td>
<td id="T_3938c_row2_col18" class="data row2 col18" ><NA></td>
<td id="T_3938c_row2_col19" class="data row2 col19" ><NA></td>
<td id="T_3938c_row2_col20" class="data row2 col20" ><NA></td>
<td id="T_3938c_row2_col21" class="data row2 col21" >100</td>
<td id="T_3938c_row2_col22" class="data row2 col22" ><NA></td>
<td id="T_3938c_row2_col23" class="data row2 col23" >5.16</td>
<td id="T_3938c_row2_col24" class="data row2 col24" >2.06</td>
<td id="T_3938c_row2_col25" class="data row2 col25" >-1.53</td>
<td id="T_3938c_row2_col26" class="data row2 col26" >3</td>
<td id="T_3938c_row2_col27" class="data row2 col27" ><NA></td>
<td id="T_3938c_row2_col28" class="data row2 col28" ><NA></td>
<td id="T_3938c_row2_col29" class="data row2 col29" >3.80</td>
<td id="T_3938c_row2_col30" class="data row2 col30" >CESM</td>
</tr>
<tr>
<th id="T_3938c_level1_row3" class="row_heading level1 row3" >r11i1p1f1</th>
<td id="T_3938c_row3_col0" class="data row3 col0" >1</td>
<td id="T_3938c_row3_col1" class="data row3 col1" >RCM</td>
<td id="T_3938c_row3_col2" class="data row3 col2" ></td>
<td id="T_3938c_row3_col3" class="data row3 col3" >RCM</td>
<td id="T_3938c_row3_col4" class="data row3 col4" >RCM</td>
<td id="T_3938c_row3_col5" class="data row3 col5" >RCM</td>
<td id="T_3938c_row3_col6" class="data row3 col6" >RCM</td>
<td id="T_3938c_row3_col7" class="data row3 col7" >0</td>
<td id="T_3938c_row3_col8" class="data row3 col8" ><NA></td>
<td id="T_3938c_row3_col9" class="data row3 col9" ><NA></td>
<td id="T_3938c_row3_col10" class="data row3 col10" ><NA></td>
<td id="T_3938c_row3_col11" class="data row3 col11" ><NA></td>
<td id="T_3938c_row3_col12" class="data row3 col12" ><NA></td>
<td id="T_3938c_row3_col13" class="data row3 col13" ><NA></td>
<td id="T_3938c_row3_col14" class="data row3 col14" ><NA></td>
<td id="T_3938c_row3_col15" class="data row3 col15" ><NA></td>
<td id="T_3938c_row3_col16" class="data row3 col16" ><NA></td>
<td id="T_3938c_row3_col17" class="data row3 col17" ><NA></td>
<td id="T_3938c_row3_col18" class="data row3 col18" ><NA></td>
<td id="T_3938c_row3_col19" class="data row3 col19" ><NA></td>
<td id="T_3938c_row3_col20" class="data row3 col20" ><NA></td>
<td id="T_3938c_row3_col21" class="data row3 col21" >100</td>
<td id="T_3938c_row3_col22" class="data row3 col22" ><NA></td>
<td id="T_3938c_row3_col23" class="data row3 col23" ><NA></td>
<td id="T_3938c_row3_col24" class="data row3 col24" ><NA></td>
<td id="T_3938c_row3_col25" class="data row3 col25" ><NA></td>
<td id="T_3938c_row3_col26" class="data row3 col26" ><NA></td>
<td id="T_3938c_row3_col27" class="data row3 col27" ><NA></td>
<td id="T_3938c_row3_col28" class="data row3 col28" ><NA></td>
<td id="T_3938c_row3_col29" class="data row3 col29" ><NA></td>
<td id="T_3938c_row3_col30" class="data row3 col30" ></td>
</tr>
<tr>
<th id="T_3938c_level0_row4" class="row_heading level0 row4" >CMCC-CM2-SR5</th>
<th id="T_3938c_level1_row4" class="row_heading level1 row4" >r1i1p1f1</th>
<td id="T_3938c_row4_col0" class="data row4 col0" >1</td>
<td id="T_3938c_row4_col1" class="data row4 col1" >RCM</td>
<td id="T_3938c_row4_col2" class="data row4 col2" ></td>
<td id="T_3938c_row4_col3" class="data row4 col3" >RCM</td>
<td id="T_3938c_row4_col4" class="data row4 col4" >RCM</td>
<td id="T_3938c_row4_col5" class="data row4 col5" >RCM</td>
<td id="T_3938c_row4_col6" class="data row4 col6" >RCM</td>
<td id="T_3938c_row4_col7" class="data row4 col7" >0</td>
<td id="T_3938c_row4_col8" class="data row4 col8" ><NA></td>
<td id="T_3938c_row4_col9" class="data row4 col9" ><NA></td>
<td id="T_3938c_row4_col10" class="data row4 col10" ><NA></td>
<td id="T_3938c_row4_col11" class="data row4 col11" ><NA></td>
<td id="T_3938c_row4_col12" class="data row4 col12" >0.63</td>
<td id="T_3938c_row4_col13" class="data row4 col13" ><NA></td>
<td id="T_3938c_row4_col14" class="data row4 col14" ><NA></td>
<td id="T_3938c_row4_col15" class="data row4 col15" >1.10</td>
<td id="T_3938c_row4_col16" class="data row4 col16" ><NA></td>
<td id="T_3938c_row4_col17" class="data row4 col17" ><NA></td>
<td id="T_3938c_row4_col18" class="data row4 col18" ><NA></td>
<td id="T_3938c_row4_col19" class="data row4 col19" ><NA></td>
<td id="T_3938c_row4_col20" class="data row4 col20" ><NA></td>
<td id="T_3938c_row4_col21" class="data row4 col21" >100</td>
<td id="T_3938c_row4_col22" class="data row4 col22" ><NA></td>
<td id="T_3938c_row4_col23" class="data row4 col23" >3.52</td>
<td id="T_3938c_row4_col24" class="data row4 col24" ><NA></td>
<td id="T_3938c_row4_col25" class="data row4 col25" ><NA></td>
<td id="T_3938c_row4_col26" class="data row4 col26" ><NA></td>
<td id="T_3938c_row4_col27" class="data row4 col27" >4.58</td>
<td id="T_3938c_row4_col28" class="data row4 col28" >-8.78</td>
<td id="T_3938c_row4_col29" class="data row4 col29" >4.00</td>
<td id="T_3938c_row4_col30" class="data row4 col30" ></td>
</tr>
<tr>
<th id="T_3938c_level0_row5" class="row_heading level0 row5" >CMCC-ESM2</th>
<th id="T_3938c_level1_row5" class="row_heading level1 row5" >r1i1p1f1</th>
<td id="T_3938c_row5_col0" class="data row5 col0" >1</td>
<td id="T_3938c_row5_col1" class="data row5 col1" >RCM</td>
<td id="T_3938c_row5_col2" class="data row5 col2" ></td>
<td id="T_3938c_row5_col3" class="data row5 col3" >RCM</td>
<td id="T_3938c_row5_col4" class="data row5 col4" >RCM</td>
<td id="T_3938c_row5_col5" class="data row5 col5" >RCM</td>
<td id="T_3938c_row5_col6" class="data row5 col6" >RCM</td>
<td id="T_3938c_row5_col7" class="data row5 col7" >0</td>
<td id="T_3938c_row5_col8" class="data row5 col8" ><NA></td>
<td id="T_3938c_row5_col9" class="data row5 col9" ><NA></td>
<td id="T_3938c_row5_col10" class="data row5 col10" ><NA></td>
<td id="T_3938c_row5_col11" class="data row5 col11" ><NA></td>
<td id="T_3938c_row5_col12" class="data row5 col12" >0.54</td>
<td id="T_3938c_row5_col13" class="data row5 col13" ><NA></td>
<td id="T_3938c_row5_col14" class="data row5 col14" ><NA></td>
<td id="T_3938c_row5_col15" class="data row5 col15" ><NA></td>
<td id="T_3938c_row5_col16" class="data row5 col16" ><NA></td>
<td id="T_3938c_row5_col17" class="data row5 col17" ><NA></td>
<td id="T_3938c_row5_col18" class="data row5 col18" ><NA></td>
<td id="T_3938c_row5_col19" class="data row5 col19" ><NA></td>
<td id="T_3938c_row5_col20" class="data row5 col20" ><NA></td>
<td id="T_3938c_row5_col21" class="data row5 col21" >100</td>
<td id="T_3938c_row5_col22" class="data row5 col22" ><NA></td>
<td id="T_3938c_row5_col23" class="data row5 col23" ><NA></td>
<td id="T_3938c_row5_col24" class="data row5 col24" ><NA></td>
<td id="T_3938c_row5_col25" class="data row5 col25" ><NA></td>
<td id="T_3938c_row5_col26" class="data row5 col26" ><NA></td>
<td id="T_3938c_row5_col27" class="data row5 col27" ><NA></td>
<td id="T_3938c_row5_col28" class="data row5 col28" ><NA></td>
<td id="T_3938c_row5_col29" class="data row5 col29" ><NA></td>
<td id="T_3938c_row5_col30" class="data row5 col30" ></td>
</tr>
<tr>
<th id="T_3938c_level0_row6" class="row_heading level0 row6" >CNRM-ESM2-1</th>
<th id="T_3938c_level1_row6" class="row_heading level1 row6" >r1i1p1f2</th>
<td id="T_3938c_row6_col0" class="data row6 col0" >1</td>
<td id="T_3938c_row6_col1" class="data row6 col1" >RCM</td>
<td id="T_3938c_row6_col2" class="data row6 col2" >RCM</td>
<td id="T_3938c_row6_col3" class="data row6 col3" >RCM</td>
<td id="T_3938c_row6_col4" class="data row6 col4" >RCM</td>
<td id="T_3938c_row6_col5" class="data row6 col5" >RCM</td>
<td id="T_3938c_row6_col6" class="data row6 col6" >RCM</td>
<td id="T_3938c_row6_col7" class="data row6 col7" >0</td>
<td id="T_3938c_row6_col8" class="data row6 col8" >1.82</td>
<td id="T_3938c_row6_col9" class="data row6 col9" >0.02</td>
<td id="T_3938c_row6_col10" class="data row6 col10" >1</td>
<td id="T_3938c_row6_col11" class="data row6 col11" >-3.02</td>
<td id="T_3938c_row6_col12" class="data row6 col12" >0.76</td>
<td id="T_3938c_row6_col13" class="data row6 col13" >1.50</td>
<td id="T_3938c_row6_col14" class="data row6 col14" >1</td>
<td id="T_3938c_row6_col15" class="data row6 col15" >1.30</td>
<td id="T_3938c_row6_col16" class="data row6 col16" >3.30</td>
<td id="T_3938c_row6_col17" class="data row6 col17" >1.50</td>
<td id="T_3938c_row6_col18" class="data row6 col18" >7.30</td>
<td id="T_3938c_row6_col19" class="data row6 col19" >2.10</td>
<td id="T_3938c_row6_col20" class="data row6 col20" >1.30</td>
<td id="T_3938c_row6_col21" class="data row6 col21" >150</td>
<td id="T_3938c_row6_col22" class="data row6 col22" >2222222200</td>
<td id="T_3938c_row6_col23" class="data row6 col23" >4.76</td>
<td id="T_3938c_row6_col24" class="data row6 col24" >1.90</td>
<td id="T_3938c_row6_col25" class="data row6 col25" >0.00</td>
<td id="T_3938c_row6_col26" class="data row6 col26" >2</td>
<td id="T_3938c_row6_col27" class="data row6 col27" >3.54</td>
<td id="T_3938c_row6_col28" class="data row6 col28" >-48.05</td>
<td id="T_3938c_row6_col29" class="data row6 col29" >3.10</td>
<td id="T_3938c_row6_col30" class="data row6 col30" >CNRM</td>
</tr>
<tr>
<th id="T_3938c_level0_row7" class="row_heading level0 row7" >MIROC6</th>
<th id="T_3938c_level1_row7" class="row_heading level1 row7" >r1i1p1f1</th>
<td id="T_3938c_row7_col0" class="data row7 col0" >1</td>
<td id="T_3938c_row7_col1" class="data row7 col1" >RCM</td>
<td id="T_3938c_row7_col2" class="data row7 col2" >ESD</td>
<td id="T_3938c_row7_col3" class="data row7 col3" >RCM</td>
<td id="T_3938c_row7_col4" class="data row7 col4" >RCM</td>
<td id="T_3938c_row7_col5" class="data row7 col5" >RCM</td>
<td id="T_3938c_row7_col6" class="data row7 col6" >RCM</td>
<td id="T_3938c_row7_col7" class="data row7 col7" >0</td>
<td id="T_3938c_row7_col8" class="data row7 col8" >1.58</td>
<td id="T_3938c_row7_col9" class="data row7 col9" >0.02</td>
<td id="T_3938c_row7_col10" class="data row7 col10" >1</td>
<td id="T_3938c_row7_col11" class="data row7 col11" >-3.31</td>
<td id="T_3938c_row7_col12" class="data row7 col12" ><NA></td>
<td id="T_3938c_row7_col13" class="data row7 col13" >1.30</td>
<td id="T_3938c_row7_col14" class="data row7 col14" >1</td>
<td id="T_3938c_row7_col15" class="data row7 col15" >1.70</td>
<td id="T_3938c_row7_col16" class="data row7 col16" >4.30</td>
<td id="T_3938c_row7_col17" class="data row7 col17" >1.00</td>
<td id="T_3938c_row7_col18" class="data row7 col18" >8.40</td>
<td id="T_3938c_row7_col19" class="data row7 col19" >1.80</td>
<td id="T_3938c_row7_col20" class="data row7 col20" >1.20</td>
<td id="T_3938c_row7_col21" class="data row7 col21" >250</td>
<td id="T_3938c_row7_col22" class="data row7 col22" ><NA></td>
<td id="T_3938c_row7_col23" class="data row7 col23" >2.61</td>
<td id="T_3938c_row7_col24" class="data row7 col24" >1.55</td>
<td id="T_3938c_row7_col25" class="data row7 col25" >-0.24</td>
<td id="T_3938c_row7_col26" class="data row7 col26" >1</td>
<td id="T_3938c_row7_col27" class="data row7 col27" >4.23</td>
<td id="T_3938c_row7_col28" class="data row7 col28" >-31.89</td>
<td id="T_3938c_row7_col29" class="data row7 col29" >3.30</td>
<td id="T_3938c_row7_col30" class="data row7 col30" >MIROC</td>
</tr>
<tr>
<th id="T_3938c_level0_row8" class="row_heading level0 row8" rowspan="2">MPI-ESM1-2-HR</th>
<th id="T_3938c_level1_row8" class="row_heading level1 row8" >r1i1p1f1</th>
<td id="T_3938c_row8_col0" class="data row8 col0" >1</td>
<td id="T_3938c_row8_col1" class="data row8 col1" >RCM</td>
<td id="T_3938c_row8_col2" class="data row8 col2" ></td>
<td id="T_3938c_row8_col3" class="data row8 col3" >RCM</td>
<td id="T_3938c_row8_col4" class="data row8 col4" >RCM</td>
<td id="T_3938c_row8_col5" class="data row8 col5" >RCM</td>
<td id="T_3938c_row8_col6" class="data row8 col6" >RCM</td>
<td id="T_3938c_row8_col7" class="data row8 col7" >0</td>
<td id="T_3938c_row8_col8" class="data row8 col8" >1.57</td>
<td id="T_3938c_row8_col9" class="data row8 col9" >0.08</td>
<td id="T_3938c_row8_col10" class="data row8 col10" >1</td>
<td id="T_3938c_row8_col11" class="data row8 col11" >-3.10</td>
<td id="T_3938c_row8_col12" class="data row8 col12" >0.59</td>
<td id="T_3938c_row8_col13" class="data row8 col13" >1.60</td>
<td id="T_3938c_row8_col14" class="data row8 col14" >1</td>
<td id="T_3938c_row8_col15" class="data row8 col15" >0.70</td>
<td id="T_3938c_row8_col16" class="data row8 col16" >8.30</td>
<td id="T_3938c_row8_col17" class="data row8 col17" >1.60</td>
<td id="T_3938c_row8_col18" class="data row8 col18" >7.20</td>
<td id="T_3938c_row8_col19" class="data row8 col19" >1.40</td>
<td id="T_3938c_row8_col20" class="data row8 col20" >1.50</td>
<td id="T_3938c_row8_col21" class="data row8 col21" >100</td>
<td id="T_3938c_row8_col22" class="data row8 col22" >2222102200</td>
<td id="T_3938c_row8_col23" class="data row8 col23" >2.98</td>
<td id="T_3938c_row8_col24" class="data row8 col24" >1.65</td>
<td id="T_3938c_row8_col25" class="data row8 col25" >0.92</td>
<td id="T_3938c_row8_col26" class="data row8 col26" >2</td>
<td id="T_3938c_row8_col27" class="data row8 col27" >4.41</td>
<td id="T_3938c_row8_col28" class="data row8 col28" >-42.61</td>
<td id="T_3938c_row8_col29" class="data row8 col29" >2.80</td>
<td id="T_3938c_row8_col30" class="data row8 col30" >MPI</td>
</tr>
<tr>
<th id="T_3938c_level1_row9" class="row_heading level1 row9" >r2i1p1f1</th>
<td id="T_3938c_row9_col0" class="data row9 col0" >1</td>
<td id="T_3938c_row9_col1" class="data row9 col1" >RCM</td>
<td id="T_3938c_row9_col2" class="data row9 col2" ></td>
<td id="T_3938c_row9_col3" class="data row9 col3" >RCM</td>
<td id="T_3938c_row9_col4" class="data row9 col4" >RCM</td>
<td id="T_3938c_row9_col5" class="data row9 col5" >RCM</td>
<td id="T_3938c_row9_col6" class="data row9 col6" >RCM</td>
<td id="T_3938c_row9_col7" class="data row9 col7" >0</td>
<td id="T_3938c_row9_col8" class="data row9 col8" ><NA></td>
<td id="T_3938c_row9_col9" class="data row9 col9" ><NA></td>
<td id="T_3938c_row9_col10" class="data row9 col10" ><NA></td>
<td id="T_3938c_row9_col11" class="data row9 col11" ><NA></td>
<td id="T_3938c_row9_col12" class="data row9 col12" >0.52</td>
<td id="T_3938c_row9_col13" class="data row9 col13" ><NA></td>
<td id="T_3938c_row9_col14" class="data row9 col14" ><NA></td>
<td id="T_3938c_row9_col15" class="data row9 col15" ><NA></td>
<td id="T_3938c_row9_col16" class="data row9 col16" ><NA></td>
<td id="T_3938c_row9_col17" class="data row9 col17" ><NA></td>
<td id="T_3938c_row9_col18" class="data row9 col18" ><NA></td>
<td id="T_3938c_row9_col19" class="data row9 col19" ><NA></td>
<td id="T_3938c_row9_col20" class="data row9 col20" ><NA></td>
<td id="T_3938c_row9_col21" class="data row9 col21" >100</td>
<td id="T_3938c_row9_col22" class="data row9 col22" ><NA></td>
<td id="T_3938c_row9_col23" class="data row9 col23" ><NA></td>
<td id="T_3938c_row9_col24" class="data row9 col24" ><NA></td>
<td id="T_3938c_row9_col25" class="data row9 col25" ><NA></td>
<td id="T_3938c_row9_col26" class="data row9 col26" ><NA></td>
<td id="T_3938c_row9_col27" class="data row9 col27" ><NA></td>
<td id="T_3938c_row9_col28" class="data row9 col28" ><NA></td>
<td id="T_3938c_row9_col29" class="data row9 col29" ><NA></td>
<td id="T_3938c_row9_col30" class="data row9 col30" ></td>
</tr>
<tr>
<th id="T_3938c_level0_row10" class="row_heading level0 row10" rowspan="10">MPI-ESM1-2-LR</th>
<th id="T_3938c_level1_row10" class="row_heading level1 row10" >r1i1p1f1</th>
<td id="T_3938c_row10_col0" class="data row10 col0" >1</td>
<td id="T_3938c_row10_col1" class="data row10 col1" >RCM</td>
<td id="T_3938c_row10_col2" class="data row10 col2" ></td>
<td id="T_3938c_row10_col3" class="data row10 col3" >RCM</td>
<td id="T_3938c_row10_col4" class="data row10 col4" >RCM</td>
<td id="T_3938c_row10_col5" class="data row10 col5" >RCM</td>
<td id="T_3938c_row10_col6" class="data row10 col6" >RCM</td>
<td id="T_3938c_row10_col7" class="data row10 col7" >0</td>
<td id="T_3938c_row10_col8" class="data row10 col8" ><NA></td>
<td id="T_3938c_row10_col9" class="data row10 col9" >0.06</td>
<td id="T_3938c_row10_col10" class="data row10 col10" >1</td>
<td id="T_3938c_row10_col11" class="data row10 col11" ><NA></td>
<td id="T_3938c_row10_col12" class="data row10 col12" >0.65</td>
<td id="T_3938c_row10_col13" class="data row10 col13" >1.50</td>
<td id="T_3938c_row10_col14" class="data row10 col14" >1</td>
<td id="T_3938c_row10_col15" class="data row10 col15" >1.10</td>
<td id="T_3938c_row10_col16" class="data row10 col16" >4.80</td>
<td id="T_3938c_row10_col17" class="data row10 col17" >1.10</td>
<td id="T_3938c_row10_col18" class="data row10 col18" >8.20</td>
<td id="T_3938c_row10_col19" class="data row10 col19" >1.50</td>
<td id="T_3938c_row10_col20" class="data row10 col20" >1.50</td>
<td id="T_3938c_row10_col21" class="data row10 col21" >250</td>
<td id="T_3938c_row10_col22" class="data row10 col22" >2222102200</td>
<td id="T_3938c_row10_col23" class="data row10 col23" >3.00</td>
<td id="T_3938c_row10_col24" class="data row10 col24" ><NA></td>
<td id="T_3938c_row10_col25" class="data row10 col25" ><NA></td>
<td id="T_3938c_row10_col26" class="data row10 col26" >2</td>
<td id="T_3938c_row10_col27" class="data row10 col27" >4.23</td>
<td id="T_3938c_row10_col28" class="data row10 col28" >-63.07</td>
<td id="T_3938c_row10_col29" class="data row10 col29" >2.70</td>
<td id="T_3938c_row10_col30" class="data row10 col30" >MPI</td>
</tr>
<tr>
<th id="T_3938c_level1_row11" class="row_heading level1 row11" >r2i1p1f1</th>
<td id="T_3938c_row11_col0" class="data row11 col0" >1</td>
<td id="T_3938c_row11_col1" class="data row11 col1" >RCM</td>
<td id="T_3938c_row11_col2" class="data row11 col2" ></td>
<td id="T_3938c_row11_col3" class="data row11 col3" >RCM</td>
<td id="T_3938c_row11_col4" class="data row11 col4" >RCM</td>
<td id="T_3938c_row11_col5" class="data row11 col5" >RCM</td>
<td id="T_3938c_row11_col6" class="data row11 col6" >RCM</td>
<td id="T_3938c_row11_col7" class="data row11 col7" >0</td>
<td id="T_3938c_row11_col8" class="data row11 col8" ><NA></td>
<td id="T_3938c_row11_col9" class="data row11 col9" ><NA></td>
<td id="T_3938c_row11_col10" class="data row11 col10" ><NA></td>
<td id="T_3938c_row11_col11" class="data row11 col11" ><NA></td>
<td id="T_3938c_row11_col12" class="data row11 col12" >0.73</td>
<td id="T_3938c_row11_col13" class="data row11 col13" ><NA></td>
<td id="T_3938c_row11_col14" class="data row11 col14" ><NA></td>
<td id="T_3938c_row11_col15" class="data row11 col15" ><NA></td>
<td id="T_3938c_row11_col16" class="data row11 col16" ><NA></td>
<td id="T_3938c_row11_col17" class="data row11 col17" ><NA></td>
<td id="T_3938c_row11_col18" class="data row11 col18" ><NA></td>
<td id="T_3938c_row11_col19" class="data row11 col19" ><NA></td>
<td id="T_3938c_row11_col20" class="data row11 col20" ><NA></td>
<td id="T_3938c_row11_col21" class="data row11 col21" >250</td>
<td id="T_3938c_row11_col22" class="data row11 col22" ><NA></td>
<td id="T_3938c_row11_col23" class="data row11 col23" ><NA></td>
<td id="T_3938c_row11_col24" class="data row11 col24" ><NA></td>
<td id="T_3938c_row11_col25" class="data row11 col25" ><NA></td>
<td id="T_3938c_row11_col26" class="data row11 col26" ><NA></td>
<td id="T_3938c_row11_col27" class="data row11 col27" ><NA></td>
<td id="T_3938c_row11_col28" class="data row11 col28" ><NA></td>
<td id="T_3938c_row11_col29" class="data row11 col29" ><NA></td>
<td id="T_3938c_row11_col30" class="data row11 col30" ></td>
</tr>
<tr>
<th id="T_3938c_level1_row12" class="row_heading level1 row12" >r3i1p1f1</th>
<td id="T_3938c_row12_col0" class="data row12 col0" >1</td>
<td id="T_3938c_row12_col1" class="data row12 col1" >RCM</td>
<td id="T_3938c_row12_col2" class="data row12 col2" ></td>
<td id="T_3938c_row12_col3" class="data row12 col3" >RCM</td>
<td id="T_3938c_row12_col4" class="data row12 col4" >RCM</td>
<td id="T_3938c_row12_col5" class="data row12 col5" >RCM</td>
<td id="T_3938c_row12_col6" class="data row12 col6" >RCM</td>
<td id="T_3938c_row12_col7" class="data row12 col7" >0</td>
<td id="T_3938c_row12_col8" class="data row12 col8" ><NA></td>
<td id="T_3938c_row12_col9" class="data row12 col9" ><NA></td>
<td id="T_3938c_row12_col10" class="data row12 col10" ><NA></td>
<td id="T_3938c_row12_col11" class="data row12 col11" ><NA></td>
<td id="T_3938c_row12_col12" class="data row12 col12" >0.69</td>
<td id="T_3938c_row12_col13" class="data row12 col13" ><NA></td>
<td id="T_3938c_row12_col14" class="data row12 col14" ><NA></td>
<td id="T_3938c_row12_col15" class="data row12 col15" ><NA></td>
<td id="T_3938c_row12_col16" class="data row12 col16" ><NA></td>
<td id="T_3938c_row12_col17" class="data row12 col17" ><NA></td>
<td id="T_3938c_row12_col18" class="data row12 col18" ><NA></td>
<td id="T_3938c_row12_col19" class="data row12 col19" ><NA></td>
<td id="T_3938c_row12_col20" class="data row12 col20" ><NA></td>
<td id="T_3938c_row12_col21" class="data row12 col21" >250</td>
<td id="T_3938c_row12_col22" class="data row12 col22" ><NA></td>
<td id="T_3938c_row12_col23" class="data row12 col23" ><NA></td>
<td id="T_3938c_row12_col24" class="data row12 col24" ><NA></td>
<td id="T_3938c_row12_col25" class="data row12 col25" ><NA></td>
<td id="T_3938c_row12_col26" class="data row12 col26" ><NA></td>
<td id="T_3938c_row12_col27" class="data row12 col27" ><NA></td>
<td id="T_3938c_row12_col28" class="data row12 col28" ><NA></td>
<td id="T_3938c_row12_col29" class="data row12 col29" ><NA></td>
<td id="T_3938c_row12_col30" class="data row12 col30" ></td>
</tr>
<tr>
<th id="T_3938c_level1_row13" class="row_heading level1 row13" >r4i1p1f1</th>
<td id="T_3938c_row13_col0" class="data row13 col0" >1</td>
<td id="T_3938c_row13_col1" class="data row13 col1" >RCM</td>
<td id="T_3938c_row13_col2" class="data row13 col2" ></td>
<td id="T_3938c_row13_col3" class="data row13 col3" >RCM</td>
<td id="T_3938c_row13_col4" class="data row13 col4" >RCM</td>
<td id="T_3938c_row13_col5" class="data row13 col5" >RCM</td>
<td id="T_3938c_row13_col6" class="data row13 col6" >RCM</td>
<td id="T_3938c_row13_col7" class="data row13 col7" >0</td>
<td id="T_3938c_row13_col8" class="data row13 col8" ><NA></td>
<td id="T_3938c_row13_col9" class="data row13 col9" ><NA></td>
<td id="T_3938c_row13_col10" class="data row13 col10" ><NA></td>
<td id="T_3938c_row13_col11" class="data row13 col11" ><NA></td>
<td id="T_3938c_row13_col12" class="data row13 col12" >0.71</td>
<td id="T_3938c_row13_col13" class="data row13 col13" ><NA></td>
<td id="T_3938c_row13_col14" class="data row13 col14" ><NA></td>
<td id="T_3938c_row13_col15" class="data row13 col15" ><NA></td>
<td id="T_3938c_row13_col16" class="data row13 col16" ><NA></td>
<td id="T_3938c_row13_col17" class="data row13 col17" ><NA></td>
<td id="T_3938c_row13_col18" class="data row13 col18" ><NA></td>
<td id="T_3938c_row13_col19" class="data row13 col19" ><NA></td>
<td id="T_3938c_row13_col20" class="data row13 col20" ><NA></td>
<td id="T_3938c_row13_col21" class="data row13 col21" >250</td>
<td id="T_3938c_row13_col22" class="data row13 col22" ><NA></td>
<td id="T_3938c_row13_col23" class="data row13 col23" ><NA></td>
<td id="T_3938c_row13_col24" class="data row13 col24" ><NA></td>
<td id="T_3938c_row13_col25" class="data row13 col25" ><NA></td>
<td id="T_3938c_row13_col26" class="data row13 col26" ><NA></td>
<td id="T_3938c_row13_col27" class="data row13 col27" ><NA></td>
<td id="T_3938c_row13_col28" class="data row13 col28" ><NA></td>
<td id="T_3938c_row13_col29" class="data row13 col29" ><NA></td>
<td id="T_3938c_row13_col30" class="data row13 col30" ></td>
</tr>
<tr>
<th id="T_3938c_level1_row14" class="row_heading level1 row14" >r5i1p1f1</th>
<td id="T_3938c_row14_col0" class="data row14 col0" >1</td>
<td id="T_3938c_row14_col1" class="data row14 col1" >RCM</td>
<td id="T_3938c_row14_col2" class="data row14 col2" ></td>
<td id="T_3938c_row14_col3" class="data row14 col3" >RCM</td>
<td id="T_3938c_row14_col4" class="data row14 col4" >RCM</td>
<td id="T_3938c_row14_col5" class="data row14 col5" >RCM</td>
<td id="T_3938c_row14_col6" class="data row14 col6" >RCM</td>
<td id="T_3938c_row14_col7" class="data row14 col7" >0</td>
<td id="T_3938c_row14_col8" class="data row14 col8" ><NA></td>
<td id="T_3938c_row14_col9" class="data row14 col9" ><NA></td>
<td id="T_3938c_row14_col10" class="data row14 col10" ><NA></td>
<td id="T_3938c_row14_col11" class="data row14 col11" ><NA></td>
<td id="T_3938c_row14_col12" class="data row14 col12" >0.74</td>
<td id="T_3938c_row14_col13" class="data row14 col13" ><NA></td>
<td id="T_3938c_row14_col14" class="data row14 col14" ><NA></td>
<td id="T_3938c_row14_col15" class="data row14 col15" ><NA></td>
<td id="T_3938c_row14_col16" class="data row14 col16" ><NA></td>
<td id="T_3938c_row14_col17" class="data row14 col17" ><NA></td>
<td id="T_3938c_row14_col18" class="data row14 col18" ><NA></td>
<td id="T_3938c_row14_col19" class="data row14 col19" ><NA></td>
<td id="T_3938c_row14_col20" class="data row14 col20" ><NA></td>
<td id="T_3938c_row14_col21" class="data row14 col21" >250</td>
<td id="T_3938c_row14_col22" class="data row14 col22" ><NA></td>
<td id="T_3938c_row14_col23" class="data row14 col23" ><NA></td>
<td id="T_3938c_row14_col24" class="data row14 col24" ><NA></td>
<td id="T_3938c_row14_col25" class="data row14 col25" ><NA></td>
<td id="T_3938c_row14_col26" class="data row14 col26" ><NA></td>
<td id="T_3938c_row14_col27" class="data row14 col27" ><NA></td>
<td id="T_3938c_row14_col28" class="data row14 col28" ><NA></td>
<td id="T_3938c_row14_col29" class="data row14 col29" ><NA></td>
<td id="T_3938c_row14_col30" class="data row14 col30" ></td>
</tr>
<tr>
<th id="T_3938c_level1_row15" class="row_heading level1 row15" >r6i1p1f1</th>
<td id="T_3938c_row15_col0" class="data row15 col0" >1</td>
<td id="T_3938c_row15_col1" class="data row15 col1" >RCM</td>
<td id="T_3938c_row15_col2" class="data row15 col2" ></td>
<td id="T_3938c_row15_col3" class="data row15 col3" >RCM</td>
<td id="T_3938c_row15_col4" class="data row15 col4" >RCM</td>
<td id="T_3938c_row15_col5" class="data row15 col5" >RCM</td>
<td id="T_3938c_row15_col6" class="data row15 col6" >RCM</td>
<td id="T_3938c_row15_col7" class="data row15 col7" >0</td>
<td id="T_3938c_row15_col8" class="data row15 col8" ><NA></td>
<td id="T_3938c_row15_col9" class="data row15 col9" ><NA></td>
<td id="T_3938c_row15_col10" class="data row15 col10" ><NA></td>
<td id="T_3938c_row15_col11" class="data row15 col11" ><NA></td>
<td id="T_3938c_row15_col12" class="data row15 col12" >0.74</td>
<td id="T_3938c_row15_col13" class="data row15 col13" ><NA></td>
<td id="T_3938c_row15_col14" class="data row15 col14" ><NA></td>
<td id="T_3938c_row15_col15" class="data row15 col15" ><NA></td>
<td id="T_3938c_row15_col16" class="data row15 col16" ><NA></td>
<td id="T_3938c_row15_col17" class="data row15 col17" ><NA></td>
<td id="T_3938c_row15_col18" class="data row15 col18" ><NA></td>
<td id="T_3938c_row15_col19" class="data row15 col19" ><NA></td>
<td id="T_3938c_row15_col20" class="data row15 col20" ><NA></td>
<td id="T_3938c_row15_col21" class="data row15 col21" >250</td>
<td id="T_3938c_row15_col22" class="data row15 col22" ><NA></td>
<td id="T_3938c_row15_col23" class="data row15 col23" ><NA></td>
<td id="T_3938c_row15_col24" class="data row15 col24" ><NA></td>
<td id="T_3938c_row15_col25" class="data row15 col25" ><NA></td>
<td id="T_3938c_row15_col26" class="data row15 col26" ><NA></td>
<td id="T_3938c_row15_col27" class="data row15 col27" ><NA></td>
<td id="T_3938c_row15_col28" class="data row15 col28" ><NA></td>
<td id="T_3938c_row15_col29" class="data row15 col29" ><NA></td>
<td id="T_3938c_row15_col30" class="data row15 col30" ></td>
</tr>
<tr>
<th id="T_3938c_level1_row16" class="row_heading level1 row16" >r7i1p1f1</th>
<td id="T_3938c_row16_col0" class="data row16 col0" >1</td>
<td id="T_3938c_row16_col1" class="data row16 col1" >RCM</td>
<td id="T_3938c_row16_col2" class="data row16 col2" ></td>
<td id="T_3938c_row16_col3" class="data row16 col3" >RCM</td>
<td id="T_3938c_row16_col4" class="data row16 col4" >RCM</td>
<td id="T_3938c_row16_col5" class="data row16 col5" >RCM</td>
<td id="T_3938c_row16_col6" class="data row16 col6" >RCM</td>
<td id="T_3938c_row16_col7" class="data row16 col7" >0</td>
<td id="T_3938c_row16_col8" class="data row16 col8" ><NA></td>
<td id="T_3938c_row16_col9" class="data row16 col9" ><NA></td>
<td id="T_3938c_row16_col10" class="data row16 col10" ><NA></td>
<td id="T_3938c_row16_col11" class="data row16 col11" ><NA></td>
<td id="T_3938c_row16_col12" class="data row16 col12" >0.61</td>
<td id="T_3938c_row16_col13" class="data row16 col13" ><NA></td>
<td id="T_3938c_row16_col14" class="data row16 col14" ><NA></td>
<td id="T_3938c_row16_col15" class="data row16 col15" ><NA></td>
<td id="T_3938c_row16_col16" class="data row16 col16" ><NA></td>
<td id="T_3938c_row16_col17" class="data row16 col17" ><NA></td>
<td id="T_3938c_row16_col18" class="data row16 col18" ><NA></td>
<td id="T_3938c_row16_col19" class="data row16 col19" ><NA></td>
<td id="T_3938c_row16_col20" class="data row16 col20" ><NA></td>
<td id="T_3938c_row16_col21" class="data row16 col21" >250</td>
<td id="T_3938c_row16_col22" class="data row16 col22" ><NA></td>
<td id="T_3938c_row16_col23" class="data row16 col23" ><NA></td>
<td id="T_3938c_row16_col24" class="data row16 col24" ><NA></td>
<td id="T_3938c_row16_col25" class="data row16 col25" ><NA></td>
<td id="T_3938c_row16_col26" class="data row16 col26" ><NA></td>
<td id="T_3938c_row16_col27" class="data row16 col27" ><NA></td>
<td id="T_3938c_row16_col28" class="data row16 col28" ><NA></td>
<td id="T_3938c_row16_col29" class="data row16 col29" ><NA></td>
<td id="T_3938c_row16_col30" class="data row16 col30" ></td>
</tr>
<tr>
<th id="T_3938c_level1_row17" class="row_heading level1 row17" >r8i1p1f1</th>
<td id="T_3938c_row17_col0" class="data row17 col0" >1</td>
<td id="T_3938c_row17_col1" class="data row17 col1" >RCM</td>
<td id="T_3938c_row17_col2" class="data row17 col2" ></td>
<td id="T_3938c_row17_col3" class="data row17 col3" >RCM</td>
<td id="T_3938c_row17_col4" class="data row17 col4" >RCM</td>
<td id="T_3938c_row17_col5" class="data row17 col5" >RCM</td>
<td id="T_3938c_row17_col6" class="data row17 col6" >RCM</td>
<td id="T_3938c_row17_col7" class="data row17 col7" >0</td>
<td id="T_3938c_row17_col8" class="data row17 col8" ><NA></td>
<td id="T_3938c_row17_col9" class="data row17 col9" ><NA></td>
<td id="T_3938c_row17_col10" class="data row17 col10" ><NA></td>
<td id="T_3938c_row17_col11" class="data row17 col11" ><NA></td>
<td id="T_3938c_row17_col12" class="data row17 col12" >0.63</td>
<td id="T_3938c_row17_col13" class="data row17 col13" ><NA></td>
<td id="T_3938c_row17_col14" class="data row17 col14" ><NA></td>
<td id="T_3938c_row17_col15" class="data row17 col15" ><NA></td>
<td id="T_3938c_row17_col16" class="data row17 col16" ><NA></td>
<td id="T_3938c_row17_col17" class="data row17 col17" ><NA></td>
<td id="T_3938c_row17_col18" class="data row17 col18" ><NA></td>
<td id="T_3938c_row17_col19" class="data row17 col19" ><NA></td>
<td id="T_3938c_row17_col20" class="data row17 col20" ><NA></td>
<td id="T_3938c_row17_col21" class="data row17 col21" >250</td>
<td id="T_3938c_row17_col22" class="data row17 col22" ><NA></td>
<td id="T_3938c_row17_col23" class="data row17 col23" ><NA></td>
<td id="T_3938c_row17_col24" class="data row17 col24" ><NA></td>
<td id="T_3938c_row17_col25" class="data row17 col25" ><NA></td>
<td id="T_3938c_row17_col26" class="data row17 col26" ><NA></td>
<td id="T_3938c_row17_col27" class="data row17 col27" ><NA></td>
<td id="T_3938c_row17_col28" class="data row17 col28" ><NA></td>
<td id="T_3938c_row17_col29" class="data row17 col29" ><NA></td>
<td id="T_3938c_row17_col30" class="data row17 col30" ></td>
</tr>
<tr>
<th id="T_3938c_level1_row18" class="row_heading level1 row18" >r9i1p1f1</th>
<td id="T_3938c_row18_col0" class="data row18 col0" >1</td>
<td id="T_3938c_row18_col1" class="data row18 col1" >RCM</td>
<td id="T_3938c_row18_col2" class="data row18 col2" ></td>
<td id="T_3938c_row18_col3" class="data row18 col3" >RCM</td>
<td id="T_3938c_row18_col4" class="data row18 col4" >RCM</td>
<td id="T_3938c_row18_col5" class="data row18 col5" >RCM</td>
<td id="T_3938c_row18_col6" class="data row18 col6" >RCM</td>
<td id="T_3938c_row18_col7" class="data row18 col7" >0</td>
<td id="T_3938c_row18_col8" class="data row18 col8" ><NA></td>
<td id="T_3938c_row18_col9" class="data row18 col9" ><NA></td>
<td id="T_3938c_row18_col10" class="data row18 col10" ><NA></td>
<td id="T_3938c_row18_col11" class="data row18 col11" ><NA></td>
<td id="T_3938c_row18_col12" class="data row18 col12" >0.76</td>
<td id="T_3938c_row18_col13" class="data row18 col13" ><NA></td>
<td id="T_3938c_row18_col14" class="data row18 col14" ><NA></td>
<td id="T_3938c_row18_col15" class="data row18 col15" ><NA></td>
<td id="T_3938c_row18_col16" class="data row18 col16" ><NA></td>
<td id="T_3938c_row18_col17" class="data row18 col17" ><NA></td>
<td id="T_3938c_row18_col18" class="data row18 col18" ><NA></td>
<td id="T_3938c_row18_col19" class="data row18 col19" ><NA></td>
<td id="T_3938c_row18_col20" class="data row18 col20" ><NA></td>
<td id="T_3938c_row18_col21" class="data row18 col21" >250</td>
<td id="T_3938c_row18_col22" class="data row18 col22" ><NA></td>
<td id="T_3938c_row18_col23" class="data row18 col23" ><NA></td>
<td id="T_3938c_row18_col24" class="data row18 col24" ><NA></td>
<td id="T_3938c_row18_col25" class="data row18 col25" ><NA></td>
<td id="T_3938c_row18_col26" class="data row18 col26" ><NA></td>
<td id="T_3938c_row18_col27" class="data row18 col27" ><NA></td>
<td id="T_3938c_row18_col28" class="data row18 col28" ><NA></td>
<td id="T_3938c_row18_col29" class="data row18 col29" ><NA></td>
<td id="T_3938c_row18_col30" class="data row18 col30" ></td>
</tr>
<tr>
<th id="T_3938c_level1_row19" class="row_heading level1 row19" >r10i1p1f1</th>
<td id="T_3938c_row19_col0" class="data row19 col0" >1</td>
<td id="T_3938c_row19_col1" class="data row19 col1" >RCM</td>
<td id="T_3938c_row19_col2" class="data row19 col2" ></td>
<td id="T_3938c_row19_col3" class="data row19 col3" >RCM</td>
<td id="T_3938c_row19_col4" class="data row19 col4" >RCM</td>
<td id="T_3938c_row19_col5" class="data row19 col5" >RCM</td>
<td id="T_3938c_row19_col6" class="data row19 col6" >RCM</td>
<td id="T_3938c_row19_col7" class="data row19 col7" >0</td>
<td id="T_3938c_row19_col8" class="data row19 col8" ><NA></td>
<td id="T_3938c_row19_col9" class="data row19 col9" ><NA></td>
<td id="T_3938c_row19_col10" class="data row19 col10" ><NA></td>
<td id="T_3938c_row19_col11" class="data row19 col11" ><NA></td>
<td id="T_3938c_row19_col12" class="data row19 col12" >0.66</td>
<td id="T_3938c_row19_col13" class="data row19 col13" ><NA></td>
<td id="T_3938c_row19_col14" class="data row19 col14" ><NA></td>
<td id="T_3938c_row19_col15" class="data row19 col15" ><NA></td>
<td id="T_3938c_row19_col16" class="data row19 col16" ><NA></td>
<td id="T_3938c_row19_col17" class="data row19 col17" ><NA></td>
<td id="T_3938c_row19_col18" class="data row19 col18" ><NA></td>
<td id="T_3938c_row19_col19" class="data row19 col19" ><NA></td>
<td id="T_3938c_row19_col20" class="data row19 col20" ><NA></td>
<td id="T_3938c_row19_col21" class="data row19 col21" >250</td>
<td id="T_3938c_row19_col22" class="data row19 col22" ><NA></td>
<td id="T_3938c_row19_col23" class="data row19 col23" ><NA></td>
<td id="T_3938c_row19_col24" class="data row19 col24" ><NA></td>
<td id="T_3938c_row19_col25" class="data row19 col25" ><NA></td>
<td id="T_3938c_row19_col26" class="data row19 col26" ><NA></td>
<td id="T_3938c_row19_col27" class="data row19 col27" ><NA></td>
<td id="T_3938c_row19_col28" class="data row19 col28" ><NA></td>
<td id="T_3938c_row19_col29" class="data row19 col29" ><NA></td>
<td id="T_3938c_row19_col30" class="data row19 col30" ></td>
</tr>
</tbody></table><h2 id="available">Filter: available</h2>
<style type="text/css" >
#T_cb65e_ .level0 {
min-width: 150px;
} #T_cb65e_ th {
font-size: 8pt;
border-style: solid;
border-width: 1px;
}#T_cb65e_row0_col0,#T_cb65e_row0_col7,#T_cb65e_row0_col8,#T_cb65e_row0_col9,#T_cb65e_row0_col10,#T_cb65e_row0_col11,#T_cb65e_row0_col12,#T_cb65e_row0_col13,#T_cb65e_row0_col14,#T_cb65e_row0_col15,#T_cb65e_row0_col16,#T_cb65e_row0_col17,#T_cb65e_row0_col18,#T_cb65e_row0_col19,#T_cb65e_row0_col20,#T_cb65e_row0_col21,#T_cb65e_row0_col22,#T_cb65e_row1_col0,#T_cb65e_row1_col7,#T_cb65e_row1_col8,#T_cb65e_row1_col9,#T_cb65e_row1_col10,#T_cb65e_row1_col11,#T_cb65e_row1_col12,#T_cb65e_row1_col13,#T_cb65e_row1_col14,#T_cb65e_row1_col15,#T_cb65e_row1_col16,#T_cb65e_row1_col17,#T_cb65e_row1_col18,#T_cb65e_row1_col19,#T_cb65e_row1_col20,#T_cb65e_row1_col21,#T_cb65e_row1_col22{
font-size: 8pt;
border: 1px lightgrey solid !important;
background-color: lightgrey;
}#T_cb65e_row0_col1,#T_cb65e_row0_col2,#T_cb65e_row0_col3,#T_cb65e_row0_col4,#T_cb65e_row0_col5,#T_cb65e_row0_col6,#T_cb65e_row0_col23,#T_cb65e_row0_col24,#T_cb65e_row0_col25,#T_cb65e_row0_col26,#T_cb65e_row0_col27,#T_cb65e_row0_col28,#T_cb65e_row0_col29,#T_cb65e_row0_col30,#T_cb65e_row1_col1,#T_cb65e_row1_col2,#T_cb65e_row1_col3,#T_cb65e_row1_col4,#T_cb65e_row1_col5,#T_cb65e_row1_col6,#T_cb65e_row1_col23,#T_cb65e_row1_col24,#T_cb65e_row1_col25,#T_cb65e_row1_col26,#T_cb65e_row1_col27,#T_cb65e_row1_col28,#T_cb65e_row1_col29,#T_cb65e_row1_col30{
font-size: 8pt;
border: 1px lightgrey solid !important;
color: grey;
background-color: lightgrey;
}#T_cb65e_row2_col0,#T_cb65e_row2_col7,#T_cb65e_row2_col8,#T_cb65e_row2_col9,#T_cb65e_row2_col11,#T_cb65e_row2_col12,#T_cb65e_row2_col13,#T_cb65e_row2_col14,#T_cb65e_row2_col15,#T_cb65e_row2_col16,#T_cb65e_row2_col17,#T_cb65e_row2_col18,#T_cb65e_row2_col20,#T_cb65e_row2_col21,#T_cb65e_row2_col22,#T_cb65e_row3_col0,#T_cb65e_row3_col7,#T_cb65e_row3_col8,#T_cb65e_row3_col9,#T_cb65e_row3_col10,#T_cb65e_row3_col11,#T_cb65e_row3_col12,#T_cb65e_row3_col13,#T_cb65e_row3_col14,#T_cb65e_row3_col15,#T_cb65e_row3_col16,#T_cb65e_row3_col17,#T_cb65e_row3_col18,#T_cb65e_row3_col20,#T_cb65e_row3_col21,#T_cb65e_row3_col22,#T_cb65e_row4_col0,#T_cb65e_row4_col7,#T_cb65e_row4_col8,#T_cb65e_row4_col9,#T_cb65e_row4_col10,#T_cb65e_row4_col11,#T_cb65e_row4_col12,#T_cb65e_row4_col13,#T_cb65e_row4_col14,#T_cb65e_row4_col15,#T_cb65e_row4_col16,#T_cb65e_row4_col17,#T_cb65e_row4_col18,#T_cb65e_row4_col19,#T_cb65e_row4_col20,#T_cb65e_row4_col21,#T_cb65e_row4_col22,#T_cb65e_row4_col27,#T_cb65e_row4_col28,#T_cb65e_row4_col30,#T_cb65e_row5_col0,#T_cb65e_row5_col7,#T_cb65e_row5_col8,#T_cb65e_row5_col9,#T_cb65e_row5_col10,#T_cb65e_row5_col11,#T_cb65e_row5_col12,#T_cb65e_row5_col13,#T_cb65e_row5_col14,#T_cb65e_row5_col15,#T_cb65e_row5_col16,#T_cb65e_row5_col17,#T_cb65e_row5_col18,#T_cb65e_row5_col19,#T_cb65e_row5_col20,#T_cb65e_row5_col21,#T_cb65e_row5_col22,#T_cb65e_row5_col23,#T_cb65e_row5_col24,#T_cb65e_row5_col25,#T_cb65e_row5_col26,#T_cb65e_row5_col27,#T_cb65e_row5_col28,#T_cb65e_row5_col29,#T_cb65e_row5_col30,#T_cb65e_row6_col0,#T_cb65e_row6_col7,#T_cb65e_row6_col8,#T_cb65e_row6_col9,#T_cb65e_row6_col10,#T_cb65e_row6_col11,#T_cb65e_row6_col12,#T_cb65e_row6_col13,#T_cb65e_row6_col14,#T_cb65e_row6_col15,#T_cb65e_row6_col16,#T_cb65e_row6_col17,#T_cb65e_row6_col18,#T_cb65e_row6_col19,#T_cb65e_row6_col20,#T_cb65e_row6_col21,#T_cb65e_row6_col22,#T_cb65e_row6_col24,#T_cb65e_row6_col25,#T_cb65e_row6_col26,#T_cb65e_row6_col30,#T_cb65e_row7_col0,#T_cb65e_row7_col7,#T_cb65e_row7_col8,#T_cb65e_row7_col9,#T_cb65e_row7_col10,#T_cb65e_row7_col11,#T_cb65e_row7_col12,#T_cb65e_row7_col13,#T_cb65e_row7_col14,#T_cb65e_row7_col15,#T_cb65e_row7_col16,#T_cb65e_row7_col17,#T_cb65e_row7_col18,#T_cb65e_row7_col19,#T_cb65e_row7_col20,#T_cb65e_row7_col21,#T_cb65e_row7_col22,#T_cb65e_row7_col23,#T_cb65e_row7_col24,#T_cb65e_row7_col25,#T_cb65e_row7_col26,#T_cb65e_row7_col27,#T_cb65e_row7_col28,#T_cb65e_row7_col29,#T_cb65e_row7_col30,#T_cb65e_row8_col0,#T_cb65e_row8_col7,#T_cb65e_row8_col8,#T_cb65e_row8_col9,#T_cb65e_row8_col10,#T_cb65e_row8_col11,#T_cb65e_row8_col12,#T_cb65e_row8_col13,#T_cb65e_row8_col14,#T_cb65e_row8_col15,#T_cb65e_row8_col16,#T_cb65e_row8_col17,#T_cb65e_row8_col18,#T_cb65e_row8_col19,#T_cb65e_row8_col20,#T_cb65e_row8_col21,#T_cb65e_row8_col22,#T_cb65e_row8_col30,#T_cb65e_row9_col0,#T_cb65e_row9_col7,#T_cb65e_row9_col9,#T_cb65e_row9_col10,#T_cb65e_row9_col11,#T_cb65e_row9_col12,#T_cb65e_row9_col13,#T_cb65e_row9_col14,#T_cb65e_row9_col15,#T_cb65e_row9_col16,#T_cb65e_row9_col17,#T_cb65e_row9_col18,#T_cb65e_row9_col19,#T_cb65e_row9_col20,#T_cb65e_row9_col22,#T_cb65e_row10_col0,#T_cb65e_row10_col7,#T_cb65e_row10_col9,#T_cb65e_row10_col10,#T_cb65e_row10_col11,#T_cb65e_row10_col12,#T_cb65e_row10_col13,#T_cb65e_row10_col14,#T_cb65e_row10_col15,#T_cb65e_row10_col16,#T_cb65e_row10_col17,#T_cb65e_row10_col18,#T_cb65e_row10_col19,#T_cb65e_row10_col20,#T_cb65e_row10_col22,#T_cb65e_row11_col0,#T_cb65e_row11_col7,#T_cb65e_row11_col9,#T_cb65e_row11_col10,#T_cb65e_row11_col11,#T_cb65e_row11_col12,#T_cb65e_row11_col13,#T_cb65e_row11_col14,#T_cb65e_row11_col15,#T_cb65e_row11_col16,#T_cb65e_row11_col17,#T_cb65e_row11_col18,#T_cb65e_row11_col19,#T_cb65e_row11_col20,#T_cb65e_row11_col22,#T_cb65e_row12_col0,#T_cb65e_row12_col7,#T_cb65e_row12_col9,#T_cb65e_row12_col11,#T_cb65e_row12_col12,#T_cb65e_row12_col13,#T_cb65e_row12_col14,#T_cb65e_row12_col15,#T_cb65e_row12_col16,#T_cb65e_row12_col17,#T_cb65e_row12_col18,#T_cb65e_row12_col19,#T_cb65e_row12_col20,#T_cb65e_row12_col21,#T_cb65e_row12_col22,#T_cb65e_row13_col0,#T_cb65e_row13_col7,#T_cb65e_row13_col9,#T_cb65e_row13_col10,#T_cb65e_row13_col11,#T_cb65e_row13_col12,#T_cb65e_row13_col13,#T_cb65e_row13_col14,#T_cb65e_row13_col15,#T_cb65e_row13_col16,#T_cb65e_row13_col17,#T_cb65e_row13_col18,#T_cb65e_row13_col19,#T_cb65e_row13_col20,#T_cb65e_row13_col21,#T_cb65e_row13_col22,#T_cb65e_row14_col0,#T_cb65e_row14_col7,#T_cb65e_row14_col9,#T_cb65e_row14_col10,#T_cb65e_row14_col11,#T_cb65e_row14_col12,#T_cb65e_row14_col13,#T_cb65e_row14_col14,#T_cb65e_row14_col15,#T_cb65e_row14_col16,#T_cb65e_row14_col17,#T_cb65e_row14_col18,#T_cb65e_row14_col19,#T_cb65e_row14_col20,#T_cb65e_row14_col21,#T_cb65e_row14_col22,#T_cb65e_row15_col0,#T_cb65e_row15_col7,#T_cb65e_row15_col9,#T_cb65e_row15_col11,#T_cb65e_row15_col12,#T_cb65e_row15_col13,#T_cb65e_row15_col14,#T_cb65e_row15_col15,#T_cb65e_row15_col16,#T_cb65e_row15_col17,#T_cb65e_row15_col18,#T_cb65e_row15_col19,#T_cb65e_row15_col20,#T_cb65e_row15_col21,#T_cb65e_row15_col22,#T_cb65e_row16_col0,#T_cb65e_row16_col7,#T_cb65e_row16_col9,#T_cb65e_row16_col10,#T_cb65e_row16_col11,#T_cb65e_row16_col12,#T_cb65e_row16_col13,#T_cb65e_row16_col14,#T_cb65e_row16_col15,#T_cb65e_row16_col16,#T_cb65e_row16_col17,#T_cb65e_row16_col18,#T_cb65e_row16_col19,#T_cb65e_row16_col20,#T_cb65e_row16_col21,#T_cb65e_row16_col22,#T_cb65e_row17_col0,#T_cb65e_row17_col7,#T_cb65e_row17_col9,#T_cb65e_row17_col10,#T_cb65e_row17_col11,#T_cb65e_row17_col12,#T_cb65e_row17_col13,#T_cb65e_row17_col14,#T_cb65e_row17_col15,#T_cb65e_row17_col16,#T_cb65e_row17_col17,#T_cb65e_row17_col18,#T_cb65e_row17_col19,#T_cb65e_row17_col20,#T_cb65e_row17_col21,#T_cb65e_row17_col22,#T_cb65e_row18_col0,#T_cb65e_row18_col7,#T_cb65e_row18_col9,#T_cb65e_row18_col10,#T_cb65e_row18_col11,#T_cb65e_row18_col12,#T_cb65e_row18_col13,#T_cb65e_row18_col14,#T_cb65e_row18_col15,#T_cb65e_row18_col16,#T_cb65e_row18_col17,#T_cb65e_row18_col18,#T_cb65e_row18_col19,#T_cb65e_row18_col20,#T_cb65e_row18_col21,#T_cb65e_row18_col22,#T_cb65e_row19_col0,#T_cb65e_row19_col7,#T_cb65e_row19_col9,#T_cb65e_row19_col10,#T_cb65e_row19_col11,#T_cb65e_row19_col12,#T_cb65e_row19_col13,#T_cb65e_row19_col14,#T_cb65e_row19_col15,#T_cb65e_row19_col16,#T_cb65e_row19_col17,#T_cb65e_row19_col18,#T_cb65e_row19_col19,#T_cb65e_row19_col20,#T_cb65e_row19_col21,#T_cb65e_row19_col22,#T_cb65e_row20_col0,#T_cb65e_row20_col7,#T_cb65e_row20_col9,#T_cb65e_row20_col10,#T_cb65e_row20_col11,#T_cb65e_row20_col12,#T_cb65e_row20_col13,#T_cb65e_row20_col14,#T_cb65e_row20_col15,#T_cb65e_row20_col16,#T_cb65e_row20_col17,#T_cb65e_row20_col18,#T_cb65e_row20_col19,#T_cb65e_row20_col20,#T_cb65e_row20_col21,#T_cb65e_row20_col22,#T_cb65e_row21_col0,#T_cb65e_row21_col7,#T_cb65e_row21_col8,#T_cb65e_row21_col9,#T_cb65e_row21_col10,#T_cb65e_row21_col11,#T_cb65e_row21_col12,#T_cb65e_row21_col13,#T_cb65e_row21_col14,#T_cb65e_row21_col15,#T_cb65e_row21_col16,#T_cb65e_row21_col17,#T_cb65e_row21_col18,#T_cb65e_row21_col19,#T_cb65e_row21_col20,#T_cb65e_row21_col21,#T_cb65e_row21_col22,#T_cb65e_row21_col30,#T_cb65e_row22_col0,#T_cb65e_row22_col7,#T_cb65e_row22_col8,#T_cb65e_row22_col9,#T_cb65e_row22_col10,#T_cb65e_row22_col11,#T_cb65e_row22_col13,#T_cb65e_row22_col14,#T_cb65e_row22_col15,#T_cb65e_row22_col16,#T_cb65e_row22_col17,#T_cb65e_row22_col18,#T_cb65e_row22_col19,#T_cb65e_row22_col20,#T_cb65e_row22_col22,#T_cb65e_row23_col0,#T_cb65e_row23_col7,#T_cb65e_row23_col8,#T_cb65e_row23_col9,#T_cb65e_row23_col10,#T_cb65e_row23_col11,#T_cb65e_row23_col12,#T_cb65e_row23_col13,#T_cb65e_row23_col14,#T_cb65e_row23_col15,#T_cb65e_row23_col16,#T_cb65e_row23_col17,#T_cb65e_row23_col18,#T_cb65e_row23_col19,#T_cb65e_row23_col20,#T_cb65e_row23_col21,#T_cb65e_row23_col22,#T_cb65e_row23_col30,#T_cb65e_row24_col0,#T_cb65e_row24_col7,#T_cb65e_row24_col8,#T_cb65e_row24_col9,#T_cb65e_row24_col10,#T_cb65e_row24_col11,#T_cb65e_row24_col12,#T_cb65e_row24_col13,#T_cb65e_row24_col14,#T_cb65e_row24_col15,#T_cb65e_row24_col16,#T_cb65e_row24_col17,#T_cb65e_row24_col18,#T_cb65e_row24_col19,#T_cb65e_row24_col20,#T_cb65e_row24_col21,#T_cb65e_row24_col22,#T_cb65e_row24_col23,#T_cb65e_row24_col24,#T_cb65e_row24_col25,#T_cb65e_row24_col26,#T_cb65e_row24_col27,#T_cb65e_row24_col28,#T_cb65e_row24_col29,#T_cb65e_row24_col30,#T_cb65e_row25_col0,#T_cb65e_row25_col7,#T_cb65e_row25_col8,#T_cb65e_row25_col9,#T_cb65e_row25_col10,#T_cb65e_row25_col11,#T_cb65e_row25_col12,#T_cb65e_row25_col13,#T_cb65e_row25_col14,#T_cb65e_row25_col15,#T_cb65e_row25_col16,#T_cb65e_row25_col17,#T_cb65e_row25_col18,#T_cb65e_row25_col19,#T_cb65e_row25_col20,#T_cb65e_row25_col21,#T_cb65e_row25_col22,#T_cb65e_row25_col24,#T_cb65e_row25_col25,#T_cb65e_row25_col30,#T_cb65e_row26_col0,#T_cb65e_row26_col7,#T_cb65e_row26_col8,#T_cb65e_row26_col9,#T_cb65e_row26_col10,#T_cb65e_row26_col11,#T_cb65e_row26_col12,#T_cb65e_row26_col13,#T_cb65e_row26_col14,#T_cb65e_row26_col15,#T_cb65e_row26_col16,#T_cb65e_row26_col17,#T_cb65e_row26_col18,#T_cb65e_row26_col19,#T_cb65e_row26_col20,#T_cb65e_row26_col21,#T_cb65e_row26_col22,#T_cb65e_row26_col23,#T_cb65e_row26_col24,#T_cb65e_row26_col25,#T_cb65e_row26_col26,#T_cb65e_row26_col27,#T_cb65e_row26_col28,#T_cb65e_row26_col29,#T_cb65e_row26_col30,#T_cb65e_row27_col0,#T_cb65e_row27_col7,#T_cb65e_row27_col8,#T_cb65e_row27_col9,#T_cb65e_row27_col10,#T_cb65e_row27_col11,#T_cb65e_row27_col12,#T_cb65e_row27_col13,#T_cb65e_row27_col14,#T_cb65e_row27_col15,#T_cb65e_row27_col16,#T_cb65e_row27_col17,#T_cb65e_row27_col18,#T_cb65e_row27_col19,#T_cb65e_row27_col20,#T_cb65e_row27_col21,#T_cb65e_row27_col22,#T_cb65e_row27_col23,#T_cb65e_row27_col24,#T_cb65e_row27_col25,#T_cb65e_row27_col26,#T_cb65e_row27_col27,#T_cb65e_row27_col28,#T_cb65e_row27_col29,#T_cb65e_row27_col30,#T_cb65e_row28_col0,#T_cb65e_row28_col7,#T_cb65e_row28_col8,#T_cb65e_row28_col9,#T_cb65e_row28_col10,#T_cb65e_row28_col11,#T_cb65e_row28_col12,#T_cb65e_row28_col13,#T_cb65e_row28_col14,#T_cb65e_row28_col15,#T_cb65e_row28_col16,#T_cb65e_row28_col17,#T_cb65e_row28_col18,#T_cb65e_row28_col19,#T_cb65e_row28_col20,#T_cb65e_row28_col21,#T_cb65e_row28_col22,#T_cb65e_row28_col23,#T_cb65e_row28_col24,#T_cb65e_row28_col25,#T_cb65e_row28_col26,#T_cb65e_row28_col27,#T_cb65e_row28_col28,#T_cb65e_row28_col29,#T_cb65e_row28_col30,#T_cb65e_row29_col0,#T_cb65e_row29_col7,#T_cb65e_row29_col8,#T_cb65e_row29_col9,#T_cb65e_row29_col10,#T_cb65e_row29_col11,#T_cb65e_row29_col12,#T_cb65e_row29_col13,#T_cb65e_row29_col14,#T_cb65e_row29_col15,#T_cb65e_row29_col16,#T_cb65e_row29_col17,#T_cb65e_row29_col18,#T_cb65e_row29_col19,#T_cb65e_row29_col20,#T_cb65e_row29_col21,#T_cb65e_row29_col22,#T_cb65e_row29_col23,#T_cb65e_row29_col24,#T_cb65e_row29_col25,#T_cb65e_row29_col26,#T_cb65e_row29_col27,#T_cb65e_row29_col28,#T_cb65e_row29_col29,#T_cb65e_row29_col30,#T_cb65e_row30_col0,#T_cb65e_row30_col7,#T_cb65e_row30_col8,#T_cb65e_row30_col9,#T_cb65e_row30_col10,#T_cb65e_row30_col11,#T_cb65e_row30_col12,#T_cb65e_row30_col13,#T_cb65e_row30_col14,#T_cb65e_row30_col15,#T_cb65e_row30_col16,#T_cb65e_row30_col17,#T_cb65e_row30_col18,#T_cb65e_row30_col19,#T_cb65e_row30_col20,#T_cb65e_row30_col21,#T_cb65e_row30_col22,#T_cb65e_row30_col23,#T_cb65e_row30_col24,#T_cb65e_row30_col25,#T_cb65e_row30_col26,#T_cb65e_row30_col27,#T_cb65e_row30_col28,#T_cb65e_row30_col29,#T_cb65e_row30_col30,#T_cb65e_row31_col0,#T_cb65e_row31_col7,#T_cb65e_row31_col8,#T_cb65e_row31_col9,#T_cb65e_row31_col10,#T_cb65e_row31_col11,#T_cb65e_row31_col12,#T_cb65e_row31_col13,#T_cb65e_row31_col14,#T_cb65e_row31_col15,#T_cb65e_row31_col16,#T_cb65e_row31_col17,#T_cb65e_row31_col18,#T_cb65e_row31_col19,#T_cb65e_row31_col20,#T_cb65e_row31_col21,#T_cb65e_row31_col22,#T_cb65e_row31_col23,#T_cb65e_row31_col24,#T_cb65e_row31_col25,#T_cb65e_row31_col26,#T_cb65e_row31_col27,#T_cb65e_row31_col28,#T_cb65e_row31_col29,#T_cb65e_row31_col30,#T_cb65e_row32_col0,#T_cb65e_row32_col7,#T_cb65e_row32_col8,#T_cb65e_row32_col9,#T_cb65e_row32_col10,#T_cb65e_row32_col11,#T_cb65e_row32_col12,#T_cb65e_row32_col13,#T_cb65e_row32_col14,#T_cb65e_row32_col15,#T_cb65e_row32_col16,#T_cb65e_row32_col17,#T_cb65e_row32_col18,#T_cb65e_row32_col19,#T_cb65e_row32_col20,#T_cb65e_row32_col21,#T_cb65e_row32_col22,#T_cb65e_row32_col23,#T_cb65e_row32_col24,#T_cb65e_row32_col25,#T_cb65e_row32_col26,#T_cb65e_row32_col27,#T_cb65e_row32_col28,#T_cb65e_row32_col29,#T_cb65e_row32_col30,#T_cb65e_row33_col0,#T_cb65e_row33_col7,#T_cb65e_row33_col8,#T_cb65e_row33_col9,#T_cb65e_row33_col10,#T_cb65e_row33_col11,#T_cb65e_row33_col12,#T_cb65e_row33_col13,#T_cb65e_row33_col14,#T_cb65e_row33_col15,#T_cb65e_row33_col16,#T_cb65e_row33_col17,#T_cb65e_row33_col18,#T_cb65e_row33_col19,#T_cb65e_row33_col20,#T_cb65e_row33_col21,#T_cb65e_row33_col22,#T_cb65e_row33_col23,#T_cb65e_row33_col24,#T_cb65e_row33_col25,#T_cb65e_row33_col26,#T_cb65e_row33_col27,#T_cb65e_row33_col28,#T_cb65e_row33_col29,#T_cb65e_row33_col30,#T_cb65e_row34_col0,#T_cb65e_row34_col7,#T_cb65e_row34_col8,#T_cb65e_row34_col9,#T_cb65e_row34_col10,#T_cb65e_row34_col11,#T_cb65e_row34_col12,#T_cb65e_row34_col13,#T_cb65e_row34_col14,#T_cb65e_row34_col15,#T_cb65e_row34_col16,#T_cb65e_row34_col17,#T_cb65e_row34_col18,#T_cb65e_row34_col19,#T_cb65e_row34_col20,#T_cb65e_row34_col21,#T_cb65e_row34_col22,#T_cb65e_row34_col23,#T_cb65e_row34_col24,#T_cb65e_row34_col25,#T_cb65e_row34_col26,#T_cb65e_row34_col27,#T_cb65e_row34_col28,#T_cb65e_row34_col29,#T_cb65e_row34_col30,#T_cb65e_row35_col0,#T_cb65e_row35_col7,#T_cb65e_row35_col8,#T_cb65e_row35_col9,#T_cb65e_row35_col11,#T_cb65e_row35_col12,#T_cb65e_row35_col13,#T_cb65e_row35_col14,#T_cb65e_row35_col15,#T_cb65e_row35_col16,#T_cb65e_row35_col17,#T_cb65e_row35_col18,#T_cb65e_row35_col19,#T_cb65e_row35_col20,#T_cb65e_row35_col21,#T_cb65e_row35_col22,#T_cb65e_row36_col0,#T_cb65e_row36_col7,#T_cb65e_row36_col9,#T_cb65e_row36_col11,#T_cb65e_row36_col12,#T_cb65e_row36_col13,#T_cb65e_row36_col14,#T_cb65e_row36_col15,#T_cb65e_row36_col16,#T_cb65e_row36_col17,#T_cb65e_row36_col18,#T_cb65e_row36_col19,#T_cb65e_row36_col20,#T_cb65e_row36_col21,#T_cb65e_row36_col22,#T_cb65e_row37_col0,#T_cb65e_row37_col7,#T_cb65e_row37_col9,#T_cb65e_row37_col10,#T_cb65e_row37_col11,#T_cb65e_row37_col12,#T_cb65e_row37_col13,#T_cb65e_row37_col14,#T_cb65e_row37_col15,#T_cb65e_row37_col16,#T_cb65e_row37_col17,#T_cb65e_row37_col18,#T_cb65e_row37_col19,#T_cb65e_row37_col20,#T_cb65e_row37_col21,#T_cb65e_row37_col22,#T_cb65e_row38_col0,#T_cb65e_row38_col7,#T_cb65e_row38_col9,#T_cb65e_row38_col10,#T_cb65e_row38_col11,#T_cb65e_row38_col12,#T_cb65e_row38_col13,#T_cb65e_row38_col14,#T_cb65e_row38_col15,#T_cb65e_row38_col16,#T_cb65e_row38_col17,#T_cb65e_row38_col18,#T_cb65e_row38_col19,#T_cb65e_row38_col20,#T_cb65e_row38_col21,#T_cb65e_row38_col22{
font-size: 8pt;
border: 1px lightgrey solid !important;
}#T_cb65e_row2_col1,#T_cb65e_row2_col3,#T_cb65e_row2_col4,#T_cb65e_row2_col5,#T_cb65e_row2_col6,#T_cb65e_row3_col1,#T_cb65e_row3_col3,#T_cb65e_row3_col4,#T_cb65e_row3_col5,#T_cb65e_row3_col6,#T_cb65e_row4_col3,#T_cb65e_row4_col4,#T_cb65e_row4_col5,#T_cb65e_row4_col6,#T_cb65e_row5_col1,#T_cb65e_row5_col3,#T_cb65e_row5_col4,#T_cb65e_row5_col5,#T_cb65e_row5_col6,#T_cb65e_row6_col1,#T_cb65e_row6_col3,#T_cb65e_row6_col4,#T_cb65e_row6_col5,#T_cb65e_row6_col6,#T_cb65e_row7_col1,#T_cb65e_row7_col3,#T_cb65e_row7_col4,#T_cb65e_row7_col5,#T_cb65e_row7_col6,#T_cb65e_row8_col1,#T_cb65e_row8_col2,#T_cb65e_row8_col3,#T_cb65e_row8_col4,#T_cb65e_row8_col5,#T_cb65e_row8_col6,#T_cb65e_row9_col1,#T_cb65e_row9_col3,#T_cb65e_row9_col4,#T_cb65e_row9_col5,#T_cb65e_row9_col6,#T_cb65e_row10_col1,#T_cb65e_row10_col3,#T_cb65e_row10_col4,#T_cb65e_row10_col5,#T_cb65e_row10_col6,#T_cb65e_row11_col1,#T_cb65e_row11_col3,#T_cb65e_row11_col4,#T_cb65e_row11_col5,#T_cb65e_row11_col6,#T_cb65e_row12_col1,#T_cb65e_row12_col2,#T_cb65e_row12_col3,#T_cb65e_row12_col4,#T_cb65e_row12_col5,#T_cb65e_row12_col6,#T_cb65e_row13_col1,#T_cb65e_row13_col2,#T_cb65e_row13_col3,#T_cb65e_row13_col4,#T_cb65e_row13_col5,#T_cb65e_row13_col6,#T_cb65e_row14_col1,#T_cb65e_row14_col2,#T_cb65e_row14_col3,#T_cb65e_row14_col4,#T_cb65e_row14_col5,#T_cb65e_row14_col6,#T_cb65e_row15_col1,#T_cb65e_row15_col2,#T_cb65e_row15_col3,#T_cb65e_row15_col4,#T_cb65e_row15_col5,#T_cb65e_row15_col6,#T_cb65e_row16_col1,#T_cb65e_row16_col2,#T_cb65e_row16_col3,#T_cb65e_row16_col4,#T_cb65e_row16_col5,#T_cb65e_row16_col6,#T_cb65e_row17_col1,#T_cb65e_row17_col2,#T_cb65e_row17_col3,#T_cb65e_row17_col4,#T_cb65e_row17_col5,#T_cb65e_row17_col6,#T_cb65e_row18_col1,#T_cb65e_row18_col2,#T_cb65e_row18_col3,#T_cb65e_row18_col4,#T_cb65e_row18_col5,#T_cb65e_row18_col6,#T_cb65e_row19_col1,#T_cb65e_row19_col2,#T_cb65e_row19_col3,#T_cb65e_row19_col4,#T_cb65e_row19_col5,#T_cb65e_row19_col6,#T_cb65e_row20_col1,#T_cb65e_row20_col2,#T_cb65e_row20_col3,#T_cb65e_row20_col4,#T_cb65e_row20_col5,#T_cb65e_row20_col6,#T_cb65e_row21_col1,#T_cb65e_row21_col3,#T_cb65e_row21_col4,#T_cb65e_row21_col5,#T_cb65e_row21_col6,#T_cb65e_row22_col1,#T_cb65e_row22_col2,#T_cb65e_row22_col3,#T_cb65e_row22_col4,#T_cb65e_row22_col5,#T_cb65e_row22_col6,#T_cb65e_row23_col1,#T_cb65e_row23_col3,#T_cb65e_row23_col4,#T_cb65e_row23_col5,#T_cb65e_row23_col6,#T_cb65e_row24_col1,#T_cb65e_row24_col3,#T_cb65e_row24_col4,#T_cb65e_row24_col5,#T_cb65e_row24_col6,#T_cb65e_row25_col1,#T_cb65e_row25_col3,#T_cb65e_row25_col4,#T_cb65e_row25_col5,#T_cb65e_row25_col6,#T_cb65e_row26_col1,#T_cb65e_row26_col3,#T_cb65e_row26_col4,#T_cb65e_row26_col5,#T_cb65e_row26_col6,#T_cb65e_row27_col1,#T_cb65e_row27_col3,#T_cb65e_row27_col4,#T_cb65e_row27_col5,#T_cb65e_row27_col6,#T_cb65e_row28_col1,#T_cb65e_row28_col3,#T_cb65e_row28_col4,#T_cb65e_row28_col5,#T_cb65e_row28_col6,#T_cb65e_row29_col1,#T_cb65e_row29_col3,#T_cb65e_row29_col4,#T_cb65e_row29_col5,#T_cb65e_row29_col6,#T_cb65e_row30_col1,#T_cb65e_row30_col3,#T_cb65e_row30_col4,#T_cb65e_row30_col5,#T_cb65e_row30_col6,#T_cb65e_row31_col1,#T_cb65e_row31_col3,#T_cb65e_row31_col4,#T_cb65e_row31_col5,#T_cb65e_row31_col6,#T_cb65e_row32_col1,#T_cb65e_row32_col3,#T_cb65e_row32_col4,#T_cb65e_row32_col5,#T_cb65e_row32_col6,#T_cb65e_row33_col1,#T_cb65e_row33_col3,#T_cb65e_row33_col4,#T_cb65e_row33_col5,#T_cb65e_row33_col6,#T_cb65e_row34_col1,#T_cb65e_row34_col3,#T_cb65e_row34_col4,#T_cb65e_row34_col5,#T_cb65e_row34_col6,#T_cb65e_row35_col1,#T_cb65e_row35_col3,#T_cb65e_row35_col4,#T_cb65e_row35_col5,#T_cb65e_row35_col6,#T_cb65e_row36_col1,#T_cb65e_row36_col3,#T_cb65e_row36_col4,#T_cb65e_row36_col5,#T_cb65e_row36_col6,#T_cb65e_row37_col1,#T_cb65e_row37_col3,#T_cb65e_row37_col4,#T_cb65e_row37_col5,#T_cb65e_row37_col6,#T_cb65e_row38_col1,#T_cb65e_row38_col3,#T_cb65e_row38_col4,#T_cb65e_row38_col5,#T_cb65e_row38_col6{
font-size: 8pt;
border: 1px lightgrey solid !important;
: ;
}#T_cb65e_row2_col2,#T_cb65e_row2_col10,#T_cb65e_row2_col19,#T_cb65e_row2_col24,#T_cb65e_row2_col25,#T_cb65e_row2_col30,#T_cb65e_row3_col2,#T_cb65e_row3_col19,#T_cb65e_row3_col24,#T_cb65e_row3_col25,#T_cb65e_row3_col30,#T_cb65e_row4_col1,#T_cb65e_row4_col2,#T_cb65e_row5_col2,#T_cb65e_row6_col2,#T_cb65e_row7_col2,#T_cb65e_row9_col2,#T_cb65e_row9_col8,#T_cb65e_row9_col21,#T_cb65e_row9_col23,#T_cb65e_row9_col25,#T_cb65e_row9_col26,#T_cb65e_row9_col27,#T_cb65e_row9_col28,#T_cb65e_row9_col29,#T_cb65e_row9_col30,#T_cb65e_row10_col2,#T_cb65e_row10_col8,#T_cb65e_row10_col21,#T_cb65e_row10_col23,#T_cb65e_row10_col25,#T_cb65e_row10_col26,#T_cb65e_row10_col27,#T_cb65e_row10_col28,#T_cb65e_row10_col29,#T_cb65e_row10_col30,#T_cb65e_row11_col2,#T_cb65e_row11_col8,#T_cb65e_row11_col21,#T_cb65e_row11_col23,#T_cb65e_row11_col25,#T_cb65e_row11_col26,#T_cb65e_row11_col27,#T_cb65e_row11_col28,#T_cb65e_row11_col29,#T_cb65e_row11_col30,#T_cb65e_row12_col8,#T_cb65e_row12_col10,#T_cb65e_row12_col30,#T_cb65e_row13_col8,#T_cb65e_row13_col23,#T_cb65e_row13_col24,#T_cb65e_row13_col25,#T_cb65e_row13_col26,#T_cb65e_row13_col27,#T_cb65e_row13_col28,#T_cb65e_row13_col29,#T_cb65e_row13_col30,#T_cb65e_row14_col8,#T_cb65e_row14_col23,#T_cb65e_row14_col24,#T_cb65e_row14_col25,#T_cb65e_row14_col26,#T_cb65e_row14_col27,#T_cb65e_row14_col28,#T_cb65e_row14_col29,#T_cb65e_row14_col30,#T_cb65e_row15_col8,#T_cb65e_row15_col10,#T_cb65e_row15_col30,#T_cb65e_row16_col8,#T_cb65e_row16_col23,#T_cb65e_row16_col25,#T_cb65e_row16_col26,#T_cb65e_row16_col27,#T_cb65e_row16_col28,#T_cb65e_row16_col29,#T_cb65e_row16_col30,#T_cb65e_row17_col8,#T_cb65e_row17_col23,#T_cb65e_row17_col25,#T_cb65e_row17_col26,#T_cb65e_row17_col27,#T_cb65e_row17_col28,#T_cb65e_row17_col29,#T_cb65e_row17_col30,#T_cb65e_row18_col8,#T_cb65e_row18_col23,#T_cb65e_row18_col25,#T_cb65e_row18_col26,#T_cb65e_row18_col27,#T_cb65e_row18_col28,#T_cb65e_row18_col29,#T_cb65e_row18_col30,#T_cb65e_row19_col8,#T_cb65e_row19_col23,#T_cb65e_row19_col25,#T_cb65e_row19_col26,#T_cb65e_row19_col27,#T_cb65e_row19_col28,#T_cb65e_row19_col29,#T_cb65e_row19_col30,#T_cb65e_row20_col8,#T_cb65e_row20_col23,#T_cb65e_row20_col25,#T_cb65e_row20_col26,#T_cb65e_row20_col27,#T_cb65e_row20_col28,#T_cb65e_row20_col29,#T_cb65e_row20_col30,#T_cb65e_row21_col2,#T_cb65e_row22_col12,#T_cb65e_row22_col21,#T_cb65e_row22_col25,#T_cb65e_row22_col26,#T_cb65e_row22_col29,#T_cb65e_row22_col30,#T_cb65e_row23_col2,#T_cb65e_row24_col2,#T_cb65e_row25_col2,#T_cb65e_row26_col2,#T_cb65e_row27_col2,#T_cb65e_row28_col2,#T_cb65e_row29_col2,#T_cb65e_row30_col2,#T_cb65e_row31_col2,#T_cb65e_row32_col2,#T_cb65e_row33_col2,#T_cb65e_row34_col2,#T_cb65e_row35_col2,#T_cb65e_row35_col10,#T_cb65e_row35_col25,#T_cb65e_row35_col30,#T_cb65e_row36_col2,#T_cb65e_row36_col8,#T_cb65e_row36_col10,#T_cb65e_row36_col30,#T_cb65e_row37_col2,#T_cb65e_row37_col8,#T_cb65e_row37_col23,#T_cb65e_row37_col25,#T_cb65e_row37_col26,#T_cb65e_row37_col27,#T_cb65e_row37_col28,#T_cb65e_row37_col29,#T_cb65e_row37_col30,#T_cb65e_row38_col2,#T_cb65e_row38_col8,#T_cb65e_row38_col23,#T_cb65e_row38_col25,#T_cb65e_row38_col26,#T_cb65e_row38_col27,#T_cb65e_row38_col28,#T_cb65e_row38_col29,#T_cb65e_row38_col30{
font-size: 8pt;
border: 1px lightgrey solid !important;
color: grey;
}#T_cb65e_row2_col23,#T_cb65e_row2_col27,#T_cb65e_row2_col28,#T_cb65e_row2_col29,#T_cb65e_row3_col28,#T_cb65e_row15_col23,#T_cb65e_row15_col25,#T_cb65e_row15_col27,#T_cb65e_row15_col29,#T_cb65e_row22_col28,#T_cb65e_row36_col23,#T_cb65e_row36_col25,#T_cb65e_row36_col27,#T_cb65e_row36_col29{
font-size: 8pt;
border: 1px lightgrey solid !important;
color: grey;
background-color: #f88c51;
}#T_cb65e_row2_col26,#T_cb65e_row12_col26,#T_cb65e_row15_col26,#T_cb65e_row35_col24,#T_cb65e_row35_col26,#T_cb65e_row36_col26{
font-size: 8pt;
border: 1px lightgrey solid !important;
color: grey;
background-color: #66c2a5;
}#T_cb65e_row3_col23,#T_cb65e_row3_col27,#T_cb65e_row3_col29,#T_cb65e_row12_col23,#T_cb65e_row12_col25,#T_cb65e_row12_col27,#T_cb65e_row12_col28,#T_cb65e_row12_col29,#T_cb65e_row15_col28,#T_cb65e_row22_col27,#T_cb65e_row35_col28,#T_cb65e_row35_col29{
font-size: 8pt;
border: 1px lightgrey solid !important;
color: grey;
background-color: #fffebe;
}#T_cb65e_row3_col26,#T_cb65e_row9_col24,#T_cb65e_row10_col24,#T_cb65e_row11_col24,#T_cb65e_row12_col24,#T_cb65e_row36_col24,#T_cb65e_row37_col24,#T_cb65e_row38_col24{
font-size: 8pt;
border: 1px lightgrey solid !important;
color: grey;
background-color: #f46d43;
}#T_cb65e_row4_col23,#T_cb65e_row6_col28,#T_cb65e_row8_col23,#T_cb65e_row23_col25{
font-size: 8pt;
border: 1px lightgrey solid !important;
background-color: #f88c51;
}#T_cb65e_row4_col24,#T_cb65e_row8_col26,#T_cb65e_row23_col26,#T_cb65e_row25_col26{
font-size: 8pt;
border: 1px lightgrey solid !important;
background-color: #fee08b;
}#T_cb65e_row4_col25,#T_cb65e_row8_col27,#T_cb65e_row8_col28,#T_cb65e_row21_col23,#T_cb65e_row21_col27,#T_cb65e_row23_col23,#T_cb65e_row23_col28,#T_cb65e_row23_col29,#T_cb65e_row25_col23,#T_cb65e_row25_col28,#T_cb65e_row25_col29{
font-size: 8pt;
border: 1px lightgrey solid !important;
background-color: #89d0a4;
}#T_cb65e_row4_col26{
font-size: 8pt;
border: 1px lightgrey solid !important;
background-color: #f46d43;
}#T_cb65e_row4_col29,#T_cb65e_row6_col23,#T_cb65e_row6_col27,#T_cb65e_row6_col29,#T_cb65e_row8_col25,#T_cb65e_row8_col29,#T_cb65e_row21_col25,#T_cb65e_row21_col28,#T_cb65e_row21_col29,#T_cb65e_row23_col27,#T_cb65e_row25_col27{
font-size: 8pt;
border: 1px lightgrey solid !important;
background-color: #fffebe;
}#T_cb65e_row8_col24,#T_cb65e_row21_col24,#T_cb65e_row21_col26,#T_cb65e_row23_col24{
font-size: 8pt;
border: 1px lightgrey solid !important;
background-color: #e6f598;
}#T_cb65e_row15_col24,#T_cb65e_row16_col24,#T_cb65e_row17_col24,#T_cb65e_row18_col24,#T_cb65e_row19_col24,#T_cb65e_row20_col24{
font-size: 8pt;
border: 1px lightgrey solid !important;
color: grey;
background-color: #fee08b;
}#T_cb65e_row22_col23,#T_cb65e_row35_col23,#T_cb65e_row35_col27,#T_cb65e_row36_col28{
font-size: 8pt;
border: 1px lightgrey solid !important;
color: grey;
background-color: #89d0a4;
}#T_cb65e_row22_col24{
font-size: 8pt;
border: 1px lightgrey solid !important;
color: grey;
background-color: #e6f598;
}</style><table id="T_cb65e_" ><thead> <tr> <th class="blank" ></th> <th class="blank level0" ></th> <th class="col_heading level0 col0" colspan="7">1. Availability</th> <th class="col_heading level0 col7" colspan="16">2. Plausibility</th> <th class="col_heading level0 col23" colspan="7">3. Spread of future outcomes</th> <th class="col_heading level0 col30" >4. Independence</th> </tr> <tr> <th class="blank" ></th> <th class="blank level1" ></th> <th class="col_heading level1 col0" >synthesis</th> <th class="col_heading level1 col1" >historical</th> <th class="col_heading level1 col2" >ssp119</th> <th class="col_heading level1 col3" >ssp126</th> <th class="col_heading level1 col4" >ssp245</th> <th class="col_heading level1 col5" >ssp370</th> <th class="col_heading level1 col6" >ssp585</th> <th class="col_heading level1 col7" >Synthesis</th> <th class="col_heading level1 col8" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#rib21-constrained-tcr" target="_blank">Rib21 Constrained TCR</a></th> <th class="col_heading level1 col9" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#bru20-perf" target="_blank">Bru20 perf</a></th> <th class="col_heading level1 col10" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#qas21-constrained-dtas" target="_blank">Qas21 Constrained Dtas ssp245</a></th> <th class="col_heading level1 col11" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#oud20-jetpos" target="_blank">Oud20 jetpos</a></th> <th class="col_heading level1 col12" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#bra21-lamb-eur" target="_blank">Bra21 Lamb EUR</a></th> <th class="col_heading level1 col13" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#dobler-sst-rmse-eur" target="_blank">Dobler SST rmse EUR</a></th> <th class="col_heading level1 col14" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#p-nabat-eur-aod" target="_blank">P. Nabat EUR AOD</a></th> <th class="col_heading level1 col15" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#sevault-med-sst" target="_blank">Sevault MED SST</a></th> <th class="col_heading level1 col16" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#dobler-sice-rmse-nbs" target="_blank">Dobler SICE rmse NBS</a></th> <th class="col_heading level1 col17" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#dobler-sst-rmse-nbs" target="_blank">Dobler SST rmse NBS</a></th> <th class="col_heading level1 col18" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#dobler-sice-rmse-bal" target="_blank">Dobler SICE rmse BAL</a></th> <th class="col_heading level1 col19" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#dobler-sst-rmse-blk" target="_blank">Dobler SST rmse BLK</a></th> <th class="col_heading level1 col20" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#dobler-sst-rmse-sna" target="_blank">Dobler SST rmse SNA</a></th> <th class="col_heading level1 col21" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#atm-res-km" target="_blank">atm. res. km</a></th> <th class="col_heading level1 col22" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#bra21-complexity" target="_blank">Bra21 complexity</a></th> <th class="col_heading level1 col23" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#sch20-ecs" target="_blank">Sch20 ECS</a></th> <th class="col_heading level1 col24" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#tok20-tcr-as-spread" target="_blank">Tok20 TCR as spread</a></th> <th class="col_heading level1 col25" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#oud20-jetposdelta" target="_blank">Oud20 jetposdelta ssp585</a></th> <th class="col_heading level1 col26" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#qasmi-tas-warming-class" target="_blank">Qasmi tas warming class ssp245</a></th> <th class="col_heading level1 col27" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#atlas-dtas-neu-djf" target="_blank">Atlas Dtas NEU DJF ssp585</a></th> <th class="col_heading level1 col28" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#atlas-dpr-med-jja" target="_blank">Atlas Dpr MED JJA ssp585</a></th> <th class="col_heading level1 col29" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#sevault-med-sst-warming" target="_blank">Sevault MED SST warming ssp585</a></th> <th class="col_heading level1 col30" ><a href="https://github.com/jesusff/cmip6-for-cordex/blob/main/CMIP6_studies_list_EUR.md#bru20-mfamily" target="_blank">Bru20 mfamily</a></th> </tr> <tr> <th class="index_name level0" >model</th> <th class="index_name level1" >run</th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> <th class="blank" ></th> </tr></thead><tbody>
<tr>
<th id="T_cb65e_level0_row0" class="row_heading level0 row0" rowspan="2">. Plausible values</th>
<th id="T_cb65e_level1_row0" class="row_heading level1 row0" >max</th>
<td id="T_cb65e_row0_col0" class="data row0 col0" ><NA></td>
<td id="T_cb65e_row0_col1" class="data row0 col1" ></td>
<td id="T_cb65e_row0_col2" class="data row0 col2" ></td>
<td id="T_cb65e_row0_col3" class="data row0 col3" ></td>
<td id="T_cb65e_row0_col4" class="data row0 col4" ></td>
<td id="T_cb65e_row0_col5" class="data row0 col5" ></td>
<td id="T_cb65e_row0_col6" class="data row0 col6" ></td>
<td id="T_cb65e_row0_col7" class="data row0 col7" ><NA></td>
<td id="T_cb65e_row0_col8" class="data row0 col8" >2.36</td>
<td id="T_cb65e_row0_col9" class="data row0 col9" >0.20</td>
<td id="T_cb65e_row0_col10" class="data row0 col10" >1</td>
<td id="T_cb65e_row0_col11" class="data row0 col11" >4.00</td>
<td id="T_cb65e_row0_col12" class="data row0 col12" >1.00</td>
<td id="T_cb65e_row0_col13" class="data row0 col13" >4.00</td>
<td id="T_cb65e_row0_col14" class="data row0 col14" >1</td>
<td id="T_cb65e_row0_col15" class="data row0 col15" >2.00</td>
<td id="T_cb65e_row0_col16" class="data row0 col16" >50.00</td>
<td id="T_cb65e_row0_col17" class="data row0 col17" >4.00</td>
<td id="T_cb65e_row0_col18" class="data row0 col18" >50.00</td>
<td id="T_cb65e_row0_col19" class="data row0 col19" >4.00</td>
<td id="T_cb65e_row0_col20" class="data row0 col20" >4.00</td>
<td id="T_cb65e_row0_col21" class="data row0 col21" >300</td>
<td id="T_cb65e_row0_col22" class="data row0 col22" >2222222222</td>
<td id="T_cb65e_row0_col23" class="data row0 col23" ><NA></td>
<td id="T_cb65e_row0_col24" class="data row0 col24" ><NA></td>
<td id="T_cb65e_row0_col25" class="data row0 col25" ><NA></td>
<td id="T_cb65e_row0_col26" class="data row0 col26" ><NA></td>
<td id="T_cb65e_row0_col27" class="data row0 col27" ><NA></td>
<td id="T_cb65e_row0_col28" class="data row0 col28" ><NA></td>
<td id="T_cb65e_row0_col29" class="data row0 col29" ><NA></td>
<td id="T_cb65e_row0_col30" class="data row0 col30" ></td>
</tr>
<tr>
<th id="T_cb65e_level1_row1" class="row_heading level1 row1" >min</th>
<td id="T_cb65e_row1_col0" class="data row1 col0" ><NA></td>
<td id="T_cb65e_row1_col1" class="data row1 col1" ></td>
<td id="T_cb65e_row1_col2" class="data row1 col2" ></td>
<td id="T_cb65e_row1_col3" class="data row1 col3" ></td>
<td id="T_cb65e_row1_col4" class="data row1 col4" ></td>
<td id="T_cb65e_row1_col5" class="data row1 col5" ></td>
<td id="T_cb65e_row1_col6" class="data row1 col6" ></td>
<td id="T_cb65e_row1_col7" class="data row1 col7" ><NA></td>
<td id="T_cb65e_row1_col8" class="data row1 col8" >1.33</td>
<td id="T_cb65e_row1_col9" class="data row1 col9" >0.01</td>
<td id="T_cb65e_row1_col10" class="data row1 col10" >1</td>
<td id="T_cb65e_row1_col11" class="data row1 col11" >-4.00</td>
<td id="T_cb65e_row1_col12" class="data row1 col12" >0.00</td>
<td id="T_cb65e_row1_col13" class="data row1 col13" >0.00</td>
<td id="T_cb65e_row1_col14" class="data row1 col14" >1</td>
<td id="T_cb65e_row1_col15" class="data row1 col15" >0.00</td>
<td id="T_cb65e_row1_col16" class="data row1 col16" >0.00</td>
<td id="T_cb65e_row1_col17" class="data row1 col17" >0.00</td>
<td id="T_cb65e_row1_col18" class="data row1 col18" >0.00</td>
<td id="T_cb65e_row1_col19" class="data row1 col19" >0.00</td>
<td id="T_cb65e_row1_col20" class="data row1 col20" >0.00</td>
<td id="T_cb65e_row1_col21" class="data row1 col21" >0</td>
<td id="T_cb65e_row1_col22" class="data row1 col22" >2222100000</td>
<td id="T_cb65e_row1_col23" class="data row1 col23" ><NA></td>
<td id="T_cb65e_row1_col24" class="data row1 col24" ><NA></td>
<td id="T_cb65e_row1_col25" class="data row1 col25" ><NA></td>
<td id="T_cb65e_row1_col26" class="data row1 col26" ><NA></td>
<td id="T_cb65e_row1_col27" class="data row1 col27" ><NA></td>
<td id="T_cb65e_row1_col28" class="data row1 col28" ><NA></td>
<td id="T_cb65e_row1_col29" class="data row1 col29" ><NA></td>
<td id="T_cb65e_row1_col30" class="data row1 col30" ></td>
</tr>
<tr>
<th id="T_cb65e_level0_row2" class="row_heading level0 row2" >ACCESS-CM2</th>
<th id="T_cb65e_level1_row2" class="row_heading level1 row2" >r1i1p1f1</th>
<td id="T_cb65e_row2_col0" class="data row2 col0" >1</td>
<td id="T_cb65e_row2_col1" class="data row2 col1" >RCM</td>
<td id="T_cb65e_row2_col2" class="data row2 col2" ></td>
<td id="T_cb65e_row2_col3" class="data row2 col3" >RCM</td>
<td id="T_cb65e_row2_col4" class="data row2 col4" >RCM</td>
<td id="T_cb65e_row2_col5" class="data row2 col5" >RCM</td>
<td id="T_cb65e_row2_col6" class="data row2 col6" >RCM</td>
<td id="T_cb65e_row2_col7" class="data row2 col7" >2</td>
<td id="T_cb65e_row2_col8" class="data row2 col8" ><NA></td>
<td id="T_cb65e_row2_col9" class="data row2 col9" >0.07</td>
<td id="T_cb65e_row2_col10" class="data row2 col10" >0</td>
<td id="T_cb65e_row2_col11" class="data row2 col11" ><NA></td>
<td id="T_cb65e_row2_col12" class="data row2 col12" >0.56</td>
<td id="T_cb65e_row2_col13" class="data row2 col13" >1.40</td>
<td id="T_cb65e_row2_col14" class="data row2 col14" >1</td>
<td id="T_cb65e_row2_col15" class="data row2 col15" >1.10</td>
<td id="T_cb65e_row2_col16" class="data row2 col16" >18.30</td>
<td id="T_cb65e_row2_col17" class="data row2 col17" >2.00</td>
<td id="T_cb65e_row2_col18" class="data row2 col18" >6.80</td>
<td id="T_cb65e_row2_col19" class="data row2 col19" >-99.00</td>
<td id="T_cb65e_row2_col20" class="data row2 col20" >0.60</td>
<td id="T_cb65e_row2_col21" class="data row2 col21" >250</td>
<td id="T_cb65e_row2_col22" class="data row2 col22" >2222200000</td>
<td id="T_cb65e_row2_col23" class="data row2 col23" >4.72</td>
<td id="T_cb65e_row2_col24" class="data row2 col24" ><NA></td>
<td id="T_cb65e_row2_col25" class="data row2 col25" ><NA></td>
<td id="T_cb65e_row2_col26" class="data row2 col26" >0</td>
<td id="T_cb65e_row2_col27" class="data row2 col27" >6.90</td>
<td id="T_cb65e_row2_col28" class="data row2 col28" >-14.53</td>
<td id="T_cb65e_row2_col29" class="data row2 col29" >4.20</td>
<td id="T_cb65e_row2_col30" class="data row2 col30" >HadGEM</td>
</tr>
<tr>
<th id="T_cb65e_level0_row3" class="row_heading level0 row3" >ACCESS-ESM1-5</th>
<th id="T_cb65e_level1_row3" class="row_heading level1 row3" >r1i1p1f1</th>
<td id="T_cb65e_row3_col0" class="data row3 col0" >1</td>
<td id="T_cb65e_row3_col1" class="data row3 col1" >RCM</td>
<td id="T_cb65e_row3_col2" class="data row3 col2" ></td>
<td id="T_cb65e_row3_col3" class="data row3 col3" >RCM</td>
<td id="T_cb65e_row3_col4" class="data row3 col4" >RCM</td>
<td id="T_cb65e_row3_col5" class="data row3 col5" >RCM</td>
<td id="T_cb65e_row3_col6" class="data row3 col6" >RCM</td>
<td id="T_cb65e_row3_col7" class="data row3 col7" >1</td>
<td id="T_cb65e_row3_col8" class="data row3 col8" ><NA></td>
<td id="T_cb65e_row3_col9" class="data row3 col9" >0.04</td>
<td id="T_cb65e_row3_col10" class="data row3 col10" >1</td>
<td id="T_cb65e_row3_col11" class="data row3 col11" ><NA></td>
<td id="T_cb65e_row3_col12" class="data row3 col12" >0.65</td>
<td id="T_cb65e_row3_col13" class="data row3 col13" >1.40</td>
<td id="T_cb65e_row3_col14" class="data row3 col14" >1</td>
<td id="T_cb65e_row3_col15" class="data row3 col15" >1.20</td>
<td id="T_cb65e_row3_col16" class="data row3 col16" >3.10</td>
<td id="T_cb65e_row3_col17" class="data row3 col17" >0.80</td>
<td id="T_cb65e_row3_col18" class="data row3 col18" >14.50</td>
<td id="T_cb65e_row3_col19" class="data row3 col19" >-99.00</td>
<td id="T_cb65e_row3_col20" class="data row3 col20" >1.40</td>
<td id="T_cb65e_row3_col21" class="data row3 col21" >250</td>
<td id="T_cb65e_row3_col22" class="data row3 col22" >2222202200</td>
<td id="T_cb65e_row3_col23" class="data row3 col23" >3.87</td>
<td id="T_cb65e_row3_col24" class="data row3 col24" ><NA></td>
<td id="T_cb65e_row3_col25" class="data row3 col25" ><NA></td>
<td id="T_cb65e_row3_col26" class="data row3 col26" >3</td>
<td id="T_cb65e_row3_col27" class="data row3 col27" >4.57</td>
<td id="T_cb65e_row3_col28" class="data row3 col28" >-25.48</td>
<td id="T_cb65e_row3_col29" class="data row3 col29" >4.00</td>
<td id="T_cb65e_row3_col30" class="data row3 col30" >ACCESS</td>
</tr>
<tr>
<th id="T_cb65e_level0_row4" class="row_heading level0 row4" rowspan="2">CESM2</th>
<th id="T_cb65e_level1_row4" class="row_heading level1 row4" >r2i1p1f1</th>
<td id="T_cb65e_row4_col0" class="data row4 col0" >1</td>
<td id="T_cb65e_row4_col1" class="data row4 col1" >ESD</td>
<td id="T_cb65e_row4_col2" class="data row4 col2" ></td>
<td id="T_cb65e_row4_col3" class="data row4 col3" >RCM</td>
<td id="T_cb65e_row4_col4" class="data row4 col4" >RCM</td>
<td id="T_cb65e_row4_col5" class="data row4 col5" >RCM</td>