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
 1001
 1002
 1003
 1004
 1005
 1006
 1007
 1008
 1009
 1010
 1011
 1012
 1013
 1014
 1015
 1016
 1017
 1018
 1019
 1020
 1021
 1022
 1023
 1024
 1025
 1026
 1027
 1028
 1029
 1030
 1031
 1032
 1033
 1034
 1035
 1036
 1037
 1038
 1039
 1040
 1041
 1042
 1043
 1044
 1045
 1046
 1047
 1048
 1049
 1050
 1051
 1052
 1053
 1054
 1055
 1056
 1057
 1058
 1059
 1060
 1061
 1062
 1063
 1064
 1065
 1066
 1067
 1068
 1069
 1070
 1071
 1072
 1073
 1074
 1075
 1076
 1077
 1078
 1079
 1080
 1081
 1082
 1083
 1084
 1085
 1086
 1087
 1088
 1089
 1090
 1091
 1092
 1093
 1094
 1095
 1096
 1097
 1098
 1099
 1100
 1101
 1102
 1103
 1104
 1105
 1106
 1107
 1108
 1109
 1110
 1111
 1112
 1113
 1114
 1115
 1116
 1117
 1118
 1119
 1120
 1121
 1122
 1123
 1124
 1125
 1126
 1127
 1128
 1129
 1130
 1131
 1132
 1133
 1134
 1135
 1136
 1137
 1138
 1139
 1140
 1141
 1142
 1143
 1144
 1145
 1146
 1147
 1148
 1149
 1150
 1151
 1152
 1153
 1154
 1155
 1156
 1157
 1158
 1159
 1160
 1161
 1162
 1163
 1164
 1165
 1166
 1167
 1168
 1169
 1170
 1171
 1172
 1173
 1174
 1175
 1176
 1177
 1178
 1179
 1180
 1181
 1182
 1183
 1184
 1185
 1186
 1187
 1188
 1189
 1190
 1191
 1192
 1193
 1194
 1195
 1196
 1197
 1198
 1199
 1200
 1201
 1202
 1203
 1204
 1205
 1206
 1207
 1208
 1209
 1210
 1211
 1212
 1213
 1214
 1215
 1216
 1217
 1218
 1219
 1220
 1221
 1222
 1223
 1224
 1225
 1226
 1227
 1228
 1229
 1230
 1231
 1232
 1233
 1234
 1235
 1236
 1237
 1238
 1239
 1240
 1241
 1242
 1243
 1244
 1245
 1246
 1247
 1248
 1249
 1250
 1251
 1252
 1253
 1254
 1255
 1256
 1257
 1258
 1259
 1260
 1261
 1262
 1263
 1264
 1265
 1266
 1267
 1268
 1269
 1270
 1271
 1272
 1273
 1274
 1275
 1276
 1277
 1278
 1279
 1280
 1281
 1282
 1283
 1284
 1285
 1286
 1287
 1288
 1289
 1290
 1291
 1292
 1293
 1294
 1295
 1296
 1297
 1298
 1299
 1300
 1301
 1302
 1303
 1304
 1305
 1306
 1307
 1308
 1309
 1310
 1311
 1312
 1313
 1314
 1315
 1316
 1317
 1318
 1319
 1320
 1321
 1322
 1323
 1324
 1325
 1326
 1327
 1328
 1329
 1330
 1331
 1332
 1333
 1334
 1335
 1336
 1337
 1338
 1339
 1340
 1341
 1342
 1343
 1344
 1345
 1346
 1347
 1348
 1349
 1350
 1351
 1352
 1353
 1354
 1355
 1356
 1357
 1358
 1359
 1360
 1361
 1362
 1363
 1364
 1365
 1366
 1367
 1368
 1369
 1370
 1371
 1372
 1373
 1374
 1375
 1376
 1377
 1378
 1379
 1380
 1381
 1382
 1383
 1384
 1385
 1386
 1387
 1388
 1389
 1390
 1391
 1392
 1393
 1394
 1395
 1396
 1397
 1398
 1399
 1400
 1401
 1402
 1403
 1404
 1405
 1406
 1407
 1408
 1409
 1410
 1411
 1412
 1413
 1414
 1415
 1416
 1417
 1418
 1419
 1420
 1421
 1422
 1423
 1424
 1425
 1426
 1427
 1428
 1429
 1430
 1431
 1432
 1433
 1434
 1435
 1436
 1437
 1438
 1439
 1440
 1441
 1442
 1443
 1444
 1445
 1446
 1447
 1448
 1449
 1450
 1451
 1452
 1453
 1454
 1455
 1456
 1457
 1458
 1459
 1460
 1461
 1462
 1463
 1464
 1465
 1466
 1467
 1468
 1469
 1470
 1471
 1472
 1473
 1474
 1475
 1476
 1477
 1478
 1479
 1480
 1481
 1482
 1483
 1484
 1485
 1486
 1487
 1488
 1489
 1490
 1491
 1492
 1493
 1494
 1495
 1496
 1497
 1498
 1499
 1500
 1501
 1502
 1503
 1504
 1505
 1506
 1507
 1508
 1509
 1510
 1511
 1512
 1513
 1514
 1515
 1516
 1517
 1518
 1519
 1520
 1521
 1522
 1523
 1524
 1525
 1526
 1527
 1528
 1529
 1530
 1531
 1532
 1533
 1534
 1535
 1536
 1537
 1538
 1539
 1540
 1541
 1542
 1543
 1544
 1545
 1546
 1547
 1548
 1549
 1550
 1551
 1552
 1553
 1554
 1555
 1556
 1557
 1558
 1559
 1560
 1561
 1562
 1563
 1564
 1565
 1566
 1567
 1568
 1569
 1570
 1571
 1572
 1573
 1574
 1575
 1576
 1577
 1578
 1579
 1580
 1581
 1582
 1583
 1584
 1585
 1586
 1587
 1588
 1589
 1590
 1591
 1592
 1593
 1594
 1595
 1596
 1597
 1598
 1599
 1600
 1601
 1602
 1603
 1604
 1605
 1606
 1607
 1608
 1609
 1610
 1611
 1612
 1613
 1614
 1615
 1616
 1617
 1618
 1619
 1620
 1621
 1622
 1623
 1624
 1625
 1626
 1627
 1628
 1629
 1630
 1631
 1632
 1633
 1634
 1635
 1636
 1637
 1638
 1639
 1640
 1641
 1642
 1643
 1644
 1645
 1646
 1647
 1648
 1649
 1650
 1651
 1652
 1653
 1654
 1655
 1656
 1657
 1658
 1659
 1660
 1661
 1662
 1663
 1664
 1665
 1666
 1667
 1668
 1669
 1670
 1671
 1672
 1673
 1674
 1675
 1676
 1677
 1678
 1679
 1680
 1681
 1682
 1683
 1684
 1685
 1686
 1687
 1688
 1689
 1690
 1691
 1692
 1693
 1694
 1695
 1696
 1697
 1698
 1699
 1700
 1701
 1702
 1703
 1704
 1705
 1706
 1707
 1708
 1709
 1710
 1711
 1712
 1713
 1714
 1715
 1716
 1717
 1718
 1719
 1720
 1721
 1722
 1723
 1724
 1725
 1726
 1727
 1728
 1729
 1730
 1731
 1732
 1733
 1734
 1735
 1736
 1737
 1738
 1739
 1740
 1741
 1742
 1743
 1744
 1745
 1746
 1747
 1748
 1749
 1750
 1751
 1752
 1753
 1754
 1755
 1756
 1757
 1758
 1759
 1760
 1761
 1762
 1763
 1764
 1765
 1766
 1767
 1768
 1769
 1770
 1771
 1772
 1773
 1774
 1775
 1776
 1777
 1778
 1779
 1780
 1781
 1782
 1783
 1784
 1785
 1786
 1787
 1788
 1789
 1790
 1791
 1792
 1793
 1794
 1795
 1796
 1797
 1798
 1799
 1800
 1801
 1802
 1803
 1804
 1805
 1806
 1807
 1808
 1809
 1810
 1811
 1812
 1813
 1814
 1815
 1816
 1817
 1818
 1819
 1820
 1821
 1822
 1823
 1824
 1825
 1826
 1827
 1828
 1829
 1830
 1831
 1832
 1833
 1834
 1835
 1836
 1837
 1838
 1839
 1840
 1841
 1842
 1843
 1844
 1845
 1846
 1847
 1848
 1849
 1850
 1851
 1852
 1853
 1854
 1855
 1856
 1857
 1858
 1859
 1860
 1861
 1862
 1863
 1864
 1865
 1866
 1867
 1868
 1869
 1870
 1871
 1872
 1873
 1874
 1875
 1876
 1877
 1878
 1879
 1880
 1881
 1882
 1883
 1884
 1885
 1886
 1887
 1888
 1889
 1890
 1891
 1892
 1893
 1894
 1895
 1896
 1897
 1898
 1899
 1900
 1901
 1902
 1903
 1904
 1905
 1906
 1907
 1908
 1909
 1910
 1911
 1912
 1913
 1914
 1915
 1916
 1917
 1918
 1919
 1920
 1921
 1922
 1923
 1924
 1925
 1926
 1927
 1928
 1929
 1930
 1931
 1932
 1933
 1934
 1935
 1936
 1937
 1938
 1939
 1940
 1941
 1942
 1943
 1944
 1945
 1946
 1947
 1948
 1949
 1950
 1951
 1952
 1953
 1954
 1955
 1956
 1957
 1958
 1959
 1960
 1961
 1962
 1963
 1964
 1965
 1966
 1967
 1968
 1969
 1970
 1971
 1972
 1973
 1974
 1975
 1976
 1977
 1978
 1979
 1980
 1981
 1982
 1983
 1984
 1985
 1986
 1987
 1988
 1989
 1990
 1991
 1992
 1993
 1994
 1995
 1996
 1997
 1998
 1999
 2000
 2001
 2002
 2003
 2004
 2005
 2006
 2007
 2008
 2009
 2010
 2011
 2012
 2013
 2014
 2015
 2016
 2017
 2018
 2019
 2020
 2021
 2022
 2023
 2024
 2025
 2026
 2027
 2028
 2029
 2030
 2031
 2032
 2033
 2034
 2035
 2036
 2037
 2038
 2039
 2040
 2041
 2042
 2043
 2044
 2045
 2046
 2047
 2048
 2049
 2050
 2051
 2052
 2053
 2054
 2055
 2056
 2057
 2058
 2059
 2060
 2061
 2062
 2063
 2064
 2065
 2066
 2067
 2068
 2069
 2070
 2071
 2072
 2073
 2074
 2075
 2076
 2077
 2078
 2079
 2080
 2081
 2082
 2083
 2084
 2085
 2086
 2087
 2088
 2089
 2090
 2091
 2092
 2093
 2094
 2095
 2096
 2097
 2098
 2099
 2100
 2101
 2102
 2103
 2104
 2105
 2106
 2107
 2108
 2109
 2110
 2111
 2112
 2113
 2114
 2115
 2116
 2117
 2118
 2119
 2120
 2121
 2122
 2123
 2124
 2125
 2126
 2127
 2128
 2129
 2130
 2131
 2132
 2133
 2134
 2135
 2136
 2137
 2138
 2139
 2140
 2141
 2142
 2143
 2144
 2145
 2146
 2147
 2148
 2149
 2150
 2151
 2152
 2153
 2154
 2155
 2156
 2157
 2158
 2159
 2160
 2161
 2162
 2163
 2164
 2165
 2166
 2167
 2168
 2169
 2170
 2171
 2172
 2173
 2174
 2175
 2176
 2177
 2178
 2179
 2180
 2181
 2182
 2183
 2184
 2185
 2186
 2187
 2188
 2189
 2190
 2191
 2192
 2193
 2194
 2195
 2196
 2197
 2198
 2199
 2200
 2201
 2202
 2203
 2204
 2205
 2206
 2207
 2208
 2209
 2210
 2211
 2212
 2213
 2214
 2215
 2216
 2217
 2218
 2219
 2220
 2221
 2222
 2223
 2224
 2225
 2226
 2227
 2228
 2229
 2230
 2231
 2232
 2233
 2234
 2235
 2236
 2237
 2238
 2239
 2240
 2241
 2242
 2243
 2244
 2245
 2246
 2247
 2248
 2249
 2250
 2251
 2252
 2253
 2254
 2255
 2256
 2257
 2258
 2259
 2260
 2261
 2262
 2263
 2264
 2265
 2266
 2267
 2268
 2269
 2270
 2271
 2272
 2273
 2274
 2275
 2276
 2277
 2278
 2279
 2280
 2281
 2282
 2283
 2284
 2285
 2286
 2287
 2288
 2289
 2290
 2291
 2292
 2293
 2294
 2295
 2296
 2297
 2298
 2299
 2300
 2301
 2302
 2303
 2304
 2305
 2306
 2307
 2308
 2309
 2310
 2311
 2312
 2313
 2314
 2315
 2316
 2317
 2318
 2319
 2320
 2321
 2322
 2323
 2324
 2325
 2326
 2327
 2328
 2329
 2330
 2331
 2332
 2333
 2334
 2335
 2336
 2337
 2338
 2339
 2340
 2341
 2342
 2343
 2344
 2345
 2346
 2347
 2348
 2349
 2350
 2351
 2352
 2353
 2354
 2355
 2356
 2357
 2358
 2359
 2360
 2361
 2362
 2363
 2364
 2365
 2366
 2367
 2368
 2369
 2370
 2371
 2372
 2373
 2374
 2375
 2376
 2377
 2378
 2379
 2380
 2381
 2382
 2383
 2384
 2385
 2386
 2387
 2388
 2389
 2390
 2391
 2392
 2393
 2394
 2395
 2396
 2397
 2398
 2399
 2400
 2401
 2402
 2403
 2404
 2405
 2406
 2407
 2408
 2409
 2410
 2411
 2412
 2413
 2414
 2415
 2416
 2417
 2418
 2419
 2420
 2421
 2422
 2423
 2424
 2425
 2426
 2427
 2428
 2429
 2430
 2431
 2432
 2433
 2434
 2435
 2436
 2437
 2438
 2439
 2440
 2441
 2442
 2443
 2444
 2445
 2446
 2447
 2448
 2449
 2450
 2451
 2452
 2453
 2454
 2455
 2456
 2457
 2458
 2459
 2460
 2461
 2462
 2463
 2464
 2465
 2466
 2467
 2468
 2469
 2470
 2471
 2472
 2473
 2474
 2475
 2476
 2477
 2478
 2479
 2480
 2481
 2482
 2483
 2484
 2485
 2486
 2487
 2488
 2489
 2490
 2491
 2492
 2493
 2494
 2495
 2496
 2497
 2498
 2499
 2500
 2501
 2502
 2503
 2504
 2505
 2506
 2507
 2508
 2509
 2510
 2511
 2512
 2513
 2514
 2515
 2516
 2517
 2518
 2519
 2520
 2521
 2522
 2523
 2524
 2525
 2526
 2527
 2528
 2529
 2530
 2531
 2532
 2533
 2534
 2535
 2536
 2537
 2538
 2539
 2540
 2541
 2542
 2543
 2544
 2545
 2546
 2547
 2548
 2549
 2550
 2551
 2552
 2553
 2554
 2555
 2556
 2557
 2558
 2559
 2560
 2561
 2562
 2563
 2564
 2565
 2566
 2567
 2568
 2569
 2570
 2571
 2572
 2573
 2574
 2575
 2576
 2577
 2578
 2579
 2580
 2581
 2582
 2583
 2584
 2585
 2586
 2587
 2588
 2589
 2590
 2591
 2592
 2593
 2594
 2595
 2596
 2597
 2598
 2599
 2600
 2601
 2602
 2603
 2604
 2605
 2606
 2607
 2608
 2609
 2610
 2611
 2612
 2613
 2614
 2615
 2616
 2617
 2618
 2619
 2620
 2621
 2622
 2623
 2624
 2625
 2626
 2627
 2628
 2629
 2630
 2631
 2632
 2633
 2634
 2635
 2636
 2637
 2638
 2639
 2640
 2641
 2642
 2643
 2644
 2645
 2646
 2647
 2648
 2649
 2650
 2651
 2652
 2653
 2654
 2655
 2656
 2657
 2658
 2659
 2660
 2661
 2662
 2663
 2664
 2665
 2666
 2667
 2668
 2669
 2670
 2671
 2672
 2673
 2674
 2675
 2676
 2677
 2678
 2679
 2680
 2681
 2682
 2683
 2684
 2685
 2686
 2687
 2688
 2689
 2690
 2691
 2692
 2693
 2694
 2695
 2696
 2697
 2698
 2699
 2700
 2701
 2702
 2703
 2704
 2705
 2706
 2707
 2708
 2709
 2710
 2711
 2712
 2713
 2714
 2715
 2716
 2717
 2718
 2719
 2720
 2721
 2722
 2723
 2724
 2725
 2726
 2727
 2728
 2729
 2730
 2731
 2732
 2733
 2734
 2735
 2736
 2737
 2738
 2739
 2740
 2741
 2742
 2743
 2744
 2745
 2746
 2747
 2748
 2749
 2750
 2751
 2752
 2753
 2754
 2755
 2756
 2757
 2758
 2759
 2760
 2761
 2762
 2763
 2764
 2765
 2766
 2767
 2768
 2769
 2770
 2771
 2772
 2773
 2774
 2775
 2776
 2777
 2778
 2779
 2780
 2781
 2782
 2783
 2784
 2785
 2786
 2787
 2788
 2789
 2790
 2791
 2792
 2793
 2794
 2795
 2796
 2797
 2798
 2799
 2800
 2801
 2802
 2803
 2804
 2805
 2806
 2807
 2808
 2809
 2810
 2811
 2812
 2813
 2814
 2815
 2816
 2817
 2818
 2819
 2820
 2821
 2822
 2823
 2824
 2825
 2826
 2827
 2828
 2829
 2830
 2831
 2832
 2833
 2834
 2835
 2836
 2837
 2838
 2839
 2840
 2841
 2842
 2843
 2844
 2845
 2846
 2847
 2848
 2849
 2850
 2851
 2852
 2853
 2854
 2855
 2856

content / test / data / gpu / webgl2_conformance_win_runtimes.json [blame]

{
  "times": {
    "WebglExtension_EXT_color_buffer_float": 0.3302,
    "WebglExtension_EXT_color_buffer_half_float": 0.3451,
    "WebglExtension_EXT_disjoint_timer_query_webgl2": 0.3267,
    "WebglExtension_EXT_float_blend": 0.3461,
    "WebglExtension_EXT_texture_compression_bptc": 0.3137,
    "WebglExtension_EXT_texture_compression_rgtc": 0.2924,
    "WebglExtension_EXT_texture_filter_anisotropic": 0.363,
    "WebglExtension_EXT_texture_norm16": 0.2783,
    "WebglExtension_KHR_parallel_shader_compile": 0.3342,
    "WebglExtension_OES_draw_buffers_indexed": 0.299,
    "WebglExtension_OES_texture_float_linear": 0.3272,
    "WebglExtension_OVR_multiview2": 0.2987,
    "WebglExtension_TestCoverage": 0.3331,
    "WebglExtension_WEBGL_clip_cull_distance": 0.3125,
    "WebglExtension_WEBGL_compressed_texture_astc": 0,
    "WebglExtension_WEBGL_compressed_texture_etc": 0,
    "WebglExtension_WEBGL_compressed_texture_etc1": 0,
    "WebglExtension_WEBGL_compressed_texture_pvrtc": 0,
    "WebglExtension_WEBGL_compressed_texture_s3tc": 0.3387,
    "WebglExtension_WEBGL_compressed_texture_s3tc_srgb": 0,
    "WebglExtension_WEBGL_debug_renderer_info": 0.3187,
    "WebglExtension_WEBGL_debug_shaders": 0.3107,
    "WebglExtension_WEBGL_draw_instanced_base_vertex_base_instance": 0.3438,
    "WebglExtension_WEBGL_lose_context": 0.3263,
    "WebglExtension_WEBGL_multi_draw": 0.3068,
    "WebglExtension_WEBGL_multi_draw_instanced_base_vertex_base_instance": 0.3089,
    "WebglExtension_WEBGL_provoking_vertex": 0.3283,
    "WebglExtension_WEBGL_video_texture": 0.388,
    "WebglExtension_WEBGL_webcodecs_video_frame": 0.2822,
    "conformance/attribs/gl-bindAttribLocation-aliasing.html": 0.3327,
    "conformance/attribs/gl-bindAttribLocation-matrix.html": 0.4802,
    "conformance/attribs/gl-bindAttribLocation-nonexistent-attribute.html": 0.3009,
    "conformance/attribs/gl-bindAttribLocation-repeated.html": 0.2843,
    "conformance/attribs/gl-disabled-vertex-attrib-update.html": 0.2763,
    "conformance/attribs/gl-disabled-vertex-attrib.html": 0.2241,
    "conformance/attribs/gl-enable-vertex-attrib.html": 0.2808,
    "conformance/attribs/gl-matrix-attributes.html": 0.5207,
    "conformance/attribs/gl-vertex-attrib-context-switch.html": 0.3222,
    "conformance/attribs/gl-vertex-attrib-render.html": 0.2823,
    "conformance/attribs/gl-vertex-attrib-unconsumed-out-of-bounds.html": 0.3002,
    "conformance/attribs/gl-vertex-attrib-zero-issues.html": 0.2139,
    "conformance/attribs/gl-vertexattribpointer-offsets.html": 0.5525,
    "conformance/attribs/gl-vertexattribpointer.html": 0.6459,
    "conformance/buffers/buffer-bind-test.html": 0.3033,
    "conformance/buffers/buffer-data-and-buffer-sub-data.html": 0.2514,
    "conformance/buffers/buffer-data-array-buffer-delete.html": 2.2606,
    "conformance/buffers/buffer-data-dynamic-delay.html": 0.2384,
    "conformance/buffers/buffer-uninitialized.html": 0.2716,
    "conformance/buffers/element-array-buffer-delete-recreate.html": 0.2592,
    "conformance/buffers/index-validation-copies-indices.html": 0.1389,
    "conformance/buffers/index-validation-crash-with-buffer-sub-data.html": 0.3058,
    "conformance/buffers/index-validation-large-buffer.html": 0.3078,
    "conformance/buffers/index-validation-verifies-too-many-indices.html": 0.1415,
    "conformance/buffers/index-validation-with-resized-buffer.html": 0.2997,
    "conformance/buffers/index-validation.html": 0.3085,
    "conformance/buffers/vertex-buffer-updated-after-draw.html": 0.3383,
    "conformance/canvas/buffer-offscreen-test.html": 0.3357,
    "conformance/canvas/buffer-preserve-test.html": 0.8933,
    "conformance/canvas/canvas-test.html": 0.3761,
    "conformance/canvas/canvas-zero-size.html": 0.1198,
    "conformance/canvas/draw-static-webgl-to-multiple-canvas-test.html": 0.7493,
    "conformance/canvas/draw-webgl-to-canvas-test.html": 0.5825,
    "conformance/canvas/drawingbuffer-hd-dpi-test.html": 0.2625,
    "conformance/canvas/drawingbuffer-static-canvas-test.html": 0.2724,
    "conformance/canvas/drawingbuffer-test.html": 0.1117,
    "conformance/canvas/framebuffer-bindings-affected-by-to-data-url.html": 0.3107,
    "conformance/canvas/framebuffer-bindings-unaffected-on-resize.html": 0.3217,
    "conformance/canvas/rapid-resizing.html": 2.2881,
    "conformance/canvas/render-after-resize-test.html": 0.2793,
    "conformance/canvas/texture-bindings-unaffected-on-resize.html": 0.3821,
    "conformance/canvas/to-data-url-after-composite.html": 0.252,
    "conformance/canvas/to-data-url-test.html": 0.4004,
    "conformance/canvas/viewport-unchanged-upon-resize.html": 0.1234,
    "conformance/canvas/webgl-to-2d-canvas.html": 0.2454,
    "conformance/context/context-attribute-preserve-drawing-buffer-antialias.html": 0.3526,
    "conformance/context/context-attribute-preserve-drawing-buffer.html": 0.2872,
    "conformance/context/context-attributes-alpha-depth-stencil-antialias.html": 0.5885,
    "conformance/context/context-creation-and-destruction.html": 0.6923,
    "conformance/context/context-creation.html": 0.738,
    "conformance/context/context-eviction-with-garbage-collection.html": 0.8158,
    "conformance/context/context-hidden-alpha.html": 0.1127,
    "conformance/context/context-lost-restored.html": 0.3731,
    "conformance/context/context-lost.html": 0.2783,
    "conformance/context/context-no-alpha-fbo-with-alpha.html": 0.3167,
    "conformance/context/context-release-upon-reload.html": 1.4625,
    "conformance/context/context-release-with-workers.html": 1.4446,
    "conformance/context/context-size-change.html": 0.1111,
    "conformance/context/deleted-object-behavior.html": 0.2997,
    "conformance/context/incorrect-context-object-behaviour.html": 0.6051,
    "conformance/context/premultiplyalpha-test.html": 0.4386,
    "conformance/context/user-defined-properties-on-context.html": 0.1177,
    "conformance/context/zero-sized-canvas.html": 0.1026,
    "conformance/extensions/ext-color-buffer-half-float.html": 0.6886,
    "conformance/extensions/ext-disjoint-timer-query.html": 0.0928,
    "conformance/extensions/ext-float-blend.html": 0.1525,
    "conformance/extensions/ext-polygon-offset-clamp.html": 0.265,
    "conformance/extensions/ext-texture-compression-bptc.html": 0.633,
    "conformance/extensions/ext-texture-compression-rgtc.html": 0.1315,
    "conformance/extensions/ext-texture-filter-anisotropic.html": 0.2983,
    "conformance/extensions/get-extension.html": 0.235,
    "conformance/extensions/khr-parallel-shader-compile.html": 1.8309,
    "conformance/extensions/oes-texture-float-linear.html": 0.5905,
    "conformance/extensions/s3tc-and-rgtc.html": 1.7359,
    "conformance/extensions/webgl-compressed-texture-astc.html": 0.1595,
    "conformance/extensions/webgl-compressed-texture-etc.html": 0.1175,
    "conformance/extensions/webgl-compressed-texture-etc1.html": 0.2725,
    "conformance/extensions/webgl-compressed-texture-pvrtc.html": 0.1377,
    "conformance/extensions/webgl-compressed-texture-s3tc-srgb.html": 1.2391,
    "conformance/extensions/webgl-compressed-texture-size-limit.html": 3.2962,
    "conformance/extensions/webgl-debug-renderer-info.html": 0.1101,
    "conformance/extensions/webgl-debug-shaders.html": 0.2499,
    "conformance/extensions/webgl-multi-draw.html": 2.5068,
    "conformance/glsl/bugs/angle-ambiguous-function-call.html": 0.1433,
    "conformance/glsl/bugs/angle-constructor-invalid-parameters.html": 0.1043,
    "conformance/glsl/bugs/angle-d3d11-compiler-error.html": 0.1192,
    "conformance/glsl/bugs/angle-dx-variable-bug.html": 0.2549,
    "conformance/glsl/bugs/array-of-struct-with-int-first-position.html": 0.2911,
    "conformance/glsl/bugs/assign-to-swizzled-twice-in-function.html": 0.1475,
    "conformance/glsl/bugs/bool-type-cast-bug-int-float.html": 0.1896,
    "conformance/glsl/bugs/character-set.html": 0.1655,
    "conformance/glsl/bugs/compare-loop-index-to-uniform.html": 0.3075,
    "conformance/glsl/bugs/complex-glsl-does-not-crash.html": 4.5052,
    "conformance/glsl/bugs/compound-assignment-type-combination.html": 0.8846,
    "conformance/glsl/bugs/conditional-discard-in-loop.html": 0.2973,
    "conformance/glsl/bugs/conditional-discard-optimization.html": 0.121,
    "conformance/glsl/bugs/conditional-texture-fetch.html": 0.3284,
    "conformance/glsl/bugs/constant-precision-qualifier.html": 0.1875,
    "conformance/glsl/bugs/floor-div-cos-should-not-truncate.html": 0.1157,
    "conformance/glsl/bugs/floored-division-accuracy.html": 0.1656,
    "conformance/glsl/bugs/fragcoord-linking-bug.html": 0.1323,
    "conformance/glsl/bugs/gl-fragcoord-multisampling-bug.html": 0.1381,
    "conformance/glsl/bugs/global-invariant-does-not-leak-across-shaders.html": 0.2712,
    "conformance/glsl/bugs/if-return-and-elseif.html": 0.1446,
    "conformance/glsl/bugs/in-parameter-passed-as-inout-argument-and-global.html": 0.1476,
    "conformance/glsl/bugs/init-array-with-loop.html": 0.1842,
    "conformance/glsl/bugs/invariant-does-not-leak-across-shaders.html": 0.0778,
    "conformance/glsl/bugs/logic-inside-block-without-braces.html": 0.1302,
    "conformance/glsl/bugs/long-expressions-should-not-crash.html": 1.0148,
    "conformance/glsl/bugs/loop-if-loop-gradient.html": 0.1112,
    "conformance/glsl/bugs/modulo-arithmetic-accuracy.html": 0.1393,
    "conformance/glsl/bugs/multiplication-assignment.html": 0.2463,
    "conformance/glsl/bugs/nested-functions-should-not-crash.html": 0.2318,
    "conformance/glsl/bugs/nested-loops-with-break-and-continue.html": 0.1443,
    "conformance/glsl/bugs/nested-sequence-operator.html": 0.1466,
    "conformance/glsl/bugs/pow-of-small-constant-in-user-defined-function.html": 0.2932,
    "conformance/glsl/bugs/pow-with-constant-exponent-should-not-crash.html": 0.1232,
    "conformance/glsl/bugs/qualcomm-crash.html": 0.1498,
    "conformance/glsl/bugs/qualcomm-loop-with-continue-crash.html": 0.1084,
    "conformance/glsl/bugs/sampler-array-struct-function-arg.html": 0.1192,
    "conformance/glsl/bugs/sampler-array-using-loop-index.html": 0.1284,
    "conformance/glsl/bugs/sampler-struct-function-arg.html": 0.1184,
    "conformance/glsl/bugs/sequence-operator-evaluation-order.html": 0.1705,
    "conformance/glsl/bugs/sketchfab-lighting-shader-crash.html": 0.1492,
    "conformance/glsl/bugs/struct-constructor-highp-bug.html": 0.1687,
    "conformance/glsl/bugs/struct-with-single-member-constructor.html": 0.0938,
    "conformance/glsl/bugs/temp-expressions-should-not-crash.html": 6.1241,
    "conformance/glsl/bugs/unary-minus-operator-float-bug.html": 0.1802,
    "conformance/glsl/bugs/undefined-index-should-not-crash.html": 0.0928,
    "conformance/glsl/bugs/uniforms-should-not-lose-values.html": 0.2823,
    "conformance/glsl/bugs/varying-arrays-should-not-be-reversed.html": 0.1292,
    "conformance/glsl/bugs/vector-matrix-constructor-scalarization.html": 0.2354,
    "conformance/glsl/bugs/vector-scalar-arithmetic-inside-loop-complex.html": 0.1177,
    "conformance/glsl/bugs/vector-scalar-arithmetic-inside-loop.html": 0.1791,
    "conformance/glsl/constructors/glsl-construct-bvec2.html": 0.4153,
    "conformance/glsl/constructors/glsl-construct-bvec3.html": 0.4754,
    "conformance/glsl/constructors/glsl-construct-bvec4.html": 0.588,
    "conformance/glsl/constructors/glsl-construct-ivec2.html": 0.3938,
    "conformance/glsl/constructors/glsl-construct-ivec3.html": 0.4359,
    "conformance/glsl/constructors/glsl-construct-ivec4.html": 0.591,
    "conformance/glsl/constructors/glsl-construct-mat2.html": 0.4829,
    "conformance/glsl/constructors/glsl-construct-mat3.html": 0.3002,
    "conformance/glsl/constructors/glsl-construct-mat4.html": 0.3062,
    "conformance/glsl/constructors/glsl-construct-vec-mat-corner-cases.html": 0.1286,
    "conformance/glsl/constructors/glsl-construct-vec-mat-index.html": 0.1262,
    "conformance/glsl/constructors/glsl-construct-vec2.html": 0.4014,
    "conformance/glsl/constructors/glsl-construct-vec3.html": 0.4929,
    "conformance/glsl/constructors/glsl-construct-vec4.html": 0.5319,
    "conformance/glsl/functions/glsl-function-abs.html": 0.4096,
    "conformance/glsl/functions/glsl-function-acos.html": 0.3414,
    "conformance/glsl/functions/glsl-function-asin.html": 0.3951,
    "conformance/glsl/functions/glsl-function-atan-xy.html": 0.46,
    "conformance/glsl/functions/glsl-function-atan.html": 0.3361,
    "conformance/glsl/functions/glsl-function-ceil.html": 0.3665,
    "conformance/glsl/functions/glsl-function-clamp-float.html": 0.4116,
    "conformance/glsl/functions/glsl-function-clamp-gentype.html": 0.3628,
    "conformance/glsl/functions/glsl-function-cos.html": 0.3028,
    "conformance/glsl/functions/glsl-function-cross.html": 0.2351,
    "conformance/glsl/functions/glsl-function-distance.html": 0.3633,
    "conformance/glsl/functions/glsl-function-dot.html": 0.3352,
    "conformance/glsl/functions/glsl-function-faceforward.html": 0.4363,
    "conformance/glsl/functions/glsl-function-floor.html": 0.3728,
    "conformance/glsl/functions/glsl-function-fract.html": 0.399,
    "conformance/glsl/functions/glsl-function-length.html": 0.3468,
    "conformance/glsl/functions/glsl-function-max-float.html": 0.3869,
    "conformance/glsl/functions/glsl-function-max-gentype.html": 0.3465,
    "conformance/glsl/functions/glsl-function-min-float.html": 0.312,
    "conformance/glsl/functions/glsl-function-min-gentype.html": 0.366,
    "conformance/glsl/functions/glsl-function-mix-float.html": 0.5232,
    "conformance/glsl/functions/glsl-function-mix-gentype.html": 0.3105,
    "conformance/glsl/functions/glsl-function-mod-float.html": 0.3978,
    "conformance/glsl/functions/glsl-function-mod-gentype.html": 0.3344,
    "conformance/glsl/functions/glsl-function-normalize.html": 0.3264,
    "conformance/glsl/functions/glsl-function-reflect.html": 0.3289,
    "conformance/glsl/functions/glsl-function-sign.html": 0.3755,
    "conformance/glsl/functions/glsl-function-sin.html": 0.3469,
    "conformance/glsl/functions/glsl-function-smoothstep-float.html": 0.3104,
    "conformance/glsl/functions/glsl-function-smoothstep-gentype.html": 0.3873,
    "conformance/glsl/functions/glsl-function-step-float.html": 0.3441,
    "conformance/glsl/functions/glsl-function-step-gentype.html": 0.3757,
    "conformance/glsl/functions/glsl-function.html": 0.3643,
    "conformance/glsl/implicit/add_int_float.vert.html": 0.0889,
    "conformance/glsl/implicit/add_int_mat2.vert.html": 0.0861,
    "conformance/glsl/implicit/add_int_mat3.vert.html": 0.0794,
    "conformance/glsl/implicit/add_int_mat4.vert.html": 0.1027,
    "conformance/glsl/implicit/add_int_vec2.vert.html": 0.0908,
    "conformance/glsl/implicit/add_int_vec3.vert.html": 0.1235,
    "conformance/glsl/implicit/add_int_vec4.vert.html": 0.0744,
    "conformance/glsl/implicit/add_ivec2_vec2.vert.html": 0.0832,
    "conformance/glsl/implicit/add_ivec3_vec3.vert.html": 0.1027,
    "conformance/glsl/implicit/add_ivec4_vec4.vert.html": 0.0802,
    "conformance/glsl/implicit/assign_int_to_float.vert.html": 0.1217,
    "conformance/glsl/implicit/assign_ivec2_to_vec2.vert.html": 0.1047,
    "conformance/glsl/implicit/assign_ivec3_to_vec3.vert.html": 0.0979,
    "conformance/glsl/implicit/assign_ivec4_to_vec4.vert.html": 0.0804,
    "conformance/glsl/implicit/construct_struct.vert.html": 0.0881,
    "conformance/glsl/implicit/divide_int_float.vert.html": 0.0738,
    "conformance/glsl/implicit/divide_int_mat2.vert.html": 0.0828,
    "conformance/glsl/implicit/divide_int_mat3.vert.html": 0.1115,
    "conformance/glsl/implicit/divide_int_mat4.vert.html": 0.0981,
    "conformance/glsl/implicit/divide_int_vec2.vert.html": 0.0758,
    "conformance/glsl/implicit/divide_int_vec3.vert.html": 0.0938,
    "conformance/glsl/implicit/divide_int_vec4.vert.html": 0.0987,
    "conformance/glsl/implicit/divide_ivec2_vec2.vert.html": 0.0888,
    "conformance/glsl/implicit/divide_ivec3_vec3.vert.html": 0.1049,
    "conformance/glsl/implicit/divide_ivec4_vec4.vert.html": 0.0809,
    "conformance/glsl/implicit/equal_int_float.vert.html": 0.1089,
    "conformance/glsl/implicit/equal_ivec2_vec2.vert.html": 0.0928,
    "conformance/glsl/implicit/equal_ivec3_vec3.vert.html": 0.0692,
    "conformance/glsl/implicit/equal_ivec4_vec4.vert.html": 0.1092,
    "conformance/glsl/implicit/function_int_float.vert.html": 0.0745,
    "conformance/glsl/implicit/function_ivec2_vec2.vert.html": 0.0858,
    "conformance/glsl/implicit/function_ivec3_vec3.vert.html": 0.0929,
    "conformance/glsl/implicit/function_ivec4_vec4.vert.html": 0.1107,
    "conformance/glsl/implicit/greater_than.vert.html": 0.0908,
    "conformance/glsl/implicit/greater_than_equal.vert.html": 0.0828,
    "conformance/glsl/implicit/less_than.vert.html": 0.0792,
    "conformance/glsl/implicit/less_than_equal.vert.html": 0.0989,
    "conformance/glsl/implicit/multiply_int_float.vert.html": 0.0888,
    "conformance/glsl/implicit/multiply_int_mat2.vert.html": 0.0772,
    "conformance/glsl/implicit/multiply_int_mat3.vert.html": 0.0919,
    "conformance/glsl/implicit/multiply_int_mat4.vert.html": 0.1064,
    "conformance/glsl/implicit/multiply_int_vec2.vert.html": 0.1119,
    "conformance/glsl/implicit/multiply_int_vec3.vert.html": 0.0683,
    "conformance/glsl/implicit/multiply_int_vec4.vert.html": 0.0678,
    "conformance/glsl/implicit/multiply_ivec2_vec2.vert.html": 0.0778,
    "conformance/glsl/implicit/multiply_ivec3_vec3.vert.html": 0.0667,
    "conformance/glsl/implicit/multiply_ivec4_vec4.vert.html": 0.0901,
    "conformance/glsl/implicit/not_equal_int_float.vert.html": 0.0738,
    "conformance/glsl/implicit/not_equal_ivec2_vec2.vert.html": 0.1222,
    "conformance/glsl/implicit/not_equal_ivec3_vec3.vert.html": 0.0986,
    "conformance/glsl/implicit/not_equal_ivec4_vec4.vert.html": 0.0928,
    "conformance/glsl/implicit/subtract_int_float.vert.html": 0.0878,
    "conformance/glsl/implicit/subtract_int_mat2.vert.html": 0.0734,
    "conformance/glsl/implicit/subtract_int_mat3.vert.html": 0.0957,
    "conformance/glsl/implicit/subtract_int_mat4.vert.html": 0.0788,
    "conformance/glsl/implicit/subtract_int_vec2.vert.html": 0.0702,
    "conformance/glsl/implicit/subtract_int_vec3.vert.html": 0.0838,
    "conformance/glsl/implicit/subtract_int_vec4.vert.html": 0.0869,
    "conformance/glsl/implicit/subtract_ivec2_vec2.vert.html": 0.0917,
    "conformance/glsl/implicit/subtract_ivec3_vec3.vert.html": 0.0659,
    "conformance/glsl/implicit/subtract_ivec4_vec4.vert.html": 0.0738,
    "conformance/glsl/implicit/ternary_int_float.vert.html": 0.1117,
    "conformance/glsl/implicit/ternary_ivec2_vec2.vert.html": 0.0848,
    "conformance/glsl/implicit/ternary_ivec3_vec3.vert.html": 0.0618,
    "conformance/glsl/implicit/ternary_ivec4_vec4.vert.html": 0.1118,
    "conformance/glsl/literals/float_literal.vert.html": 0.1262,
    "conformance/glsl/literals/literal_precision.html": 0.0845,
    "conformance/glsl/literals/overflow_leak.vert.html": 0.1083,
    "conformance/glsl/matrices/glsl-mat3-construction.html": 0.1612,
    "conformance/glsl/matrices/glsl-mat4-to-mat3.html": 0.1695,
    "conformance/glsl/matrices/matrix-compound-multiply.html": 0.1184,
    "conformance/glsl/misc/boolean_precision.html": 0.0738,
    "conformance/glsl/misc/const-variable-initialization.html": 1.0937,
    "conformance/glsl/misc/embedded-struct-definitions-forbidden.html": 0.1327,
    "conformance/glsl/misc/empty-declaration.html": 0.0933,
    "conformance/glsl/misc/empty_main.vert.html": 0.089,
    "conformance/glsl/misc/expression-list-in-declarator-initializer.html": 0.3673,
    "conformance/glsl/misc/fragcolor-fragdata-invariant.html": 0.0734,
    "conformance/glsl/misc/gl_position_unset.vert.html": 0.0918,
    "conformance/glsl/misc/global-variable-init.html": 0.1738,
    "conformance/glsl/misc/glsl-function-nodes.html": 0.1797,
    "conformance/glsl/misc/glsl-long-variable-names.html": 0.1556,
    "conformance/glsl/misc/glsl-vertex-branch.html": 0.1263,
    "conformance/glsl/misc/large-loop-compile.html": 1.5927,
    "conformance/glsl/misc/local-variable-shadowing-outer-function.html": 0.1037,
    "conformance/glsl/misc/non-ascii-comments.vert.html": 0.1135,
    "conformance/glsl/misc/non-ascii.vert.html": 0.0918,
    "conformance/glsl/misc/re-compile-re-link.html": 0.1656,
    "conformance/glsl/misc/sampler-operand.html": 0.1132,
    "conformance/glsl/misc/sequence-operator-returns-constant.html": 0.1515,
    "conformance/glsl/misc/shader-precision-format-obeyed.html": 0.0888,
    "conformance/glsl/misc/shader-struct-scope.html": 0.1238,
    "conformance/glsl/misc/shader-uniform-packing-restrictions.html": 3.206,
    "conformance/glsl/misc/shader-varying-packing-restrictions.html": 0.2814,
    "conformance/glsl/misc/shader-with-256-character-define.html": 0.1307,
    "conformance/glsl/misc/shader-with-256-character-identifier.frag.html": 0.1454,
    "conformance/glsl/misc/shader-with-_webgl-identifier.vert.html": 0.1017,
    "conformance/glsl/misc/shader-with-arbitrary-indexing.frag.html": 0.1123,
    "conformance/glsl/misc/shader-with-arbitrary-indexing.vert.html": 0.0858,
    "conformance/glsl/misc/shader-with-array-of-structs-containing-arrays.html": 0.1368,
    "conformance/glsl/misc/shader-with-array-of-structs-uniform.html": 0.1331,
    "conformance/glsl/misc/shader-with-attrib-array.vert.html": 0.0815,
    "conformance/glsl/misc/shader-with-attrib-struct.vert.html": 0.0995,
    "conformance/glsl/misc/shader-with-clipvertex.vert.html": 0.0775,
    "conformance/glsl/misc/shader-with-comma-assignment.html": 0.0898,
    "conformance/glsl/misc/shader-with-comma-conditional-assignment.html": 0.1928,
    "conformance/glsl/misc/shader-with-comma-separated-variable-declarations.html": 0.0758,
    "conformance/glsl/misc/shader-with-conditional-scoping-negative.html": 0.0917,
    "conformance/glsl/misc/shader-with-conditional-scoping.html": 0.1184,
    "conformance/glsl/misc/shader-with-default-precision.frag.html": 0.1107,
    "conformance/glsl/misc/shader-with-default-precision.vert.html": 0.1209,
    "conformance/glsl/misc/shader-with-dfdx-no-ext.frag.html": 0.1031,
    "conformance/glsl/misc/shader-with-dfdx.frag.html": 0.0963,
    "conformance/glsl/misc/shader-with-do-loop.html": 0.0967,
    "conformance/glsl/misc/shader-with-error-directive.html": 0.0876,
    "conformance/glsl/misc/shader-with-explicit-int-cast.vert.html": 0.1235,
    "conformance/glsl/misc/shader-with-float-return-value.frag.html": 0.1131,
    "conformance/glsl/misc/shader-with-for-loop.html": 0.139,
    "conformance/glsl/misc/shader-with-for-scoping.html": 0.0974,
    "conformance/glsl/misc/shader-with-frag-depth.frag.html": 0.0901,
    "conformance/glsl/misc/shader-with-function-recursion.frag.html": 0.1291,
    "conformance/glsl/misc/shader-with-function-scoped-struct.html": 0.1225,
    "conformance/glsl/misc/shader-with-functional-scoping.html": 0.0981,
    "conformance/glsl/misc/shader-with-glcolor.vert.html": 0.0987,
    "conformance/glsl/misc/shader-with-gles-1.frag.html": 0.1087,
    "conformance/glsl/misc/shader-with-gles-symbol.frag.html": 0.0818,
    "conformance/glsl/misc/shader-with-global-variable-precision-mismatch.html": 0.0868,
    "conformance/glsl/misc/shader-with-glprojectionmatrix.vert.html": 0.0711,
    "conformance/glsl/misc/shader-with-hex-int-constant-macro.html": 0.0874,
    "conformance/glsl/misc/shader-with-implicit-vec3-to-vec4-cast.vert.html": 0.0694,
    "conformance/glsl/misc/shader-with-include.vert.html": 0.0783,
    "conformance/glsl/misc/shader-with-int-return-value.frag.html": 0.1068,
    "conformance/glsl/misc/shader-with-invalid-identifier.frag.html": 0.0805,
    "conformance/glsl/misc/shader-with-ivec2-return-value.frag.html": 0.0779,
    "conformance/glsl/misc/shader-with-ivec3-return-value.frag.html": 0.0822,
    "conformance/glsl/misc/shader-with-ivec4-return-value.frag.html": 0.1103,
    "conformance/glsl/misc/shader-with-limited-indexing.frag.html": 0.1172,
    "conformance/glsl/misc/shader-with-long-line.html": 0.1394,
    "conformance/glsl/misc/shader-with-non-ascii-error.frag.html": 0.0997,
    "conformance/glsl/misc/shader-with-non-reserved-words-1-of-8.html": 2.6148,
    "conformance/glsl/misc/shader-with-non-reserved-words-2-of-8.html": 2.4947,
    "conformance/glsl/misc/shader-with-non-reserved-words-3-of-8.html": 2.6561,
    "conformance/glsl/misc/shader-with-non-reserved-words-4-of-8.html": 2.6622,
    "conformance/glsl/misc/shader-with-non-reserved-words-5-of-8.html": 1.0343,
    "conformance/glsl/misc/shader-with-non-reserved-words-6-of-8.html": 1.6184,
    "conformance/glsl/misc/shader-with-non-reserved-words-7-of-8.html": 2.6799,
    "conformance/glsl/misc/shader-with-non-reserved-words-8-of-8.html": 0.9408,
    "conformance/glsl/misc/shader-with-precision.frag.html": 0.1218,
    "conformance/glsl/misc/shader-with-preprocessor-whitespace.html": 0.1127,
    "conformance/glsl/misc/shader-with-quoted-error.frag.html": 0.1077,
    "conformance/glsl/misc/shader-with-reserved-words.html": 2.7139,
    "conformance/glsl/misc/shader-with-short-circuiting-operators.html": 0.3431,
    "conformance/glsl/misc/shader-with-similar-uniform-array-names.html": 0.1662,
    "conformance/glsl/misc/shader-with-too-many-uniforms.html": 0.6527,
    "conformance/glsl/misc/shader-with-two-initializer-types.html": 0.1127,
    "conformance/glsl/misc/shader-with-undefined-preprocessor-symbol.frag.html": 0.1002,
    "conformance/glsl/misc/shader-with-uniform-in-loop-condition.vert.html": 0.1067,
    "conformance/glsl/misc/shader-with-vec2-return-value.frag.html": 0.0959,
    "conformance/glsl/misc/shader-with-vec3-return-value.frag.html": 0.1097,
    "conformance/glsl/misc/shader-with-vec4-return-value.frag.html": 0.112,
    "conformance/glsl/misc/shader-with-vec4-vec3-vec4-conditional.html": 0.0708,
    "conformance/glsl/misc/shader-with-version-100.frag.html": 0.0899,
    "conformance/glsl/misc/shader-with-version-100.vert.html": 0.089,
    "conformance/glsl/misc/shader-with-version-120.vert.html": 0.0888,
    "conformance/glsl/misc/shader-with-version-130.vert.html": 0.1296,
    "conformance/glsl/misc/shader-with-webgl-identifier.vert.html": 0.0863,
    "conformance/glsl/misc/shader-with-while-loop.html": 0.0808,
    "conformance/glsl/misc/shader-without-precision.frag.html": 0.1114,
    "conformance/glsl/misc/shaders-with-constant-expression-loop-conditions.html": 0.1286,
    "conformance/glsl/misc/shaders-with-invariance.html": 0.1564,
    "conformance/glsl/misc/shaders-with-mis-matching-uniforms.html": 0.1718,
    "conformance/glsl/misc/shaders-with-mis-matching-varyings.html": 0.0957,
    "conformance/glsl/misc/shaders-with-missing-varyings.html": 0.1027,
    "conformance/glsl/misc/shaders-with-name-conflicts.html": 0.1317,
    "conformance/glsl/misc/shaders-with-uniform-structs.html": 0.0918,
    "conformance/glsl/misc/shaders-with-varyings.html": 0.0833,
    "conformance/glsl/misc/shared.html": 0.1272,
    "conformance/glsl/misc/struct-as-inout-parameter.html": 0.1459,
    "conformance/glsl/misc/struct-as-out-parameter.html": 0.1752,
    "conformance/glsl/misc/struct-assign.html": 0.2193,
    "conformance/glsl/misc/struct-equals.html": 0.17,
    "conformance/glsl/misc/struct-mixed-array-declarators.html": 0.468,
    "conformance/glsl/misc/struct-nesting-exceeds-maximum.html": 0.095,
    "conformance/glsl/misc/struct-nesting-of-variable-names.html": 1.2306,
    "conformance/glsl/misc/struct-nesting-under-maximum.html": 0.116,
    "conformance/glsl/misc/struct-specifiers-in-uniforms.html": 0.255,
    "conformance/glsl/misc/struct-unary-operators.html": 0.0883,
    "conformance/glsl/misc/ternary-operator-on-arrays.html": 0.0698,
    "conformance/glsl/misc/ternary-operators-in-global-initializers.html": 0.2194,
    "conformance/glsl/misc/ternary-operators-in-initializers.html": 0.2324,
    "conformance/glsl/misc/uninitialized-local-global-variables.html": 0.2706,
    "conformance/glsl/preprocessor/comments.html": 0.1417,
    "conformance/glsl/preprocessor/macro-expansion-tricky.html": 0.1068,
    "conformance/glsl/reserved/_webgl_field.vert.html": 0.1284,
    "conformance/glsl/reserved/_webgl_function.vert.html": 0.0977,
    "conformance/glsl/reserved/_webgl_struct.vert.html": 0.0964,
    "conformance/glsl/reserved/_webgl_variable.vert.html": 0.0865,
    "conformance/glsl/reserved/webgl_field.vert.html": 0.1097,
    "conformance/glsl/reserved/webgl_function.vert.html": 0.1067,
    "conformance/glsl/reserved/webgl_struct.vert.html": 0.0736,
    "conformance/glsl/reserved/webgl_variable.vert.html": 0.0848,
    "conformance/glsl/samplers/glsl-function-texture2d-bias.html": 0.1258,
    "conformance/glsl/samplers/glsl-function-texture2dlod.html": 0.1371,
    "conformance/glsl/samplers/glsl-function-texture2dproj.html": 0.2531,
    "conformance/glsl/samplers/glsl-function-texture2dprojlod.html": 0.5318,
    "conformance/glsl/variables/gl-fragcoord-xy-values.html": 0.0946,
    "conformance/glsl/variables/gl-fragcoord.html": 0.1518,
    "conformance/glsl/variables/gl-fragdata-and-fragcolor.html": 0.0997,
    "conformance/glsl/variables/gl-frontfacing.html": 0.1469,
    "conformance/glsl/variables/gl-pointcoord.html": 0.1001,
    "conformance/glsl/variables/glsl-built-ins.html": 0.2795,
    "conformance/limits/gl-line-width.html": 0.0853,
    "conformance/limits/gl-max-texture-dimensions.html": 0.0952,
    "conformance/limits/gl-min-attribs.html": 0.0924,
    "conformance/limits/gl-min-textures.html": 0.1425,
    "conformance/limits/gl-min-uniforms.html": 0.1834,
    "conformance/misc/bad-arguments-test.html": 0.1427,
    "conformance/misc/boolean-argument-conversion.html": 0.1406,
    "conformance/misc/delayed-drawing.html": 1.0839,
    "conformance/misc/error-reporting.html": 0.0885,
    "conformance/misc/expando-loss.html": 0.2051,
    "conformance/misc/functions-returning-strings.html": 0.1112,
    "conformance/misc/hint.html": 0.4605,
    "conformance/misc/invalid-passed-params.html": 0.2796,
    "conformance/misc/is-object.html": 0.0952,
    "conformance/misc/null-object-behaviour.html": 0.1486,
    "conformance/misc/object-deletion-behaviour.html": 0.2197,
    "conformance/misc/shader-precision-format.html": 0.2887,
    "conformance/misc/type-conversion-test.html": 0.4131,
    "conformance/misc/uninitialized-test.html": 0.2098,
    "conformance/misc/webgl-specific-stencil-settings.html": 0.2516,
    "conformance/misc/webgl-specific.html": 0.1067,
    "conformance/more/conformance/constants.html": 0.1124,
    "conformance/more/conformance/getContext.html": 0.1197,
    "conformance/more/conformance/methods.html": 0.1035,
    "conformance/more/conformance/quickCheckAPI-A.html": 0.2527,
    "conformance/more/conformance/quickCheckAPI-B1.html": 0.1941,
    "conformance/more/conformance/quickCheckAPI-B2.html": 0.1137,
    "conformance/more/conformance/quickCheckAPI-B3.html": 0.1304,
    "conformance/more/conformance/quickCheckAPI-B4.html": 0.1237,
    "conformance/more/conformance/quickCheckAPI-C.html": 0.1177,
    "conformance/more/conformance/quickCheckAPI-D_G.html": 0.1595,
    "conformance/more/conformance/quickCheckAPI-G_I.html": 0.2366,
    "conformance/more/conformance/quickCheckAPI-L_S.html": 0.1478,
    "conformance/more/conformance/quickCheckAPI-S_V.html": 0.1349,
    "conformance/more/conformance/webGLArrays.html": 0.1224,
    "conformance/more/functions/bindBuffer.html": 0.106,
    "conformance/more/functions/bindBufferBadArgs.html": 0.1284,
    "conformance/more/functions/bindFramebufferLeaveNonZero.html": 0.1262,
    "conformance/more/functions/bufferData.html": 0.1086,
    "conformance/more/functions/bufferDataBadArgs.html": 0.0998,
    "conformance/more/functions/bufferSubData.html": 0.084,
    "conformance/more/functions/bufferSubDataBadArgs.html": 0.1271,
    "conformance/more/functions/copyTexImage2D.html": 0.1865,
    "conformance/more/functions/copyTexImage2DBadArgs.html": 0.1118,
    "conformance/more/functions/copyTexSubImage2D.html": 0.1522,
    "conformance/more/functions/copyTexSubImage2DBadArgs.html": 0.1012,
    "conformance/more/functions/deleteBufferBadArgs.html": 0.1324,
    "conformance/more/functions/drawArrays.html": 0.1541,
    "conformance/more/functions/drawElements.html": 0.14,
    "conformance/more/functions/isTests.html": 0.0846,
    "conformance/more/functions/isTestsBadArgs.html": 0.0899,
    "conformance/more/functions/readPixels.html": 0.1379,
    "conformance/more/functions/readPixelsBadArgs.html": 0.1458,
    "conformance/more/functions/texImage2D.html": 0.1146,
    "conformance/more/functions/texImage2DBadArgs.html": 0.1234,
    "conformance/more/functions/texImage2DHTML.html": 0.2882,
    "conformance/more/functions/texImage2DHTMLBadArgs.html": 0.111,
    "conformance/more/functions/texSubImage2D.html": 0.1245,
    "conformance/more/functions/texSubImage2DBadArgs.html": 0.1356,
    "conformance/more/functions/texSubImage2DHTML.html": 0.8568,
    "conformance/more/functions/texSubImage2DHTMLBadArgs.html": 0.098,
    "conformance/more/functions/uniformMatrix.html": 0.1385,
    "conformance/more/functions/uniformMatrixBadArgs.html": 0.1297,
    "conformance/more/functions/uniformf.html": 0.1423,
    "conformance/more/functions/uniformfArrayLen1.html": 0.129,
    "conformance/more/functions/uniformfBadArgs.html": 0.1596,
    "conformance/more/functions/uniformi.html": 0.1325,
    "conformance/more/functions/uniformiBadArgs.html": 1.022,
    "conformance/more/functions/vertexAttrib.html": 0.1039,
    "conformance/more/functions/vertexAttribBadArgs.html": 0.1145,
    "conformance/more/functions/vertexAttribPointer.html": 0.162,
    "conformance/more/functions/vertexAttribPointerBadArgs.html": 0.1276,
    "conformance/more/glsl/arrayOutOfBounds.html": 0.1314,
    "conformance/more/glsl/uniformOutOfBounds.html": 0.111,
    "conformance/offscreencanvas/context-attribute-preserve-drawing-buffer.html": 0.6201,
    "conformance/offscreencanvas/context-creation-worker.html": 0.1145,
    "conformance/offscreencanvas/context-creation.html": 0.0805,
    "conformance/offscreencanvas/context-lost-restored-worker.html": 0.1874,
    "conformance/offscreencanvas/context-lost-restored.html": 0.1207,
    "conformance/offscreencanvas/context-lost-worker.html": 0.1287,
    "conformance/offscreencanvas/context-lost.html": 0.0859,
    "conformance/offscreencanvas/methods-worker.html": 0.1193,
    "conformance/offscreencanvas/methods.html": 0.0938,
    "conformance/offscreencanvas/offscreencanvas-resize.html": 0.0783,
    "conformance/offscreencanvas/offscreencanvas-timer-query.html": 0.1482,
    "conformance/offscreencanvas/offscreencanvas-transfer-image-bitmap.html": 0.137,
    "conformance/ogles/GL/abs/abs_001_to_006.html": 0.6428,
    "conformance/ogles/GL/acos/acos_001_to_006.html": 1.3813,
    "conformance/ogles/GL/all/all_001_to_004.html": 0.4272,
    "conformance/ogles/GL/any/any_001_to_004.html": 0.5065,
    "conformance/ogles/GL/array/array_001_to_006.html": 0.3783,
    "conformance/ogles/GL/asin/asin_001_to_006.html": 1.2704,
    "conformance/ogles/GL/atan/atan_001_to_008.html": 1.0245,
    "conformance/ogles/GL/atan/atan_009_to_012.html": 0.7172,
    "conformance/ogles/GL/biConstants/biConstants_001_to_008.html": 0.7007,
    "conformance/ogles/GL/biConstants/biConstants_009_to_016.html": 0.7181,
    "conformance/ogles/GL/biuDepthRange/biuDepthRange_001_to_002.html": 0.2837,
    "conformance/ogles/GL/build/build_001_to_008.html": 0.2743,
    "conformance/ogles/GL/build/build_009_to_016.html": 0.2626,
    "conformance/ogles/GL/build/build_017_to_024.html": 0.1945,
    "conformance/ogles/GL/build/build_025_to_032.html": 0.1841,
    "conformance/ogles/GL/build/build_033_to_040.html": 0.2035,
    "conformance/ogles/GL/build/build_041_to_048.html": 0.1648,
    "conformance/ogles/GL/build/build_049_to_056.html": 0.1411,
    "conformance/ogles/GL/build/build_057_to_064.html": 0.139,
    "conformance/ogles/GL/build/build_065_to_072.html": 0.1561,
    "conformance/ogles/GL/build/build_073_to_080.html": 0.1681,
    "conformance/ogles/GL/build/build_081_to_088.html": 0.1737,
    "conformance/ogles/GL/build/build_089_to_096.html": 0.2499,
    "conformance/ogles/GL/build/build_097_to_104.html": 0.1792,
    "conformance/ogles/GL/build/build_105_to_112.html": 0.1664,
    "conformance/ogles/GL/build/build_113_to_120.html": 0.2809,
    "conformance/ogles/GL/build/build_121_to_128.html": 0.1608,
    "conformance/ogles/GL/build/build_129_to_136.html": 0.1741,
    "conformance/ogles/GL/build/build_137_to_144.html": 0.1562,
    "conformance/ogles/GL/build/build_145_to_152.html": 0.1644,
    "conformance/ogles/GL/build/build_153_to_160.html": 0.1613,
    "conformance/ogles/GL/build/build_161_to_168.html": 0.2055,
    "conformance/ogles/GL/build/build_169_to_176.html": 0.2035,
    "conformance/ogles/GL/build/build_177_to_178.html": 0.1586,
    "conformance/ogles/GL/built_in_varying_array_out_of_bounds/built_in_varying_array_out_of_bounds_001_to_001.html": 0.1144,
    "conformance/ogles/GL/ceil/ceil_001_to_006.html": 0.5887,
    "conformance/ogles/GL/clamp/clamp_001_to_006.html": 0.6184,
    "conformance/ogles/GL/control_flow/control_flow_001_to_008.html": 0.5925,
    "conformance/ogles/GL/control_flow/control_flow_009_to_010.html": 0.2295,
    "conformance/ogles/GL/cos/cos_001_to_006.html": 0.8291,
    "conformance/ogles/GL/cross/cross_001_to_002.html": 0.3017,
    "conformance/ogles/GL/default/default_001_to_001.html": 0.1656,
    "conformance/ogles/GL/degrees/degrees_001_to_006.html": 0.6378,
    "conformance/ogles/GL/discard/discard_001_to_002.html": 0.2086,
    "conformance/ogles/GL/distance/distance_001_to_006.html": 0.6448,
    "conformance/ogles/GL/dot/dot_001_to_006.html": 0.6453,
    "conformance/ogles/GL/equal/equal_001_to_008.html": 0.7091,
    "conformance/ogles/GL/equal/equal_009_to_012.html": 0.4004,
    "conformance/ogles/GL/exp/exp_001_to_008.html": 0.8925,
    "conformance/ogles/GL/exp/exp_009_to_012.html": 0.5864,
    "conformance/ogles/GL/exp2/exp2_001_to_008.html": 0.7811,
    "conformance/ogles/GL/exp2/exp2_009_to_012.html": 0.5933,
    "conformance/ogles/GL/faceforward/faceforward_001_to_006.html": 0.6968,
    "conformance/ogles/GL/floor/floor_001_to_006.html": 0.7238,
    "conformance/ogles/GL/fract/fract_001_to_006.html": 0.7098,
    "conformance/ogles/GL/functions/functions_001_to_008.html": 0.6713,
    "conformance/ogles/GL/functions/functions_009_to_016.html": 0.4827,
    "conformance/ogles/GL/functions/functions_017_to_024.html": 0.4781,
    "conformance/ogles/GL/functions/functions_025_to_032.html": 0.442,
    "conformance/ogles/GL/functions/functions_033_to_040.html": 0.5475,
    "conformance/ogles/GL/functions/functions_041_to_048.html": 0.5081,
    "conformance/ogles/GL/functions/functions_049_to_056.html": 0.5121,
    "conformance/ogles/GL/functions/functions_057_to_064.html": 0.5243,
    "conformance/ogles/GL/functions/functions_065_to_072.html": 0.5084,
    "conformance/ogles/GL/functions/functions_073_to_080.html": 0.5044,
    "conformance/ogles/GL/functions/functions_081_to_088.html": 0.5604,
    "conformance/ogles/GL/functions/functions_089_to_096.html": 0.5642,
    "conformance/ogles/GL/functions/functions_097_to_104.html": 0.5226,
    "conformance/ogles/GL/functions/functions_105_to_112.html": 0.5799,
    "conformance/ogles/GL/functions/functions_113_to_120.html": 0.5593,
    "conformance/ogles/GL/functions/functions_121_to_126.html": 0.3945,
    "conformance/ogles/GL/gl_FragCoord/gl_FragCoord_001_to_003.html": 0.3131,
    "conformance/ogles/GL/gl_FrontFacing/gl_FrontFacing_001_to_001.html": 0.1882,
    "conformance/ogles/GL/greaterThan/greaterThan_001_to_008.html": 0.8027,
    "conformance/ogles/GL/greaterThanEqual/greaterThanEqual_001_to_008.html": 0.7864,
    "conformance/ogles/GL/inversesqrt/inversesqrt_001_to_006.html": 0.6586,
    "conformance/ogles/GL/length/length_001_to_006.html": 0.6239,
    "conformance/ogles/GL/lessThan/lessThan_001_to_008.html": 0.7862,
    "conformance/ogles/GL/lessThanEqual/lessThanEqual_001_to_008.html": 0.6757,
    "conformance/ogles/GL/log/log_001_to_008.html": 0.7776,
    "conformance/ogles/GL/log/log_009_to_012.html": 0.6885,
    "conformance/ogles/GL/log2/log2_001_to_008.html": 0.9122,
    "conformance/ogles/GL/log2/log2_009_to_012.html": 0.6158,
    "conformance/ogles/GL/mat/mat_001_to_008.html": 0.4853,
    "conformance/ogles/GL/mat/mat_009_to_016.html": 0.627,
    "conformance/ogles/GL/mat/mat_017_to_024.html": 0.4873,
    "conformance/ogles/GL/mat/mat_025_to_032.html": 0.7278,
    "conformance/ogles/GL/mat/mat_033_to_040.html": 0.5973,
    "conformance/ogles/GL/mat/mat_041_to_046.html": 0.4002,
    "conformance/ogles/GL/mat3/mat3_001_to_006.html": 0.4645,
    "conformance/ogles/GL/matrixCompMult/matrixCompMult_001_to_004.html": 0.5077,
    "conformance/ogles/GL/max/max_001_to_006.html": 0.6384,
    "conformance/ogles/GL/min/min_001_to_006.html": 0.6732,
    "conformance/ogles/GL/mix/mix_001_to_006.html": 0.6419,
    "conformance/ogles/GL/mod/mod_001_to_008.html": 0.7525,
    "conformance/ogles/GL/normalize/normalize_001_to_006.html": 0.618,
    "conformance/ogles/GL/not/not_001_to_004.html": 0.4119,
    "conformance/ogles/GL/notEqual/notEqual_001_to_008.html": 0.69,
    "conformance/ogles/GL/notEqual/notEqual_009_to_012.html": 0.4456,
    "conformance/ogles/GL/operators/operators_001_to_008.html": 0.5224,
    "conformance/ogles/GL/operators/operators_009_to_016.html": 0.5473,
    "conformance/ogles/GL/operators/operators_017_to_024.html": 0.462,
    "conformance/ogles/GL/operators/operators_025_to_026.html": 0.2225,
    "conformance/ogles/GL/pow/pow_001_to_008.html": 0.7177,
    "conformance/ogles/GL/pow/pow_009_to_016.html": 0.851,
    "conformance/ogles/GL/pow/pow_017_to_024.html": 0.9659,
    "conformance/ogles/GL/radians/radians_001_to_006.html": 0.6358,
    "conformance/ogles/GL/reflect/reflect_001_to_006.html": 0.6563,
    "conformance/ogles/GL/refract/refract_001_to_006.html": 0.7408,
    "conformance/ogles/GL/sign/sign_001_to_006.html": 0.7647,
    "conformance/ogles/GL/sin/sin_001_to_006.html": 0.8396,
    "conformance/ogles/GL/smoothstep/smoothstep_001_to_006.html": 0.6052,
    "conformance/ogles/GL/sqrt/sqrt_001_to_006.html": 0.612,
    "conformance/ogles/GL/step/step_001_to_006.html": 0.5896,
    "conformance/ogles/GL/struct/struct_001_to_008.html": 0.6101,
    "conformance/ogles/GL/struct/struct_009_to_016.html": 0.5328,
    "conformance/ogles/GL/struct/struct_017_to_024.html": 0.5964,
    "conformance/ogles/GL/struct/struct_025_to_032.html": 0.6108,
    "conformance/ogles/GL/struct/struct_033_to_040.html": 0.6204,
    "conformance/ogles/GL/struct/struct_041_to_048.html": 0.5862,
    "conformance/ogles/GL/struct/struct_049_to_056.html": 0.6573,
    "conformance/ogles/GL/swizzlers/swizzlers_001_to_008.html": 0.7221,
    "conformance/ogles/GL/swizzlers/swizzlers_009_to_016.html": 0.7663,
    "conformance/ogles/GL/swizzlers/swizzlers_017_to_024.html": 0.6948,
    "conformance/ogles/GL/swizzlers/swizzlers_025_to_032.html": 0.7457,
    "conformance/ogles/GL/swizzlers/swizzlers_033_to_040.html": 0.7031,
    "conformance/ogles/GL/swizzlers/swizzlers_041_to_048.html": 0.6647,
    "conformance/ogles/GL/swizzlers/swizzlers_049_to_056.html": 0.7098,
    "conformance/ogles/GL/swizzlers/swizzlers_057_to_064.html": 0.7257,
    "conformance/ogles/GL/swizzlers/swizzlers_065_to_072.html": 0.7191,
    "conformance/ogles/GL/swizzlers/swizzlers_073_to_080.html": 0.699,
    "conformance/ogles/GL/swizzlers/swizzlers_081_to_088.html": 0.6367,
    "conformance/ogles/GL/swizzlers/swizzlers_089_to_096.html": 0.6826,
    "conformance/ogles/GL/swizzlers/swizzlers_097_to_104.html": 0.6915,
    "conformance/ogles/GL/swizzlers/swizzlers_105_to_112.html": 0.6978,
    "conformance/ogles/GL/swizzlers/swizzlers_113_to_120.html": 0.6686,
    "conformance/ogles/GL/tan/tan_001_to_006.html": 0.5742,
    "conformance/ogles/GL/vec/vec_001_to_008.html": 0.4396,
    "conformance/ogles/GL/vec/vec_009_to_016.html": 0.4934,
    "conformance/ogles/GL/vec/vec_017_to_018.html": 0.1782,
    "conformance/ogles/GL/vec3/vec3_001_to_008.html": 0.4703,
    "conformance/programs/get-active-test.html": 0.1496,
    "conformance/programs/gl-bind-attrib-location-long-names-test.html": 0.0997,
    "conformance/programs/gl-bind-attrib-location-test.html": 0.1402,
    "conformance/programs/gl-get-active-attribute.html": 0.1162,
    "conformance/programs/gl-get-active-uniform.html": 0.1804,
    "conformance/programs/gl-getshadersource.html": 0.1008,
    "conformance/programs/gl-shader-test.html": 0.1159,
    "conformance/programs/invalid-UTF-16.html": 0.0834,
    "conformance/programs/program-handling.html": 0.1088,
    "conformance/programs/program-infolog.html": 0.0828,
    "conformance/programs/program-test.html": 0.189,
    "conformance/programs/use-program-crash-with-discard-in-fragment-shader.html": 0.1026,
    "conformance/reading/fbo-remains-unchanged-after-read-pixels.html": 0.0888,
    "conformance/reading/read-pixels-pack-alignment.html": 0.1542,
    "conformance/reading/read-pixels-test.html": 0.4891,
    "conformance/renderbuffers/depth-renderbuffer-initialization.html": 0.1336,
    "conformance/renderbuffers/feedback-loop.html": 0.0923,
    "conformance/renderbuffers/framebuffer-state-restoration.html": 0.2414,
    "conformance/renderbuffers/renderbuffer-initialization.html": 0.1372,
    "conformance/renderbuffers/stencil-renderbuffer-initialization.html": 0.1643,
    "conformance/rendering/bind-framebuffer-flush-bug.html": 0.1066,
    "conformance/rendering/blending.html": 0.1539,
    "conformance/rendering/canvas-alpha-bug.html": 0.1137,
    "conformance/rendering/clear-after-copyTexImage2D.html": 0.1147,
    "conformance/rendering/clear-default-framebuffer-with-scissor-test.html": 0.0939,
    "conformance/rendering/color-mask-preserved-during-implicit-clears.html": 1.51,
    "conformance/rendering/color-mask-should-not-affect-antialiased-framebuffer-resolution.html": 0.1,
    "conformance/rendering/culling.html": 0.1755,
    "conformance/rendering/default-texture-draw-bug.html": 0.2721,
    "conformance/rendering/draw-arrays-out-of-bounds.html": 0.1161,
    "conformance/rendering/draw-elements-out-of-bounds.html": 0.111,
    "conformance/rendering/draw-webgl-to-canvas-2d-repeatedly.html": 0.1386,
    "conformance/rendering/draw-with-changing-start-vertex-bug.html": 0.1064,
    "conformance/rendering/framebuffer-switch.html": 0.1003,
    "conformance/rendering/framebuffer-texture-clear.html": 0.2011,
    "conformance/rendering/framebuffer-texture-switch.html": 0.0919,
    "conformance/rendering/gl-clear.html": 0.1293,
    "conformance/rendering/gl-drawarrays.html": 0.0967,
    "conformance/rendering/gl-drawelements.html": 0.1257,
    "conformance/rendering/gl-scissor-canvas-dimensions.html": 0.0852,
    "conformance/rendering/gl-scissor-fbo-test.html": 0.243,
    "conformance/rendering/gl-scissor-test.html": 0.156,
    "conformance/rendering/gl-viewport-test.html": 0.2679,
    "conformance/rendering/line-loop-tri-fan.html": 0.1057,
    "conformance/rendering/line-rendering-quality.html": 0.1186,
    "conformance/rendering/many-draw-calls.html": 2.1105,
    "conformance/rendering/more-than-65536-indices.html": 0.1546,
    "conformance/rendering/multisample-corruption.html": 2.1554,
    "conformance/rendering/negative-one-index.html": 0.1159,
    "conformance/rendering/out-of-bounds-array-buffers.html": 0.1118,
    "conformance/rendering/out-of-bounds-index-buffers.html": 0.1041,
    "conformance/rendering/point-no-attributes.html": 0.0979,
    "conformance/rendering/point-size.html": 0.1295,
    "conformance/rendering/point-specific-shader-variables.html": 0.165,
    "conformance/rendering/point-with-gl-pointcoord-in-fragment-shader.html": 0.1027,
    "conformance/rendering/polygon-offset.html": 0.0999,
    "conformance/rendering/preservedrawingbuffer-leak.html": 0.1083,
    "conformance/rendering/rendering-sampling-feedback-loop.html": 0.1078,
    "conformance/rendering/rendering-stencil-large-viewport.html": 0.1346,
    "conformance/rendering/scissor-rect-repeated-rendering.html": 0.2512,
    "conformance/rendering/simple.html": 0.1067,
    "conformance/rendering/texture-switch-performance.html": 0,
    "conformance/rendering/triangle.html": 0.1356,
    "conformance/state/fb-attach-implicit-target-assignment.html": 0.1108,
    "conformance/state/gl-enable-enum-test.html": 0.1735,
    "conformance/state/gl-get-calls.html": 0.117,
    "conformance/state/gl-geterror.html": 0.1248,
    "conformance/state/gl-initial-state.html": 0.0748,
    "conformance/state/state-uneffected-after-compositing.html": 0.2406,
    "conformance/textures/canvas/tex-2d-alpha-alpha-unsigned_byte.html": 0.5714,
    "conformance/textures/canvas/tex-2d-luminance-luminance-unsigned_byte.html": 0.6342,
    "conformance/textures/canvas/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.7512,
    "conformance/textures/canvas/tex-2d-rgb-rgb-unsigned_byte.html": 1.2633,
    "conformance/textures/canvas/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.5718,
    "conformance/textures/canvas/tex-2d-rgba-rgba-unsigned_byte.html": 1.5664,
    "conformance/textures/canvas/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.6574,
    "conformance/textures/canvas/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.6416,
    "conformance/textures/canvas_sub_rectangle/tex-2d-alpha-alpha-unsigned_byte.html": 0.7154,
    "conformance/textures/canvas_sub_rectangle/tex-2d-luminance-luminance-unsigned_byte.html": 0.8531,
    "conformance/textures/canvas_sub_rectangle/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.7328,
    "conformance/textures/canvas_sub_rectangle/tex-2d-rgb-rgb-unsigned_byte.html": 0.583,
    "conformance/textures/canvas_sub_rectangle/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.634,
    "conformance/textures/canvas_sub_rectangle/tex-2d-rgba-rgba-unsigned_byte.html": 0.5754,
    "conformance/textures/canvas_sub_rectangle/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.7049,
    "conformance/textures/canvas_sub_rectangle/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.762,
    "conformance/textures/image/tex-2d-alpha-alpha-unsigned_byte.html": 0.4032,
    "conformance/textures/image/tex-2d-luminance-luminance-unsigned_byte.html": 0.328,
    "conformance/textures/image/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.2991,
    "conformance/textures/image/tex-2d-rgb-rgb-unsigned_byte.html": 0.3946,
    "conformance/textures/image/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.3299,
    "conformance/textures/image/tex-2d-rgba-rgba-unsigned_byte.html": 0.3561,
    "conformance/textures/image/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.3638,
    "conformance/textures/image/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.3554,
    "conformance/textures/image_bitmap_from_blob/tex-2d-alpha-alpha-unsigned_byte.html": 0.6272,
    "conformance/textures/image_bitmap_from_blob/tex-2d-luminance-luminance-unsigned_byte.html": 0.6024,
    "conformance/textures/image_bitmap_from_blob/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.4258,
    "conformance/textures/image_bitmap_from_blob/tex-2d-rgb-rgb-unsigned_byte.html": 0.4335,
    "conformance/textures/image_bitmap_from_blob/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.4919,
    "conformance/textures/image_bitmap_from_blob/tex-2d-rgba-rgba-unsigned_byte.html": 0.5446,
    "conformance/textures/image_bitmap_from_blob/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.5719,
    "conformance/textures/image_bitmap_from_blob/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.6593,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-alpha-alpha-unsigned_byte.html": 0.6275,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-luminance-luminance-unsigned_byte.html": 0.5876,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.596,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-rgb-rgb-unsigned_byte.html": 0.458,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.5761,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-rgba-rgba-unsigned_byte.html": 0.5254,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.746,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.5227,
    "conformance/textures/image_bitmap_from_image/tex-2d-alpha-alpha-unsigned_byte.html": 0.3097,
    "conformance/textures/image_bitmap_from_image/tex-2d-luminance-luminance-unsigned_byte.html": 0.3188,
    "conformance/textures/image_bitmap_from_image/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.2832,
    "conformance/textures/image_bitmap_from_image/tex-2d-rgb-rgb-unsigned_byte.html": 0.3551,
    "conformance/textures/image_bitmap_from_image/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.3053,
    "conformance/textures/image_bitmap_from_image/tex-2d-rgba-rgba-unsigned_byte.html": 0.2503,
    "conformance/textures/image_bitmap_from_image/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.3714,
    "conformance/textures/image_bitmap_from_image/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.3376,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-alpha-alpha-unsigned_byte.html": 0.2613,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-luminance-luminance-unsigned_byte.html": 0.4045,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.2526,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-rgb-rgb-unsigned_byte.html": 0.3807,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.3068,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-rgba-rgba-unsigned_byte.html": 0.2729,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.415,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.3314,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-alpha-alpha-unsigned_byte.html": 0.349,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-luminance-luminance-unsigned_byte.html": 0.3267,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.2681,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-rgb-rgb-unsigned_byte.html": 0.309,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.3276,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-rgba-rgba-unsigned_byte.html": 0.3003,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.3423,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.2757,
    "conformance/textures/image_bitmap_from_video/tex-2d-alpha-alpha-unsigned_byte.html": 0.7969,
    "conformance/textures/image_bitmap_from_video/tex-2d-luminance-luminance-unsigned_byte.html": 0.807,
    "conformance/textures/image_bitmap_from_video/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.822,
    "conformance/textures/image_bitmap_from_video/tex-2d-rgb-rgb-unsigned_byte.html": 0.7251,
    "conformance/textures/image_bitmap_from_video/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.7231,
    "conformance/textures/image_bitmap_from_video/tex-2d-rgba-rgba-unsigned_byte.html": 0.731,
    "conformance/textures/image_bitmap_from_video/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.6754,
    "conformance/textures/image_bitmap_from_video/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.7521,
    "conformance/textures/image_data/tex-2d-alpha-alpha-unsigned_byte.html": 0.4001,
    "conformance/textures/image_data/tex-2d-luminance-luminance-unsigned_byte.html": 0.3997,
    "conformance/textures/image_data/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.4155,
    "conformance/textures/image_data/tex-2d-rgb-rgb-unsigned_byte.html": 0.4744,
    "conformance/textures/image_data/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.3832,
    "conformance/textures/image_data/tex-2d-rgba-rgba-unsigned_byte.html": 0.3939,
    "conformance/textures/image_data/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.4462,
    "conformance/textures/image_data/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.4124,
    "conformance/textures/misc/canvas-teximage-after-multiple-drawimages.html": 0.1751,
    "conformance/textures/misc/copy-tex-image-2d-formats.html": 0.1596,
    "conformance/textures/misc/copy-tex-image-and-sub-image-2d.html": 0.3738,
    "conformance/textures/misc/copy-tex-image-crash.html": 0.1202,
    "conformance/textures/misc/copytexsubimage2d-large-partial-copy-corruption.html": 0.1558,
    "conformance/textures/misc/copytexsubimage2d-subrects.html": 0.0878,
    "conformance/textures/misc/cube-incomplete-fbo.html": 0.0744,
    "conformance/textures/misc/cube-map-uploads-out-of-order.html": 1.0874,
    "conformance/textures/misc/default-texture.html": 0.1087,
    "conformance/textures/misc/exif-orientation.html": 0.6516,
    "conformance/textures/misc/format-filterable-renderable.html": 0.215,
    "conformance/textures/misc/gl-pixelstorei.html": 0.1467,
    "conformance/textures/misc/gl-teximage.html": 0.2613,
    "conformance/textures/misc/mipmap-fbo.html": 0.0997,
    "conformance/textures/misc/origin-clean-conformance-offscreencanvas.html": 0.1566,
    "conformance/textures/misc/origin-clean-conformance.html": 0.1082,
    "conformance/textures/misc/png-image-types.html": 0.4758,
    "conformance/textures/misc/tex-image-and-sub-image-2d-with-array-buffer-view.html": 1.319,
    "conformance/textures/misc/tex-image-and-uniform-binding-bugs.html": 0.1045,
    "conformance/textures/misc/tex-image-canvas-corruption.html": 0.1536,
    "conformance/textures/misc/tex-image-webgl.html": 0.1337,
    "conformance/textures/misc/tex-image-with-format-and-type.html": 0.2277,
    "conformance/textures/misc/tex-image-with-invalid-data.html": 0.0908,
    "conformance/textures/misc/tex-sub-image-2d-bad-args.html": 0.0927,
    "conformance/textures/misc/tex-sub-image-2d.html": 0.0934,
    "conformance/textures/misc/tex-video-using-tex-unit-non-zero.html": 0.7134,
    "conformance/textures/misc/texparameter-test.html": 0.1254,
    "conformance/textures/misc/texture-active-bind-2.html": 0.0966,
    "conformance/textures/misc/texture-active-bind.html": 0.0958,
    "conformance/textures/misc/texture-attachment-formats.html": 0.0788,
    "conformance/textures/misc/texture-clear.html": 0.0835,
    "conformance/textures/misc/texture-complete.html": 0.0914,
    "conformance/textures/misc/texture-copying-and-deletion.html": 1.1119,
    "conformance/textures/misc/texture-copying-feedback-loops.html": 0.1212,
    "conformance/textures/misc/texture-corner-case-videos.html": 0.21,
    "conformance/textures/misc/texture-cube-as-fbo-attachment.html": 0.0762,
    "conformance/textures/misc/texture-draw-with-2d-and-cube.html": 0.0961,
    "conformance/textures/misc/texture-hd-dpi.html": 0.1521,
    "conformance/textures/misc/texture-mips.html": 0.0981,
    "conformance/textures/misc/texture-size-cube-maps.html": 0.4087,
    "conformance/textures/misc/texture-size-limit.html": 0.2293,
    "conformance/textures/misc/texture-size.html": 0.6068,
    "conformance/textures/misc/texture-srgb-upload.html": 0.2352,
    "conformance/textures/misc/texture-sub-image-cube-maps.html": 0.1162,
    "conformance/textures/misc/texture-transparent-pixels-initialized.html": 0.0918,
    "conformance/textures/misc/texture-upload-cube-maps.html": 0.1084,
    "conformance/textures/misc/texture-upload-size.html": 0.5839,
    "conformance/textures/misc/texture-video-transparent.html": 2.3195,
    "conformance/textures/misc/texture-with-flip-y-and-premultiply-alpha.html": 0.1049,
    "conformance/textures/misc/upload-from-srcset-with-empty-data.html": 0.0987,
    "conformance/textures/misc/video-rotation.html": 0.5716,
    "conformance/textures/svg_image/tex-2d-alpha-alpha-unsigned_byte.html": 0.1296,
    "conformance/textures/svg_image/tex-2d-luminance-luminance-unsigned_byte.html": 0.157,
    "conformance/textures/svg_image/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.1352,
    "conformance/textures/svg_image/tex-2d-rgb-rgb-unsigned_byte.html": 0.1456,
    "conformance/textures/svg_image/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.1344,
    "conformance/textures/svg_image/tex-2d-rgba-rgba-unsigned_byte.html": 0.148,
    "conformance/textures/svg_image/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.1716,
    "conformance/textures/svg_image/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.1421,
    "conformance/textures/video/tex-2d-alpha-alpha-unsigned_byte.html": 1.4087,
    "conformance/textures/video/tex-2d-luminance-luminance-unsigned_byte.html": 1.1992,
    "conformance/textures/video/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 1.1912,
    "conformance/textures/video/tex-2d-rgb-rgb-unsigned_byte.html": 1.3431,
    "conformance/textures/video/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 1.4233,
    "conformance/textures/video/tex-2d-rgba-rgba-unsigned_byte.html": 1.1821,
    "conformance/textures/video/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 1.3047,
    "conformance/textures/video/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 1.3991,
    "conformance/textures/webgl_canvas/tex-2d-alpha-alpha-unsigned_byte.html": 0.5276,
    "conformance/textures/webgl_canvas/tex-2d-luminance-luminance-unsigned_byte.html": 0.5599,
    "conformance/textures/webgl_canvas/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.5453,
    "conformance/textures/webgl_canvas/tex-2d-rgb-rgb-unsigned_byte.html": 1.6906,
    "conformance/textures/webgl_canvas/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.5598,
    "conformance/textures/webgl_canvas/tex-2d-rgba-rgba-unsigned_byte.html": 1.4868,
    "conformance/textures/webgl_canvas/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.5267,
    "conformance/textures/webgl_canvas/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.4795,
    "conformance/typedarrays/array-buffer-crash.html": 0.0773,
    "conformance/typedarrays/array-buffer-view-crash.html": 0.0728,
    "conformance/typedarrays/array-large-array-tests.html": 0.18,
    "conformance/typedarrays/array-unit-tests.html": 0.0761,
    "conformance/typedarrays/data-view-crash.html": 0.053,
    "conformance/typedarrays/data-view-test.html": 0.1808,
    "conformance/typedarrays/typed-arrays-in-workers.html": 0.1501,
    "conformance/uniforms/gl-get-uniform-non-current-program.html": 0.1202,
    "conformance/uniforms/gl-uniform-arrays.html": 0.2479,
    "conformance/uniforms/gl-uniform-bool.html": 0.1079,
    "conformance/uniforms/gl-uniformmatrix4fv.html": 0.1117,
    "conformance/uniforms/gl-unknown-uniform.html": 0.1515,
    "conformance/uniforms/no-over-optimization-on-uniform-array-00.html": 0.7272,
    "conformance/uniforms/no-over-optimization-on-uniform-array-01.html": 0.8791,
    "conformance/uniforms/no-over-optimization-on-uniform-array-02.html": 0.8646,
    "conformance/uniforms/no-over-optimization-on-uniform-array-03.html": 0.7938,
    "conformance/uniforms/no-over-optimization-on-uniform-array-04.html": 0.8852,
    "conformance/uniforms/no-over-optimization-on-uniform-array-05.html": 0.8533,
    "conformance/uniforms/no-over-optimization-on-uniform-array-06.html": 0.8088,
    "conformance/uniforms/no-over-optimization-on-uniform-array-07.html": 0.733,
    "conformance/uniforms/no-over-optimization-on-uniform-array-08.html": 0.7362,
    "conformance/uniforms/no-over-optimization-on-uniform-array-09.html": 0.8562,
    "conformance/uniforms/no-over-optimization-on-uniform-array-10.html": 0.7996,
    "conformance/uniforms/no-over-optimization-on-uniform-array-11.html": 0.8605,
    "conformance/uniforms/no-over-optimization-on-uniform-array-12.html": 0.9319,
    "conformance/uniforms/no-over-optimization-on-uniform-array-13.html": 0.7573,
    "conformance/uniforms/no-over-optimization-on-uniform-array-14.html": 0.8579,
    "conformance/uniforms/no-over-optimization-on-uniform-array-15.html": 0.7619,
    "conformance/uniforms/no-over-optimization-on-uniform-array-16.html": 0.9165,
    "conformance/uniforms/no-over-optimization-on-uniform-array-17.html": 0.813,
    "conformance/uniforms/null-uniform-location.html": 0.1197,
    "conformance/uniforms/out-of-bounds-uniform-array-access.html": 1.4434,
    "conformance/uniforms/uniform-default-values.html": 1.3106,
    "conformance/uniforms/uniform-location.html": 0.1566,
    "conformance/uniforms/uniform-samplers-test.html": 15.3413,
    "conformance/uniforms/uniform-values-per-program.html": 0.6958,
    "conformance2/attribs/gl-bindAttribLocation-aliasing-inactive.html": 0.2225,
    "conformance2/attribs/gl-vertex-attrib-i-render.html": 0.1177,
    "conformance2/attribs/gl-vertex-attrib-normalized-int.html": 0.0798,
    "conformance2/attribs/gl-vertex-attrib.html": 0.3887,
    "conformance2/attribs/gl-vertexattribipointer-offsets.html": 0.249,
    "conformance2/attribs/gl-vertexattribipointer.html": 0.2748,
    "conformance2/attribs/invalid-vertex-attribs.html": 0.1419,
    "conformance2/attribs/render-no-enabled-attrib-arrays.html": 0.1172,
    "conformance2/buffers/bound-buffer-size-change-test.html": 0.1077,
    "conformance2/buffers/buffer-copying-contents.html": 0.197,
    "conformance2/buffers/buffer-copying-restrictions.html": 0.0983,
    "conformance2/buffers/buffer-data-and-buffer-sub-data-sub-source.html": 0.1619,
    "conformance2/buffers/buffer-overflow-test.html": 0.1139,
    "conformance2/buffers/buffer-type-restrictions.html": 0.1227,
    "conformance2/buffers/delete-buffer.html": 0.1022,
    "conformance2/buffers/get-buffer-sub-data-validity.html": 0.7061,
    "conformance2/buffers/get-buffer-sub-data.html": 0.1121,
    "conformance2/buffers/one-large-uniform-buffer.html": 0.1039,
    "conformance2/buffers/uniform-buffers-second-compile.html": 0.1,
    "conformance2/buffers/uniform-buffers-state-restoration.html": 0.1872,
    "conformance2/buffers/uniform-buffers.html": 0.156,
    "conformance2/canvas/to-data-url-with-pack-params.html": 0.0853,
    "conformance2/context/constants-and-properties-2.html": 0.0854,
    "conformance2/context/context-attributes-depth-stencil-antialias-obeyed.html": 0.1672,
    "conformance2/context/context-mode.html": 0.091,
    "conformance2/context/context-resize-changes-buffer-binding-bug.html": 0.0878,
    "conformance2/context/context-sharing-texture2darray-texture3d-data-bug.html": 0.1753,
    "conformance2/context/context-type-test-2.html": 0.1077,
    "conformance2/context/incorrect-context-object-behaviour.html": 0.1918,
    "conformance2/context/methods-2.html": 0.0868,
    "conformance2/context/no-experimental-webgl2.html": 0.0738,
    "conformance2/extensions/ext-color-buffer-float.html": 0.3004,
    "conformance2/extensions/ext-color-buffer-half-float.html": 0.5614,
    "conformance2/extensions/ext-disjoint-timer-query-webgl2.html": 7.1727,
    "conformance2/extensions/ext-texture-filter-anisotropic.html": 0.1267,
    "conformance2/extensions/ext-texture-norm16.html": 0.1906,
    "conformance2/extensions/oes-draw-buffers-indexed.html": 0.8281,
    "conformance2/extensions/ovr_multiview2.html": 1.1805,
    "conformance2/extensions/ovr_multiview2_depth.html": 0.1525,
    "conformance2/extensions/ovr_multiview2_draw_buffers.html": 0.1783,
    "conformance2/extensions/ovr_multiview2_flat_varying.html": 0.1635,
    "conformance2/extensions/ovr_multiview2_instanced_draw.html": 0.1326,
    "conformance2/extensions/ovr_multiview2_non_multiview_shaders.html": 0.0933,
    "conformance2/extensions/ovr_multiview2_single_view_operations.html": 0.155,
    "conformance2/extensions/ovr_multiview2_timer_query.html": 0.1477,
    "conformance2/extensions/ovr_multiview2_transform_feedback.html": 0.13,
    "conformance2/extensions/promoted-extensions-in-shaders.html": 0.1733,
    "conformance2/extensions/promoted-extensions.html": 0.0718,
    "conformance2/extensions/required-extensions.html": 0.1164,
    "conformance2/extensions/webgl-clip-cull-distance.html": 0.1771,
    "conformance2/extensions/webgl-multi-draw-instanced-base-vertex-base-instance.html": 4.1143,
    "conformance2/extensions/webgl-provoking-vertex.html": 0.1167,
    "conformance2/extensions/webgl-shader-pixel-local-storage.html": 0.1579,
    "conformance2/glsl3/array-as-return-value.html": 0.1131,
    "conformance2/glsl3/array-assign-constructor.html": 0.1106,
    "conformance2/glsl3/array-assign.html": 0.1398,
    "conformance2/glsl3/array-complex-indexing.html": 0.1406,
    "conformance2/glsl3/array-element-increment.html": 0.1606,
    "conformance2/glsl3/array-equality.html": 0.1645,
    "conformance2/glsl3/array-in-complex-expression.html": 0.1521,
    "conformance2/glsl3/array-initialize-with-same-name-array.html": 0.1137,
    "conformance2/glsl3/array-length-side-effects.html": 0.1056,
    "conformance2/glsl3/attrib-location-length-limits.html": 0.1395,
    "conformance2/glsl3/bool-type-cast-bug-uint-ivec-uvec.html": 0.2271,
    "conformance2/glsl3/compare-structs-containing-arrays.html": 0.1006,
    "conformance2/glsl3/compound-assignment-type-combination.html": 1.3053,
    "conformance2/glsl3/const-array-init.html": 0.1234,
    "conformance2/glsl3/const-struct-from-array-as-function-parameter.html": 0.0919,
    "conformance2/glsl3/float-parsing.html": 0.1352,
    "conformance2/glsl3/forbidden-operators.html": 0.1126,
    "conformance2/glsl3/forward-declaration.html": 0.0887,
    "conformance2/glsl3/frag-depth.html": 0.1115,
    "conformance2/glsl3/fragment-shader-loop-crash.html": 0.1336,
    "conformance2/glsl3/gradient-in-discontinuous-loop.html": 0.1935,
    "conformance2/glsl3/input-with-interpotaion-as-lvalue.html": 0.1134,
    "conformance2/glsl3/invalid-default-precision.html": 0.0708,
    "conformance2/glsl3/invalid-invariant.html": 0.1344,
    "conformance2/glsl3/loops-with-side-effects.html": 0.2127,
    "conformance2/glsl3/matrix-row-major-dynamic-indexing.html": 0.1197,
    "conformance2/glsl3/matrix-row-major.html": 0.1248,
    "conformance2/glsl3/misplaced-version-directive.html": 0.1117,
    "conformance2/glsl3/no-attribute-vertex-shader.html": 0.1386,
    "conformance2/glsl3/precision-side-effects-bug.html": 0.1533,
    "conformance2/glsl3/reciprocal-sqrt-of-sum-of-squares-crash.html": 0.0999,
    "conformance2/glsl3/sampler-array-indexing.html": 0.0898,
    "conformance2/glsl3/sampler-no-precision.html": 0.0899,
    "conformance2/glsl3/sequence-operator-returns-non-constant.html": 0.1314,
    "conformance2/glsl3/shader-linking.html": 0.1975,
    "conformance2/glsl3/shader-with-1024-character-define.html": 0.1179,
    "conformance2/glsl3/shader-with-1024-character-identifier.frag.html": 0.1256,
    "conformance2/glsl3/shader-with-1025-character-define.html": 0.0954,
    "conformance2/glsl3/shader-with-1025-character-identifier.frag.html": 0.0752,
    "conformance2/glsl3/shader-with-invalid-characters.html": 0.1017,
    "conformance2/glsl3/shader-with-mis-matching-uniform-block.html": 0.0938,
    "conformance2/glsl3/short-circuiting-in-loop-condition.html": 0.1696,
    "conformance2/glsl3/switch-case.html": 0.8244,
    "conformance2/glsl3/texture-bias.html": 0.8316,
    "conformance2/glsl3/texture-offset-non-constant-offset.html": 0.0933,
    "conformance2/glsl3/texture-offset-out-of-range.html": 0.0987,
    "conformance2/glsl3/texture-offset-uniform-texture-coordinate.html": 0.1686,
    "conformance2/glsl3/tricky-loop-conditions.html": 1.1327,
    "conformance2/glsl3/uint-int-shift-bug.html": 0.1267,
    "conformance2/glsl3/unary-minus-operator-in-dynamic-loop.html": 0.2009,
    "conformance2/glsl3/uniform-block-layout-match.html": 0.0802,
    "conformance2/glsl3/uniform-block-layouts.html": 0.0976,
    "conformance2/glsl3/uniform-location-length-limits.html": 0.1562,
    "conformance2/glsl3/uniform-struct-with-non-square-matrix.html": 0.1277,
    "conformance2/glsl3/uninitialized-local-global-variables.html": 0.1396,
    "conformance2/glsl3/valid-invariant.html": 0.1133,
    "conformance2/glsl3/varying-struct-inline-definition.html": 0.1135,
    "conformance2/glsl3/vector-dynamic-indexing-nv-driver-bug.html": 0.1089,
    "conformance2/glsl3/vector-dynamic-indexing-swizzled-lvalue.html": 0.1125,
    "conformance2/glsl3/vector-dynamic-indexing.html": 0.2977,
    "conformance2/misc/blend-integer.html": 0.1038,
    "conformance2/misc/expando-loss-2.html": 0.1808,
    "conformance2/misc/getextension-while-pbo-bound-stability.html": 0.0861,
    "conformance2/misc/instanceof-test.html": 0.1025,
    "conformance2/misc/null-object-behaviour-2.html": 0.1127,
    "conformance2/misc/object-deletion-behaviour-2.html": 0.0832,
    "conformance2/misc/uninitialized-test-2.html": 10.0741,
    "conformance2/misc/views-with-offsets.html": 0.3956,
    "conformance2/offscreencanvas/context-creation-worker.html": 0.0929,
    "conformance2/offscreencanvas/context-creation.html": 0.1117,
    "conformance2/offscreencanvas/methods-2-worker.html": 0.1095,
    "conformance2/offscreencanvas/methods-2.html": 0.063,
    "conformance2/offscreencanvas/offscreencanvas-query.html": 0.1346,
    "conformance2/offscreencanvas/offscreencanvas-sync.html": 0.3728,
    "conformance2/offscreencanvas/offscreencanvas-timer-query.html": 0.1064,
    "conformance2/offscreencanvas/offscreencanvas-transfer-image-bitmap.html": 0.1599,
    "conformance2/programs/active-built-in-attribs.html": 0.1077,
    "conformance2/programs/get-uniform-indices.html": 0.0768,
    "conformance2/programs/gl-get-frag-data-location.html": 0.1367,
    "conformance2/programs/sampler-uniforms.html": 0.246,
    "conformance2/query/occlusion-query.html": 3.2,
    "conformance2/query/query.html": 0.1077,
    "conformance2/reading/format-r11f-g11f-b10f.html": 0.1923,
    "conformance2/reading/read-pixels-from-fbo-test.html": 0.2447,
    "conformance2/reading/read-pixels-from-rgb8-into-pbo-bug.html": 0.0738,
    "conformance2/reading/read-pixels-into-pixel-pack-buffer.html": 0.2251,
    "conformance2/reading/read-pixels-pack-parameters.html": 0.2197,
    "conformance2/renderbuffers/framebuffer-object-attachment.html": 0.1651,
    "conformance2/renderbuffers/framebuffer-test.html": 0.0944,
    "conformance2/renderbuffers/framebuffer-texture-layer.html": 0.0986,
    "conformance2/renderbuffers/invalidate-framebuffer.html": 0.6265,
    "conformance2/renderbuffers/multisample-draws-between-blits.html": 0.1214,
    "conformance2/renderbuffers/multisample-with-full-sample-counts.html": 0.1476,
    "conformance2/renderbuffers/multisampled-depth-renderbuffer-initialization.html": 0.2042,
    "conformance2/renderbuffers/multisampled-renderbuffer-initialization.html": 0.1789,
    "conformance2/renderbuffers/multisampled-stencil-renderbuffer-initialization.html": 0.2194,
    "conformance2/renderbuffers/readbuffer.html": 0.1131,
    "conformance2/rendering/attrib-type-match.html": 0.6619,
    "conformance2/rendering/blitframebuffer-filter-outofbounds.html": 0.1226,
    "conformance2/rendering/blitframebuffer-filter-srgb.html": 0.1586,
    "conformance2/rendering/blitframebuffer-multisampled-readbuffer.html": 0.0816,
    "conformance2/rendering/blitframebuffer-outside-readbuffer.html": 0.148,
    "conformance2/rendering/blitframebuffer-r11f-g11f-b10f.html": 0.1392,
    "conformance2/rendering/blitframebuffer-resolve-to-back-buffer.html": 0.2027,
    "conformance2/rendering/blitframebuffer-scissor-enabled.html": 0.1052,
    "conformance2/rendering/blitframebuffer-size-overflow.html": 0.0828,
    "conformance2/rendering/blitframebuffer-srgb-and-linear-drawbuffers.html": 0.1367,
    "conformance2/rendering/blitframebuffer-stencil-only.html": 0.125,
    "conformance2/rendering/blitframebuffer-test.html": 0.1614,
    "conformance2/rendering/blitframebuffer-unaffected-by-colormask.html": 0.1334,
    "conformance2/rendering/canvas-resizing-with-pbo-bound.html": 0.2629,
    "conformance2/rendering/clear-func-buffer-type-match.html": 0.1101,
    "conformance2/rendering/clear-srgb-color-buffer.html": 0.0976,
    "conformance2/rendering/clearbuffer-sub-source.html": 0.1367,
    "conformance2/rendering/clearbufferfv-with-alpha-false.html": 0.0864,
    "conformance2/rendering/clipping-wide-points.html": 0.1059,
    "conformance2/rendering/depth-stencil-feedback-loop.html": 0.1108,
    "conformance2/rendering/draw-buffers-dirty-state-bug.html": 0.1429,
    "conformance2/rendering/draw-buffers-driver-hang.html": 0.2965,
    "conformance2/rendering/draw-buffers-sparse-output-locations.html": 0.0988,
    "conformance2/rendering/draw-buffers.html": 0.3544,
    "conformance2/rendering/draw-with-integer-texture-base-level.html": 0.2759,
    "conformance2/rendering/element-index-uint.html": 0.2048,
    "conformance2/rendering/framebuffer-completeness-draw-framebuffer.html": 0.1138,
    "conformance2/rendering/framebuffer-completeness-unaffected.html": 0.1097,
    "conformance2/rendering/framebuffer-mismatched-attachment-targets.html": 0.6472,
    "conformance2/rendering/framebuffer-render-to-layer-angle-issue.html": 0.7366,
    "conformance2/rendering/framebuffer-render-to-layer.html": 0.6237,
    "conformance2/rendering/framebuffer-texture-changing-base-level.html": 0.0935,
    "conformance2/rendering/framebuffer-texture-level1.html": 0.0688,
    "conformance2/rendering/framebuffer-to-texture.html": 0.0976,
    "conformance2/rendering/framebuffer-unsupported.html": 0.1028,
    "conformance2/rendering/fs-color-type-mismatch-color-buffer-type.html": 0.1068,
    "conformance2/rendering/instanced-arrays.html": 0.1037,
    "conformance2/rendering/instanced-rendering-bug.html": 0.1865,
    "conformance2/rendering/instanced-rendering-large-divisor.html": 0.0898,
    "conformance2/rendering/line-rendering-quality.html": 0.1048,
    "conformance2/rendering/multisampling-depth-resolve.html": 0.1215,
    "conformance2/rendering/multisampling-fragment-evaluation.html": 0.0831,
    "conformance2/rendering/out-of-bounds-index-buffers-after-copying.html": 0.0957,
    "conformance2/rendering/rasterizer-discard-and-implicit-clear.html": 0.5622,
    "conformance2/rendering/read-draw-when-missing-image.html": 0.1382,
    "conformance2/rendering/rgb-format-support.html": 0.1279,
    "conformance2/rendering/texture-switch-performance.html": 0,
    "conformance2/rendering/uniform-block-buffer-size.html": 0.1625,
    "conformance2/rendering/vertex-id-large-count.html": 0.5151,
    "conformance2/rendering/vertex-id.html": 0.121,
    "conformance2/samplers/multi-context-sampler-test.html": 0.1153,
    "conformance2/samplers/sampler-drawing-test.html": 0.1526,
    "conformance2/samplers/samplers.html": 0.2093,
    "conformance2/state/gl-enum-tests.html": 0.1463,
    "conformance2/state/gl-get-calls.html": 0.1218,
    "conformance2/state/gl-getstring.html": 0.0788,
    "conformance2/state/gl-object-get-calls.html": 21.2972,
    "conformance2/sync/sync-webgl-specific.html": 12.4784,
    "conformance2/textures/canvas/tex-2d-r11f_g11f_b10f-rgb-float.html": 0.4604,
    "conformance2/textures/canvas/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 0.5191,
    "conformance2/textures/canvas/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.4154,
    "conformance2/textures/canvas/tex-2d-r16f-red-float.html": 0.4997,
    "conformance2/textures/canvas/tex-2d-r16f-red-half_float.html": 0.4231,
    "conformance2/textures/canvas/tex-2d-r32f-red-float.html": 0.4696,
    "conformance2/textures/canvas/tex-2d-r8-red-unsigned_byte.html": 0.4083,
    "conformance2/textures/canvas/tex-2d-r8ui-red_integer-unsigned_byte.html": 0.6462,
    "conformance2/textures/canvas/tex-2d-rg16f-rg-float.html": 0.3859,
    "conformance2/textures/canvas/tex-2d-rg16f-rg-half_float.html": 0.416,
    "conformance2/textures/canvas/tex-2d-rg32f-rg-float.html": 0.582,
    "conformance2/textures/canvas/tex-2d-rg8-rg-unsigned_byte.html": 0.5627,
    "conformance2/textures/canvas/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 0.5062,
    "conformance2/textures/canvas/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.4138,
    "conformance2/textures/canvas/tex-2d-rgb16f-rgb-float.html": 0.5301,
    "conformance2/textures/canvas/tex-2d-rgb16f-rgb-half_float.html": 0.524,
    "conformance2/textures/canvas/tex-2d-rgb32f-rgb-float.html": 0.5128,
    "conformance2/textures/canvas/tex-2d-rgb565-rgb-unsigned_byte.html": 0.4483,
    "conformance2/textures/canvas/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 0.5077,
    "conformance2/textures/canvas/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 0.516,
    "conformance2/textures/canvas/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.4705,
    "conformance2/textures/canvas/tex-2d-rgb8-rgb-unsigned_byte.html": 0.4871,
    "conformance2/textures/canvas/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 0.4862,
    "conformance2/textures/canvas/tex-2d-rgb9_e5-rgb-float.html": 1.1667,
    "conformance2/textures/canvas/tex-2d-rgb9_e5-rgb-half_float.html": 1.0683,
    "conformance2/textures/canvas/tex-2d-rgba16f-rgba-float.html": 0.5081,
    "conformance2/textures/canvas/tex-2d-rgba16f-rgba-half_float.html": 0.6221,
    "conformance2/textures/canvas/tex-2d-rgba32f-rgba-float.html": 0.3786,
    "conformance2/textures/canvas/tex-2d-rgba4-rgba-unsigned_byte.html": 0.5381,
    "conformance2/textures/canvas/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.4619,
    "conformance2/textures/canvas/tex-2d-rgba8-rgba-unsigned_byte.html": 0.3945,
    "conformance2/textures/canvas/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 0.5615,
    "conformance2/textures/canvas/tex-2d-srgb8-rgb-unsigned_byte.html": 0.489,
    "conformance2/textures/canvas/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 0.573,
    "conformance2/textures/canvas/tex-3d-r11f_g11f_b10f-rgb-float.html": 5.266,
    "conformance2/textures/canvas/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 5.2754,
    "conformance2/textures/canvas/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 5.2525,
    "conformance2/textures/canvas/tex-3d-r16f-red-float.html": 5.3137,
    "conformance2/textures/canvas/tex-3d-r16f-red-half_float.html": 5.2405,
    "conformance2/textures/canvas/tex-3d-r32f-red-float.html": 5.3005,
    "conformance2/textures/canvas/tex-3d-r8-red-unsigned_byte.html": 5.3406,
    "conformance2/textures/canvas/tex-3d-r8ui-red_integer-unsigned_byte.html": 5.282,
    "conformance2/textures/canvas/tex-3d-rg16f-rg-float.html": 5.2881,
    "conformance2/textures/canvas/tex-3d-rg16f-rg-half_float.html": 5.3283,
    "conformance2/textures/canvas/tex-3d-rg32f-rg-float.html": 5.2797,
    "conformance2/textures/canvas/tex-3d-rg8-rg-unsigned_byte.html": 5.2995,
    "conformance2/textures/canvas/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 5.2861,
    "conformance2/textures/canvas/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 5.3195,
    "conformance2/textures/canvas/tex-3d-rgb16f-rgb-float.html": 5.2697,
    "conformance2/textures/canvas/tex-3d-rgb16f-rgb-half_float.html": 5.279,
    "conformance2/textures/canvas/tex-3d-rgb32f-rgb-float.html": 5.2743,
    "conformance2/textures/canvas/tex-3d-rgb565-rgb-unsigned_byte.html": 5.3045,
    "conformance2/textures/canvas/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 5.354,
    "conformance2/textures/canvas/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 5.2918,
    "conformance2/textures/canvas/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 5.264,
    "conformance2/textures/canvas/tex-3d-rgb8-rgb-unsigned_byte.html": 5.2932,
    "conformance2/textures/canvas/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 5.3325,
    "conformance2/textures/canvas/tex-3d-rgb9_e5-rgb-float.html": 5.4659,
    "conformance2/textures/canvas/tex-3d-rgb9_e5-rgb-half_float.html": 5.2612,
    "conformance2/textures/canvas/tex-3d-rgba16f-rgba-float.html": 5.2799,
    "conformance2/textures/canvas/tex-3d-rgba16f-rgba-half_float.html": 5.2267,
    "conformance2/textures/canvas/tex-3d-rgba32f-rgba-float.html": 5.2405,
    "conformance2/textures/canvas/tex-3d-rgba4-rgba-unsigned_byte.html": 5.2931,
    "conformance2/textures/canvas/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 5.3152,
    "conformance2/textures/canvas/tex-3d-rgba8-rgba-unsigned_byte.html": 5.2628,
    "conformance2/textures/canvas/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 5.2986,
    "conformance2/textures/canvas/tex-3d-srgb8-rgb-unsigned_byte.html": 5.2375,
    "conformance2/textures/canvas/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 5.3159,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-r11f_g11f_b10f-rgb-float.html": 0.6019,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 0.5561,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.7207,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-r16f-red-float.html": 0.4748,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-r16f-red-half_float.html": 0.4922,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-r32f-red-float.html": 0.5419,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-r8-red-unsigned_byte.html": 0.7587,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-r8ui-red_integer-unsigned_byte.html": 1.0689,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rg16f-rg-float.html": 0.8188,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rg16f-rg-half_float.html": 0.6483,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rg32f-rg-float.html": 0.6534,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rg8-rg-unsigned_byte.html": 0.6505,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 0.776,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.5709,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb16f-rgb-float.html": 0.5718,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb16f-rgb-half_float.html": 0.7701,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb32f-rgb-float.html": 0.6476,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb565-rgb-unsigned_byte.html": 0.5626,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 0.6606,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 0.5838,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.6536,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb8-rgb-unsigned_byte.html": 0.7026,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 0.8839,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb9_e5-rgb-float.html": 1.4262,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb9_e5-rgb-half_float.html": 1.5,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgba16f-rgba-float.html": 0.6918,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgba16f-rgba-half_float.html": 0.7782,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgba32f-rgba-float.html": 0.6274,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgba4-rgba-unsigned_byte.html": 0.6836,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.6259,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgba8-rgba-unsigned_byte.html": 0.7248,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 0.6815,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-srgb8-rgb-unsigned_byte.html": 0.9119,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 1.1785,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-r11f_g11f_b10f-rgb-float.html": 1.117,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 1.0538,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 1.2465,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-r16f-red-float.html": 0.8854,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-r16f-red-half_float.html": 1.0867,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-r32f-red-float.html": 1.0037,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-r8-red-unsigned_byte.html": 0.8859,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-r8ui-red_integer-unsigned_byte.html": 1.0072,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rg16f-rg-float.html": 1.251,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rg16f-rg-half_float.html": 1.1469,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rg32f-rg-float.html": 1.2058,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rg8-rg-unsigned_byte.html": 0.9822,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 0.929,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.8235,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb16f-rgb-float.html": 1.2325,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb16f-rgb-half_float.html": 1.1055,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb32f-rgb-float.html": 1.1367,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb565-rgb-unsigned_byte.html": 1.2236,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 1.0265,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 1.1459,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.887,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb8-rgb-unsigned_byte.html": 1.1208,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 1.1613,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb9_e5-rgb-float.html": 1.5896,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb9_e5-rgb-half_float.html": 1.427,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgba16f-rgba-float.html": 1.1122,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgba16f-rgba-half_float.html": 1.0178,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgba32f-rgba-float.html": 1.3531,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgba4-rgba-unsigned_byte.html": 0.9374,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.8465,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgba8-rgba-unsigned_byte.html": 1.024,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 1.1476,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-srgb8-rgb-unsigned_byte.html": 0.9275,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 1.0967,
    "conformance2/textures/image/tex-2d-r11f_g11f_b10f-rgb-float.html": 0.3344,
    "conformance2/textures/image/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 0.2558,
    "conformance2/textures/image/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.227,
    "conformance2/textures/image/tex-2d-r16f-red-float.html": 0.2668,
    "conformance2/textures/image/tex-2d-r16f-red-half_float.html": 0.2573,
    "conformance2/textures/image/tex-2d-r32f-red-float.html": 0.2264,
    "conformance2/textures/image/tex-2d-r8-red-unsigned_byte.html": 0.2729,
    "conformance2/textures/image/tex-2d-r8ui-red_integer-unsigned_byte.html": 0.3423,
    "conformance2/textures/image/tex-2d-rg16f-rg-float.html": 0.406,
    "conformance2/textures/image/tex-2d-rg16f-rg-half_float.html": 0.2617,
    "conformance2/textures/image/tex-2d-rg32f-rg-float.html": 0.2329,
    "conformance2/textures/image/tex-2d-rg8-rg-unsigned_byte.html": 0.3961,
    "conformance2/textures/image/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 0.3235,
    "conformance2/textures/image/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.2774,
    "conformance2/textures/image/tex-2d-rgb16f-rgb-float.html": 0.2731,
    "conformance2/textures/image/tex-2d-rgb16f-rgb-half_float.html": 0.3772,
    "conformance2/textures/image/tex-2d-rgb32f-rgb-float.html": 0.3917,
    "conformance2/textures/image/tex-2d-rgb565-rgb-unsigned_byte.html": 0.4093,
    "conformance2/textures/image/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 0.2327,
    "conformance2/textures/image/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 0.2613,
    "conformance2/textures/image/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.303,
    "conformance2/textures/image/tex-2d-rgb8-rgb-unsigned_byte.html": 0.2814,
    "conformance2/textures/image/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 0.2829,
    "conformance2/textures/image/tex-2d-rgb9_e5-rgb-float.html": 0.2434,
    "conformance2/textures/image/tex-2d-rgb9_e5-rgb-half_float.html": 0.2889,
    "conformance2/textures/image/tex-2d-rgba16f-rgba-float.html": 0.2736,
    "conformance2/textures/image/tex-2d-rgba16f-rgba-half_float.html": 0.2824,
    "conformance2/textures/image/tex-2d-rgba32f-rgba-float.html": 0.2165,
    "conformance2/textures/image/tex-2d-rgba4-rgba-unsigned_byte.html": 0.3261,
    "conformance2/textures/image/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.2713,
    "conformance2/textures/image/tex-2d-rgba8-rgba-unsigned_byte.html": 0.2242,
    "conformance2/textures/image/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 0.3869,
    "conformance2/textures/image/tex-2d-srgb8-rgb-unsigned_byte.html": 0.3303,
    "conformance2/textures/image/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 0.2498,
    "conformance2/textures/image/tex-3d-r11f_g11f_b10f-rgb-float.html": 0.2103,
    "conformance2/textures/image/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 0.3094,
    "conformance2/textures/image/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.2026,
    "conformance2/textures/image/tex-3d-r16f-red-float.html": 0.2038,
    "conformance2/textures/image/tex-3d-r16f-red-half_float.html": 0.2619,
    "conformance2/textures/image/tex-3d-r32f-red-float.html": 0.216,
    "conformance2/textures/image/tex-3d-r8-red-unsigned_byte.html": 0.3436,
    "conformance2/textures/image/tex-3d-r8ui-red_integer-unsigned_byte.html": 0.3088,
    "conformance2/textures/image/tex-3d-rg16f-rg-float.html": 0.2818,
    "conformance2/textures/image/tex-3d-rg16f-rg-half_float.html": 0.3267,
    "conformance2/textures/image/tex-3d-rg32f-rg-float.html": 0.1938,
    "conformance2/textures/image/tex-3d-rg8-rg-unsigned_byte.html": 0.2442,
    "conformance2/textures/image/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 0.3212,
    "conformance2/textures/image/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.2021,
    "conformance2/textures/image/tex-3d-rgb16f-rgb-float.html": 0.2824,
    "conformance2/textures/image/tex-3d-rgb16f-rgb-half_float.html": 0.2946,
    "conformance2/textures/image/tex-3d-rgb32f-rgb-float.html": 0.2729,
    "conformance2/textures/image/tex-3d-rgb565-rgb-unsigned_byte.html": 0.2148,
    "conformance2/textures/image/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 0.2679,
    "conformance2/textures/image/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 0.1905,
    "conformance2/textures/image/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.2859,
    "conformance2/textures/image/tex-3d-rgb8-rgb-unsigned_byte.html": 0.2587,
    "conformance2/textures/image/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 0.2852,
    "conformance2/textures/image/tex-3d-rgb9_e5-rgb-float.html": 0.2958,
    "conformance2/textures/image/tex-3d-rgb9_e5-rgb-half_float.html": 0.3278,
    "conformance2/textures/image/tex-3d-rgba16f-rgba-float.html": 0.221,
    "conformance2/textures/image/tex-3d-rgba16f-rgba-half_float.html": 0.2428,
    "conformance2/textures/image/tex-3d-rgba32f-rgba-float.html": 0.233,
    "conformance2/textures/image/tex-3d-rgba4-rgba-unsigned_byte.html": 0.2322,
    "conformance2/textures/image/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.241,
    "conformance2/textures/image/tex-3d-rgba8-rgba-unsigned_byte.html": 0.2207,
    "conformance2/textures/image/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 0.2246,
    "conformance2/textures/image/tex-3d-srgb8-rgb-unsigned_byte.html": 0.2297,
    "conformance2/textures/image/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 0.2459,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-r11f_g11f_b10f-rgb-float.html": 0.5114,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 0.4144,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.371,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-r16f-red-float.html": 0.5961,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-r16f-red-half_float.html": 0.396,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-r32f-red-float.html": 0.4483,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-r8-red-unsigned_byte.html": 0.4381,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-r8ui-red_integer-unsigned_byte.html": 0.426,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rg16f-rg-float.html": 0.3805,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rg16f-rg-half_float.html": 0.4611,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rg32f-rg-float.html": 0.4418,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rg8-rg-unsigned_byte.html": 0.4328,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 0.4353,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.3402,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb16f-rgb-float.html": 0.4086,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb16f-rgb-half_float.html": 0.4938,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb32f-rgb-float.html": 0.4338,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb565-rgb-unsigned_byte.html": 0.4129,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 0.4385,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 0.4098,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.3724,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb8-rgb-unsigned_byte.html": 0.3862,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 0.3753,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb9_e5-rgb-float.html": 0.4853,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb9_e5-rgb-half_float.html": 0.6332,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgba16f-rgba-float.html": 0.3822,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgba16f-rgba-half_float.html": 0.3972,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgba32f-rgba-float.html": 0.4071,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgba4-rgba-unsigned_byte.html": 0.6923,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.4383,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgba8-rgba-unsigned_byte.html": 0.3564,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 0.4424,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-srgb8-rgb-unsigned_byte.html": 0.3698,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 0.4739,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-r11f_g11f_b10f-rgb-float.html": 0.1468,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 0.1707,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.1497,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-r16f-red-float.html": 0.1795,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-r16f-red-half_float.html": 0.185,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-r32f-red-float.html": 0.1392,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-r8-red-unsigned_byte.html": 0.2124,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-r8ui-red_integer-unsigned_byte.html": 0.2966,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rg16f-rg-float.html": 0.2249,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rg16f-rg-half_float.html": 0.2383,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rg32f-rg-float.html": 0.1961,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rg8-rg-unsigned_byte.html": 0.161,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 0.1935,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.1726,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb16f-rgb-float.html": 0.2316,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb16f-rgb-half_float.html": 0.2398,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb32f-rgb-float.html": 0.1974,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb565-rgb-unsigned_byte.html": 0.1646,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 0.1641,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 0.1217,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.1807,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb8-rgb-unsigned_byte.html": 0.1711,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 0.2023,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb9_e5-rgb-float.html": 0.2049,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb9_e5-rgb-half_float.html": 0.1313,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgba16f-rgba-float.html": 0.1594,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgba16f-rgba-half_float.html": 0.1605,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgba32f-rgba-float.html": 0.1474,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgba4-rgba-unsigned_byte.html": 0.1466,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.1904,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgba8-rgba-unsigned_byte.html": 0.1801,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 0.2275,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-srgb8-rgb-unsigned_byte.html": 0.1627,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 0.1457,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-r11f_g11f_b10f-rgb-float.html": 0.4638,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 0.5025,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.4711,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-r16f-red-float.html": 0.3617,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-r16f-red-half_float.html": 0.463,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-r32f-red-float.html": 0.4728,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-r8-red-unsigned_byte.html": 0.5598,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-r8ui-red_integer-unsigned_byte.html": 0.5708,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rg16f-rg-float.html": 0.4692,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rg16f-rg-half_float.html": 0.4736,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rg32f-rg-float.html": 0.4139,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rg8-rg-unsigned_byte.html": 0.4455,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 0.5215,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.4686,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb16f-rgb-float.html": 0.5754,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb16f-rgb-half_float.html": 0.4156,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb32f-rgb-float.html": 0.5144,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb565-rgb-unsigned_byte.html": 0.4956,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 0.6112,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 0.4313,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.4114,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb8-rgb-unsigned_byte.html": 0.4305,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 0.4164,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb9_e5-rgb-float.html": 0.8991,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb9_e5-rgb-half_float.html": 0.8482,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgba16f-rgba-float.html": 0.4242,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgba16f-rgba-half_float.html": 0.4349,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgba32f-rgba-float.html": 0.5076,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgba4-rgba-unsigned_byte.html": 0.3818,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.4719,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgba8-rgba-unsigned_byte.html": 0.413,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 0.494,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-srgb8-rgb-unsigned_byte.html": 0.6145,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 0.4535,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-r11f_g11f_b10f-rgb-float.html": 0.305,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 0.2561,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.4213,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-r16f-red-float.html": 0.2657,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-r16f-red-half_float.html": 0.2326,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-r32f-red-float.html": 0.3477,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-r8-red-unsigned_byte.html": 0.303,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-r8ui-red_integer-unsigned_byte.html": 0.3422,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rg16f-rg-float.html": 0.3627,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rg16f-rg-half_float.html": 0.3276,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rg32f-rg-float.html": 0.2673,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rg8-rg-unsigned_byte.html": 0.2516,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 0.3211,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.2953,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb16f-rgb-float.html": 0.3026,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb16f-rgb-half_float.html": 0.2294,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb32f-rgb-float.html": 0.4363,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb565-rgb-unsigned_byte.html": 0.3069,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 0.2822,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 0.2252,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.2289,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb8-rgb-unsigned_byte.html": 0.308,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 0.2851,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb9_e5-rgb-float.html": 0.3464,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb9_e5-rgb-half_float.html": 0.3696,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgba16f-rgba-float.html": 0.2408,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgba16f-rgba-half_float.html": 0.3865,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgba32f-rgba-float.html": 0.2825,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgba4-rgba-unsigned_byte.html": 0.3049,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.2477,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgba8-rgba-unsigned_byte.html": 0.2629,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 0.2924,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-srgb8-rgb-unsigned_byte.html": 0.2518,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 0.2947,
    "conformance2/textures/image_bitmap_from_image/tex-2d-r11f_g11f_b10f-rgb-float.html": 0.2169,
    "conformance2/textures/image_bitmap_from_image/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 0.2387,
    "conformance2/textures/image_bitmap_from_image/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.3371,
    "conformance2/textures/image_bitmap_from_image/tex-2d-r16f-red-float.html": 0.3115,
    "conformance2/textures/image_bitmap_from_image/tex-2d-r16f-red-half_float.html": 0.2234,
    "conformance2/textures/image_bitmap_from_image/tex-2d-r32f-red-float.html": 0.2399,
    "conformance2/textures/image_bitmap_from_image/tex-2d-r8-red-unsigned_byte.html": 0.2312,
    "conformance2/textures/image_bitmap_from_image/tex-2d-r8ui-red_integer-unsigned_byte.html": 0.3245,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rg16f-rg-float.html": 0.273,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rg16f-rg-half_float.html": 0.216,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rg32f-rg-float.html": 0.2467,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rg8-rg-unsigned_byte.html": 0.2214,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 0.235,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.2573,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb16f-rgb-float.html": 0.2259,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb16f-rgb-half_float.html": 0.208,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb32f-rgb-float.html": 0.2803,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb565-rgb-unsigned_byte.html": 0.2028,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 0.224,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 0.2744,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.2259,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb8-rgb-unsigned_byte.html": 0.2092,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 0.3008,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb9_e5-rgb-float.html": 0.2327,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb9_e5-rgb-half_float.html": 0.247,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgba16f-rgba-float.html": 0.2093,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgba16f-rgba-half_float.html": 0.3418,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgba32f-rgba-float.html": 0.2223,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgba4-rgba-unsigned_byte.html": 0.2467,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.2529,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgba8-rgba-unsigned_byte.html": 0.2006,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 0.2694,
    "conformance2/textures/image_bitmap_from_image/tex-2d-srgb8-rgb-unsigned_byte.html": 0.2243,
    "conformance2/textures/image_bitmap_from_image/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 0.2193,
    "conformance2/textures/image_bitmap_from_image/tex-3d-r11f_g11f_b10f-rgb-float.html": 0.1352,
    "conformance2/textures/image_bitmap_from_image/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 0.1257,
    "conformance2/textures/image_bitmap_from_image/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.172,
    "conformance2/textures/image_bitmap_from_image/tex-3d-r16f-red-float.html": 0.1416,
    "conformance2/textures/image_bitmap_from_image/tex-3d-r16f-red-half_float.html": 0.1615,
    "conformance2/textures/image_bitmap_from_image/tex-3d-r32f-red-float.html": 0.1676,
    "conformance2/textures/image_bitmap_from_image/tex-3d-r8-red-unsigned_byte.html": 0.16,
    "conformance2/textures/image_bitmap_from_image/tex-3d-r8ui-red_integer-unsigned_byte.html": 0.1938,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rg16f-rg-float.html": 0.1812,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rg16f-rg-half_float.html": 0.2146,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rg32f-rg-float.html": 0.1327,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rg8-rg-unsigned_byte.html": 0.16,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 0.2778,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.1574,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb16f-rgb-float.html": 0.1627,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb16f-rgb-half_float.html": 0.2613,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb32f-rgb-float.html": 0.1637,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb565-rgb-unsigned_byte.html": 0.1379,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 0.1253,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 0.1407,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.134,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb8-rgb-unsigned_byte.html": 0.1402,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 0.2075,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb9_e5-rgb-float.html": 0.2261,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb9_e5-rgb-half_float.html": 0.186,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgba16f-rgba-float.html": 0.1326,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgba16f-rgba-half_float.html": 0.1407,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgba32f-rgba-float.html": 0.1379,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgba4-rgba-unsigned_byte.html": 0.1575,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.1335,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgba8-rgba-unsigned_byte.html": 0.1579,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 0.1573,
    "conformance2/textures/image_bitmap_from_image/tex-3d-srgb8-rgb-unsigned_byte.html": 0.2033,
    "conformance2/textures/image_bitmap_from_image/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 0.1699,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-r11f_g11f_b10f-rgb-float.html": 0.1945,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 0.2231,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.2664,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-r16f-red-float.html": 0.2157,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-r16f-red-half_float.html": 0.2604,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-r32f-red-float.html": 0.1975,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-r8-red-unsigned_byte.html": 0.197,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-r8ui-red_integer-unsigned_byte.html": 0.2743,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rg16f-rg-float.html": 0.2582,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rg16f-rg-half_float.html": 0.2002,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rg32f-rg-float.html": 0.2495,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rg8-rg-unsigned_byte.html": 0.2118,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 0.2448,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.2231,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb16f-rgb-float.html": 0.2423,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb16f-rgb-half_float.html": 0.2316,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb32f-rgb-float.html": 0.2235,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb565-rgb-unsigned_byte.html": 0.3773,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 0.2262,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 0.2649,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.2339,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb8-rgb-unsigned_byte.html": 0.2139,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 0.3619,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb9_e5-rgb-float.html": 0.2642,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb9_e5-rgb-half_float.html": 0.3132,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgba16f-rgba-float.html": 0.2226,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgba16f-rgba-half_float.html": 0.2634,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgba32f-rgba-float.html": 0.2118,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgba4-rgba-unsigned_byte.html": 0.1966,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.3106,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgba8-rgba-unsigned_byte.html": 0.1977,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 0.2367,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-srgb8-rgb-unsigned_byte.html": 0.1979,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 0.2088,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-r11f_g11f_b10f-rgb-float.html": 0.1319,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 0.1503,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.1565,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-r16f-red-float.html": 0.1377,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-r16f-red-half_float.html": 0.1816,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-r32f-red-float.html": 0.1394,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-r8-red-unsigned_byte.html": 0.2088,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-r8ui-red_integer-unsigned_byte.html": 0.2026,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rg16f-rg-float.html": 0.1526,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rg16f-rg-half_float.html": 0.1413,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rg32f-rg-float.html": 0.1346,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rg8-rg-unsigned_byte.html": 0.1183,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 0.1387,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.1886,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb16f-rgb-float.html": 0.1395,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb16f-rgb-half_float.html": 0.1224,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb32f-rgb-float.html": 0.1489,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb565-rgb-unsigned_byte.html": 0.1472,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 0.1383,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 0.1346,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.1701,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb8-rgb-unsigned_byte.html": 0.216,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 0.1947,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb9_e5-rgb-float.html": 0.1155,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb9_e5-rgb-half_float.html": 0.1514,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgba16f-rgba-float.html": 0.2265,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgba16f-rgba-half_float.html": 0.154,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgba32f-rgba-float.html": 0.1417,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgba4-rgba-unsigned_byte.html": 0.1766,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.1528,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgba8-rgba-unsigned_byte.html": 0.1482,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 0.1784,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-srgb8-rgb-unsigned_byte.html": 0.1492,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 0.1206,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-r11f_g11f_b10f-rgb-float.html": 0.2027,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 0.2348,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.2273,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-r16f-red-float.html": 0.245,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-r16f-red-half_float.html": 0.2081,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-r32f-red-float.html": 0.2188,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-r8-red-unsigned_byte.html": 0.2285,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-r8ui-red_integer-unsigned_byte.html": 0.2425,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rg16f-rg-float.html": 0.2707,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rg16f-rg-half_float.html": 0.2282,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rg32f-rg-float.html": 0.2032,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rg8-rg-unsigned_byte.html": 0.2053,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 0.2512,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.2314,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb16f-rgb-float.html": 0.3073,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb16f-rgb-half_float.html": 0.1977,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb32f-rgb-float.html": 0.3103,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb565-rgb-unsigned_byte.html": 0.2526,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 0.2052,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 0.2225,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.2868,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb8-rgb-unsigned_byte.html": 0.2245,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 0.327,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb9_e5-rgb-float.html": 0.1984,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb9_e5-rgb-half_float.html": 0.1897,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgba16f-rgba-float.html": 0.2451,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgba16f-rgba-half_float.html": 0.2247,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgba32f-rgba-float.html": 0.2352,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgba4-rgba-unsigned_byte.html": 0.2085,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.1936,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgba8-rgba-unsigned_byte.html": 0.2239,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 0.2658,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-srgb8-rgb-unsigned_byte.html": 0.2105,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 0.1883,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-r11f_g11f_b10f-rgb-float.html": 0.1772,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 0.1839,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.1383,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-r16f-red-float.html": 0.1496,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-r16f-red-half_float.html": 0.1634,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-r32f-red-float.html": 0.1744,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-r8-red-unsigned_byte.html": 0.1613,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-r8ui-red_integer-unsigned_byte.html": 0.2306,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rg16f-rg-float.html": 0.1316,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rg16f-rg-half_float.html": 0.1269,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rg32f-rg-float.html": 0.1389,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rg8-rg-unsigned_byte.html": 0.1266,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 0.2173,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.1857,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb16f-rgb-float.html": 0.2015,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb16f-rgb-half_float.html": 0.1537,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb32f-rgb-float.html": 0.1501,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb565-rgb-unsigned_byte.html": 0.1517,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 0.1855,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 0.1639,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.1378,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb8-rgb-unsigned_byte.html": 0.1261,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 0.2215,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb9_e5-rgb-float.html": 0.118,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb9_e5-rgb-half_float.html": 0.1418,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgba16f-rgba-float.html": 0.1595,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgba16f-rgba-half_float.html": 0.1711,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgba32f-rgba-float.html": 0.1482,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgba4-rgba-unsigned_byte.html": 0.1572,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.1259,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgba8-rgba-unsigned_byte.html": 0.1494,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 0.1467,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-srgb8-rgb-unsigned_byte.html": 0.1467,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 0.1287,
    "conformance2/textures/image_bitmap_from_video/tex-2d-r11f_g11f_b10f-rgb-float.html": 0.6853,
    "conformance2/textures/image_bitmap_from_video/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 0.8258,
    "conformance2/textures/image_bitmap_from_video/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.6714,
    "conformance2/textures/image_bitmap_from_video/tex-2d-r16f-red-float.html": 0.7241,
    "conformance2/textures/image_bitmap_from_video/tex-2d-r16f-red-half_float.html": 0.7223,
    "conformance2/textures/image_bitmap_from_video/tex-2d-r32f-red-float.html": 0.688,
    "conformance2/textures/image_bitmap_from_video/tex-2d-r8-red-unsigned_byte.html": 0.6024,
    "conformance2/textures/image_bitmap_from_video/tex-2d-r8ui-red_integer-unsigned_byte.html": 0.5831,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rg16f-rg-float.html": 0.6426,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rg16f-rg-half_float.html": 0.831,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rg32f-rg-float.html": 0.5876,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rg8-rg-unsigned_byte.html": 0.6637,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 0.886,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.5609,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb16f-rgb-float.html": 0.5982,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb16f-rgb-half_float.html": 0.6928,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb32f-rgb-float.html": 0.7743,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb565-rgb-unsigned_byte.html": 0.7827,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 0.7542,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 0.6909,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.6911,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb8-rgb-unsigned_byte.html": 0.5733,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 0.7654,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb9_e5-rgb-float.html": 0.7498,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb9_e5-rgb-half_float.html": 0.8528,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgba16f-rgba-float.html": 0.8398,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgba16f-rgba-half_float.html": 0.6573,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgba32f-rgba-float.html": 0.6998,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgba4-rgba-unsigned_byte.html": 0.7964,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.6988,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgba8-rgba-unsigned_byte.html": 0.6387,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 0.782,
    "conformance2/textures/image_bitmap_from_video/tex-2d-srgb8-rgb-unsigned_byte.html": 0.6809,
    "conformance2/textures/image_bitmap_from_video/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 0.5836,
    "conformance2/textures/image_bitmap_from_video/tex-3d-r11f_g11f_b10f-rgb-float.html": 0.7322,
    "conformance2/textures/image_bitmap_from_video/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 0.6435,
    "conformance2/textures/image_bitmap_from_video/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.6897,
    "conformance2/textures/image_bitmap_from_video/tex-3d-r16f-red-float.html": 0.691,
    "conformance2/textures/image_bitmap_from_video/tex-3d-r16f-red-half_float.html": 0.8242,
    "conformance2/textures/image_bitmap_from_video/tex-3d-r32f-red-float.html": 0.6801,
    "conformance2/textures/image_bitmap_from_video/tex-3d-r8-red-unsigned_byte.html": 0.706,
    "conformance2/textures/image_bitmap_from_video/tex-3d-r8ui-red_integer-unsigned_byte.html": 0.7399,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rg16f-rg-float.html": 0.7845,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rg16f-rg-half_float.html": 0.6463,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rg32f-rg-float.html": 0.7562,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rg8-rg-unsigned_byte.html": 0.6046,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 0.7152,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.6743,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb16f-rgb-float.html": 0.7612,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb16f-rgb-half_float.html": 0.6537,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb32f-rgb-float.html": 0.6835,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb565-rgb-unsigned_byte.html": 0.6608,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 0.5693,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 0.5641,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.7052,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb8-rgb-unsigned_byte.html": 0.5849,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 0.7252,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb9_e5-rgb-float.html": 0.7508,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb9_e5-rgb-half_float.html": 0.7911,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgba16f-rgba-float.html": 0.5678,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgba16f-rgba-half_float.html": 0.7651,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgba32f-rgba-float.html": 0.5897,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgba4-rgba-unsigned_byte.html": 0.5314,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.6043,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgba8-rgba-unsigned_byte.html": 0.7276,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 0.8225,
    "conformance2/textures/image_bitmap_from_video/tex-3d-srgb8-rgb-unsigned_byte.html": 0.7091,
    "conformance2/textures/image_bitmap_from_video/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 0.7085,
    "conformance2/textures/image_data/tex-2d-r11f_g11f_b10f-rgb-float.html": 0.4922,
    "conformance2/textures/image_data/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 0.5039,
    "conformance2/textures/image_data/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.4141,
    "conformance2/textures/image_data/tex-2d-r16f-red-float.html": 0.4344,
    "conformance2/textures/image_data/tex-2d-r16f-red-half_float.html": 0.4018,
    "conformance2/textures/image_data/tex-2d-r32f-red-float.html": 0.3766,
    "conformance2/textures/image_data/tex-2d-r8-red-unsigned_byte.html": 0.5503,
    "conformance2/textures/image_data/tex-2d-r8ui-red_integer-unsigned_byte.html": 0.4347,
    "conformance2/textures/image_data/tex-2d-rg16f-rg-float.html": 0.4518,
    "conformance2/textures/image_data/tex-2d-rg16f-rg-half_float.html": 0.4239,
    "conformance2/textures/image_data/tex-2d-rg32f-rg-float.html": 0.4204,
    "conformance2/textures/image_data/tex-2d-rg8-rg-unsigned_byte.html": 0.405,
    "conformance2/textures/image_data/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 0.404,
    "conformance2/textures/image_data/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.3686,
    "conformance2/textures/image_data/tex-2d-rgb16f-rgb-float.html": 0.4436,
    "conformance2/textures/image_data/tex-2d-rgb16f-rgb-half_float.html": 0.437,
    "conformance2/textures/image_data/tex-2d-rgb32f-rgb-float.html": 0.4929,
    "conformance2/textures/image_data/tex-2d-rgb565-rgb-unsigned_byte.html": 0.4431,
    "conformance2/textures/image_data/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 0.414,
    "conformance2/textures/image_data/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 0.4258,
    "conformance2/textures/image_data/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.4613,
    "conformance2/textures/image_data/tex-2d-rgb8-rgb-unsigned_byte.html": 0.4244,
    "conformance2/textures/image_data/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 0.4737,
    "conformance2/textures/image_data/tex-2d-rgb9_e5-rgb-float.html": 0.4483,
    "conformance2/textures/image_data/tex-2d-rgb9_e5-rgb-half_float.html": 0.4031,
    "conformance2/textures/image_data/tex-2d-rgba16f-rgba-float.html": 0.4306,
    "conformance2/textures/image_data/tex-2d-rgba16f-rgba-half_float.html": 0.4143,
    "conformance2/textures/image_data/tex-2d-rgba32f-rgba-float.html": 0.3701,
    "conformance2/textures/image_data/tex-2d-rgba4-rgba-unsigned_byte.html": 0.4269,
    "conformance2/textures/image_data/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.4401,
    "conformance2/textures/image_data/tex-2d-rgba8-rgba-unsigned_byte.html": 0.4049,
    "conformance2/textures/image_data/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 0.4513,
    "conformance2/textures/image_data/tex-2d-srgb8-rgb-unsigned_byte.html": 0.4446,
    "conformance2/textures/image_data/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 0.462,
    "conformance2/textures/image_data/tex-3d-r11f_g11f_b10f-rgb-float.html": 0.3528,
    "conformance2/textures/image_data/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 0.428,
    "conformance2/textures/image_data/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.327,
    "conformance2/textures/image_data/tex-3d-r16f-red-float.html": 0.3642,
    "conformance2/textures/image_data/tex-3d-r16f-red-half_float.html": 0.3316,
    "conformance2/textures/image_data/tex-3d-r32f-red-float.html": 0.4171,
    "conformance2/textures/image_data/tex-3d-r8-red-unsigned_byte.html": 0.3927,
    "conformance2/textures/image_data/tex-3d-r8ui-red_integer-unsigned_byte.html": 0.4213,
    "conformance2/textures/image_data/tex-3d-rg16f-rg-float.html": 0.3377,
    "conformance2/textures/image_data/tex-3d-rg16f-rg-half_float.html": 0.3599,
    "conformance2/textures/image_data/tex-3d-rg32f-rg-float.html": 0.3183,
    "conformance2/textures/image_data/tex-3d-rg8-rg-unsigned_byte.html": 0.4348,
    "conformance2/textures/image_data/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 0.3579,
    "conformance2/textures/image_data/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.3992,
    "conformance2/textures/image_data/tex-3d-rgb16f-rgb-float.html": 0.3214,
    "conformance2/textures/image_data/tex-3d-rgb16f-rgb-half_float.html": 0.3524,
    "conformance2/textures/image_data/tex-3d-rgb32f-rgb-float.html": 0.3513,
    "conformance2/textures/image_data/tex-3d-rgb565-rgb-unsigned_byte.html": 0.3547,
    "conformance2/textures/image_data/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 0.3627,
    "conformance2/textures/image_data/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 0.3282,
    "conformance2/textures/image_data/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.4205,
    "conformance2/textures/image_data/tex-3d-rgb8-rgb-unsigned_byte.html": 0.3376,
    "conformance2/textures/image_data/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 0.3538,
    "conformance2/textures/image_data/tex-3d-rgb9_e5-rgb-float.html": 0.3852,
    "conformance2/textures/image_data/tex-3d-rgb9_e5-rgb-half_float.html": 0.3929,
    "conformance2/textures/image_data/tex-3d-rgba16f-rgba-float.html": 0.3765,
    "conformance2/textures/image_data/tex-3d-rgba16f-rgba-half_float.html": 0.4087,
    "conformance2/textures/image_data/tex-3d-rgba32f-rgba-float.html": 0.3451,
    "conformance2/textures/image_data/tex-3d-rgba4-rgba-unsigned_byte.html": 0.319,
    "conformance2/textures/image_data/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.3907,
    "conformance2/textures/image_data/tex-3d-rgba8-rgba-unsigned_byte.html": 0.3556,
    "conformance2/textures/image_data/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 0.3941,
    "conformance2/textures/image_data/tex-3d-srgb8-rgb-unsigned_byte.html": 0.3742,
    "conformance2/textures/image_data/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 0.2965,
    "conformance2/textures/misc/active-3d-texture-bug.html": 0.1165,
    "conformance2/textures/misc/angle-stuck-depth-textures.html": 0.1302,
    "conformance2/textures/misc/canvas-remains-unchanged-after-used-in-webgl-texture.html": 0.1017,
    "conformance2/textures/misc/compressed-tex-from-pbo-crash.html": 0.0805,
    "conformance2/textures/misc/compressed-tex-image.html": 0.1007,
    "conformance2/textures/misc/copy-texture-cube-map-AMD-bug.html": 0.1182,
    "conformance2/textures/misc/copy-texture-cube-map-bug.html": 0.1082,
    "conformance2/textures/misc/copy-texture-image-luma-format.html": 2.4771,
    "conformance2/textures/misc/copy-texture-image-same-texture.html": 0.1006,
    "conformance2/textures/misc/copy-texture-image-webgl-specific.html": 0.1682,
    "conformance2/textures/misc/copy-texture-image.html": 0.2188,
    "conformance2/textures/misc/generate-mipmap-with-large-base-level.html": 0.0908,
    "conformance2/textures/misc/gl-get-tex-parameter.html": 0.1569,
    "conformance2/textures/misc/immutable-tex-render-feedback.html": 0.796,
    "conformance2/textures/misc/integer-cubemap-specification-order-bug.html": 0.2463,
    "conformance2/textures/misc/integer-cubemap-texture-sampling.html": 1.1101,
    "conformance2/textures/misc/mipmap-fbo.html": 0.0748,
    "conformance2/textures/misc/npot-video-sizing.html": 0.1547,
    "conformance2/textures/misc/origin-clean-conformance-offscreencanvas.html": 0.1409,
    "conformance2/textures/misc/tex-3d-mipmap-levels-intel-bug.html": 0.7845,
    "conformance2/textures/misc/tex-3d-size-limit.html": 0.3235,
    "conformance2/textures/misc/tex-base-level-bug.html": 0.0854,
    "conformance2/textures/misc/tex-image-and-sub-image-with-array-buffer-view-sub-source.html": 0.292,
    "conformance2/textures/misc/tex-image-with-bad-args-from-dom-elements.html": 0.3969,
    "conformance2/textures/misc/tex-image-with-bad-args.html": 0.0908,
    "conformance2/textures/misc/tex-image-with-different-data-source.html": 0.1017,
    "conformance2/textures/misc/tex-input-validation.html": 0.138,
    "conformance2/textures/misc/tex-mipmap-levels.html": 0.5358,
    "conformance2/textures/misc/tex-new-formats.html": 0.3395,
    "conformance2/textures/misc/tex-srgb-mipmap.html": 0.1153,
    "conformance2/textures/misc/tex-storage-2d.html": 0.1859,
    "conformance2/textures/misc/tex-storage-and-subimage-3d.html": 0.3176,
    "conformance2/textures/misc/tex-storage-compressed-formats.html": 0.1197,
    "conformance2/textures/misc/tex-subimage3d-canvas-bug.html": 0.1035,
    "conformance2/textures/misc/tex-subimage3d-pixel-buffer-bug.html": 0.0798,
    "conformance2/textures/misc/tex-unpack-params-imagedata.html": 0.0738,
    "conformance2/textures/misc/tex-unpack-params-with-flip-y-and-premultiply-alpha.html": 0.2706,
    "conformance2/textures/misc/tex-unpack-params.html": 0.3814,
    "conformance2/textures/misc/texel-fetch-undefined.html": 0.1533,
    "conformance2/textures/misc/texture-npot.html": 0.1015,
    "conformance2/textures/svg_image/tex-2d-r11f_g11f_b10f-rgb-float.html": 0.131,
    "conformance2/textures/svg_image/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 0.1194,
    "conformance2/textures/svg_image/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.1691,
    "conformance2/textures/svg_image/tex-2d-r16f-red-float.html": 0.1756,
    "conformance2/textures/svg_image/tex-2d-r16f-red-half_float.html": 0.1245,
    "conformance2/textures/svg_image/tex-2d-r32f-red-float.html": 0.1356,
    "conformance2/textures/svg_image/tex-2d-r8-red-unsigned_byte.html": 0.1416,
    "conformance2/textures/svg_image/tex-2d-r8ui-red_integer-unsigned_byte.html": 0.1997,
    "conformance2/textures/svg_image/tex-2d-rg16f-rg-float.html": 0.1304,
    "conformance2/textures/svg_image/tex-2d-rg16f-rg-half_float.html": 0.1431,
    "conformance2/textures/svg_image/tex-2d-rg32f-rg-float.html": 0.1217,
    "conformance2/textures/svg_image/tex-2d-rg8-rg-unsigned_byte.html": 0.1396,
    "conformance2/textures/svg_image/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 0.2095,
    "conformance2/textures/svg_image/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.1057,
    "conformance2/textures/svg_image/tex-2d-rgb16f-rgb-float.html": 0.1407,
    "conformance2/textures/svg_image/tex-2d-rgb16f-rgb-half_float.html": 0.1272,
    "conformance2/textures/svg_image/tex-2d-rgb32f-rgb-float.html": 0.1619,
    "conformance2/textures/svg_image/tex-2d-rgb565-rgb-unsigned_byte.html": 0.1396,
    "conformance2/textures/svg_image/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 0.1657,
    "conformance2/textures/svg_image/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 0.1352,
    "conformance2/textures/svg_image/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.1214,
    "conformance2/textures/svg_image/tex-2d-rgb8-rgb-unsigned_byte.html": 0.1337,
    "conformance2/textures/svg_image/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 0.1942,
    "conformance2/textures/svg_image/tex-2d-rgb9_e5-rgb-float.html": 0.1557,
    "conformance2/textures/svg_image/tex-2d-rgb9_e5-rgb-half_float.html": 0.1895,
    "conformance2/textures/svg_image/tex-2d-rgba16f-rgba-float.html": 0.1137,
    "conformance2/textures/svg_image/tex-2d-rgba16f-rgba-half_float.html": 0.132,
    "conformance2/textures/svg_image/tex-2d-rgba32f-rgba-float.html": 0.1676,
    "conformance2/textures/svg_image/tex-2d-rgba4-rgba-unsigned_byte.html": 0.1358,
    "conformance2/textures/svg_image/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.1293,
    "conformance2/textures/svg_image/tex-2d-rgba8-rgba-unsigned_byte.html": 0.1322,
    "conformance2/textures/svg_image/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 0.1827,
    "conformance2/textures/svg_image/tex-2d-srgb8-rgb-unsigned_byte.html": 0.1213,
    "conformance2/textures/svg_image/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 0.1567,
    "conformance2/textures/svg_image/tex-3d-r11f_g11f_b10f-rgb-float.html": 0.0956,
    "conformance2/textures/svg_image/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 0.1945,
    "conformance2/textures/svg_image/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.0808,
    "conformance2/textures/svg_image/tex-3d-r16f-red-float.html": 0.1048,
    "conformance2/textures/svg_image/tex-3d-r16f-red-half_float.html": 0.1209,
    "conformance2/textures/svg_image/tex-3d-r32f-red-float.html": 0.1127,
    "conformance2/textures/svg_image/tex-3d-r8-red-unsigned_byte.html": 0.0937,
    "conformance2/textures/svg_image/tex-3d-r8ui-red_integer-unsigned_byte.html": 0.129,
    "conformance2/textures/svg_image/tex-3d-rg16f-rg-float.html": 0.0918,
    "conformance2/textures/svg_image/tex-3d-rg16f-rg-half_float.html": 0.1042,
    "conformance2/textures/svg_image/tex-3d-rg32f-rg-float.html": 0.1362,
    "conformance2/textures/svg_image/tex-3d-rg8-rg-unsigned_byte.html": 0.1072,
    "conformance2/textures/svg_image/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 0.1304,
    "conformance2/textures/svg_image/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.1034,
    "conformance2/textures/svg_image/tex-3d-rgb16f-rgb-float.html": 0.1174,
    "conformance2/textures/svg_image/tex-3d-rgb16f-rgb-half_float.html": 0.109,
    "conformance2/textures/svg_image/tex-3d-rgb32f-rgb-float.html": 0.0944,
    "conformance2/textures/svg_image/tex-3d-rgb565-rgb-unsigned_byte.html": 0.0963,
    "conformance2/textures/svg_image/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 0.1166,
    "conformance2/textures/svg_image/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 0.122,
    "conformance2/textures/svg_image/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.1057,
    "conformance2/textures/svg_image/tex-3d-rgb8-rgb-unsigned_byte.html": 0.0896,
    "conformance2/textures/svg_image/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 0.187,
    "conformance2/textures/svg_image/tex-3d-rgb9_e5-rgb-float.html": 0.1362,
    "conformance2/textures/svg_image/tex-3d-rgb9_e5-rgb-half_float.html": 0.1157,
    "conformance2/textures/svg_image/tex-3d-rgba16f-rgba-float.html": 0.105,
    "conformance2/textures/svg_image/tex-3d-rgba16f-rgba-half_float.html": 0.1433,
    "conformance2/textures/svg_image/tex-3d-rgba32f-rgba-float.html": 0.0843,
    "conformance2/textures/svg_image/tex-3d-rgba4-rgba-unsigned_byte.html": 0.0999,
    "conformance2/textures/svg_image/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.1134,
    "conformance2/textures/svg_image/tex-3d-rgba8-rgba-unsigned_byte.html": 0.1288,
    "conformance2/textures/svg_image/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 0.1473,
    "conformance2/textures/svg_image/tex-3d-srgb8-rgb-unsigned_byte.html": 0.122,
    "conformance2/textures/svg_image/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 0.1447,
    "conformance2/textures/video/tex-2d-r11f_g11f_b10f-rgb-float.html": 1.584,
    "conformance2/textures/video/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 1.2742,
    "conformance2/textures/video/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 1.5105,
    "conformance2/textures/video/tex-2d-r16f-red-float.html": 1.3475,
    "conformance2/textures/video/tex-2d-r16f-red-half_float.html": 1.3851,
    "conformance2/textures/video/tex-2d-r32f-red-float.html": 1.0684,
    "conformance2/textures/video/tex-2d-r8-red-unsigned_byte.html": 1.2664,
    "conformance2/textures/video/tex-2d-r8ui-red_integer-unsigned_byte.html": 1.4929,
    "conformance2/textures/video/tex-2d-rg16f-rg-float.html": 1.1343,
    "conformance2/textures/video/tex-2d-rg16f-rg-half_float.html": 1.2467,
    "conformance2/textures/video/tex-2d-rg32f-rg-float.html": 1.1623,
    "conformance2/textures/video/tex-2d-rg8-rg-unsigned_byte.html": 1.6342,
    "conformance2/textures/video/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 1.2793,
    "conformance2/textures/video/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 1.3817,
    "conformance2/textures/video/tex-2d-rgb16f-rgb-float.html": 1.2526,
    "conformance2/textures/video/tex-2d-rgb16f-rgb-half_float.html": 1.4266,
    "conformance2/textures/video/tex-2d-rgb32f-rgb-float.html": 1.3826,
    "conformance2/textures/video/tex-2d-rgb565-rgb-unsigned_byte.html": 1.6275,
    "conformance2/textures/video/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 1.3597,
    "conformance2/textures/video/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 1.2047,
    "conformance2/textures/video/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 1.0917,
    "conformance2/textures/video/tex-2d-rgb8-rgb-unsigned_byte.html": 1.5315,
    "conformance2/textures/video/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 1.3667,
    "conformance2/textures/video/tex-2d-rgb9_e5-rgb-float.html": 1.2528,
    "conformance2/textures/video/tex-2d-rgb9_e5-rgb-half_float.html": 1.0549,
    "conformance2/textures/video/tex-2d-rgba16f-rgba-float.html": 1.4228,
    "conformance2/textures/video/tex-2d-rgba16f-rgba-half_float.html": 1.1785,
    "conformance2/textures/video/tex-2d-rgba32f-rgba-float.html": 1.159,
    "conformance2/textures/video/tex-2d-rgba4-rgba-unsigned_byte.html": 1.5111,
    "conformance2/textures/video/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 1.092,
    "conformance2/textures/video/tex-2d-rgba8-rgba-unsigned_byte.html": 1.1469,
    "conformance2/textures/video/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 1.0759,
    "conformance2/textures/video/tex-2d-srgb8-rgb-unsigned_byte.html": 1.5615,
    "conformance2/textures/video/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 1.1911,
    "conformance2/textures/video/tex-3d-r11f_g11f_b10f-rgb-float.html": 1.3589,
    "conformance2/textures/video/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 1.1332,
    "conformance2/textures/video/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 1.2174,
    "conformance2/textures/video/tex-3d-r16f-red-float.html": 1.313,
    "conformance2/textures/video/tex-3d-r16f-red-half_float.html": 1.3753,
    "conformance2/textures/video/tex-3d-r32f-red-float.html": 1.1481,
    "conformance2/textures/video/tex-3d-r8-red-unsigned_byte.html": 1.17,
    "conformance2/textures/video/tex-3d-r8ui-red_integer-unsigned_byte.html": 1.2461,
    "conformance2/textures/video/tex-3d-rg16f-rg-float.html": 1.2563,
    "conformance2/textures/video/tex-3d-rg16f-rg-half_float.html": 1.2064,
    "conformance2/textures/video/tex-3d-rg32f-rg-float.html": 1.0258,
    "conformance2/textures/video/tex-3d-rg8-rg-unsigned_byte.html": 1.1892,
    "conformance2/textures/video/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 1.2729,
    "conformance2/textures/video/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 1.1092,
    "conformance2/textures/video/tex-3d-rgb16f-rgb-float.html": 1.0895,
    "conformance2/textures/video/tex-3d-rgb16f-rgb-half_float.html": 1.3756,
    "conformance2/textures/video/tex-3d-rgb32f-rgb-float.html": 1.2398,
    "conformance2/textures/video/tex-3d-rgb565-rgb-unsigned_byte.html": 1.0725,
    "conformance2/textures/video/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 1.0488,
    "conformance2/textures/video/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 1.0457,
    "conformance2/textures/video/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 1.0814,
    "conformance2/textures/video/tex-3d-rgb8-rgb-unsigned_byte.html": 1.3012,
    "conformance2/textures/video/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 1.1551,
    "conformance2/textures/video/tex-3d-rgb9_e5-rgb-float.html": 1.0938,
    "conformance2/textures/video/tex-3d-rgb9_e5-rgb-half_float.html": 1.147,
    "conformance2/textures/video/tex-3d-rgba16f-rgba-float.html": 1.0821,
    "conformance2/textures/video/tex-3d-rgba16f-rgba-half_float.html": 1.1214,
    "conformance2/textures/video/tex-3d-rgba32f-rgba-float.html": 1.2731,
    "conformance2/textures/video/tex-3d-rgba4-rgba-unsigned_byte.html": 1.1942,
    "conformance2/textures/video/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 1.0307,
    "conformance2/textures/video/tex-3d-rgba8-rgba-unsigned_byte.html": 0.9967,
    "conformance2/textures/video/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 1.1632,
    "conformance2/textures/video/tex-3d-srgb8-rgb-unsigned_byte.html": 1.1386,
    "conformance2/textures/video/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 1.2194,
    "conformance2/textures/webgl_canvas/tex-2d-r11f_g11f_b10f-rgb-float.html": 0.5294,
    "conformance2/textures/webgl_canvas/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 0.5385,
    "conformance2/textures/webgl_canvas/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.5532,
    "conformance2/textures/webgl_canvas/tex-2d-r16f-red-float.html": 0.6973,
    "conformance2/textures/webgl_canvas/tex-2d-r16f-red-half_float.html": 0.5271,
    "conformance2/textures/webgl_canvas/tex-2d-r32f-red-float.html": 0.5924,
    "conformance2/textures/webgl_canvas/tex-2d-r8-red-unsigned_byte.html": 0.4714,
    "conformance2/textures/webgl_canvas/tex-2d-r8ui-red_integer-unsigned_byte.html": 0.9522,
    "conformance2/textures/webgl_canvas/tex-2d-rg16f-rg-float.html": 0.6152,
    "conformance2/textures/webgl_canvas/tex-2d-rg16f-rg-half_float.html": 0.5265,
    "conformance2/textures/webgl_canvas/tex-2d-rg32f-rg-float.html": 0.5027,
    "conformance2/textures/webgl_canvas/tex-2d-rg8-rg-unsigned_byte.html": 0.6454,
    "conformance2/textures/webgl_canvas/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 0.7045,
    "conformance2/textures/webgl_canvas/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.5293,
    "conformance2/textures/webgl_canvas/tex-2d-rgb16f-rgb-float.html": 0.6442,
    "conformance2/textures/webgl_canvas/tex-2d-rgb16f-rgb-half_float.html": 0.6608,
    "conformance2/textures/webgl_canvas/tex-2d-rgb32f-rgb-float.html": 0.687,
    "conformance2/textures/webgl_canvas/tex-2d-rgb565-rgb-unsigned_byte.html": 0.5392,
    "conformance2/textures/webgl_canvas/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 0.5358,
    "conformance2/textures/webgl_canvas/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 0.5378,
    "conformance2/textures/webgl_canvas/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.618,
    "conformance2/textures/webgl_canvas/tex-2d-rgb8-rgb-unsigned_byte.html": 0.6504,
    "conformance2/textures/webgl_canvas/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 0.6053,
    "conformance2/textures/webgl_canvas/tex-2d-rgb9_e5-rgb-float.html": 1.0044,
    "conformance2/textures/webgl_canvas/tex-2d-rgb9_e5-rgb-half_float.html": 1.0016,
    "conformance2/textures/webgl_canvas/tex-2d-rgba16f-rgba-float.html": 0.5296,
    "conformance2/textures/webgl_canvas/tex-2d-rgba16f-rgba-half_float.html": 0.7329,
    "conformance2/textures/webgl_canvas/tex-2d-rgba32f-rgba-float.html": 0.5261,
    "conformance2/textures/webgl_canvas/tex-2d-rgba4-rgba-unsigned_byte.html": 0.5924,
    "conformance2/textures/webgl_canvas/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.6376,
    "conformance2/textures/webgl_canvas/tex-2d-rgba8-rgba-unsigned_byte.html": 0.6167,
    "conformance2/textures/webgl_canvas/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 0.5063,
    "conformance2/textures/webgl_canvas/tex-2d-srgb8-rgb-unsigned_byte.html": 0.6996,
    "conformance2/textures/webgl_canvas/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 0.7571,
    "conformance2/textures/webgl_canvas/tex-3d-r11f_g11f_b10f-rgb-float.html": 5.276,
    "conformance2/textures/webgl_canvas/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 5.3167,
    "conformance2/textures/webgl_canvas/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 5.2886,
    "conformance2/textures/webgl_canvas/tex-3d-r16f-red-float.html": 5.2697,
    "conformance2/textures/webgl_canvas/tex-3d-r16f-red-half_float.html": 5.319,
    "conformance2/textures/webgl_canvas/tex-3d-r32f-red-float.html": 5.322,
    "conformance2/textures/webgl_canvas/tex-3d-r8-red-unsigned_byte.html": 5.3217,
    "conformance2/textures/webgl_canvas/tex-3d-r8ui-red_integer-unsigned_byte.html": 5.3341,
    "conformance2/textures/webgl_canvas/tex-3d-rg16f-rg-float.html": 5.2838,
    "conformance2/textures/webgl_canvas/tex-3d-rg16f-rg-half_float.html": 5.3031,
    "conformance2/textures/webgl_canvas/tex-3d-rg32f-rg-float.html": 5.2463,
    "conformance2/textures/webgl_canvas/tex-3d-rg8-rg-unsigned_byte.html": 5.2707,
    "conformance2/textures/webgl_canvas/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 5.3493,
    "conformance2/textures/webgl_canvas/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 5.2933,
    "conformance2/textures/webgl_canvas/tex-3d-rgb16f-rgb-float.html": 5.2532,
    "conformance2/textures/webgl_canvas/tex-3d-rgb16f-rgb-half_float.html": 5.2802,
    "conformance2/textures/webgl_canvas/tex-3d-rgb32f-rgb-float.html": 5.2811,
    "conformance2/textures/webgl_canvas/tex-3d-rgb565-rgb-unsigned_byte.html": 5.2397,
    "conformance2/textures/webgl_canvas/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 5.2862,
    "conformance2/textures/webgl_canvas/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 5.3494,
    "conformance2/textures/webgl_canvas/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 5.308,
    "conformance2/textures/webgl_canvas/tex-3d-rgb8-rgb-unsigned_byte.html": 5.3506,
    "conformance2/textures/webgl_canvas/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 5.305,
    "conformance2/textures/webgl_canvas/tex-3d-rgb9_e5-rgb-float.html": 5.2858,
    "conformance2/textures/webgl_canvas/tex-3d-rgb9_e5-rgb-half_float.html": 5.2816,
    "conformance2/textures/webgl_canvas/tex-3d-rgba16f-rgba-float.html": 5.2945,
    "conformance2/textures/webgl_canvas/tex-3d-rgba16f-rgba-half_float.html": 5.2978,
    "conformance2/textures/webgl_canvas/tex-3d-rgba32f-rgba-float.html": 5.3044,
    "conformance2/textures/webgl_canvas/tex-3d-rgba4-rgba-unsigned_byte.html": 5.3059,
    "conformance2/textures/webgl_canvas/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 5.3155,
    "conformance2/textures/webgl_canvas/tex-3d-rgba8-rgba-unsigned_byte.html": 5.2564,
    "conformance2/textures/webgl_canvas/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 5.3563,
    "conformance2/textures/webgl_canvas/tex-3d-srgb8-rgb-unsigned_byte.html": 5.2994,
    "conformance2/textures/webgl_canvas/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 5.2359,
    "conformance2/transform_feedback/default_transform_feedback.html": 0.0963,
    "conformance2/transform_feedback/non-existent-varying.html": 0.1599,
    "conformance2/transform_feedback/same-buffer-two-binding-points.html": 0.123,
    "conformance2/transform_feedback/simultaneous_binding.html": 0.7999,
    "conformance2/transform_feedback/switching-objects.html": 0.1392,
    "conformance2/transform_feedback/too-small-buffers.html": 0.1815,
    "conformance2/transform_feedback/transform_feedback.html": 1.3275,
    "conformance2/transform_feedback/two-unreferenced-varyings.html": 0.1169,
    "conformance2/transform_feedback/unwritten-output-defaults-to-zero.html": 0.0803,
    "conformance2/uniforms/dependent-buffer-change.html": 0.1087,
    "conformance2/uniforms/draw-with-uniform-blocks.html": 0.1159,
    "conformance2/uniforms/gl-uniform-arrays-sub-source.html": 0.4715,
    "conformance2/uniforms/incompatible-texture-type-for-sampler.html": 1.2972,
    "conformance2/uniforms/large-uniform-buffers.html": 0.1246,
    "conformance2/uniforms/query-uniform-blocks-after-shader-detach.html": 0.1176,
    "conformance2/uniforms/simple-buffer-change.html": 0.1243,
    "conformance2/uniforms/uniform-blocks-with-arrays.html": 0.1198,
    "conformance2/vertex_arrays/vertex-array-object-and-disabled-attributes.html": 0.1167,
    "conformance2/vertex_arrays/vertex-array-object.html": 0.1885,
    "deqp/data/gles3/shaders/arrays.html": 2.8893,
    "deqp/data/gles3/shaders/conditionals.html": 0.8252,
    "deqp/data/gles3/shaders/constant_expressions.html": 0.8493,
    "deqp/data/gles3/shaders/constants.html": 2.245,
    "deqp/data/gles3/shaders/conversions_matrix_combine.html": 10.1999,
    "deqp/data/gles3/shaders/conversions_matrix_to_matrix.html": 5.2754,
    "deqp/data/gles3/shaders/conversions_scalar_to_matrix.html": 3.699,
    "deqp/data/gles3/shaders/conversions_scalar_to_scalar.html": 1.6356,
    "deqp/data/gles3/shaders/conversions_scalar_to_vector.html": 4.0351,
    "deqp/data/gles3/shaders/conversions_vector_combine.html": 16.6773,
    "deqp/data/gles3/shaders/conversions_vector_illegal.html": 0.8563,
    "deqp/data/gles3/shaders/conversions_vector_to_scalar.html": 3.5561,
    "deqp/data/gles3/shaders/conversions_vector_to_vector.html": 7.754,
    "deqp/data/gles3/shaders/declarations.html": 0.6255,
    "deqp/data/gles3/shaders/fragdata.html": 0.1611,
    "deqp/data/gles3/shaders/functions.html": 6.7189,
    "deqp/data/gles3/shaders/invalid_texture_functions.html": 1.2003,
    "deqp/data/gles3/shaders/keywords.html": 3.3448,
    "deqp/data/gles3/shaders/linkage.html": 3.0398,
    "deqp/data/gles3/shaders/negative.html": 0.1913,
    "deqp/data/gles3/shaders/preprocessor.html": 8.1222,
    "deqp/data/gles3/shaders/qualification_order.html": 1.0552,
    "deqp/data/gles3/shaders/scoping.html": 1.2803,
    "deqp/data/gles3/shaders/switch.html": 0.5972,
    "deqp/data/gles3/shaders/swizzles_bvec2.html": 1.6067,
    "deqp/data/gles3/shaders/swizzles_bvec3.html": 2.6475,
    "deqp/data/gles3/shaders/swizzles_bvec4.html": 3.397,
    "deqp/data/gles3/shaders/swizzles_ivec2.html": 1.6299,
    "deqp/data/gles3/shaders/swizzles_ivec3.html": 2.672,
    "deqp/data/gles3/shaders/swizzles_ivec4.html": 3.797,
    "deqp/data/gles3/shaders/swizzles_vec2.html": 1.4222,
    "deqp/data/gles3/shaders/swizzles_vec3.html": 3.0595,
    "deqp/data/gles3/shaders/swizzles_vec4.html": 3.912,
    "deqp/framework/opengl/simplereference/referencecontext.html": 0.9992,
    "deqp/functional/gles3/attriblocation.html": 5.7556,
    "deqp/functional/gles3/booleanstatequery.html": 0.2613,
    "deqp/functional/gles3/buffercopy.html": 3.4115,
    "deqp/functional/gles3/bufferobjectquery.html": 0.1772,
    "deqp/functional/gles3/clipping.html": 5.1623,
    "deqp/functional/gles3/defaultvertexattribute.html": 4.4373,
    "deqp/functional/gles3/draw/draw_arrays.html": 13.9896,
    "deqp/functional/gles3/draw/draw_arrays_instanced.html": 17.2097,
    "deqp/functional/gles3/draw/draw_elements.html": 11.2418,
    "deqp/functional/gles3/draw/draw_elements_instanced.html": 14.1244,
    "deqp/functional/gles3/draw/draw_range_elements.html": 6.0386,
    "deqp/functional/gles3/draw/instancing.html": 0.5399,
    "deqp/functional/gles3/draw/random.html": 10.3247,
    "deqp/functional/gles3/fbocolorbuffer/blend.html": 4.9001,
    "deqp/functional/gles3/fbocolorbuffer/clear.html": 1.8299,
    "deqp/functional/gles3/fbocolorbuffer/tex2d_00.html": 6.9067,
    "deqp/functional/gles3/fbocolorbuffer/tex2d_01.html": 5.7274,
    "deqp/functional/gles3/fbocolorbuffer/tex2d_02.html": 6.2793,
    "deqp/functional/gles3/fbocolorbuffer/tex2d_03.html": 6.0873,
    "deqp/functional/gles3/fbocolorbuffer/tex2d_04.html": 6.11,
    "deqp/functional/gles3/fbocolorbuffer/tex2d_05.html": 4.7587,
    "deqp/functional/gles3/fbocolorbuffer/tex2darray_00.html": 6.9104,
    "deqp/functional/gles3/fbocolorbuffer/tex2darray_01.html": 6.242,
    "deqp/functional/gles3/fbocolorbuffer/tex2darray_02.html": 7.4002,
    "deqp/functional/gles3/fbocolorbuffer/tex2darray_03.html": 6.1939,
    "deqp/functional/gles3/fbocolorbuffer/tex2darray_04.html": 7.0536,
    "deqp/functional/gles3/fbocolorbuffer/tex2darray_05.html": 6.5289,
    "deqp/functional/gles3/fbocolorbuffer/tex3d_00.html": 7.0216,
    "deqp/functional/gles3/fbocolorbuffer/tex3d_01.html": 7.0674,
    "deqp/functional/gles3/fbocolorbuffer/tex3d_02.html": 6.0439,
    "deqp/functional/gles3/fbocolorbuffer/tex3d_03.html": 7.3469,
    "deqp/functional/gles3/fbocolorbuffer/tex3d_04.html": 6.6482,
    "deqp/functional/gles3/fbocolorbuffer/tex3d_05.html": 5.7472,
    "deqp/functional/gles3/fbocolorbuffer/texcube_00.html": 8.6054,
    "deqp/functional/gles3/fbocolorbuffer/texcube_01.html": 7.3867,
    "deqp/functional/gles3/fbocolorbuffer/texcube_02.html": 7.9835,
    "deqp/functional/gles3/fbocolorbuffer/texcube_03.html": 6.5528,
    "deqp/functional/gles3/fbocolorbuffer/texcube_04.html": 8.0231,
    "deqp/functional/gles3/fbocolorbuffer/texcube_05.html": 6.5305,
    "deqp/functional/gles3/fbocompleteness.html": 2.6018,
    "deqp/functional/gles3/fbodepthbuffer.html": 4.2794,
    "deqp/functional/gles3/fboinvalidate/default.html": 11.9771,
    "deqp/functional/gles3/fboinvalidate/format_00.html": 4.9167,
    "deqp/functional/gles3/fboinvalidate/format_01.html": 4.8086,
    "deqp/functional/gles3/fboinvalidate/format_02.html": 4.5583,
    "deqp/functional/gles3/fboinvalidate/sub.html": 7.5086,
    "deqp/functional/gles3/fboinvalidate/target.html": 12.636,
    "deqp/functional/gles3/fboinvalidate/whole.html": 8.7752,
    "deqp/functional/gles3/fbomultisample.2_samples.html": 12.7247,
    "deqp/functional/gles3/fbomultisample.4_samples.html": 13.6086,
    "deqp/functional/gles3/fbomultisample.8_samples.html": 12.5169,
    "deqp/functional/gles3/fborender/recreate_color_00.html": 4.9923,
    "deqp/functional/gles3/fborender/recreate_color_01.html": 5.1026,
    "deqp/functional/gles3/fborender/recreate_color_02.html": 4.9867,
    "deqp/functional/gles3/fborender/recreate_color_03.html": 5.5033,
    "deqp/functional/gles3/fborender/recreate_color_04.html": 5.1074,
    "deqp/functional/gles3/fborender/recreate_color_05.html": 4.5597,
    "deqp/functional/gles3/fborender/recreate_color_06.html": 4.8138,
    "deqp/functional/gles3/fborender/recreate_depth_stencil.html": 5.7737,
    "deqp/functional/gles3/fborender/resize_00.html": 5.0919,
    "deqp/functional/gles3/fborender/resize_01.html": 5.1574,
    "deqp/functional/gles3/fborender/resize_02.html": 4.7755,
    "deqp/functional/gles3/fborender/resize_03.html": 8.6671,
    "deqp/functional/gles3/fborender/shared_colorbuffer_00.html": 7.5778,
    "deqp/functional/gles3/fborender/shared_colorbuffer_01.html": 7.6635,
    "deqp/functional/gles3/fborender/shared_colorbuffer_02.html": 8.239,
    "deqp/functional/gles3/fborender/shared_colorbuffer_clear.html": 2.2656,
    "deqp/functional/gles3/fborender/shared_depth_stencil.html": 5.6587,
    "deqp/functional/gles3/fborender/stencil_clear.html": 2.0775,
    "deqp/functional/gles3/fbostatequery.html": 0.1958,
    "deqp/functional/gles3/fbostencilbuffer.html": 4.1653,
    "deqp/functional/gles3/floatstatequery.html": 0.3044,
    "deqp/functional/gles3/fragdepth.html": 1.8067,
    "deqp/functional/gles3/fragmentoutput/array.fixed.html": 3.3579,
    "deqp/functional/gles3/fragmentoutput/array.float.html": 7.103,
    "deqp/functional/gles3/fragmentoutput/array.int.html": 6.6065,
    "deqp/functional/gles3/fragmentoutput/array.uint.html": 6.8519,
    "deqp/functional/gles3/fragmentoutput/basic.fixed.html": 2.1081,
    "deqp/functional/gles3/fragmentoutput/basic.float.html": 3.2473,
    "deqp/functional/gles3/fragmentoutput/basic.int.html": 3.6578,
    "deqp/functional/gles3/fragmentoutput/basic.uint.html": 3.8642,
    "deqp/functional/gles3/fragmentoutput/random_00.html": 3.5838,
    "deqp/functional/gles3/fragmentoutput/random_01.html": 3.4317,
    "deqp/functional/gles3/fragmentoutput/random_02.html": 3.6602,
    "deqp/functional/gles3/framebufferblit/conversion_00.html": 2.9624,
    "deqp/functional/gles3/framebufferblit/conversion_01.html": 3.2574,
    "deqp/functional/gles3/framebufferblit/conversion_02.html": 3.0865,
    "deqp/functional/gles3/framebufferblit/conversion_03.html": 3.2938,
    "deqp/functional/gles3/framebufferblit/conversion_04.html": 3.7473,
    "deqp/functional/gles3/framebufferblit/conversion_05.html": 2.9445,
    "deqp/functional/gles3/framebufferblit/conversion_06.html": 3.2497,
    "deqp/functional/gles3/framebufferblit/conversion_07.html": 4.2441,
    "deqp/functional/gles3/framebufferblit/conversion_08.html": 4.1802,
    "deqp/functional/gles3/framebufferblit/conversion_09.html": 2.6318,
    "deqp/functional/gles3/framebufferblit/conversion_10.html": 4.2464,
    "deqp/functional/gles3/framebufferblit/conversion_11.html": 3.8944,
    "deqp/functional/gles3/framebufferblit/conversion_12.html": 3.8644,
    "deqp/functional/gles3/framebufferblit/conversion_13.html": 3.8574,
    "deqp/functional/gles3/framebufferblit/conversion_14.html": 2.6878,
    "deqp/functional/gles3/framebufferblit/conversion_15.html": 2.9519,
    "deqp/functional/gles3/framebufferblit/conversion_16.html": 2.709,
    "deqp/functional/gles3/framebufferblit/conversion_17.html": 3.2174,
    "deqp/functional/gles3/framebufferblit/conversion_18.html": 4.2234,
    "deqp/functional/gles3/framebufferblit/conversion_19.html": 2.3616,
    "deqp/functional/gles3/framebufferblit/conversion_20.html": 3.2665,
    "deqp/functional/gles3/framebufferblit/conversion_21.html": 2.898,
    "deqp/functional/gles3/framebufferblit/conversion_22.html": 3.0491,
    "deqp/functional/gles3/framebufferblit/conversion_23.html": 2.4699,
    "deqp/functional/gles3/framebufferblit/conversion_24.html": 2.8191,
    "deqp/functional/gles3/framebufferblit/conversion_25.html": 4.4953,
    "deqp/functional/gles3/framebufferblit/conversion_26.html": 2.8578,
    "deqp/functional/gles3/framebufferblit/conversion_27.html": 2.6444,
    "deqp/functional/gles3/framebufferblit/conversion_28.html": 4.6304,
    "deqp/functional/gles3/framebufferblit/conversion_29.html": 4.5583,
    "deqp/functional/gles3/framebufferblit/conversion_30.html": 4.0929,
    "deqp/functional/gles3/framebufferblit/conversion_31.html": 4.5815,
    "deqp/functional/gles3/framebufferblit/conversion_32.html": 4.3736,
    "deqp/functional/gles3/framebufferblit/conversion_33.html": 4.2165,
    "deqp/functional/gles3/framebufferblit/conversion_34.html": 4.611,
    "deqp/functional/gles3/framebufferblit/default_framebuffer_00.html": 4.6281,
    "deqp/functional/gles3/framebufferblit/default_framebuffer_01.html": 4.8315,
    "deqp/functional/gles3/framebufferblit/default_framebuffer_02.html": 3.7144,
    "deqp/functional/gles3/framebufferblit/default_framebuffer_03.html": 5.1736,
    "deqp/functional/gles3/framebufferblit/default_framebuffer_04.html": 11.2509,
    "deqp/functional/gles3/framebufferblit/default_framebuffer_05.html": 4.5288,
    "deqp/functional/gles3/framebufferblit/default_framebuffer_06.html": 4.979,
    "deqp/functional/gles3/framebufferblit/depth_stencil.html": 7.4401,
    "deqp/functional/gles3/framebufferblit/rect_00.html": 3.9677,
    "deqp/functional/gles3/framebufferblit/rect_01.html": 3.8501,
    "deqp/functional/gles3/framebufferblit/rect_02.html": 2.4871,
    "deqp/functional/gles3/framebufferblit/rect_03.html": 1.0039,
    "deqp/functional/gles3/framebufferblit/rect_04.html": 1.3515,
    "deqp/functional/gles3/framebufferblit/rect_05.html": 0.2265,
    "deqp/functional/gles3/framebufferblit/rect_06.html": 0.2131,
    "deqp/functional/gles3/indexedstatequery.html": 0.2257,
    "deqp/functional/gles3/instancedrendering.html": 5.5843,
    "deqp/functional/gles3/integerstatequery.html": 1.0564,
    "deqp/functional/gles3/internalformatquery.html": 0.317,
    "deqp/functional/gles3/lifetime.html": 0.5358,
    "deqp/functional/gles3/multisample/default_fbo.html": 0.2813,
    "deqp/functional/gles3/multisample/fbo_4_samples.html": 6.9175,
    "deqp/functional/gles3/multisample/fbo_8_samples.html": 11.5242,
    "deqp/functional/gles3/multisample/fbo_max_samples.html": 12.4723,
    "deqp/functional/gles3/negativebufferapi.html": 0.2948,
    "deqp/functional/gles3/negativefragmentapi.html": 0.2302,
    "deqp/functional/gles3/negativeshaderapi.html": 0.5332,
    "deqp/functional/gles3/negativestateapi.html": 0.3908,
    "deqp/functional/gles3/negativetextureapi.html": 0.8231,
    "deqp/functional/gles3/negativevertexarrayapi.html": 0.418,
    "deqp/functional/gles3/occlusionquery_conservative.html": 11.2547,
    "deqp/functional/gles3/occlusionquery_strict.html": 10.2616,
    "deqp/functional/gles3/pixelbufferobject.html": 2.2714,
    "deqp/functional/gles3/primitiverestart/00.html": 1.9563,
    "deqp/functional/gles3/primitiverestart/01.html": 2.1327,
    "deqp/functional/gles3/primitiverestart/02.html": 2.2446,
    "deqp/functional/gles3/primitiverestart/03.html": 2.1874,
    "deqp/functional/gles3/primitiverestart/04.html": 2.4085,
    "deqp/functional/gles3/primitiverestart/05.html": 2.0096,
    "deqp/functional/gles3/primitiverestart/06.html": 2.2136,
    "deqp/functional/gles3/primitiverestart/07.html": 2.3978,
    "deqp/functional/gles3/rasterizerdiscard.html": 2.6271,
    "deqp/functional/gles3/rbostatequery.html": 0.1925,
    "deqp/functional/gles3/readpixel.html": 0.9052,
    "deqp/functional/gles3/samplerobject.html": 1.9495,
    "deqp/functional/gles3/samplerstatequery.html": 0.1961,
    "deqp/functional/gles3/shaderapi.html": 0.3459,
    "deqp/functional/gles3/shaderbuiltinvar.html": 1.8155,
    "deqp/functional/gles3/shadercommonfunction.html": 9.3596,
    "deqp/functional/gles3/shaderderivate_dfdx.html": 5.5908,
    "deqp/functional/gles3/shaderderivate_dfdy.html": 5.3452,
    "deqp/functional/gles3/shaderderivate_fwidth.html": 5.7514,
    "deqp/functional/gles3/shaderindexing/mat_00.html": 9.0096,
    "deqp/functional/gles3/shaderindexing/mat_01.html": 9.059,
    "deqp/functional/gles3/shaderindexing/mat_02.html": 10.7027,
    "deqp/functional/gles3/shaderindexing/tmp.html": 11.5126,
    "deqp/functional/gles3/shaderindexing/uniform.html": 3.0902,
    "deqp/functional/gles3/shaderindexing/varying.html": 6.5025,
    "deqp/functional/gles3/shaderindexing/vec2.html": 5.5745,
    "deqp/functional/gles3/shaderindexing/vec3.html": 5.9837,
    "deqp/functional/gles3/shaderindexing/vec4.html": 6.877,
    "deqp/functional/gles3/shaderloop_do_while.html": 15.0782,
    "deqp/functional/gles3/shaderloop_for.html": 16.5932,
    "deqp/functional/gles3/shaderloop_while.html": 15.7939,
    "deqp/functional/gles3/shadermatrix/add_assign.html": 8.5157,
    "deqp/functional/gles3/shadermatrix/add_const.html": 14.7251,
    "deqp/functional/gles3/shadermatrix/add_dynamic.html": 14.7991,
    "deqp/functional/gles3/shadermatrix/add_uniform.html": 14.541,
    "deqp/functional/gles3/shadermatrix/determinant.html": 2.9211,
    "deqp/functional/gles3/shadermatrix/div_assign.html": 8.2343,
    "deqp/functional/gles3/shadermatrix/div_const.html": 14.8037,
    "deqp/functional/gles3/shadermatrix/div_dynamic.html": 22.5441,
    "deqp/functional/gles3/shadermatrix/div_uniform.html": 15.2228,
    "deqp/functional/gles3/shadermatrix/inverse.html": 6.7397,
    "deqp/functional/gles3/shadermatrix/matrixcompmult.html": 8.4992,
    "deqp/functional/gles3/shadermatrix/mul_assign.html": 3.1122,
    "deqp/functional/gles3/shadermatrix/mul_const_highp.html": 9.6056,
    "deqp/functional/gles3/shadermatrix/mul_const_lowp.html": 9.6973,
    "deqp/functional/gles3/shadermatrix/mul_const_mediump.html": 13.8843,
    "deqp/functional/gles3/shadermatrix/mul_dynamic_highp.html": 14.178,
    "deqp/functional/gles3/shadermatrix/mul_dynamic_lowp.html": 15.1188,
    "deqp/functional/gles3/shadermatrix/mul_dynamic_mediump.html": 14.4899,
    "deqp/functional/gles3/shadermatrix/mul_uniform_highp.html": 14.7579,
    "deqp/functional/gles3/shadermatrix/mul_uniform_lowp.html": 14.7349,
    "deqp/functional/gles3/shadermatrix/mul_uniform_mediump.html": 13.7018,
    "deqp/functional/gles3/shadermatrix/negation.html": 7.5416,
    "deqp/functional/gles3/shadermatrix/outerproduct.html": 7.5007,
    "deqp/functional/gles3/shadermatrix/post_decrement.html": 7.539,
    "deqp/functional/gles3/shadermatrix/post_increment.html": 7.4246,
    "deqp/functional/gles3/shadermatrix/pre_decrement.html": 9.26,
    "deqp/functional/gles3/shadermatrix/pre_increment.html": 9.0083,
    "deqp/functional/gles3/shadermatrix/sub_assign.html": 8.9972,
    "deqp/functional/gles3/shadermatrix/sub_const.html": 10.4634,
    "deqp/functional/gles3/shadermatrix/sub_dynamic.html": 16.3183,
    "deqp/functional/gles3/shadermatrix/sub_uniform.html": 14.753,
    "deqp/functional/gles3/shadermatrix/transpose.html": 7.2836,
    "deqp/functional/gles3/shadermatrix/unary_addition.html": 6.1748,
    "deqp/functional/gles3/shaderoperator/angle_and_trigonometry_00.html": 7.5428,
    "deqp/functional/gles3/shaderoperator/angle_and_trigonometry_01.html": 5.1322,
    "deqp/functional/gles3/shaderoperator/angle_and_trigonometry_02.html": 5.4718,
    "deqp/functional/gles3/shaderoperator/angle_and_trigonometry_03.html": 3.659,
    "deqp/functional/gles3/shaderoperator/binary_operator_00.html": 21.0332,
    "deqp/functional/gles3/shaderoperator/binary_operator_01.html": 23.4744,
    "deqp/functional/gles3/shaderoperator/binary_operator_02.html": 12.3908,
    "deqp/functional/gles3/shaderoperator/binary_operator_03.html": 13.0552,
    "deqp/functional/gles3/shaderoperator/binary_operator_04.html": 18.0165,
    "deqp/functional/gles3/shaderoperator/binary_operator_05.html": 15.5011,
    "deqp/functional/gles3/shaderoperator/binary_operator_06.html": 15.0473,
    "deqp/functional/gles3/shaderoperator/binary_operator_07.html": 9.1938,
    "deqp/functional/gles3/shaderoperator/binary_operator_08.html": 9.318,
    "deqp/functional/gles3/shaderoperator/binary_operator_09.html": 17.3814,
    "deqp/functional/gles3/shaderoperator/binary_operator_10.html": 15.0741,
    "deqp/functional/gles3/shaderoperator/binary_operator_11.html": 15.2106,
    "deqp/functional/gles3/shaderoperator/binary_operator_12.html": 9.7045,
    "deqp/functional/gles3/shaderoperator/binary_operator_13.html": 9.5105,
    "deqp/functional/gles3/shaderoperator/binary_operator_14.html": 17.7908,
    "deqp/functional/gles3/shaderoperator/binary_operator_15.html": 34.773,
    "deqp/functional/gles3/shaderoperator/bool_compare.html": 2.814,
    "deqp/functional/gles3/shaderoperator/common_functions_00.html": 8.6499,
    "deqp/functional/gles3/shaderoperator/common_functions_01.html": 14.1908,
    "deqp/functional/gles3/shaderoperator/common_functions_02.html": 8.6649,
    "deqp/functional/gles3/shaderoperator/common_functions_03.html": 15.1365,
    "deqp/functional/gles3/shaderoperator/common_functions_04.html": 8.938,
    "deqp/functional/gles3/shaderoperator/common_functions_05.html": 9.1262,
    "deqp/functional/gles3/shaderoperator/common_functions_06.html": 7.0227,
    "deqp/functional/gles3/shaderoperator/exponential.html": 8.3982,
    "deqp/functional/gles3/shaderoperator/float_compare.html": 21.8286,
    "deqp/functional/gles3/shaderoperator/geometric.html": 8.5251,
    "deqp/functional/gles3/shaderoperator/int_compare.html": 10.6558,
    "deqp/functional/gles3/shaderoperator/selection.html": 7.009,
    "deqp/functional/gles3/shaderoperator/sequence.html": 6.5605,
    "deqp/functional/gles3/shaderoperator/unary_operator_00.html": 11.8138,
    "deqp/functional/gles3/shaderoperator/unary_operator_01.html": 20.4361,
    "deqp/functional/gles3/shaderoperator/unary_operator_02.html": 20.4973,
    "deqp/functional/gles3/shaderpackingfunction.html": 0.5312,
    "deqp/functional/gles3/shaderprecision_float.html": 10.8663,
    "deqp/functional/gles3/shaderprecision_int.html": 12.7676,
    "deqp/functional/gles3/shaderprecision_uint.html": 10.8503,
    "deqp/functional/gles3/shaderstatequery.html": 0.5643,
    "deqp/functional/gles3/shaderstruct.html": 8.3323,
    "deqp/functional/gles3/shaderswitch.html": 9.3863,
    "deqp/functional/gles3/shadertexturefunction/texelfetch.html": 4.7401,
    "deqp/functional/gles3/shadertexturefunction/texelfetchoffset.html": 3.3357,
    "deqp/functional/gles3/shadertexturefunction/texture.html": 10.6241,
    "deqp/functional/gles3/shadertexturefunction/texturegrad.html": 5.4634,
    "deqp/functional/gles3/shadertexturefunction/texturegradoffset.html": 3.809,
    "deqp/functional/gles3/shadertexturefunction/texturelod.html": 6.2096,
    "deqp/functional/gles3/shadertexturefunction/texturelodoffset.html": 4.9339,
    "deqp/functional/gles3/shadertexturefunction/textureoffset.html": 6.3567,
    "deqp/functional/gles3/shadertexturefunction/textureproj.html": 7.6144,
    "deqp/functional/gles3/shadertexturefunction/textureprojgrad.html": 4.021,
    "deqp/functional/gles3/shadertexturefunction/textureprojgradoffset.html": 4.7085,
    "deqp/functional/gles3/shadertexturefunction/textureprojlod.html": 3.3249,
    "deqp/functional/gles3/shadertexturefunction/textureprojlodoffset.html": 3.6719,
    "deqp/functional/gles3/shadertexturefunction/textureprojoffset.html": 5.6724,
    "deqp/functional/gles3/shadertexturefunction/texturesize.html": 14.1137,
    "deqp/functional/gles3/stringquery.html": 0.202,
    "deqp/functional/gles3/sync.html": 3.6143,
    "deqp/functional/gles3/texturefiltering/2d_array_combinations_00.html": 3.1273,
    "deqp/functional/gles3/texturefiltering/2d_array_combinations_01.html": 3.2969,
    "deqp/functional/gles3/texturefiltering/2d_array_combinations_02.html": 2.97,
    "deqp/functional/gles3/texturefiltering/2d_array_combinations_03.html": 3.6279,
    "deqp/functional/gles3/texturefiltering/2d_array_combinations_04.html": 3.6808,
    "deqp/functional/gles3/texturefiltering/2d_array_combinations_05.html": 3.4446,
    "deqp/functional/gles3/texturefiltering/2d_array_formats_00.html": 1.8372,
    "deqp/functional/gles3/texturefiltering/2d_array_formats_01.html": 1.4668,
    "deqp/functional/gles3/texturefiltering/2d_array_formats_02.html": 1.2136,
    "deqp/functional/gles3/texturefiltering/2d_array_formats_03.html": 1.1876,
    "deqp/functional/gles3/texturefiltering/2d_array_formats_04.html": 1.2397,
    "deqp/functional/gles3/texturefiltering/2d_array_formats_05.html": 1.074,
    "deqp/functional/gles3/texturefiltering/2d_array_formats_06.html": 1.1211,
    "deqp/functional/gles3/texturefiltering/2d_array_formats_07.html": 1.1475,
    "deqp/functional/gles3/texturefiltering/2d_array_formats_08.html": 1.2595,
    "deqp/functional/gles3/texturefiltering/2d_array_formats_09.html": 1.1099,
    "deqp/functional/gles3/texturefiltering/2d_array_sizes_00.html": 0.7846,
    "deqp/functional/gles3/texturefiltering/2d_array_sizes_01.html": 0.9121,
    "deqp/functional/gles3/texturefiltering/2d_array_sizes_02.html": 1.6636,
    "deqp/functional/gles3/texturefiltering/2d_array_sizes_03.html": 1.1407,
    "deqp/functional/gles3/texturefiltering/2d_array_sizes_04.html": 4.593,
    "deqp/functional/gles3/texturefiltering/2d_combinations_00.html": 1.6409,
    "deqp/functional/gles3/texturefiltering/2d_combinations_01.html": 1.5956,
    "deqp/functional/gles3/texturefiltering/2d_combinations_02.html": 1.4592,
    "deqp/functional/gles3/texturefiltering/2d_combinations_03.html": 1.5128,
    "deqp/functional/gles3/texturefiltering/2d_combinations_04.html": 1.6981,
    "deqp/functional/gles3/texturefiltering/2d_combinations_05.html": 1.9387,
    "deqp/functional/gles3/texturefiltering/2d_formats_00.html": 1.178,
    "deqp/functional/gles3/texturefiltering/2d_formats_01.html": 0.9689,
    "deqp/functional/gles3/texturefiltering/2d_formats_02.html": 0.8129,
    "deqp/functional/gles3/texturefiltering/2d_formats_03.html": 0.6512,
    "deqp/functional/gles3/texturefiltering/2d_formats_04.html": 0.6725,
    "deqp/functional/gles3/texturefiltering/2d_formats_05.html": 0.5838,
    "deqp/functional/gles3/texturefiltering/2d_formats_06.html": 0.6778,
    "deqp/functional/gles3/texturefiltering/2d_formats_07.html": 0.639,
    "deqp/functional/gles3/texturefiltering/2d_formats_08.html": 0.8231,
    "deqp/functional/gles3/texturefiltering/2d_formats_09.html": 0.7753,
    "deqp/functional/gles3/texturefiltering/2d_sizes_00.html": 0.7386,
    "deqp/functional/gles3/texturefiltering/2d_sizes_01.html": 0.7975,
    "deqp/functional/gles3/texturefiltering/2d_sizes_02.html": 0.8422,
    "deqp/functional/gles3/texturefiltering/2d_sizes_03.html": 0.7377,
    "deqp/functional/gles3/texturefiltering/2d_sizes_04.html": 0.7307,
    "deqp/functional/gles3/texturefiltering/2d_sizes_05.html": 0.8343,
    "deqp/functional/gles3/texturefiltering/3d_combinations_00.html": 1.4565,
    "deqp/functional/gles3/texturefiltering/3d_combinations_01.html": 1.5486,
    "deqp/functional/gles3/texturefiltering/3d_combinations_02.html": 1.7201,
    "deqp/functional/gles3/texturefiltering/3d_combinations_03.html": 1.6975,
    "deqp/functional/gles3/texturefiltering/3d_combinations_04.html": 1.7844,
    "deqp/functional/gles3/texturefiltering/3d_combinations_05.html": 1.7072,
    "deqp/functional/gles3/texturefiltering/3d_combinations_06.html": 1.8234,
    "deqp/functional/gles3/texturefiltering/3d_combinations_07.html": 1.8416,
    "deqp/functional/gles3/texturefiltering/3d_combinations_08.html": 1.6135,
    "deqp/functional/gles3/texturefiltering/3d_combinations_09.html": 1.6962,
    "deqp/functional/gles3/texturefiltering/3d_combinations_10.html": 1.8612,
    "deqp/functional/gles3/texturefiltering/3d_combinations_11.html": 1.745,
    "deqp/functional/gles3/texturefiltering/3d_combinations_12.html": 1.6548,
    "deqp/functional/gles3/texturefiltering/3d_combinations_13.html": 1.5802,
    "deqp/functional/gles3/texturefiltering/3d_combinations_14.html": 1.7899,
    "deqp/functional/gles3/texturefiltering/3d_combinations_15.html": 1.5424,
    "deqp/functional/gles3/texturefiltering/3d_combinations_16.html": 1.4877,
    "deqp/functional/gles3/texturefiltering/3d_combinations_17.html": 1.7395,
    "deqp/functional/gles3/texturefiltering/3d_combinations_18.html": 1.7444,
    "deqp/functional/gles3/texturefiltering/3d_combinations_19.html": 1.54,
    "deqp/functional/gles3/texturefiltering/3d_combinations_20.html": 1.6775,
    "deqp/functional/gles3/texturefiltering/3d_combinations_21.html": 1.8739,
    "deqp/functional/gles3/texturefiltering/3d_combinations_22.html": 1.8487,
    "deqp/functional/gles3/texturefiltering/3d_combinations_23.html": 1.5913,
    "deqp/functional/gles3/texturefiltering/3d_combinations_24.html": 8.8009,
    "deqp/functional/gles3/texturefiltering/3d_combinations_25.html": 9.9518,
    "deqp/functional/gles3/texturefiltering/3d_combinations_26.html": 8.4635,
    "deqp/functional/gles3/texturefiltering/3d_combinations_27.html": 9.6467,
    "deqp/functional/gles3/texturefiltering/3d_combinations_28.html": 8.6638,
    "deqp/functional/gles3/texturefiltering/3d_combinations_29.html": 8.8784,
    "deqp/functional/gles3/texturefiltering/3d_combinations_30.html": 9.9177,
    "deqp/functional/gles3/texturefiltering/3d_combinations_31.html": 8.1611,
    "deqp/functional/gles3/texturefiltering/3d_combinations_32.html": 10.4086,
    "deqp/functional/gles3/texturefiltering/3d_combinations_33.html": 10.1914,
    "deqp/functional/gles3/texturefiltering/3d_combinations_34.html": 8.1531,
    "deqp/functional/gles3/texturefiltering/3d_combinations_35.html": 9.9393,
    "deqp/functional/gles3/texturefiltering/3d_formats_00.html": 4.2707,
    "deqp/functional/gles3/texturefiltering/3d_formats_01.html": 3.4794,
    "deqp/functional/gles3/texturefiltering/3d_formats_02.html": 3.0056,
    "deqp/functional/gles3/texturefiltering/3d_formats_03.html": 2.9714,
    "deqp/functional/gles3/texturefiltering/3d_formats_04.html": 3.3434,
    "deqp/functional/gles3/texturefiltering/3d_formats_05.html": 3.017,
    "deqp/functional/gles3/texturefiltering/3d_formats_06.html": 3.025,
    "deqp/functional/gles3/texturefiltering/3d_formats_07.html": 3.0671,
    "deqp/functional/gles3/texturefiltering/3d_formats_08.html": 3.2564,
    "deqp/functional/gles3/texturefiltering/3d_formats_09.html": 2.7375,
    "deqp/functional/gles3/texturefiltering/3d_sizes_00.html": 3.8407,
    "deqp/functional/gles3/texturefiltering/3d_sizes_01.html": 2.8625,
    "deqp/functional/gles3/texturefiltering/3d_sizes_02.html": 2.9077,
    "deqp/functional/gles3/texturefiltering/3d_sizes_03.html": 2.4796,
    "deqp/functional/gles3/texturefiltering/3d_sizes_04.html": 3.3134,
    "deqp/functional/gles3/texturefiltering/cube_combinations_00.html": 5.4956,
    "deqp/functional/gles3/texturefiltering/cube_combinations_01.html": 6.6434,
    "deqp/functional/gles3/texturefiltering/cube_combinations_02.html": 11.385,
    "deqp/functional/gles3/texturefiltering/cube_combinations_03.html": 9.1722,
    "deqp/functional/gles3/texturefiltering/cube_combinations_04.html": 10.4375,
    "deqp/functional/gles3/texturefiltering/cube_combinations_05.html": 13.875,
    "deqp/functional/gles3/texturefiltering/cube_formats_00.html": 5.0281,
    "deqp/functional/gles3/texturefiltering/cube_formats_01.html": 4.2781,
    "deqp/functional/gles3/texturefiltering/cube_formats_02.html": 4.2674,
    "deqp/functional/gles3/texturefiltering/cube_formats_03.html": 3.9295,
    "deqp/functional/gles3/texturefiltering/cube_formats_04.html": 3.994,
    "deqp/functional/gles3/texturefiltering/cube_formats_05.html": 3.7824,
    "deqp/functional/gles3/texturefiltering/cube_formats_06.html": 3.6069,
    "deqp/functional/gles3/texturefiltering/cube_formats_07.html": 3.5964,
    "deqp/functional/gles3/texturefiltering/cube_formats_08.html": 3.8187,
    "deqp/functional/gles3/texturefiltering/cube_formats_09.html": 3.9039,
    "deqp/functional/gles3/texturefiltering/cube_no_edges_visible.html": 1.5119,
    "deqp/functional/gles3/texturefiltering/cube_sizes_00.html": 2.5106,
    "deqp/functional/gles3/texturefiltering/cube_sizes_01.html": 3.4138,
    "deqp/functional/gles3/texturefiltering/cube_sizes_02.html": 4.5031,
    "deqp/functional/gles3/texturefiltering/cube_sizes_03.html": 2.1396,
    "deqp/functional/gles3/texturefiltering/cube_sizes_04.html": 4.2281,
    "deqp/functional/gles3/textureformat/compressed_2d.html": 0.2505,
    "deqp/functional/gles3/textureformat/compressed_cube.html": 0.1476,
    "deqp/functional/gles3/textureformat/sized_color_2d_array_npot_00.html": 2.3417,
    "deqp/functional/gles3/textureformat/sized_color_2d_array_npot_01.html": 2.1509,
    "deqp/functional/gles3/textureformat/sized_color_2d_array_npot_02.html": 2.2975,
    "deqp/functional/gles3/textureformat/sized_color_2d_array_npot_03.html": 2.0098,
    "deqp/functional/gles3/textureformat/sized_color_2d_array_pot_00.html": 2.9258,
    "deqp/functional/gles3/textureformat/sized_color_2d_array_pot_01.html": 2.6495,
    "deqp/functional/gles3/textureformat/sized_color_2d_array_pot_02.html": 2.681,
    "deqp/functional/gles3/textureformat/sized_color_2d_array_pot_03.html": 2.4393,
    "deqp/functional/gles3/textureformat/sized_color_2d_npot_00.html": 0.5137,
    "deqp/functional/gles3/textureformat/sized_color_2d_npot_01.html": 0.6474,
    "deqp/functional/gles3/textureformat/sized_color_2d_npot_02.html": 0.6681,
    "deqp/functional/gles3/textureformat/sized_color_2d_npot_03.html": 0.5876,
    "deqp/functional/gles3/textureformat/sized_color_2d_pot_00.html": 0.6778,
    "deqp/functional/gles3/textureformat/sized_color_2d_pot_01.html": 0.8759,
    "deqp/functional/gles3/textureformat/sized_color_2d_pot_02.html": 0.7169,
    "deqp/functional/gles3/textureformat/sized_color_2d_pot_03.html": 0.8584,
    "deqp/functional/gles3/textureformat/sized_color_3d_npot_00.html": 1.8471,
    "deqp/functional/gles3/textureformat/sized_color_3d_npot_01.html": 1.7561,
    "deqp/functional/gles3/textureformat/sized_color_3d_npot_02.html": 1.8429,
    "deqp/functional/gles3/textureformat/sized_color_3d_npot_03.html": 1.9769,
    "deqp/functional/gles3/textureformat/sized_color_3d_pot_00.html": 3.7475,
    "deqp/functional/gles3/textureformat/sized_color_3d_pot_01.html": 3.74,
    "deqp/functional/gles3/textureformat/sized_color_3d_pot_02.html": 3.6502,
    "deqp/functional/gles3/textureformat/sized_color_3d_pot_03.html": 3.8925,
    "deqp/functional/gles3/textureformat/sized_color_cube_npot_00.html": 2.1687,
    "deqp/functional/gles3/textureformat/sized_color_cube_npot_01.html": 1.8198,
    "deqp/functional/gles3/textureformat/sized_color_cube_npot_02.html": 1.6817,
    "deqp/functional/gles3/textureformat/sized_color_cube_npot_03.html": 1.9778,
    "deqp/functional/gles3/textureformat/sized_color_cube_pot_00.html": 2.2128,
    "deqp/functional/gles3/textureformat/sized_color_cube_pot_01.html": 1.8439,
    "deqp/functional/gles3/textureformat/sized_color_cube_pot_02.html": 2.0317,
    "deqp/functional/gles3/textureformat/sized_color_cube_pot_03.html": 2.1449,
    "deqp/functional/gles3/textureformat/sized_depth_stencil.html": 3.0076,
    "deqp/functional/gles3/textureformat/unsized_2d.html": 2.5357,
    "deqp/functional/gles3/textureformat/unsized_2d_array.html": 2.8771,
    "deqp/functional/gles3/textureformat/unsized_3d.html": 3.1429,
    "deqp/functional/gles3/textureshadow/2d_array_linear_always.html": 0.7634,
    "deqp/functional/gles3/textureshadow/2d_array_linear_equal.html": 1.3997,
    "deqp/functional/gles3/textureshadow/2d_array_linear_greater.html": 1.1806,
    "deqp/functional/gles3/textureshadow/2d_array_linear_greater_or_equal.html": 1.232,
    "deqp/functional/gles3/textureshadow/2d_array_linear_less.html": 1.231,
    "deqp/functional/gles3/textureshadow/2d_array_linear_less_or_equal.html": 1.2256,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_linear_always.html": 0.7687,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_linear_equal.html": 1.6822,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_linear_greater.html": 1.962,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_linear_greater_or_equal.html": 2.0031,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_linear_less.html": 2.0525,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_linear_less_or_equal.html": 1.9834,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_linear_never.html": 0.7588,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_linear_not_equal.html": 1.5604,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_nearest_always.html": 0.6795,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_nearest_equal.html": 1.2126,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_nearest_greater.html": 1.4701,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_nearest_greater_or_equal.html": 1.3245,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_nearest_less.html": 1.3311,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_nearest_less_or_equal.html": 1.4051,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_nearest_never.html": 0.7044,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_nearest_not_equal.html": 1.2687,
    "deqp/functional/gles3/textureshadow/2d_array_linear_never.html": 0.7638,
    "deqp/functional/gles3/textureshadow/2d_array_linear_not_equal.html": 1.4144,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_always.html": 0.6245,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_equal.html": 0.7628,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_greater.html": 0.615,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_greater_or_equal.html": 0.6609,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_less.html": 0.7206,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_less_or_equal.html": 0.6993,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_linear_always.html": 0.6434,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_linear_equal.html": 1.1115,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_linear_greater.html": 0.9067,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_linear_greater_or_equal.html": 0.9771,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_linear_less.html": 0.8972,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_linear_less_or_equal.html": 0.9103,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_linear_never.html": 0.6431,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_linear_not_equal.html": 1.0286,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_nearest_always.html": 0.7073,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_nearest_equal.html": 0.9831,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_nearest_greater.html": 1.0531,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_nearest_greater_or_equal.html": 0.9631,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_nearest_less.html": 0.9316,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_nearest_less_or_equal.html": 1.0189,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_nearest_never.html": 0.718,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_nearest_not_equal.html": 1.0066,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_never.html": 0.6247,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_not_equal.html": 0.644,
    "deqp/functional/gles3/textureshadow/2d_linear_always.html": 0.6414,
    "deqp/functional/gles3/textureshadow/2d_linear_equal.html": 1.1081,
    "deqp/functional/gles3/textureshadow/2d_linear_greater.html": 0.9962,
    "deqp/functional/gles3/textureshadow/2d_linear_greater_or_equal.html": 1.0062,
    "deqp/functional/gles3/textureshadow/2d_linear_less.html": 1.0003,
    "deqp/functional/gles3/textureshadow/2d_linear_less_or_equal.html": 1.0101,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_linear_always.html": 0.5932,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_linear_equal.html": 1.8732,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_linear_greater.html": 1.584,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_linear_greater_or_equal.html": 2.184,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_linear_less.html": 2.1271,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_linear_less_or_equal.html": 1.6133,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_linear_never.html": 0.6071,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_linear_not_equal.html": 1.9777,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_nearest_always.html": 0.6086,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_nearest_equal.html": 1.0961,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_nearest_greater.html": 1.2342,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_nearest_greater_or_equal.html": 1.0026,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_nearest_less.html": 1.0921,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_nearest_less_or_equal.html": 1.204,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_nearest_never.html": 0.5999,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_nearest_not_equal.html": 1.0928,
    "deqp/functional/gles3/textureshadow/2d_linear_never.html": 0.6304,
    "deqp/functional/gles3/textureshadow/2d_linear_not_equal.html": 1.1012,
    "deqp/functional/gles3/textureshadow/2d_nearest_always.html": 0.5577,
    "deqp/functional/gles3/textureshadow/2d_nearest_equal.html": 0.6076,
    "deqp/functional/gles3/textureshadow/2d_nearest_greater.html": 0.6321,
    "deqp/functional/gles3/textureshadow/2d_nearest_greater_or_equal.html": 0.5668,
    "deqp/functional/gles3/textureshadow/2d_nearest_less.html": 0.7136,
    "deqp/functional/gles3/textureshadow/2d_nearest_less_or_equal.html": 0.597,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_linear_always.html": 0.5985,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_linear_equal.html": 1.4387,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_linear_greater.html": 0.9258,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_linear_greater_or_equal.html": 1.2626,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_linear_less.html": 1.2621,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_linear_less_or_equal.html": 0.8606,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_linear_never.html": 0.5364,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_linear_not_equal.html": 1.47,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_nearest_always.html": 0.5744,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_nearest_equal.html": 0.8607,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_nearest_greater.html": 0.9285,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_nearest_greater_or_equal.html": 0.7931,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_nearest_less.html": 0.8148,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_nearest_less_or_equal.html": 0.8589,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_nearest_never.html": 0.6279,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_nearest_not_equal.html": 0.9101,
    "deqp/functional/gles3/textureshadow/2d_nearest_never.html": 0.5675,
    "deqp/functional/gles3/textureshadow/2d_nearest_not_equal.html": 0.6093,
    "deqp/functional/gles3/textureshadow/cube_linear_always.html": 1.8624,
    "deqp/functional/gles3/textureshadow/cube_linear_equal.html": 3.0651,
    "deqp/functional/gles3/textureshadow/cube_linear_greater.html": 2.7571,
    "deqp/functional/gles3/textureshadow/cube_linear_greater_or_equal.html": 2.991,
    "deqp/functional/gles3/textureshadow/cube_linear_less.html": 2.993,
    "deqp/functional/gles3/textureshadow/cube_linear_less_or_equal.html": 2.6716,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_linear_always.html": 2.0044,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_linear_equal.html": 4.0969,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_linear_greater.html": 4.3069,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_linear_greater_or_equal.html": 4.3341,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_linear_less.html": 4.2412,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_linear_less_or_equal.html": 4.0629,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_linear_never.html": 1.981,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_linear_not_equal.html": 4.0605,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_nearest_always.html": 2.0753,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_nearest_equal.html": 3.1667,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_nearest_greater.html": 2.9345,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_nearest_greater_or_equal.html": 3.2273,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_nearest_less.html": 3.3349,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_nearest_less_or_equal.html": 2.808,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_nearest_never.html": 1.8797,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_nearest_not_equal.html": 2.9656,
    "deqp/functional/gles3/textureshadow/cube_linear_never.html": 1.9499,
    "deqp/functional/gles3/textureshadow/cube_linear_not_equal.html": 2.893,
    "deqp/functional/gles3/textureshadow/cube_nearest_always.html": 1.8164,
    "deqp/functional/gles3/textureshadow/cube_nearest_equal.html": 1.7114,
    "deqp/functional/gles3/textureshadow/cube_nearest_greater.html": 1.888,
    "deqp/functional/gles3/textureshadow/cube_nearest_greater_or_equal.html": 1.8324,
    "deqp/functional/gles3/textureshadow/cube_nearest_less.html": 1.9476,
    "deqp/functional/gles3/textureshadow/cube_nearest_less_or_equal.html": 1.8806,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_linear_always.html": 1.9926,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_linear_equal.html": 3.7302,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_linear_greater.html": 3.4515,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_linear_greater_or_equal.html": 3.6973,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_linear_less.html": 3.5058,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_linear_less_or_equal.html": 3.6215,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_linear_never.html": 1.896,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_linear_not_equal.html": 3.6157,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_nearest_always.html": 1.9426,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_nearest_equal.html": 2.7189,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_nearest_greater.html": 2.3953,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_nearest_greater_or_equal.html": 2.5294,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_nearest_less.html": 2.5645,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_nearest_less_or_equal.html": 2.5349,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_nearest_never.html": 1.9631,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_nearest_not_equal.html": 2.6796,
    "deqp/functional/gles3/textureshadow/cube_nearest_never.html": 1.7571,
    "deqp/functional/gles3/textureshadow/cube_nearest_not_equal.html": 1.9054,
    "deqp/functional/gles3/texturespecification/basic_copyteximage2d.html": 8.5254,
    "deqp/functional/gles3/texturespecification/basic_copytexsubimage2d.html": 7.9278,
    "deqp/functional/gles3/texturespecification/basic_teximage2d_2d_00.html": 3.6103,
    "deqp/functional/gles3/texturespecification/basic_teximage2d_2d_01.html": 3.5848,
    "deqp/functional/gles3/texturespecification/basic_teximage2d_cube_00.html": 4.2924,
    "deqp/functional/gles3/texturespecification/basic_teximage2d_cube_01.html": 4.4433,
    "deqp/functional/gles3/texturespecification/basic_teximage2d_cube_02.html": 4.7158,
    "deqp/functional/gles3/texturespecification/basic_teximage2d_cube_03.html": 4.3375,
    "deqp/functional/gles3/texturespecification/basic_teximage2d_cube_04.html": 4.1506,
    "deqp/functional/gles3/texturespecification/basic_teximage3d_2d_array_00.html": 3.6926,
    "deqp/functional/gles3/texturespecification/basic_teximage3d_2d_array_01.html": 3.6838,
    "deqp/functional/gles3/texturespecification/basic_teximage3d_2d_array_02.html": 3.7352,
    "deqp/functional/gles3/texturespecification/basic_teximage3d_3d_00.html": 2.4437,
    "deqp/functional/gles3/texturespecification/basic_teximage3d_3d_01.html": 2.4942,
    "deqp/functional/gles3/texturespecification/basic_teximage3d_3d_02.html": 2.3286,
    "deqp/functional/gles3/texturespecification/basic_teximage3d_3d_03.html": 2.6685,
    "deqp/functional/gles3/texturespecification/basic_teximage3d_3d_04.html": 2.469,
    "deqp/functional/gles3/texturespecification/basic_texsubimage2d_2d_00.html": 3.0462,
    "deqp/functional/gles3/texturespecification/basic_texsubimage2d_2d_01.html": 2.6976,
    "deqp/functional/gles3/texturespecification/basic_texsubimage2d_2d_02.html": 2.6656,
    "deqp/functional/gles3/texturespecification/basic_texsubimage2d_cube_00.html": 4.5384,
    "deqp/functional/gles3/texturespecification/basic_texsubimage2d_cube_01.html": 4.4892,
    "deqp/functional/gles3/texturespecification/basic_texsubimage2d_cube_02.html": 4.092,
    "deqp/functional/gles3/texturespecification/basic_texsubimage2d_cube_03.html": 3.9056,
    "deqp/functional/gles3/texturespecification/basic_texsubimage2d_cube_04.html": 3.2611,
    "deqp/functional/gles3/texturespecification/basic_texsubimage3d_00.html": 2.2464,
    "deqp/functional/gles3/texturespecification/basic_texsubimage3d_01.html": 2.5977,
    "deqp/functional/gles3/texturespecification/basic_texsubimage3d_02.html": 2.2324,
    "deqp/functional/gles3/texturespecification/basic_texsubimage3d_03.html": 2.4903,
    "deqp/functional/gles3/texturespecification/basic_texsubimage3d_04.html": 1.9588,
    "deqp/functional/gles3/texturespecification/random_teximage2d_2d.html": 2.5711,
    "deqp/functional/gles3/texturespecification/random_teximage2d_cube.html": 7.055,
    "deqp/functional/gles3/texturespecification/teximage2d_align.html": 5.0945,
    "deqp/functional/gles3/texturespecification/teximage2d_depth.html": 0.9092,
    "deqp/functional/gles3/texturespecification/teximage2d_depth_pbo.html": 0.7793,
    "deqp/functional/gles3/texturespecification/teximage2d_pbo_2d_00.html": 1.518,
    "deqp/functional/gles3/texturespecification/teximage2d_pbo_2d_01.html": 1.3432,
    "deqp/functional/gles3/texturespecification/teximage2d_pbo_cube_00.html": 3.3823,
    "deqp/functional/gles3/texturespecification/teximage2d_pbo_cube_01.html": 3.208,
    "deqp/functional/gles3/texturespecification/teximage2d_pbo_cube_02.html": 3.1748,
    "deqp/functional/gles3/texturespecification/teximage2d_pbo_cube_03.html": 3.1919,
    "deqp/functional/gles3/texturespecification/teximage2d_pbo_cube_04.html": 2.2857,
    "deqp/functional/gles3/texturespecification/teximage2d_pbo_params.html": 0.9485,
    "deqp/functional/gles3/texturespecification/teximage2d_unpack_params.html": 0.8571,
    "deqp/functional/gles3/texturespecification/teximage3d_depth.html": 1.502,
    "deqp/functional/gles3/texturespecification/teximage3d_depth_pbo.html": 0.9385,
    "deqp/functional/gles3/texturespecification/teximage3d_pbo_2d_array_00.html": 1.5833,
    "deqp/functional/gles3/texturespecification/teximage3d_pbo_2d_array_01.html": 1.641,
    "deqp/functional/gles3/texturespecification/teximage3d_pbo_3d_00.html": 1.4603,
    "deqp/functional/gles3/texturespecification/teximage3d_pbo_3d_01.html": 1.87,
    "deqp/functional/gles3/texturespecification/teximage3d_pbo_params.html": 1.0953,
    "deqp/functional/gles3/texturespecification/teximage3d_unpack_params.html": 1.0938,
    "deqp/functional/gles3/texturespecification/texstorage2d_format_2d_00.html": 3.1662,
    "deqp/functional/gles3/texturespecification/texstorage2d_format_2d_01.html": 2.8994,
    "deqp/functional/gles3/texturespecification/texstorage2d_format_2d_02.html": 2.6932,
    "deqp/functional/gles3/texturespecification/texstorage2d_format_cube_00.html": 3.0572,
    "deqp/functional/gles3/texturespecification/texstorage2d_format_cube_01.html": 3.5488,
    "deqp/functional/gles3/texturespecification/texstorage2d_format_cube_02.html": 3.2595,
    "deqp/functional/gles3/texturespecification/texstorage2d_format_cube_03.html": 3.1014,
    "deqp/functional/gles3/texturespecification/texstorage2d_format_cube_04.html": 3.6483,
    "deqp/functional/gles3/texturespecification/texstorage2d_format_depth_stencil.html": 2.2041,
    "deqp/functional/gles3/texturespecification/texstorage2d_format_size.html": 2.3144,
    "deqp/functional/gles3/texturespecification/texstorage3d_format_2d_array_00.html": 2.2011,
    "deqp/functional/gles3/texturespecification/texstorage3d_format_2d_array_01.html": 2.2587,
    "deqp/functional/gles3/texturespecification/texstorage3d_format_2d_array_02.html": 2.4705,
    "deqp/functional/gles3/texturespecification/texstorage3d_format_3d_00.html": 3.2734,
    "deqp/functional/gles3/texturespecification/texstorage3d_format_3d_01.html": 3.0262,
    "deqp/functional/gles3/texturespecification/texstorage3d_format_3d_02.html": 3.3493,
    "deqp/functional/gles3/texturespecification/texstorage3d_format_3d_03.html": 3.3821,
    "deqp/functional/gles3/texturespecification/texstorage3d_format_depth_stencil.html": 0.8884,
    "deqp/functional/gles3/texturespecification/texstorage3d_format_size.html": 3.0526,
    "deqp/functional/gles3/texturespecification/texsubimage2d_align.html": 6.7244,
    "deqp/functional/gles3/texturespecification/texsubimage2d_depth.html": 0.6418,
    "deqp/functional/gles3/texturespecification/texsubimage2d_empty_tex.html": 1.9929,
    "deqp/functional/gles3/texturespecification/texsubimage2d_pbo_2d_00.html": 1.6583,
    "deqp/functional/gles3/texturespecification/texsubimage2d_pbo_2d_01.html": 1.5397,
    "deqp/functional/gles3/texturespecification/texsubimage2d_pbo_cube_00.html": 3.1692,
    "deqp/functional/gles3/texturespecification/texsubimage2d_pbo_cube_01.html": 2.9602,
    "deqp/functional/gles3/texturespecification/texsubimage2d_pbo_cube_02.html": 3.2265,
    "deqp/functional/gles3/texturespecification/texsubimage2d_pbo_cube_03.html": 3.0023,
    "deqp/functional/gles3/texturespecification/texsubimage2d_pbo_cube_04.html": 2.8822,
    "deqp/functional/gles3/texturespecification/texsubimage2d_pbo_params.html": 1.6845,
    "deqp/functional/gles3/texturespecification/texsubimage2d_unpack_params.html": 1.0842,
    "deqp/functional/gles3/texturespecification/texsubimage3d_depth.html": 1.1293,
    "deqp/functional/gles3/texturespecification/texsubimage3d_pbo_2d_array_00.html": 2.5666,
    "deqp/functional/gles3/texturespecification/texsubimage3d_pbo_2d_array_01.html": 2.4155,
    "deqp/functional/gles3/texturespecification/texsubimage3d_pbo_3d_00.html": 2.6259,
    "deqp/functional/gles3/texturespecification/texsubimage3d_pbo_3d_01.html": 2.7661,
    "deqp/functional/gles3/texturespecification/texsubimage3d_pbo_params.html": 1.249,
    "deqp/functional/gles3/texturespecification/texsubimage3d_unpack_params.html": 1.3075,
    "deqp/functional/gles3/texturestatequery.html": 2.0352,
    "deqp/functional/gles3/texturewrap/eac_r11_npot.html": 0.1805,
    "deqp/functional/gles3/texturewrap/eac_r11_pot.html": 0.2045,
    "deqp/functional/gles3/texturewrap/eac_rg11_npot.html": 0.1767,
    "deqp/functional/gles3/texturewrap/eac_rg11_pot.html": 0.1701,
    "deqp/functional/gles3/texturewrap/eac_signed_r11_npot.html": 0.1392,
    "deqp/functional/gles3/texturewrap/eac_signed_r11_pot.html": 0.1815,
    "deqp/functional/gles3/texturewrap/eac_signed_rg11_npot.html": 0.1601,
    "deqp/functional/gles3/texturewrap/eac_signed_rg11_pot.html": 0.2085,
    "deqp/functional/gles3/texturewrap/etc2_eac_rgba8_npot.html": 0.2166,
    "deqp/functional/gles3/texturewrap/etc2_eac_rgba8_pot.html": 0.1965,
    "deqp/functional/gles3/texturewrap/etc2_eac_srgb8_alpha8_npot.html": 0.1458,
    "deqp/functional/gles3/texturewrap/etc2_eac_srgb8_alpha8_pot.html": 0.1459,
    "deqp/functional/gles3/texturewrap/etc2_rgb8_npot.html": 0.1842,
    "deqp/functional/gles3/texturewrap/etc2_rgb8_pot.html": 0.1646,
    "deqp/functional/gles3/texturewrap/etc2_rgb8_punchthrough_alpha1_npot.html": 0.1486,
    "deqp/functional/gles3/texturewrap/etc2_rgb8_punchthrough_alpha1_pot.html": 0.1706,
    "deqp/functional/gles3/texturewrap/etc2_srgb8_npot.html": 0.1995,
    "deqp/functional/gles3/texturewrap/etc2_srgb8_pot.html": 0.1811,
    "deqp/functional/gles3/texturewrap/etc2_srgb8_punchthrough_alpha1_npot.html": 0.1952,
    "deqp/functional/gles3/texturewrap/etc2_srgb8_punchthrough_alpha1_pot.html": 0.1915,
    "deqp/functional/gles3/texturewrap/rgba8_npot.html": 1.8497,
    "deqp/functional/gles3/texturewrap/rgba8_pot.html": 2.0486,
    "deqp/functional/gles3/transformfeedback/array_element_interleaved_lines.html": 0.8784,
    "deqp/functional/gles3/transformfeedback/array_element_interleaved_points.html": 0.8589,
    "deqp/functional/gles3/transformfeedback/array_element_interleaved_triangles.html": 0.8586,
    "deqp/functional/gles3/transformfeedback/array_element_separate_lines.html": 0.8468,
    "deqp/functional/gles3/transformfeedback/array_element_separate_points.html": 0.8062,
    "deqp/functional/gles3/transformfeedback/array_element_separate_triangles.html": 0.8812,
    "deqp/functional/gles3/transformfeedback/array_interleaved_lines.html": 0.8678,
    "deqp/functional/gles3/transformfeedback/array_interleaved_points.html": 0.8111,
    "deqp/functional/gles3/transformfeedback/array_interleaved_triangles.html": 0.8791,
    "deqp/functional/gles3/transformfeedback/array_separate_lines.html": 0.7647,
    "deqp/functional/gles3/transformfeedback/array_separate_points.html": 0.8291,
    "deqp/functional/gles3/transformfeedback/array_separate_triangles.html": 0.9279,
    "deqp/functional/gles3/transformfeedback/basic_types_interleaved_lines.html": 12.4498,
    "deqp/functional/gles3/transformfeedback/basic_types_interleaved_points.html": 12.4711,
    "deqp/functional/gles3/transformfeedback/basic_types_interleaved_triangles.html": 12.3782,
    "deqp/functional/gles3/transformfeedback/basic_types_separate_lines.html": 8.5118,
    "deqp/functional/gles3/transformfeedback/basic_types_separate_points.html": 8.4893,
    "deqp/functional/gles3/transformfeedback/basic_types_separate_triangles.html": 8.3613,
    "deqp/functional/gles3/transformfeedback/interpolation_centroid.html": 3.8074,
    "deqp/functional/gles3/transformfeedback/interpolation_flat.html": 3.727,
    "deqp/functional/gles3/transformfeedback/interpolation_smooth.html": 3.7303,
    "deqp/functional/gles3/transformfeedback/point_size.html": 1.317,
    "deqp/functional/gles3/transformfeedback/position.html": 1.3216,
    "deqp/functional/gles3/transformfeedback/random_interleaved_lines.html": 2.1224,
    "deqp/functional/gles3/transformfeedback/random_interleaved_points.html": 2.0533,
    "deqp/functional/gles3/transformfeedback/random_interleaved_triangles.html": 2.1323,
    "deqp/functional/gles3/transformfeedback/random_separate_lines.html": 2.542,
    "deqp/functional/gles3/transformfeedback/random_separate_points.html": 2.2483,
    "deqp/functional/gles3/transformfeedback/random_separate_triangles.html": 2.3506,
    "deqp/functional/gles3/uniformapi/info_query.html": 10.0721,
    "deqp/functional/gles3/uniformapi/random.html": 5.2585,
    "deqp/functional/gles3/uniformapi/value_assigned.html": 17.1447,
    "deqp/functional/gles3/uniformapi/value_initial.html": 8.4398,
    "deqp/functional/gles3/uniformbuffers/instance_array_basic_type.html": 3.981,
    "deqp/functional/gles3/uniformbuffers/multi_basic_types.html": 0.6328,
    "deqp/functional/gles3/uniformbuffers/multi_nested_struct.html": 1.22,
    "deqp/functional/gles3/uniformbuffers/random.html": 14.8964,
    "deqp/functional/gles3/uniformbuffers/single_basic_array.html": 3.5677,
    "deqp/functional/gles3/uniformbuffers/single_basic_type.html": 8.4125,
    "deqp/functional/gles3/uniformbuffers/single_nested_struct.html": 1.6781,
    "deqp/functional/gles3/uniformbuffers/single_nested_struct_array.html": 1.0046,
    "deqp/functional/gles3/uniformbuffers/single_struct.html": 0.5882,
    "deqp/functional/gles3/uniformbuffers/single_struct_array.html": 2.8617,
    "deqp/functional/gles3/vertexarrayobject.html": 0.852,
    "deqp/functional/gles3/vertexarrays/multiple_attributes.count.html": 11.8646,
    "deqp/functional/gles3/vertexarrays/multiple_attributes.output.html": 34.5167,
    "deqp/functional/gles3/vertexarrays/multiple_attributes.storage.html": 2.2589,
    "deqp/functional/gles3/vertexarrays/multiple_attributes.stride.html": 34.2556,
    "deqp/functional/gles3/vertexarrays/single_attribute.first.html": 27.6623,
    "deqp/functional/gles3/vertexarrays/single_attribute.normalize.html": 13.1542,
    "deqp/functional/gles3/vertexarrays/single_attribute.offset.html": 27.2553,
    "deqp/functional/gles3/vertexarrays/single_attribute.output_type.byte.html": 10.5505,
    "deqp/functional/gles3/vertexarrays/single_attribute.output_type.float.html": 9.9642,
    "deqp/functional/gles3/vertexarrays/single_attribute.output_type.half.html": 8.9148,
    "deqp/functional/gles3/vertexarrays/single_attribute.output_type.int.html": 9.4265,
    "deqp/functional/gles3/vertexarrays/single_attribute.output_type.int_2_10_10_10.html": 5.7499,
    "deqp/functional/gles3/vertexarrays/single_attribute.output_type.short.html": 10.9377,
    "deqp/functional/gles3/vertexarrays/single_attribute.output_type.unsigned_byte.html": 9.9347,
    "deqp/functional/gles3/vertexarrays/single_attribute.output_type.unsigned_int.html": 9.9026,
    "deqp/functional/gles3/vertexarrays/single_attribute.output_type.unsigned_int_2_10_10_10.html": 2.6597,
    "deqp/functional/gles3/vertexarrays/single_attribute.output_type.unsigned_short.html": 9.571,
    "deqp/functional/gles3/vertexarrays/single_attribute.stride.html": 13.9561,
    "deqp/functional/gles3/vertexarrays/single_attribute.usage.dynamic_copy.html": 9.2727,
    "deqp/functional/gles3/vertexarrays/single_attribute.usage.dynamic_draw.html": 10.0193,
    "deqp/functional/gles3/vertexarrays/single_attribute.usage.dynamic_read.html": 11.0902,
    "deqp/functional/gles3/vertexarrays/single_attribute.usage.static_copy.html": 9.7787,
    "deqp/functional/gles3/vertexarrays/single_attribute.usage.static_draw.html": 10.9837,
    "deqp/functional/gles3/vertexarrays/single_attribute.usage.static_read.html": 10.0361,
    "deqp/functional/gles3/vertexarrays/single_attribute.usage.stream_copy.html": 9.3439,
    "deqp/functional/gles3/vertexarrays/single_attribute.usage.stream_draw.html": 10.3252,
    "deqp/functional/gles3/vertexarrays/single_attribute.usage.stream_read.html": 9.6262
  }
}