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_mac_runtimes.json [blame]

{
  "times": {
    "WebglExtension_EXT_color_buffer_float": 0.7511,
    "WebglExtension_EXT_color_buffer_half_float": 0.6051,
    "WebglExtension_EXT_disjoint_timer_query_webgl2": 0.557,
    "WebglExtension_EXT_float_blend": 0.6754,
    "WebglExtension_EXT_texture_compression_bptc": 0,
    "WebglExtension_EXT_texture_compression_rgtc": 0.718,
    "WebglExtension_EXT_texture_filter_anisotropic": 0.5716,
    "WebglExtension_EXT_texture_norm16": 0.5558,
    "WebglExtension_KHR_parallel_shader_compile": 0.5305,
    "WebglExtension_OES_draw_buffers_indexed": 0.7267,
    "WebglExtension_OES_texture_float_linear": 0.7214,
    "WebglExtension_OVR_multiview2": 2.4367,
    "WebglExtension_TestCoverage": 0.5717,
    "WebglExtension_WEBGL_clip_cull_distance": 0.7229,
    "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.6184,
    "WebglExtension_WEBGL_compressed_texture_s3tc_srgb": 0.7737,
    "WebglExtension_WEBGL_debug_renderer_info": 0.7455,
    "WebglExtension_WEBGL_debug_shaders": 0.4837,
    "WebglExtension_WEBGL_draw_instanced_base_vertex_base_instance": 0.6418,
    "WebglExtension_WEBGL_lose_context": 0.4227,
    "WebglExtension_WEBGL_multi_draw": 0.6187,
    "WebglExtension_WEBGL_multi_draw_instanced_base_vertex_base_instance": 0.5612,
    "WebglExtension_WEBGL_provoking_vertex": 0.5844,
    "WebglExtension_WEBGL_video_texture": 0.713,
    "WebglExtension_WEBGL_webcodecs_video_frame": 0.6982,
    "conformance/attribs/gl-bindAttribLocation-aliasing.html": 0.6188,
    "conformance/attribs/gl-bindAttribLocation-matrix.html": 0.7454,
    "conformance/attribs/gl-bindAttribLocation-nonexistent-attribute.html": 0.6425,
    "conformance/attribs/gl-bindAttribLocation-repeated.html": 0.7243,
    "conformance/attribs/gl-disabled-vertex-attrib-update.html": 0.698,
    "conformance/attribs/gl-disabled-vertex-attrib.html": 0.5386,
    "conformance/attribs/gl-enable-vertex-attrib.html": 0.5714,
    "conformance/attribs/gl-matrix-attributes.html": 0.4051,
    "conformance/attribs/gl-vertex-attrib-context-switch.html": 0.7243,
    "conformance/attribs/gl-vertex-attrib-render.html": 0.8259,
    "conformance/attribs/gl-vertex-attrib-unconsumed-out-of-bounds.html": 0.9438,
    "conformance/attribs/gl-vertex-attrib-zero-issues.html": 0.5971,
    "conformance/attribs/gl-vertexattribpointer-offsets.html": 0.9092,
    "conformance/attribs/gl-vertexattribpointer.html": 1.2639,
    "conformance/buffers/buffer-bind-test.html": 0.7309,
    "conformance/buffers/buffer-data-and-buffer-sub-data.html": 0.7454,
    "conformance/buffers/buffer-data-array-buffer-delete.html": 2.6521,
    "conformance/buffers/buffer-data-dynamic-delay.html": 0.5896,
    "conformance/buffers/buffer-uninitialized.html": 0.4632,
    "conformance/buffers/element-array-buffer-delete-recreate.html": 0.5004,
    "conformance/buffers/index-validation-copies-indices.html": 0.2192,
    "conformance/buffers/index-validation-crash-with-buffer-sub-data.html": 0.6399,
    "conformance/buffers/index-validation-large-buffer.html": 0.7121,
    "conformance/buffers/index-validation-verifies-too-many-indices.html": 0.4103,
    "conformance/buffers/index-validation-with-resized-buffer.html": 0.734,
    "conformance/buffers/index-validation.html": 0.5531,
    "conformance/buffers/vertex-buffer-updated-after-draw.html": 0.6801,
    "conformance/canvas/buffer-offscreen-test.html": 0.7299,
    "conformance/canvas/buffer-preserve-test.html": 2.502,
    "conformance/canvas/canvas-test.html": 0.8514,
    "conformance/canvas/canvas-zero-size.html": 0.2164,
    "conformance/canvas/draw-static-webgl-to-multiple-canvas-test.html": 1.4715,
    "conformance/canvas/draw-webgl-to-canvas-test.html": 0.983,
    "conformance/canvas/drawingbuffer-hd-dpi-test.html": 0.4822,
    "conformance/canvas/drawingbuffer-static-canvas-test.html": 0.7043,
    "conformance/canvas/drawingbuffer-test.html": 0.2157,
    "conformance/canvas/framebuffer-bindings-affected-by-to-data-url.html": 0.7245,
    "conformance/canvas/framebuffer-bindings-unaffected-on-resize.html": 0.7508,
    "conformance/canvas/rapid-resizing.html": 5.9744,
    "conformance/canvas/render-after-resize-test.html": 0.8361,
    "conformance/canvas/texture-bindings-unaffected-on-resize.html": 0.6732,
    "conformance/canvas/to-data-url-after-composite.html": 0.3572,
    "conformance/canvas/to-data-url-test.html": 1.9237,
    "conformance/canvas/viewport-unchanged-upon-resize.html": 0.2268,
    "conformance/canvas/webgl-to-2d-canvas.html": 0.5639,
    "conformance/context/context-attribute-preserve-drawing-buffer-antialias.html": 1.0076,
    "conformance/context/context-attribute-preserve-drawing-buffer.html": 0.5923,
    "conformance/context/context-attributes-alpha-depth-stencil-antialias.html": 1.1226,
    "conformance/context/context-creation-and-destruction.html": 1.0209,
    "conformance/context/context-creation.html": 0.8023,
    "conformance/context/context-eviction-with-garbage-collection.html": 1.0964,
    "conformance/context/context-hidden-alpha.html": 0.143,
    "conformance/context/context-lost-restored.html": 0.4611,
    "conformance/context/context-lost.html": 0.825,
    "conformance/context/context-no-alpha-fbo-with-alpha.html": 0.7157,
    "conformance/context/context-release-upon-reload.html": 2.5361,
    "conformance/context/context-release-with-workers.html": 1.584,
    "conformance/context/context-size-change.html": 0.1771,
    "conformance/context/deleted-object-behavior.html": 0.622,
    "conformance/context/incorrect-context-object-behaviour.html": 0.5047,
    "conformance/context/premultiplyalpha-test.html": 0.6976,
    "conformance/context/user-defined-properties-on-context.html": 0.202,
    "conformance/context/zero-sized-canvas.html": 0.3105,
    "conformance/extensions/ext-color-buffer-half-float.html": 0.8443,
    "conformance/extensions/ext-disjoint-timer-query.html": 0.1278,
    "conformance/extensions/ext-float-blend.html": 0.7111,
    "conformance/extensions/ext-polygon-offset-clamp.html": 0.8259,
    "conformance/extensions/ext-texture-compression-bptc.html": 0.5051,
    "conformance/extensions/ext-texture-compression-rgtc.html": 0.2073,
    "conformance/extensions/ext-texture-filter-anisotropic.html": 0.5203,
    "conformance/extensions/get-extension.html": 0.282,
    "conformance/extensions/khr-parallel-shader-compile.html": 10.7807,
    "conformance/extensions/oes-texture-float-linear.html": 0.6327,
    "conformance/extensions/s3tc-and-rgtc.html": 3.0811,
    "conformance/extensions/webgl-compressed-texture-astc.html": 0.2527,
    "conformance/extensions/webgl-compressed-texture-etc.html": 0.1168,
    "conformance/extensions/webgl-compressed-texture-etc1.html": 0.7705,
    "conformance/extensions/webgl-compressed-texture-pvrtc.html": 0.2398,
    "conformance/extensions/webgl-compressed-texture-s3tc-srgb.html": 2.0326,
    "conformance/extensions/webgl-compressed-texture-size-limit.html": 5.2573,
    "conformance/extensions/webgl-debug-renderer-info.html": 0.1522,
    "conformance/extensions/webgl-debug-shaders.html": 0.6768,
    "conformance/extensions/webgl-multi-draw.html": 7.5196,
    "conformance/glsl/bugs/angle-ambiguous-function-call.html": 0.2667,
    "conformance/glsl/bugs/angle-constructor-invalid-parameters.html": 0.166,
    "conformance/glsl/bugs/angle-d3d11-compiler-error.html": 0.0859,
    "conformance/glsl/bugs/angle-dx-variable-bug.html": 0.8257,
    "conformance/glsl/bugs/array-of-struct-with-int-first-position.html": 0.2097,
    "conformance/glsl/bugs/assign-to-swizzled-twice-in-function.html": 0.2482,
    "conformance/glsl/bugs/bool-type-cast-bug-int-float.html": 0.1952,
    "conformance/glsl/bugs/character-set.html": 0.2029,
    "conformance/glsl/bugs/compare-loop-index-to-uniform.html": 0.8159,
    "conformance/glsl/bugs/complex-glsl-does-not-crash.html": 1.412,
    "conformance/glsl/bugs/compound-assignment-type-combination.html": 0.7112,
    "conformance/glsl/bugs/conditional-discard-in-loop.html": 0.1289,
    "conformance/glsl/bugs/conditional-discard-optimization.html": 0.1978,
    "conformance/glsl/bugs/conditional-texture-fetch.html": 0.4784,
    "conformance/glsl/bugs/constant-precision-qualifier.html": 0.2964,
    "conformance/glsl/bugs/floor-div-cos-should-not-truncate.html": 0.199,
    "conformance/glsl/bugs/floored-division-accuracy.html": 0.2666,
    "conformance/glsl/bugs/fragcoord-linking-bug.html": 0.2497,
    "conformance/glsl/bugs/gl-fragcoord-multisampling-bug.html": 0.3817,
    "conformance/glsl/bugs/global-invariant-does-not-leak-across-shaders.html": 0.8276,
    "conformance/glsl/bugs/if-return-and-elseif.html": 0.2048,
    "conformance/glsl/bugs/in-parameter-passed-as-inout-argument-and-global.html": 0.1943,
    "conformance/glsl/bugs/init-array-with-loop.html": 0.1764,
    "conformance/glsl/bugs/invariant-does-not-leak-across-shaders.html": 0.161,
    "conformance/glsl/bugs/logic-inside-block-without-braces.html": 0.4087,
    "conformance/glsl/bugs/long-expressions-should-not-crash.html": 0.9654,
    "conformance/glsl/bugs/loop-if-loop-gradient.html": 0.0911,
    "conformance/glsl/bugs/modulo-arithmetic-accuracy.html": 0.2455,
    "conformance/glsl/bugs/multiplication-assignment.html": 0.7818,
    "conformance/glsl/bugs/nested-functions-should-not-crash.html": 0.4054,
    "conformance/glsl/bugs/nested-loops-with-break-and-continue.html": 0.147,
    "conformance/glsl/bugs/nested-sequence-operator.html": 0.4481,
    "conformance/glsl/bugs/pow-of-small-constant-in-user-defined-function.html": 0.7819,
    "conformance/glsl/bugs/pow-with-constant-exponent-should-not-crash.html": 0.181,
    "conformance/glsl/bugs/qualcomm-crash.html": 0.1917,
    "conformance/glsl/bugs/qualcomm-loop-with-continue-crash.html": 0.0851,
    "conformance/glsl/bugs/sampler-array-struct-function-arg.html": 0.2862,
    "conformance/glsl/bugs/sampler-array-using-loop-index.html": 0.1595,
    "conformance/glsl/bugs/sampler-struct-function-arg.html": 0.1333,
    "conformance/glsl/bugs/sequence-operator-evaluation-order.html": 0.296,
    "conformance/glsl/bugs/sketchfab-lighting-shader-crash.html": 0.2434,
    "conformance/glsl/bugs/struct-constructor-highp-bug.html": 0.3511,
    "conformance/glsl/bugs/struct-with-single-member-constructor.html": 0.1524,
    "conformance/glsl/bugs/temp-expressions-should-not-crash.html": 1.6606,
    "conformance/glsl/bugs/unary-minus-operator-float-bug.html": 0.1848,
    "conformance/glsl/bugs/undefined-index-should-not-crash.html": 0.2658,
    "conformance/glsl/bugs/uniforms-should-not-lose-values.html": 0.6721,
    "conformance/glsl/bugs/varying-arrays-should-not-be-reversed.html": 0.1565,
    "conformance/glsl/bugs/vector-matrix-constructor-scalarization.html": 0.2587,
    "conformance/glsl/bugs/vector-scalar-arithmetic-inside-loop-complex.html": 0.2395,
    "conformance/glsl/bugs/vector-scalar-arithmetic-inside-loop.html": 0.1972,
    "conformance/glsl/constructors/glsl-construct-bvec2.html": 0.5309,
    "conformance/glsl/constructors/glsl-construct-bvec3.html": 0.505,
    "conformance/glsl/constructors/glsl-construct-bvec4.html": 1.025,
    "conformance/glsl/constructors/glsl-construct-ivec2.html": 0.7343,
    "conformance/glsl/constructors/glsl-construct-ivec3.html": 0.7766,
    "conformance/glsl/constructors/glsl-construct-ivec4.html": 0.7838,
    "conformance/glsl/constructors/glsl-construct-mat2.html": 0.7069,
    "conformance/glsl/constructors/glsl-construct-mat3.html": 0.5339,
    "conformance/glsl/constructors/glsl-construct-mat4.html": 0.6142,
    "conformance/glsl/constructors/glsl-construct-vec-mat-corner-cases.html": 0.1953,
    "conformance/glsl/constructors/glsl-construct-vec-mat-index.html": 0.144,
    "conformance/glsl/constructors/glsl-construct-vec2.html": 0.6574,
    "conformance/glsl/constructors/glsl-construct-vec3.html": 0.5992,
    "conformance/glsl/constructors/glsl-construct-vec4.html": 0.9543,
    "conformance/glsl/functions/glsl-function-abs.html": 0.4054,
    "conformance/glsl/functions/glsl-function-acos.html": 0.3668,
    "conformance/glsl/functions/glsl-function-asin.html": 0.3331,
    "conformance/glsl/functions/glsl-function-atan-xy.html": 0.3549,
    "conformance/glsl/functions/glsl-function-atan.html": 0.5094,
    "conformance/glsl/functions/glsl-function-ceil.html": 0.5861,
    "conformance/glsl/functions/glsl-function-clamp-float.html": 0.7567,
    "conformance/glsl/functions/glsl-function-clamp-gentype.html": 0.3282,
    "conformance/glsl/functions/glsl-function-cos.html": 0.4563,
    "conformance/glsl/functions/glsl-function-cross.html": 0.3261,
    "conformance/glsl/functions/glsl-function-distance.html": 0.3216,
    "conformance/glsl/functions/glsl-function-dot.html": 0.4121,
    "conformance/glsl/functions/glsl-function-faceforward.html": 0.4832,
    "conformance/glsl/functions/glsl-function-floor.html": 0.3805,
    "conformance/glsl/functions/glsl-function-fract.html": 0.3401,
    "conformance/glsl/functions/glsl-function-length.html": 0.3067,
    "conformance/glsl/functions/glsl-function-max-float.html": 0.5073,
    "conformance/glsl/functions/glsl-function-max-gentype.html": 0.5511,
    "conformance/glsl/functions/glsl-function-min-float.html": 0.4102,
    "conformance/glsl/functions/glsl-function-min-gentype.html": 0.5924,
    "conformance/glsl/functions/glsl-function-mix-float.html": 1.0891,
    "conformance/glsl/functions/glsl-function-mix-gentype.html": 0.6597,
    "conformance/glsl/functions/glsl-function-mod-float.html": 0.6367,
    "conformance/glsl/functions/glsl-function-mod-gentype.html": 0.3279,
    "conformance/glsl/functions/glsl-function-normalize.html": 0.4238,
    "conformance/glsl/functions/glsl-function-reflect.html": 0.5252,
    "conformance/glsl/functions/glsl-function-sign.html": 0.6821,
    "conformance/glsl/functions/glsl-function-sin.html": 0.3107,
    "conformance/glsl/functions/glsl-function-smoothstep-float.html": 0.3661,
    "conformance/glsl/functions/glsl-function-smoothstep-gentype.html": 0.682,
    "conformance/glsl/functions/glsl-function-step-float.html": 0.5308,
    "conformance/glsl/functions/glsl-function-step-gentype.html": 0.3379,
    "conformance/glsl/functions/glsl-function.html": 0.3446,
    "conformance/glsl/implicit/add_int_float.vert.html": 0.1268,
    "conformance/glsl/implicit/add_int_mat2.vert.html": 0.1505,
    "conformance/glsl/implicit/add_int_mat3.vert.html": 0.1552,
    "conformance/glsl/implicit/add_int_mat4.vert.html": 0.0908,
    "conformance/glsl/implicit/add_int_vec2.vert.html": 0.1006,
    "conformance/glsl/implicit/add_int_vec3.vert.html": 0.1885,
    "conformance/glsl/implicit/add_int_vec4.vert.html": 0.1402,
    "conformance/glsl/implicit/add_ivec2_vec2.vert.html": 0.1093,
    "conformance/glsl/implicit/add_ivec3_vec3.vert.html": 0.2865,
    "conformance/glsl/implicit/add_ivec4_vec4.vert.html": 0.1632,
    "conformance/glsl/implicit/assign_int_to_float.vert.html": 0.116,
    "conformance/glsl/implicit/assign_ivec2_to_vec2.vert.html": 0.0921,
    "conformance/glsl/implicit/assign_ivec3_to_vec3.vert.html": 0.1337,
    "conformance/glsl/implicit/assign_ivec4_to_vec4.vert.html": 0.0852,
    "conformance/glsl/implicit/construct_struct.vert.html": 0.102,
    "conformance/glsl/implicit/divide_int_float.vert.html": 0.1667,
    "conformance/glsl/implicit/divide_int_mat2.vert.html": 0.1522,
    "conformance/glsl/implicit/divide_int_mat3.vert.html": 0.1521,
    "conformance/glsl/implicit/divide_int_mat4.vert.html": 0.1773,
    "conformance/glsl/implicit/divide_int_vec2.vert.html": 0.1825,
    "conformance/glsl/implicit/divide_int_vec3.vert.html": 0.1595,
    "conformance/glsl/implicit/divide_int_vec4.vert.html": 0.1036,
    "conformance/glsl/implicit/divide_ivec2_vec2.vert.html": 0.0782,
    "conformance/glsl/implicit/divide_ivec3_vec3.vert.html": 0.1975,
    "conformance/glsl/implicit/divide_ivec4_vec4.vert.html": 0.0852,
    "conformance/glsl/implicit/equal_int_float.vert.html": 0.1635,
    "conformance/glsl/implicit/equal_ivec2_vec2.vert.html": 0.0932,
    "conformance/glsl/implicit/equal_ivec3_vec3.vert.html": 0.1384,
    "conformance/glsl/implicit/equal_ivec4_vec4.vert.html": 0.0917,
    "conformance/glsl/implicit/function_int_float.vert.html": 0.0906,
    "conformance/glsl/implicit/function_ivec2_vec2.vert.html": 0.0877,
    "conformance/glsl/implicit/function_ivec3_vec3.vert.html": 0.0907,
    "conformance/glsl/implicit/function_ivec4_vec4.vert.html": 0.0938,
    "conformance/glsl/implicit/greater_than.vert.html": 0.0932,
    "conformance/glsl/implicit/greater_than_equal.vert.html": 0.2183,
    "conformance/glsl/implicit/less_than.vert.html": 0.1271,
    "conformance/glsl/implicit/less_than_equal.vert.html": 0.1215,
    "conformance/glsl/implicit/multiply_int_float.vert.html": 0.0828,
    "conformance/glsl/implicit/multiply_int_mat2.vert.html": 0.1075,
    "conformance/glsl/implicit/multiply_int_mat3.vert.html": 0.2487,
    "conformance/glsl/implicit/multiply_int_mat4.vert.html": 0.0843,
    "conformance/glsl/implicit/multiply_int_vec2.vert.html": 0.1478,
    "conformance/glsl/implicit/multiply_int_vec3.vert.html": 0.1701,
    "conformance/glsl/implicit/multiply_int_vec4.vert.html": 0.1694,
    "conformance/glsl/implicit/multiply_ivec2_vec2.vert.html": 0.1822,
    "conformance/glsl/implicit/multiply_ivec3_vec3.vert.html": 0.1518,
    "conformance/glsl/implicit/multiply_ivec4_vec4.vert.html": 0.1318,
    "conformance/glsl/implicit/not_equal_int_float.vert.html": 0.081,
    "conformance/glsl/implicit/not_equal_ivec2_vec2.vert.html": 0.0946,
    "conformance/glsl/implicit/not_equal_ivec3_vec3.vert.html": 0.1149,
    "conformance/glsl/implicit/not_equal_ivec4_vec4.vert.html": 0.1469,
    "conformance/glsl/implicit/subtract_int_float.vert.html": 0.1385,
    "conformance/glsl/implicit/subtract_int_mat2.vert.html": 0.1167,
    "conformance/glsl/implicit/subtract_int_mat3.vert.html": 0.0873,
    "conformance/glsl/implicit/subtract_int_mat4.vert.html": 0.1776,
    "conformance/glsl/implicit/subtract_int_vec2.vert.html": 0.0914,
    "conformance/glsl/implicit/subtract_int_vec3.vert.html": 0.0835,
    "conformance/glsl/implicit/subtract_int_vec4.vert.html": 0.1584,
    "conformance/glsl/implicit/subtract_ivec2_vec2.vert.html": 0.0972,
    "conformance/glsl/implicit/subtract_ivec3_vec3.vert.html": 0.148,
    "conformance/glsl/implicit/subtract_ivec4_vec4.vert.html": 0.0808,
    "conformance/glsl/implicit/ternary_int_float.vert.html": 0.0874,
    "conformance/glsl/implicit/ternary_ivec2_vec2.vert.html": 0.0854,
    "conformance/glsl/implicit/ternary_ivec3_vec3.vert.html": 0.1483,
    "conformance/glsl/implicit/ternary_ivec4_vec4.vert.html": 0.3415,
    "conformance/glsl/literals/float_literal.vert.html": 0.234,
    "conformance/glsl/literals/literal_precision.html": 0.1468,
    "conformance/glsl/literals/overflow_leak.vert.html": 0.099,
    "conformance/glsl/matrices/glsl-mat3-construction.html": 0.1546,
    "conformance/glsl/matrices/glsl-mat4-to-mat3.html": 0.1415,
    "conformance/glsl/matrices/matrix-compound-multiply.html": 0.149,
    "conformance/glsl/misc/boolean_precision.html": 0.0964,
    "conformance/glsl/misc/const-variable-initialization.html": 0.333,
    "conformance/glsl/misc/embedded-struct-definitions-forbidden.html": 0.1575,
    "conformance/glsl/misc/empty-declaration.html": 0.0968,
    "conformance/glsl/misc/empty_main.vert.html": 0.0977,
    "conformance/glsl/misc/expression-list-in-declarator-initializer.html": 0.5987,
    "conformance/glsl/misc/fragcolor-fragdata-invariant.html": 1.6457,
    "conformance/glsl/misc/gl_position_unset.vert.html": 0.0921,
    "conformance/glsl/misc/global-variable-init.html": 0.1489,
    "conformance/glsl/misc/glsl-function-nodes.html": 0.1722,
    "conformance/glsl/misc/glsl-long-variable-names.html": 0.1506,
    "conformance/glsl/misc/glsl-vertex-branch.html": 0.191,
    "conformance/glsl/misc/large-loop-compile.html": 0.7264,
    "conformance/glsl/misc/local-variable-shadowing-outer-function.html": 0.0766,
    "conformance/glsl/misc/non-ascii-comments.vert.html": 0.073,
    "conformance/glsl/misc/non-ascii.vert.html": 0.1334,
    "conformance/glsl/misc/re-compile-re-link.html": 0.2681,
    "conformance/glsl/misc/sampler-operand.html": 0.1166,
    "conformance/glsl/misc/sequence-operator-returns-constant.html": 0.1014,
    "conformance/glsl/misc/shader-precision-format-obeyed.html": 0.0969,
    "conformance/glsl/misc/shader-struct-scope.html": 0.1486,
    "conformance/glsl/misc/shader-uniform-packing-restrictions.html": 1.1973,
    "conformance/glsl/misc/shader-varying-packing-restrictions.html": 0.2513,
    "conformance/glsl/misc/shader-with-256-character-define.html": 0.1116,
    "conformance/glsl/misc/shader-with-256-character-identifier.frag.html": 0.1144,
    "conformance/glsl/misc/shader-with-_webgl-identifier.vert.html": 0.0845,
    "conformance/glsl/misc/shader-with-arbitrary-indexing.frag.html": 0.0739,
    "conformance/glsl/misc/shader-with-arbitrary-indexing.vert.html": 0.1036,
    "conformance/glsl/misc/shader-with-array-of-structs-containing-arrays.html": 0.1253,
    "conformance/glsl/misc/shader-with-array-of-structs-uniform.html": 0.181,
    "conformance/glsl/misc/shader-with-attrib-array.vert.html": 0.1341,
    "conformance/glsl/misc/shader-with-attrib-struct.vert.html": 0.1334,
    "conformance/glsl/misc/shader-with-clipvertex.vert.html": 0.0927,
    "conformance/glsl/misc/shader-with-comma-assignment.html": 0.1678,
    "conformance/glsl/misc/shader-with-comma-conditional-assignment.html": 0.1873,
    "conformance/glsl/misc/shader-with-comma-separated-variable-declarations.html": 0.2171,
    "conformance/glsl/misc/shader-with-conditional-scoping-negative.html": 0.0783,
    "conformance/glsl/misc/shader-with-conditional-scoping.html": 0.137,
    "conformance/glsl/misc/shader-with-default-precision.frag.html": 0.1422,
    "conformance/glsl/misc/shader-with-default-precision.vert.html": 0.4299,
    "conformance/glsl/misc/shader-with-dfdx-no-ext.frag.html": 0.0988,
    "conformance/glsl/misc/shader-with-dfdx.frag.html": 0.176,
    "conformance/glsl/misc/shader-with-do-loop.html": 0.1354,
    "conformance/glsl/misc/shader-with-error-directive.html": 0.0881,
    "conformance/glsl/misc/shader-with-explicit-int-cast.vert.html": 0.1417,
    "conformance/glsl/misc/shader-with-float-return-value.frag.html": 0.1474,
    "conformance/glsl/misc/shader-with-for-loop.html": 0.1415,
    "conformance/glsl/misc/shader-with-for-scoping.html": 0.1363,
    "conformance/glsl/misc/shader-with-frag-depth.frag.html": 0.1477,
    "conformance/glsl/misc/shader-with-function-recursion.frag.html": 0.1348,
    "conformance/glsl/misc/shader-with-function-scoped-struct.html": 0.0806,
    "conformance/glsl/misc/shader-with-functional-scoping.html": 0.1103,
    "conformance/glsl/misc/shader-with-glcolor.vert.html": 0.0838,
    "conformance/glsl/misc/shader-with-gles-1.frag.html": 0.1389,
    "conformance/glsl/misc/shader-with-gles-symbol.frag.html": 0.128,
    "conformance/glsl/misc/shader-with-global-variable-precision-mismatch.html": 0.0981,
    "conformance/glsl/misc/shader-with-glprojectionmatrix.vert.html": 0.0944,
    "conformance/glsl/misc/shader-with-hex-int-constant-macro.html": 0.0919,
    "conformance/glsl/misc/shader-with-implicit-vec3-to-vec4-cast.vert.html": 0.0859,
    "conformance/glsl/misc/shader-with-include.vert.html": 0.0971,
    "conformance/glsl/misc/shader-with-int-return-value.frag.html": 0.1358,
    "conformance/glsl/misc/shader-with-invalid-identifier.frag.html": 0.123,
    "conformance/glsl/misc/shader-with-ivec2-return-value.frag.html": 0.0984,
    "conformance/glsl/misc/shader-with-ivec3-return-value.frag.html": 0.087,
    "conformance/glsl/misc/shader-with-ivec4-return-value.frag.html": 0.0891,
    "conformance/glsl/misc/shader-with-limited-indexing.frag.html": 0.1233,
    "conformance/glsl/misc/shader-with-long-line.html": 0.1253,
    "conformance/glsl/misc/shader-with-non-ascii-error.frag.html": 0.1525,
    "conformance/glsl/misc/shader-with-non-reserved-words-1-of-8.html": 1.3888,
    "conformance/glsl/misc/shader-with-non-reserved-words-2-of-8.html": 1.4884,
    "conformance/glsl/misc/shader-with-non-reserved-words-3-of-8.html": 1.6095,
    "conformance/glsl/misc/shader-with-non-reserved-words-4-of-8.html": 1.5055,
    "conformance/glsl/misc/shader-with-non-reserved-words-5-of-8.html": 1.5244,
    "conformance/glsl/misc/shader-with-non-reserved-words-6-of-8.html": 1.2204,
    "conformance/glsl/misc/shader-with-non-reserved-words-7-of-8.html": 2.4754,
    "conformance/glsl/misc/shader-with-non-reserved-words-8-of-8.html": 1.2065,
    "conformance/glsl/misc/shader-with-precision.frag.html": 0.2665,
    "conformance/glsl/misc/shader-with-preprocessor-whitespace.html": 0.0835,
    "conformance/glsl/misc/shader-with-quoted-error.frag.html": 0.0832,
    "conformance/glsl/misc/shader-with-reserved-words.html": 2.3818,
    "conformance/glsl/misc/shader-with-short-circuiting-operators.html": 0.5041,
    "conformance/glsl/misc/shader-with-similar-uniform-array-names.html": 0.1371,
    "conformance/glsl/misc/shader-with-too-many-uniforms.html": 0.1239,
    "conformance/glsl/misc/shader-with-two-initializer-types.html": 0.0855,
    "conformance/glsl/misc/shader-with-undefined-preprocessor-symbol.frag.html": 0.1421,
    "conformance/glsl/misc/shader-with-uniform-in-loop-condition.vert.html": 0.0916,
    "conformance/glsl/misc/shader-with-vec2-return-value.frag.html": 0.131,
    "conformance/glsl/misc/shader-with-vec3-return-value.frag.html": 0.1093,
    "conformance/glsl/misc/shader-with-vec4-return-value.frag.html": 0.0924,
    "conformance/glsl/misc/shader-with-vec4-vec3-vec4-conditional.html": 0.0997,
    "conformance/glsl/misc/shader-with-version-100.frag.html": 0.1391,
    "conformance/glsl/misc/shader-with-version-100.vert.html": 0.1547,
    "conformance/glsl/misc/shader-with-version-120.vert.html": 0.1538,
    "conformance/glsl/misc/shader-with-version-130.vert.html": 0.0827,
    "conformance/glsl/misc/shader-with-webgl-identifier.vert.html": 0.1675,
    "conformance/glsl/misc/shader-with-while-loop.html": 0.1397,
    "conformance/glsl/misc/shader-without-precision.frag.html": 0.0939,
    "conformance/glsl/misc/shaders-with-constant-expression-loop-conditions.html": 0.1085,
    "conformance/glsl/misc/shaders-with-invariance.html": 0.1155,
    "conformance/glsl/misc/shaders-with-mis-matching-uniforms.html": 0.348,
    "conformance/glsl/misc/shaders-with-mis-matching-varyings.html": 0.2133,
    "conformance/glsl/misc/shaders-with-missing-varyings.html": 0.1758,
    "conformance/glsl/misc/shaders-with-name-conflicts.html": 0.09,
    "conformance/glsl/misc/shaders-with-uniform-structs.html": 0.1154,
    "conformance/glsl/misc/shaders-with-varyings.html": 0.1745,
    "conformance/glsl/misc/shared.html": 0.2859,
    "conformance/glsl/misc/struct-as-inout-parameter.html": 0.1227,
    "conformance/glsl/misc/struct-as-out-parameter.html": 0.1641,
    "conformance/glsl/misc/struct-assign.html": 0.163,
    "conformance/glsl/misc/struct-equals.html": 0.1285,
    "conformance/glsl/misc/struct-mixed-array-declarators.html": 0.4076,
    "conformance/glsl/misc/struct-nesting-exceeds-maximum.html": 0.135,
    "conformance/glsl/misc/struct-nesting-of-variable-names.html": 1.3704,
    "conformance/glsl/misc/struct-nesting-under-maximum.html": 0.1182,
    "conformance/glsl/misc/struct-specifiers-in-uniforms.html": 0.2196,
    "conformance/glsl/misc/struct-unary-operators.html": 0.1117,
    "conformance/glsl/misc/ternary-operator-on-arrays.html": 0.0789,
    "conformance/glsl/misc/ternary-operators-in-global-initializers.html": 0.192,
    "conformance/glsl/misc/ternary-operators-in-initializers.html": 0.2068,
    "conformance/glsl/misc/uninitialized-local-global-variables.html": 0.2352,
    "conformance/glsl/preprocessor/comments.html": 0.1091,
    "conformance/glsl/preprocessor/macro-expansion-tricky.html": 0.1801,
    "conformance/glsl/reserved/_webgl_field.vert.html": 0.0844,
    "conformance/glsl/reserved/_webgl_function.vert.html": 0.0812,
    "conformance/glsl/reserved/_webgl_struct.vert.html": 0.0856,
    "conformance/glsl/reserved/_webgl_variable.vert.html": 0.092,
    "conformance/glsl/reserved/webgl_field.vert.html": 0.0925,
    "conformance/glsl/reserved/webgl_function.vert.html": 0.0855,
    "conformance/glsl/reserved/webgl_struct.vert.html": 0.0867,
    "conformance/glsl/reserved/webgl_variable.vert.html": 0.1432,
    "conformance/glsl/samplers/glsl-function-texture2d-bias.html": 0.1609,
    "conformance/glsl/samplers/glsl-function-texture2dlod.html": 0.2671,
    "conformance/glsl/samplers/glsl-function-texture2dproj.html": 0.1914,
    "conformance/glsl/samplers/glsl-function-texture2dprojlod.html": 0.6388,
    "conformance/glsl/variables/gl-fragcoord-xy-values.html": 0.1209,
    "conformance/glsl/variables/gl-fragcoord.html": 0.2103,
    "conformance/glsl/variables/gl-fragdata-and-fragcolor.html": 0.0831,
    "conformance/glsl/variables/gl-frontfacing.html": 0.1009,
    "conformance/glsl/variables/gl-pointcoord.html": 0.1414,
    "conformance/glsl/variables/glsl-built-ins.html": 0.434,
    "conformance/limits/gl-line-width.html": 0.169,
    "conformance/limits/gl-max-texture-dimensions.html": 0.0998,
    "conformance/limits/gl-min-attribs.html": 0.1171,
    "conformance/limits/gl-min-textures.html": 0.1362,
    "conformance/limits/gl-min-uniforms.html": 0.1544,
    "conformance/misc/bad-arguments-test.html": 0.1134,
    "conformance/misc/boolean-argument-conversion.html": 0.0898,
    "conformance/misc/delayed-drawing.html": 1.1415,
    "conformance/misc/error-reporting.html": 0.1168,
    "conformance/misc/expando-loss.html": 0.1774,
    "conformance/misc/functions-returning-strings.html": 0.1486,
    "conformance/misc/hint.html": 0.2622,
    "conformance/misc/invalid-passed-params.html": 0.1939,
    "conformance/misc/is-object.html": 0.1131,
    "conformance/misc/null-object-behaviour.html": 0.1665,
    "conformance/misc/object-deletion-behaviour.html": 0.2176,
    "conformance/misc/shader-precision-format.html": 0.3972,
    "conformance/misc/type-conversion-test.html": 0.3302,
    "conformance/misc/uninitialized-test.html": 0.3132,
    "conformance/misc/webgl-specific-stencil-settings.html": 0.3708,
    "conformance/misc/webgl-specific.html": 0.2157,
    "conformance/more/conformance/constants.html": 0.2358,
    "conformance/more/conformance/getContext.html": 0.2321,
    "conformance/more/conformance/methods.html": 0.1256,
    "conformance/more/conformance/quickCheckAPI-A.html": 0.2505,
    "conformance/more/conformance/quickCheckAPI-B1.html": 0.2223,
    "conformance/more/conformance/quickCheckAPI-B2.html": 0.2133,
    "conformance/more/conformance/quickCheckAPI-B3.html": 0.2263,
    "conformance/more/conformance/quickCheckAPI-B4.html": 0.1972,
    "conformance/more/conformance/quickCheckAPI-C.html": 0.1044,
    "conformance/more/conformance/quickCheckAPI-D_G.html": 0.2302,
    "conformance/more/conformance/quickCheckAPI-G_I.html": 0.177,
    "conformance/more/conformance/quickCheckAPI-L_S.html": 0.2086,
    "conformance/more/conformance/quickCheckAPI-S_V.html": 0.1496,
    "conformance/more/conformance/webGLArrays.html": 0.2099,
    "conformance/more/functions/bindBuffer.html": 0.0959,
    "conformance/more/functions/bindBufferBadArgs.html": 0.0874,
    "conformance/more/functions/bindFramebufferLeaveNonZero.html": 0.087,
    "conformance/more/functions/bufferData.html": 0.1048,
    "conformance/more/functions/bufferDataBadArgs.html": 0.1349,
    "conformance/more/functions/bufferSubData.html": 0.1515,
    "conformance/more/functions/bufferSubDataBadArgs.html": 0.1286,
    "conformance/more/functions/copyTexImage2D.html": 0.1942,
    "conformance/more/functions/copyTexImage2DBadArgs.html": 0.1023,
    "conformance/more/functions/copyTexSubImage2D.html": 0.3001,
    "conformance/more/functions/copyTexSubImage2DBadArgs.html": 0.2612,
    "conformance/more/functions/deleteBufferBadArgs.html": 0.0988,
    "conformance/more/functions/drawArrays.html": 0.1224,
    "conformance/more/functions/drawElements.html": 0.1619,
    "conformance/more/functions/isTests.html": 0.1355,
    "conformance/more/functions/isTestsBadArgs.html": 0.0861,
    "conformance/more/functions/readPixels.html": 0.1082,
    "conformance/more/functions/readPixelsBadArgs.html": 0.158,
    "conformance/more/functions/texImage2D.html": 0.1376,
    "conformance/more/functions/texImage2DBadArgs.html": 0.0947,
    "conformance/more/functions/texImage2DHTML.html": 0.3213,
    "conformance/more/functions/texImage2DHTMLBadArgs.html": 0.1556,
    "conformance/more/functions/texSubImage2D.html": 0.1095,
    "conformance/more/functions/texSubImage2DBadArgs.html": 0.097,
    "conformance/more/functions/texSubImage2DHTML.html": 0.3664,
    "conformance/more/functions/texSubImage2DHTMLBadArgs.html": 0.1311,
    "conformance/more/functions/uniformMatrix.html": 0.1163,
    "conformance/more/functions/uniformMatrixBadArgs.html": 0.1315,
    "conformance/more/functions/uniformf.html": 0.1504,
    "conformance/more/functions/uniformfArrayLen1.html": 0.1341,
    "conformance/more/functions/uniformfBadArgs.html": 0.1172,
    "conformance/more/functions/uniformi.html": 0.2337,
    "conformance/more/functions/uniformiBadArgs.html": 0.1176,
    "conformance/more/functions/vertexAttrib.html": 0.173,
    "conformance/more/functions/vertexAttribBadArgs.html": 0.1298,
    "conformance/more/functions/vertexAttribPointer.html": 0.1118,
    "conformance/more/functions/vertexAttribPointerBadArgs.html": 0.1082,
    "conformance/more/glsl/arrayOutOfBounds.html": 0.1607,
    "conformance/more/glsl/uniformOutOfBounds.html": 0.1652,
    "conformance/offscreencanvas/context-attribute-preserve-drawing-buffer.html": 0.8126,
    "conformance/offscreencanvas/context-creation-worker.html": 0.1094,
    "conformance/offscreencanvas/context-creation.html": 0.0985,
    "conformance/offscreencanvas/context-lost-restored-worker.html": 0.2092,
    "conformance/offscreencanvas/context-lost-restored.html": 0.1086,
    "conformance/offscreencanvas/context-lost-worker.html": 0.1256,
    "conformance/offscreencanvas/context-lost.html": 0.1583,
    "conformance/offscreencanvas/methods-worker.html": 0.1983,
    "conformance/offscreencanvas/methods.html": 0.1308,
    "conformance/offscreencanvas/offscreencanvas-resize.html": 0.1819,
    "conformance/offscreencanvas/offscreencanvas-timer-query.html": 0.1224,
    "conformance/offscreencanvas/offscreencanvas-transfer-image-bitmap.html": 0.2651,
    "conformance/ogles/GL/abs/abs_001_to_006.html": 0.7412,
    "conformance/ogles/GL/acos/acos_001_to_006.html": 1.5409,
    "conformance/ogles/GL/all/all_001_to_004.html": 0.5697,
    "conformance/ogles/GL/any/any_001_to_004.html": 0.5661,
    "conformance/ogles/GL/array/array_001_to_006.html": 0.3969,
    "conformance/ogles/GL/asin/asin_001_to_006.html": 1.3304,
    "conformance/ogles/GL/atan/atan_001_to_008.html": 1.04,
    "conformance/ogles/GL/atan/atan_009_to_012.html": 0.7526,
    "conformance/ogles/GL/biConstants/biConstants_001_to_008.html": 0.8405,
    "conformance/ogles/GL/biConstants/biConstants_009_to_016.html": 0.8035,
    "conformance/ogles/GL/biuDepthRange/biuDepthRange_001_to_002.html": 0.347,
    "conformance/ogles/GL/build/build_001_to_008.html": 0.1774,
    "conformance/ogles/GL/build/build_009_to_016.html": 0.1685,
    "conformance/ogles/GL/build/build_017_to_024.html": 0.177,
    "conformance/ogles/GL/build/build_025_to_032.html": 0.1327,
    "conformance/ogles/GL/build/build_033_to_040.html": 0.1353,
    "conformance/ogles/GL/build/build_041_to_048.html": 0.1587,
    "conformance/ogles/GL/build/build_049_to_056.html": 0.1319,
    "conformance/ogles/GL/build/build_057_to_064.html": 0.2201,
    "conformance/ogles/GL/build/build_065_to_072.html": 0.1548,
    "conformance/ogles/GL/build/build_073_to_080.html": 0.135,
    "conformance/ogles/GL/build/build_081_to_088.html": 0.1783,
    "conformance/ogles/GL/build/build_089_to_096.html": 0.1882,
    "conformance/ogles/GL/build/build_097_to_104.html": 0.1411,
    "conformance/ogles/GL/build/build_105_to_112.html": 0.3145,
    "conformance/ogles/GL/build/build_113_to_120.html": 0.1519,
    "conformance/ogles/GL/build/build_121_to_128.html": 0.1671,
    "conformance/ogles/GL/build/build_129_to_136.html": 0.1349,
    "conformance/ogles/GL/build/build_137_to_144.html": 0.1422,
    "conformance/ogles/GL/build/build_145_to_152.html": 0.1338,
    "conformance/ogles/GL/build/build_153_to_160.html": 0.1962,
    "conformance/ogles/GL/build/build_161_to_168.html": 0.1284,
    "conformance/ogles/GL/build/build_169_to_176.html": 0.1748,
    "conformance/ogles/GL/build/build_177_to_178.html": 0.0929,
    "conformance/ogles/GL/built_in_varying_array_out_of_bounds/built_in_varying_array_out_of_bounds_001_to_001.html": 0.1287,
    "conformance/ogles/GL/ceil/ceil_001_to_006.html": 0.7342,
    "conformance/ogles/GL/clamp/clamp_001_to_006.html": 0.6205,
    "conformance/ogles/GL/control_flow/control_flow_001_to_008.html": 0.5397,
    "conformance/ogles/GL/control_flow/control_flow_009_to_010.html": 0.2782,
    "conformance/ogles/GL/cos/cos_001_to_006.html": 0.8611,
    "conformance/ogles/GL/cross/cross_001_to_002.html": 0.5746,
    "conformance/ogles/GL/default/default_001_to_001.html": 0.1484,
    "conformance/ogles/GL/degrees/degrees_001_to_006.html": 1.2021,
    "conformance/ogles/GL/discard/discard_001_to_002.html": 0.2231,
    "conformance/ogles/GL/distance/distance_001_to_006.html": 0.6764,
    "conformance/ogles/GL/dot/dot_001_to_006.html": 0.7765,
    "conformance/ogles/GL/equal/equal_001_to_008.html": 0.9212,
    "conformance/ogles/GL/equal/equal_009_to_012.html": 0.6413,
    "conformance/ogles/GL/exp/exp_001_to_008.html": 1.4969,
    "conformance/ogles/GL/exp/exp_009_to_012.html": 0.7903,
    "conformance/ogles/GL/exp2/exp2_001_to_008.html": 1.3357,
    "conformance/ogles/GL/exp2/exp2_009_to_012.html": 0.7468,
    "conformance/ogles/GL/faceforward/faceforward_001_to_006.html": 0.7888,
    "conformance/ogles/GL/floor/floor_001_to_006.html": 0.8103,
    "conformance/ogles/GL/fract/fract_001_to_006.html": 0.8574,
    "conformance/ogles/GL/functions/functions_001_to_008.html": 0.741,
    "conformance/ogles/GL/functions/functions_009_to_016.html": 0.5764,
    "conformance/ogles/GL/functions/functions_017_to_024.html": 0.5875,
    "conformance/ogles/GL/functions/functions_025_to_032.html": 0.6137,
    "conformance/ogles/GL/functions/functions_033_to_040.html": 0.8788,
    "conformance/ogles/GL/functions/functions_041_to_048.html": 0.6025,
    "conformance/ogles/GL/functions/functions_049_to_056.html": 0.6322,
    "conformance/ogles/GL/functions/functions_057_to_064.html": 0.5403,
    "conformance/ogles/GL/functions/functions_065_to_072.html": 0.5867,
    "conformance/ogles/GL/functions/functions_073_to_080.html": 0.6845,
    "conformance/ogles/GL/functions/functions_081_to_088.html": 0.5762,
    "conformance/ogles/GL/functions/functions_089_to_096.html": 0.6349,
    "conformance/ogles/GL/functions/functions_097_to_104.html": 0.6466,
    "conformance/ogles/GL/functions/functions_105_to_112.html": 0.6876,
    "conformance/ogles/GL/functions/functions_113_to_120.html": 0.691,
    "conformance/ogles/GL/functions/functions_121_to_126.html": 0.5231,
    "conformance/ogles/GL/gl_FragCoord/gl_FragCoord_001_to_003.html": 0.2683,
    "conformance/ogles/GL/gl_FrontFacing/gl_FrontFacing_001_to_001.html": 0.1527,
    "conformance/ogles/GL/greaterThan/greaterThan_001_to_008.html": 0.9686,
    "conformance/ogles/GL/greaterThanEqual/greaterThanEqual_001_to_008.html": 0.9709,
    "conformance/ogles/GL/inversesqrt/inversesqrt_001_to_006.html": 0.7466,
    "conformance/ogles/GL/length/length_001_to_006.html": 0.7663,
    "conformance/ogles/GL/lessThan/lessThan_001_to_008.html": 0.8425,
    "conformance/ogles/GL/lessThanEqual/lessThanEqual_001_to_008.html": 0.9548,
    "conformance/ogles/GL/log/log_001_to_008.html": 0.8911,
    "conformance/ogles/GL/log/log_009_to_012.html": 0.7514,
    "conformance/ogles/GL/log2/log2_001_to_008.html": 1.5096,
    "conformance/ogles/GL/log2/log2_009_to_012.html": 0.8518,
    "conformance/ogles/GL/mat/mat_001_to_008.html": 0.614,
    "conformance/ogles/GL/mat/mat_009_to_016.html": 0.7764,
    "conformance/ogles/GL/mat/mat_017_to_024.html": 0.6057,
    "conformance/ogles/GL/mat/mat_025_to_032.html": 1.2807,
    "conformance/ogles/GL/mat/mat_033_to_040.html": 0.8906,
    "conformance/ogles/GL/mat/mat_041_to_046.html": 0.4945,
    "conformance/ogles/GL/mat3/mat3_001_to_006.html": 0.817,
    "conformance/ogles/GL/matrixCompMult/matrixCompMult_001_to_004.html": 0.6207,
    "conformance/ogles/GL/max/max_001_to_006.html": 0.7019,
    "conformance/ogles/GL/min/min_001_to_006.html": 1.1245,
    "conformance/ogles/GL/mix/mix_001_to_006.html": 0.6979,
    "conformance/ogles/GL/mod/mod_001_to_008.html": 0.9647,
    "conformance/ogles/GL/normalize/normalize_001_to_006.html": 0.7748,
    "conformance/ogles/GL/not/not_001_to_004.html": 0.554,
    "conformance/ogles/GL/notEqual/notEqual_001_to_008.html": 0.918,
    "conformance/ogles/GL/notEqual/notEqual_009_to_012.html": 0.5647,
    "conformance/ogles/GL/operators/operators_001_to_008.html": 0.5849,
    "conformance/ogles/GL/operators/operators_009_to_016.html": 0.6068,
    "conformance/ogles/GL/operators/operators_017_to_024.html": 0.604,
    "conformance/ogles/GL/operators/operators_025_to_026.html": 0.2237,
    "conformance/ogles/GL/pow/pow_001_to_008.html": 1.0786,
    "conformance/ogles/GL/pow/pow_009_to_016.html": 1.0264,
    "conformance/ogles/GL/pow/pow_017_to_024.html": 1.3014,
    "conformance/ogles/GL/radians/radians_001_to_006.html": 0.8352,
    "conformance/ogles/GL/reflect/reflect_001_to_006.html": 1.2338,
    "conformance/ogles/GL/refract/refract_001_to_006.html": 0.9279,
    "conformance/ogles/GL/sign/sign_001_to_006.html": 0.8887,
    "conformance/ogles/GL/sin/sin_001_to_006.html": 0.9305,
    "conformance/ogles/GL/smoothstep/smoothstep_001_to_006.html": 0.7571,
    "conformance/ogles/GL/sqrt/sqrt_001_to_006.html": 0.7386,
    "conformance/ogles/GL/step/step_001_to_006.html": 0.7475,
    "conformance/ogles/GL/struct/struct_001_to_008.html": 0.8378,
    "conformance/ogles/GL/struct/struct_009_to_016.html": 0.7436,
    "conformance/ogles/GL/struct/struct_017_to_024.html": 0.7399,
    "conformance/ogles/GL/struct/struct_025_to_032.html": 0.8805,
    "conformance/ogles/GL/struct/struct_033_to_040.html": 0.881,
    "conformance/ogles/GL/struct/struct_041_to_048.html": 0.88,
    "conformance/ogles/GL/struct/struct_049_to_056.html": 0.8041,
    "conformance/ogles/GL/swizzlers/swizzlers_001_to_008.html": 0.8371,
    "conformance/ogles/GL/swizzlers/swizzlers_009_to_016.html": 1.055,
    "conformance/ogles/GL/swizzlers/swizzlers_017_to_024.html": 0.9275,
    "conformance/ogles/GL/swizzlers/swizzlers_025_to_032.html": 0.9433,
    "conformance/ogles/GL/swizzlers/swizzlers_033_to_040.html": 1.3039,
    "conformance/ogles/GL/swizzlers/swizzlers_041_to_048.html": 0.8467,
    "conformance/ogles/GL/swizzlers/swizzlers_049_to_056.html": 0.9016,
    "conformance/ogles/GL/swizzlers/swizzlers_057_to_064.html": 0.9635,
    "conformance/ogles/GL/swizzlers/swizzlers_065_to_072.html": 0.8718,
    "conformance/ogles/GL/swizzlers/swizzlers_073_to_080.html": 0.9824,
    "conformance/ogles/GL/swizzlers/swizzlers_081_to_088.html": 0.8018,
    "conformance/ogles/GL/swizzlers/swizzlers_089_to_096.html": 0.8868,
    "conformance/ogles/GL/swizzlers/swizzlers_097_to_104.html": 0.9268,
    "conformance/ogles/GL/swizzlers/swizzlers_105_to_112.html": 0.9886,
    "conformance/ogles/GL/swizzlers/swizzlers_113_to_120.html": 0.8452,
    "conformance/ogles/GL/tan/tan_001_to_006.html": 0.7393,
    "conformance/ogles/GL/vec/vec_001_to_008.html": 0.4892,
    "conformance/ogles/GL/vec/vec_009_to_016.html": 0.5535,
    "conformance/ogles/GL/vec/vec_017_to_018.html": 0.236,
    "conformance/ogles/GL/vec3/vec3_001_to_008.html": 0.5304,
    "conformance/programs/get-active-test.html": 0.2754,
    "conformance/programs/gl-bind-attrib-location-long-names-test.html": 0.1241,
    "conformance/programs/gl-bind-attrib-location-test.html": 0.1317,
    "conformance/programs/gl-get-active-attribute.html": 0.1332,
    "conformance/programs/gl-get-active-uniform.html": 0.1471,
    "conformance/programs/gl-getshadersource.html": 0.1156,
    "conformance/programs/gl-shader-test.html": 0.1079,
    "conformance/programs/invalid-UTF-16.html": 0.1263,
    "conformance/programs/program-handling.html": 0.1602,
    "conformance/programs/program-infolog.html": 0.1464,
    "conformance/programs/program-test.html": 0.2159,
    "conformance/programs/use-program-crash-with-discard-in-fragment-shader.html": 0.1154,
    "conformance/reading/fbo-remains-unchanged-after-read-pixels.html": 0.1271,
    "conformance/reading/read-pixels-pack-alignment.html": 0.1667,
    "conformance/reading/read-pixels-test.html": 5.295,
    "conformance/renderbuffers/depth-renderbuffer-initialization.html": 0.1836,
    "conformance/renderbuffers/feedback-loop.html": 0.138,
    "conformance/renderbuffers/framebuffer-state-restoration.html": 0.5781,
    "conformance/renderbuffers/renderbuffer-initialization.html": 0.2006,
    "conformance/renderbuffers/stencil-renderbuffer-initialization.html": 0.2016,
    "conformance/rendering/bind-framebuffer-flush-bug.html": 0.1598,
    "conformance/rendering/blending.html": 0.1639,
    "conformance/rendering/canvas-alpha-bug.html": 0.1933,
    "conformance/rendering/clear-after-copyTexImage2D.html": 0.1225,
    "conformance/rendering/clear-default-framebuffer-with-scissor-test.html": 1.6092,
    "conformance/rendering/color-mask-preserved-during-implicit-clears.html": 4.0997,
    "conformance/rendering/color-mask-should-not-affect-antialiased-framebuffer-resolution.html": 0.1148,
    "conformance/rendering/culling.html": 0.1147,
    "conformance/rendering/default-texture-draw-bug.html": 0.2298,
    "conformance/rendering/draw-arrays-out-of-bounds.html": 0.1284,
    "conformance/rendering/draw-elements-out-of-bounds.html": 0.1429,
    "conformance/rendering/draw-webgl-to-canvas-2d-repeatedly.html": 0.1628,
    "conformance/rendering/draw-with-changing-start-vertex-bug.html": 0.1303,
    "conformance/rendering/framebuffer-switch.html": 0.1476,
    "conformance/rendering/framebuffer-texture-clear.html": 0.2153,
    "conformance/rendering/framebuffer-texture-switch.html": 0.1577,
    "conformance/rendering/gl-clear.html": 0.1165,
    "conformance/rendering/gl-drawarrays.html": 0.1327,
    "conformance/rendering/gl-drawelements.html": 0.1294,
    "conformance/rendering/gl-scissor-canvas-dimensions.html": 0.1146,
    "conformance/rendering/gl-scissor-fbo-test.html": 0.2432,
    "conformance/rendering/gl-scissor-test.html": 0.1525,
    "conformance/rendering/gl-viewport-test.html": 0.2416,
    "conformance/rendering/line-loop-tri-fan.html": 0.2048,
    "conformance/rendering/line-rendering-quality.html": 0.158,
    "conformance/rendering/many-draw-calls.html": 4.7579,
    "conformance/rendering/more-than-65536-indices.html": 0.3044,
    "conformance/rendering/multisample-corruption.html": 2.8119,
    "conformance/rendering/negative-one-index.html": 0.1091,
    "conformance/rendering/out-of-bounds-array-buffers.html": 0.1293,
    "conformance/rendering/out-of-bounds-index-buffers.html": 0.146,
    "conformance/rendering/point-no-attributes.html": 0.1091,
    "conformance/rendering/point-size.html": 0.1161,
    "conformance/rendering/point-specific-shader-variables.html": 0.1589,
    "conformance/rendering/point-with-gl-pointcoord-in-fragment-shader.html": 0.1099,
    "conformance/rendering/polygon-offset.html": 0.1298,
    "conformance/rendering/preservedrawingbuffer-leak.html": 0.195,
    "conformance/rendering/rendering-sampling-feedback-loop.html": 0.1084,
    "conformance/rendering/rendering-stencil-large-viewport.html": 0.2572,
    "conformance/rendering/scissor-rect-repeated-rendering.html": 0.4384,
    "conformance/rendering/simple.html": 0.1498,
    "conformance/rendering/texture-switch-performance.html": 0,
    "conformance/rendering/triangle.html": 0.1439,
    "conformance/state/fb-attach-implicit-target-assignment.html": 0.101,
    "conformance/state/gl-enable-enum-test.html": 0.2086,
    "conformance/state/gl-get-calls.html": 0.1404,
    "conformance/state/gl-geterror.html": 0.1126,
    "conformance/state/gl-initial-state.html": 0.0968,
    "conformance/state/state-uneffected-after-compositing.html": 0.4613,
    "conformance/textures/canvas/tex-2d-alpha-alpha-unsigned_byte.html": 0.5646,
    "conformance/textures/canvas/tex-2d-luminance-luminance-unsigned_byte.html": 0.6663,
    "conformance/textures/canvas/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.6615,
    "conformance/textures/canvas/tex-2d-rgb-rgb-unsigned_byte.html": 1.4315,
    "conformance/textures/canvas/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.6148,
    "conformance/textures/canvas/tex-2d-rgba-rgba-unsigned_byte.html": 1.1985,
    "conformance/textures/canvas/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.4728,
    "conformance/textures/canvas/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.6988,
    "conformance/textures/canvas_sub_rectangle/tex-2d-alpha-alpha-unsigned_byte.html": 0.9989,
    "conformance/textures/canvas_sub_rectangle/tex-2d-luminance-luminance-unsigned_byte.html": 1.0343,
    "conformance/textures/canvas_sub_rectangle/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 1.542,
    "conformance/textures/canvas_sub_rectangle/tex-2d-rgb-rgb-unsigned_byte.html": 0.7736,
    "conformance/textures/canvas_sub_rectangle/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.7137,
    "conformance/textures/canvas_sub_rectangle/tex-2d-rgba-rgba-unsigned_byte.html": 0.8336,
    "conformance/textures/canvas_sub_rectangle/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.776,
    "conformance/textures/canvas_sub_rectangle/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 1.41,
    "conformance/textures/image/tex-2d-alpha-alpha-unsigned_byte.html": 0.3297,
    "conformance/textures/image/tex-2d-luminance-luminance-unsigned_byte.html": 0.3176,
    "conformance/textures/image/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.3483,
    "conformance/textures/image/tex-2d-rgb-rgb-unsigned_byte.html": 0.426,
    "conformance/textures/image/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.3791,
    "conformance/textures/image/tex-2d-rgba-rgba-unsigned_byte.html": 0.3482,
    "conformance/textures/image/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.4788,
    "conformance/textures/image/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.3777,
    "conformance/textures/image_bitmap_from_blob/tex-2d-alpha-alpha-unsigned_byte.html": 0.4507,
    "conformance/textures/image_bitmap_from_blob/tex-2d-luminance-luminance-unsigned_byte.html": 0.6649,
    "conformance/textures/image_bitmap_from_blob/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.4417,
    "conformance/textures/image_bitmap_from_blob/tex-2d-rgb-rgb-unsigned_byte.html": 0.388,
    "conformance/textures/image_bitmap_from_blob/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.5368,
    "conformance/textures/image_bitmap_from_blob/tex-2d-rgba-rgba-unsigned_byte.html": 0.5873,
    "conformance/textures/image_bitmap_from_blob/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.4354,
    "conformance/textures/image_bitmap_from_blob/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.5935,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-alpha-alpha-unsigned_byte.html": 0.5014,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-luminance-luminance-unsigned_byte.html": 0.4809,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.6586,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-rgb-rgb-unsigned_byte.html": 0.7127,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.439,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-rgba-rgba-unsigned_byte.html": 0.7671,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.4314,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.6037,
    "conformance/textures/image_bitmap_from_image/tex-2d-alpha-alpha-unsigned_byte.html": 0.2812,
    "conformance/textures/image_bitmap_from_image/tex-2d-luminance-luminance-unsigned_byte.html": 0.7844,
    "conformance/textures/image_bitmap_from_image/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.3695,
    "conformance/textures/image_bitmap_from_image/tex-2d-rgb-rgb-unsigned_byte.html": 0.3359,
    "conformance/textures/image_bitmap_from_image/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.3613,
    "conformance/textures/image_bitmap_from_image/tex-2d-rgba-rgba-unsigned_byte.html": 0.2483,
    "conformance/textures/image_bitmap_from_image/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.3557,
    "conformance/textures/image_bitmap_from_image/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.2758,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-alpha-alpha-unsigned_byte.html": 0.2357,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-luminance-luminance-unsigned_byte.html": 0.2854,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.2427,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-rgb-rgb-unsigned_byte.html": 0.284,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.2159,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-rgba-rgba-unsigned_byte.html": 0.369,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.2422,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.21,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-alpha-alpha-unsigned_byte.html": 0.3421,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-luminance-luminance-unsigned_byte.html": 0.2724,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.2295,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-rgb-rgb-unsigned_byte.html": 0.2329,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.2806,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-rgba-rgba-unsigned_byte.html": 0.3608,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.3516,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.394,
    "conformance/textures/image_bitmap_from_video/tex-2d-alpha-alpha-unsigned_byte.html": 1.2371,
    "conformance/textures/image_bitmap_from_video/tex-2d-luminance-luminance-unsigned_byte.html": 1.2013,
    "conformance/textures/image_bitmap_from_video/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 1.3932,
    "conformance/textures/image_bitmap_from_video/tex-2d-rgb-rgb-unsigned_byte.html": 1.3446,
    "conformance/textures/image_bitmap_from_video/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 1.1859,
    "conformance/textures/image_bitmap_from_video/tex-2d-rgba-rgba-unsigned_byte.html": 1.3009,
    "conformance/textures/image_bitmap_from_video/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 1.2078,
    "conformance/textures/image_bitmap_from_video/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 1.4212,
    "conformance/textures/image_data/tex-2d-alpha-alpha-unsigned_byte.html": 0.4507,
    "conformance/textures/image_data/tex-2d-luminance-luminance-unsigned_byte.html": 0.4254,
    "conformance/textures/image_data/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.6893,
    "conformance/textures/image_data/tex-2d-rgb-rgb-unsigned_byte.html": 0.4168,
    "conformance/textures/image_data/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.3346,
    "conformance/textures/image_data/tex-2d-rgba-rgba-unsigned_byte.html": 0.4017,
    "conformance/textures/image_data/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.3942,
    "conformance/textures/image_data/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.3031,
    "conformance/textures/misc/canvas-teximage-after-multiple-drawimages.html": 0.1816,
    "conformance/textures/misc/copy-tex-image-2d-formats.html": 0.1284,
    "conformance/textures/misc/copy-tex-image-and-sub-image-2d.html": 0.3884,
    "conformance/textures/misc/copy-tex-image-crash.html": 0.1327,
    "conformance/textures/misc/copytexsubimage2d-large-partial-copy-corruption.html": 0.2234,
    "conformance/textures/misc/copytexsubimage2d-subrects.html": 0.0961,
    "conformance/textures/misc/cube-incomplete-fbo.html": 0.1054,
    "conformance/textures/misc/cube-map-uploads-out-of-order.html": 1.221,
    "conformance/textures/misc/default-texture.html": 0.1052,
    "conformance/textures/misc/exif-orientation.html": 1.0124,
    "conformance/textures/misc/format-filterable-renderable.html": 0.2528,
    "conformance/textures/misc/gl-pixelstorei.html": 0.2367,
    "conformance/textures/misc/gl-teximage.html": 0.2915,
    "conformance/textures/misc/mipmap-fbo.html": 0.1092,
    "conformance/textures/misc/origin-clean-conformance-offscreencanvas.html": 0.1931,
    "conformance/textures/misc/origin-clean-conformance.html": 0.129,
    "conformance/textures/misc/png-image-types.html": 0.4733,
    "conformance/textures/misc/tex-image-and-sub-image-2d-with-array-buffer-view.html": 1.9529,
    "conformance/textures/misc/tex-image-and-uniform-binding-bugs.html": 0.1259,
    "conformance/textures/misc/tex-image-canvas-corruption.html": 0.1342,
    "conformance/textures/misc/tex-image-webgl.html": 0.1073,
    "conformance/textures/misc/tex-image-with-format-and-type.html": 0.2344,
    "conformance/textures/misc/tex-image-with-invalid-data.html": 0.1077,
    "conformance/textures/misc/tex-sub-image-2d-bad-args.html": 0.1876,
    "conformance/textures/misc/tex-sub-image-2d.html": 0.0909,
    "conformance/textures/misc/tex-video-using-tex-unit-non-zero.html": 1.3674,
    "conformance/textures/misc/texparameter-test.html": 0.121,
    "conformance/textures/misc/texture-active-bind-2.html": 0.1198,
    "conformance/textures/misc/texture-active-bind.html": 0.1252,
    "conformance/textures/misc/texture-attachment-formats.html": 0.1135,
    "conformance/textures/misc/texture-clear.html": 0.0974,
    "conformance/textures/misc/texture-complete.html": 0.0883,
    "conformance/textures/misc/texture-copying-and-deletion.html": 1.2251,
    "conformance/textures/misc/texture-copying-feedback-loops.html": 0.0924,
    "conformance/textures/misc/texture-corner-case-videos.html": 0.4897,
    "conformance/textures/misc/texture-cube-as-fbo-attachment.html": 0.1184,
    "conformance/textures/misc/texture-draw-with-2d-and-cube.html": 0.0791,
    "conformance/textures/misc/texture-hd-dpi.html": 0.1717,
    "conformance/textures/misc/texture-mips.html": 0.189,
    "conformance/textures/misc/texture-size-cube-maps.html": 0.4705,
    "conformance/textures/misc/texture-size-limit.html": 0.2915,
    "conformance/textures/misc/texture-size.html": 0.8428,
    "conformance/textures/misc/texture-srgb-upload.html": 0.4896,
    "conformance/textures/misc/texture-sub-image-cube-maps.html": 0.1696,
    "conformance/textures/misc/texture-transparent-pixels-initialized.html": 0.1087,
    "conformance/textures/misc/texture-upload-cube-maps.html": 0.081,
    "conformance/textures/misc/texture-upload-size.html": 1.238,
    "conformance/textures/misc/texture-video-transparent.html": 6.3478,
    "conformance/textures/misc/texture-with-flip-y-and-premultiply-alpha.html": 0.0769,
    "conformance/textures/misc/upload-from-srcset-with-empty-data.html": 0.0842,
    "conformance/textures/misc/video-rotation.html": 1.2123,
    "conformance/textures/svg_image/tex-2d-alpha-alpha-unsigned_byte.html": 0.1542,
    "conformance/textures/svg_image/tex-2d-luminance-luminance-unsigned_byte.html": 0.1591,
    "conformance/textures/svg_image/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.1694,
    "conformance/textures/svg_image/tex-2d-rgb-rgb-unsigned_byte.html": 0.2738,
    "conformance/textures/svg_image/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.1459,
    "conformance/textures/svg_image/tex-2d-rgba-rgba-unsigned_byte.html": 0.1689,
    "conformance/textures/svg_image/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.1663,
    "conformance/textures/svg_image/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.1592,
    "conformance/textures/video/tex-2d-alpha-alpha-unsigned_byte.html": 2.2971,
    "conformance/textures/video/tex-2d-luminance-luminance-unsigned_byte.html": 2.2444,
    "conformance/textures/video/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 1.6542,
    "conformance/textures/video/tex-2d-rgb-rgb-unsigned_byte.html": 1.7411,
    "conformance/textures/video/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 1.9292,
    "conformance/textures/video/tex-2d-rgba-rgba-unsigned_byte.html": 2.4971,
    "conformance/textures/video/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 2.2394,
    "conformance/textures/video/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 1.5596,
    "conformance/textures/webgl_canvas/tex-2d-alpha-alpha-unsigned_byte.html": 0.7537,
    "conformance/textures/webgl_canvas/tex-2d-luminance-luminance-unsigned_byte.html": 0.8066,
    "conformance/textures/webgl_canvas/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.7135,
    "conformance/textures/webgl_canvas/tex-2d-rgb-rgb-unsigned_byte.html": 2.0125,
    "conformance/textures/webgl_canvas/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 1.0226,
    "conformance/textures/webgl_canvas/tex-2d-rgba-rgba-unsigned_byte.html": 1.803,
    "conformance/textures/webgl_canvas/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.7259,
    "conformance/textures/webgl_canvas/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.7417,
    "conformance/typedarrays/array-buffer-crash.html": 0.0787,
    "conformance/typedarrays/array-buffer-view-crash.html": 0.0629,
    "conformance/typedarrays/array-large-array-tests.html": 0.2835,
    "conformance/typedarrays/array-unit-tests.html": 0.1023,
    "conformance/typedarrays/data-view-crash.html": 0.07,
    "conformance/typedarrays/data-view-test.html": 0.1468,
    "conformance/typedarrays/typed-arrays-in-workers.html": 0.1355,
    "conformance/uniforms/gl-get-uniform-non-current-program.html": 0.0806,
    "conformance/uniforms/gl-uniform-arrays.html": 0.2075,
    "conformance/uniforms/gl-uniform-bool.html": 0.0899,
    "conformance/uniforms/gl-uniformmatrix4fv.html": 0.1096,
    "conformance/uniforms/gl-unknown-uniform.html": 0.1001,
    "conformance/uniforms/no-over-optimization-on-uniform-array-00.html": 0.7092,
    "conformance/uniforms/no-over-optimization-on-uniform-array-01.html": 0.1001,
    "conformance/uniforms/no-over-optimization-on-uniform-array-02.html": 0.1055,
    "conformance/uniforms/no-over-optimization-on-uniform-array-03.html": 0.1293,
    "conformance/uniforms/no-over-optimization-on-uniform-array-04.html": 0.116,
    "conformance/uniforms/no-over-optimization-on-uniform-array-05.html": 0.112,
    "conformance/uniforms/no-over-optimization-on-uniform-array-06.html": 1.2152,
    "conformance/uniforms/no-over-optimization-on-uniform-array-07.html": 1.1567,
    "conformance/uniforms/no-over-optimization-on-uniform-array-08.html": 0.7264,
    "conformance/uniforms/no-over-optimization-on-uniform-array-09.html": 0.7589,
    "conformance/uniforms/no-over-optimization-on-uniform-array-10.html": 0.2169,
    "conformance/uniforms/no-over-optimization-on-uniform-array-11.html": 0.1299,
    "conformance/uniforms/no-over-optimization-on-uniform-array-12.html": 0.1151,
    "conformance/uniforms/no-over-optimization-on-uniform-array-13.html": 0.182,
    "conformance/uniforms/no-over-optimization-on-uniform-array-14.html": 0.7764,
    "conformance/uniforms/no-over-optimization-on-uniform-array-15.html": 0.7276,
    "conformance/uniforms/no-over-optimization-on-uniform-array-16.html": 0.7315,
    "conformance/uniforms/no-over-optimization-on-uniform-array-17.html": 0.6964,
    "conformance/uniforms/null-uniform-location.html": 0.0986,
    "conformance/uniforms/out-of-bounds-uniform-array-access.html": 12.7457,
    "conformance/uniforms/uniform-default-values.html": 2.2404,
    "conformance/uniforms/uniform-location.html": 0.1384,
    "conformance/uniforms/uniform-samplers-test.html": 23.6426,
    "conformance/uniforms/uniform-values-per-program.html": 0.8455,
    "conformance2/attribs/gl-bindAttribLocation-aliasing-inactive.html": 0.2566,
    "conformance2/attribs/gl-vertex-attrib-i-render.html": 0.0869,
    "conformance2/attribs/gl-vertex-attrib-normalized-int.html": 0.1048,
    "conformance2/attribs/gl-vertex-attrib.html": 0.5288,
    "conformance2/attribs/gl-vertexattribipointer-offsets.html": 0.3066,
    "conformance2/attribs/gl-vertexattribipointer.html": 0.363,
    "conformance2/attribs/invalid-vertex-attribs.html": 0.1548,
    "conformance2/attribs/render-no-enabled-attrib-arrays.html": 0.181,
    "conformance2/buffers/bound-buffer-size-change-test.html": 0.0896,
    "conformance2/buffers/buffer-copying-contents.html": 0.2033,
    "conformance2/buffers/buffer-copying-restrictions.html": 0.1285,
    "conformance2/buffers/buffer-data-and-buffer-sub-data-sub-source.html": 0.1348,
    "conformance2/buffers/buffer-overflow-test.html": 0.0794,
    "conformance2/buffers/buffer-type-restrictions.html": 0.1074,
    "conformance2/buffers/delete-buffer.html": 0.0906,
    "conformance2/buffers/get-buffer-sub-data-validity.html": 0.4045,
    "conformance2/buffers/get-buffer-sub-data.html": 0.1017,
    "conformance2/buffers/one-large-uniform-buffer.html": 0.1102,
    "conformance2/buffers/uniform-buffers-second-compile.html": 0.0895,
    "conformance2/buffers/uniform-buffers-state-restoration.html": 0.3205,
    "conformance2/buffers/uniform-buffers.html": 0.204,
    "conformance2/canvas/to-data-url-with-pack-params.html": 0.1308,
    "conformance2/context/constants-and-properties-2.html": 0.0885,
    "conformance2/context/context-attributes-depth-stencil-antialias-obeyed.html": 0.1605,
    "conformance2/context/context-mode.html": 0.0844,
    "conformance2/context/context-resize-changes-buffer-binding-bug.html": 0.0829,
    "conformance2/context/context-sharing-texture2darray-texture3d-data-bug.html": 0.143,
    "conformance2/context/context-type-test-2.html": 0.0889,
    "conformance2/context/incorrect-context-object-behaviour.html": 0.136,
    "conformance2/context/methods-2.html": 0.1653,
    "conformance2/context/no-experimental-webgl2.html": 0.1274,
    "conformance2/extensions/ext-color-buffer-float.html": 0.316,
    "conformance2/extensions/ext-color-buffer-half-float.html": 0.2736,
    "conformance2/extensions/ext-disjoint-timer-query-webgl2.html": 9.0339,
    "conformance2/extensions/ext-texture-filter-anisotropic.html": 0.1039,
    "conformance2/extensions/ext-texture-norm16.html": 0.2006,
    "conformance2/extensions/oes-draw-buffers-indexed.html": 0.5969,
    "conformance2/extensions/ovr_multiview2.html": 0.2267,
    "conformance2/extensions/ovr_multiview2_depth.html": 0.1105,
    "conformance2/extensions/ovr_multiview2_draw_buffers.html": 0.1037,
    "conformance2/extensions/ovr_multiview2_flat_varying.html": 0.0777,
    "conformance2/extensions/ovr_multiview2_instanced_draw.html": 0.0886,
    "conformance2/extensions/ovr_multiview2_non_multiview_shaders.html": 0.0789,
    "conformance2/extensions/ovr_multiview2_single_view_operations.html": 0.0787,
    "conformance2/extensions/ovr_multiview2_timer_query.html": 0.0823,
    "conformance2/extensions/ovr_multiview2_transform_feedback.html": 0.1416,
    "conformance2/extensions/promoted-extensions-in-shaders.html": 0.1458,
    "conformance2/extensions/promoted-extensions.html": 0.078,
    "conformance2/extensions/required-extensions.html": 0.0695,
    "conformance2/extensions/webgl-clip-cull-distance.html": 0.2005,
    "conformance2/extensions/webgl-multi-draw-instanced-base-vertex-base-instance.html": 12.5359,
    "conformance2/extensions/webgl-provoking-vertex.html": 0.0988,
    "conformance2/extensions/webgl-shader-pixel-local-storage.html": 0.1068,
    "conformance2/glsl3/array-as-return-value.html": 0.1163,
    "conformance2/glsl3/array-assign-constructor.html": 0.1178,
    "conformance2/glsl3/array-assign.html": 0.1044,
    "conformance2/glsl3/array-complex-indexing.html": 0.1222,
    "conformance2/glsl3/array-element-increment.html": 0.1465,
    "conformance2/glsl3/array-equality.html": 0.2282,
    "conformance2/glsl3/array-in-complex-expression.html": 0.1204,
    "conformance2/glsl3/array-initialize-with-same-name-array.html": 0.1259,
    "conformance2/glsl3/array-length-side-effects.html": 0.1202,
    "conformance2/glsl3/attrib-location-length-limits.html": 0.1074,
    "conformance2/glsl3/bool-type-cast-bug-uint-ivec-uvec.html": 0.172,
    "conformance2/glsl3/compare-structs-containing-arrays.html": 0.1092,
    "conformance2/glsl3/compound-assignment-type-combination.html": 1.1194,
    "conformance2/glsl3/const-array-init.html": 0.1112,
    "conformance2/glsl3/const-struct-from-array-as-function-parameter.html": 0.1004,
    "conformance2/glsl3/float-parsing.html": 0.2725,
    "conformance2/glsl3/forbidden-operators.html": 0.0825,
    "conformance2/glsl3/forward-declaration.html": 0.0947,
    "conformance2/glsl3/frag-depth.html": 0.1264,
    "conformance2/glsl3/fragment-shader-loop-crash.html": 0.0874,
    "conformance2/glsl3/gradient-in-discontinuous-loop.html": 0.0856,
    "conformance2/glsl3/input-with-interpotaion-as-lvalue.html": 0.0846,
    "conformance2/glsl3/invalid-default-precision.html": 0.1391,
    "conformance2/glsl3/invalid-invariant.html": 0.0926,
    "conformance2/glsl3/loops-with-side-effects.html": 0.1779,
    "conformance2/glsl3/matrix-row-major-dynamic-indexing.html": 1.6535,
    "conformance2/glsl3/matrix-row-major.html": 0.1081,
    "conformance2/glsl3/misplaced-version-directive.html": 0.0792,
    "conformance2/glsl3/no-attribute-vertex-shader.html": 0.1035,
    "conformance2/glsl3/precision-side-effects-bug.html": 0.124,
    "conformance2/glsl3/reciprocal-sqrt-of-sum-of-squares-crash.html": 0.0941,
    "conformance2/glsl3/sampler-array-indexing.html": 0.0824,
    "conformance2/glsl3/sampler-no-precision.html": 0.0963,
    "conformance2/glsl3/sequence-operator-returns-non-constant.html": 0.0743,
    "conformance2/glsl3/shader-linking.html": 0.0883,
    "conformance2/glsl3/shader-with-1024-character-define.html": 0.0897,
    "conformance2/glsl3/shader-with-1024-character-identifier.frag.html": 0.0979,
    "conformance2/glsl3/shader-with-1025-character-define.html": 0.1021,
    "conformance2/glsl3/shader-with-1025-character-identifier.frag.html": 0.0858,
    "conformance2/glsl3/shader-with-invalid-characters.html": 0.0991,
    "conformance2/glsl3/shader-with-mis-matching-uniform-block.html": 0.0963,
    "conformance2/glsl3/short-circuiting-in-loop-condition.html": 0.1972,
    "conformance2/glsl3/switch-case.html": 0.1665,
    "conformance2/glsl3/texture-bias.html": 0.1235,
    "conformance2/glsl3/texture-offset-non-constant-offset.html": 0.0922,
    "conformance2/glsl3/texture-offset-out-of-range.html": 0.0983,
    "conformance2/glsl3/texture-offset-uniform-texture-coordinate.html": 0.1169,
    "conformance2/glsl3/tricky-loop-conditions.html": 0.5577,
    "conformance2/glsl3/uint-int-shift-bug.html": 0.1091,
    "conformance2/glsl3/unary-minus-operator-in-dynamic-loop.html": 0.167,
    "conformance2/glsl3/uniform-block-layout-match.html": 0.101,
    "conformance2/glsl3/uniform-block-layouts.html": 0.0945,
    "conformance2/glsl3/uniform-location-length-limits.html": 0.1276,
    "conformance2/glsl3/uniform-struct-with-non-square-matrix.html": 0.1112,
    "conformance2/glsl3/uninitialized-local-global-variables.html": 0.106,
    "conformance2/glsl3/valid-invariant.html": 0.0771,
    "conformance2/glsl3/varying-struct-inline-definition.html": 0.2381,
    "conformance2/glsl3/vector-dynamic-indexing-nv-driver-bug.html": 0.0933,
    "conformance2/glsl3/vector-dynamic-indexing-swizzled-lvalue.html": 0.1039,
    "conformance2/glsl3/vector-dynamic-indexing.html": 0.3097,
    "conformance2/misc/blend-integer.html": 0.1358,
    "conformance2/misc/expando-loss-2.html": 0.3368,
    "conformance2/misc/getextension-while-pbo-bound-stability.html": 0.119,
    "conformance2/misc/instanceof-test.html": 0.106,
    "conformance2/misc/null-object-behaviour-2.html": 0.1005,
    "conformance2/misc/object-deletion-behaviour-2.html": 0.1506,
    "conformance2/misc/uninitialized-test-2.html": 11.3145,
    "conformance2/misc/views-with-offsets.html": 0.1299,
    "conformance2/offscreencanvas/context-creation-worker.html": 0.1502,
    "conformance2/offscreencanvas/context-creation.html": 0.078,
    "conformance2/offscreencanvas/methods-2-worker.html": 0.1063,
    "conformance2/offscreencanvas/methods-2.html": 0.0787,
    "conformance2/offscreencanvas/offscreencanvas-query.html": 0.1557,
    "conformance2/offscreencanvas/offscreencanvas-sync.html": 0.1098,
    "conformance2/offscreencanvas/offscreencanvas-timer-query.html": 0.2586,
    "conformance2/offscreencanvas/offscreencanvas-transfer-image-bitmap.html": 0.1261,
    "conformance2/programs/active-built-in-attribs.html": 0.1103,
    "conformance2/programs/get-uniform-indices.html": 0.0868,
    "conformance2/programs/gl-get-frag-data-location.html": 0.1752,
    "conformance2/programs/sampler-uniforms.html": 0.1037,
    "conformance2/query/occlusion-query.html": 3.6032,
    "conformance2/query/query.html": 0.1254,
    "conformance2/reading/format-r11f-g11f-b10f.html": 0.2261,
    "conformance2/reading/read-pixels-from-fbo-test.html": 0.1969,
    "conformance2/reading/read-pixels-from-rgb8-into-pbo-bug.html": 0.0841,
    "conformance2/reading/read-pixels-into-pixel-pack-buffer.html": 0.0975,
    "conformance2/reading/read-pixels-pack-parameters.html": 0.2033,
    "conformance2/renderbuffers/framebuffer-object-attachment.html": 0.1541,
    "conformance2/renderbuffers/framebuffer-test.html": 0.096,
    "conformance2/renderbuffers/framebuffer-texture-layer.html": 0.088,
    "conformance2/renderbuffers/invalidate-framebuffer.html": 0.2037,
    "conformance2/renderbuffers/multisample-draws-between-blits.html": 0.1119,
    "conformance2/renderbuffers/multisample-with-full-sample-counts.html": 0.106,
    "conformance2/renderbuffers/multisampled-depth-renderbuffer-initialization.html": 0.2056,
    "conformance2/renderbuffers/multisampled-renderbuffer-initialization.html": 0.3782,
    "conformance2/renderbuffers/multisampled-stencil-renderbuffer-initialization.html": 0.1937,
    "conformance2/renderbuffers/readbuffer.html": 0.0966,
    "conformance2/rendering/attrib-type-match.html": 0.203,
    "conformance2/rendering/blitframebuffer-filter-outofbounds.html": 0.1085,
    "conformance2/rendering/blitframebuffer-filter-srgb.html": 0.1598,
    "conformance2/rendering/blitframebuffer-multisampled-readbuffer.html": 0.093,
    "conformance2/rendering/blitframebuffer-outside-readbuffer.html": 0.1589,
    "conformance2/rendering/blitframebuffer-r11f-g11f-b10f.html": 0.1586,
    "conformance2/rendering/blitframebuffer-resolve-to-back-buffer.html": 0.1752,
    "conformance2/rendering/blitframebuffer-scissor-enabled.html": 0.1048,
    "conformance2/rendering/blitframebuffer-size-overflow.html": 0.0969,
    "conformance2/rendering/blitframebuffer-srgb-and-linear-drawbuffers.html": 0.1824,
    "conformance2/rendering/blitframebuffer-stencil-only.html": 0.1118,
    "conformance2/rendering/blitframebuffer-test.html": 0.1118,
    "conformance2/rendering/blitframebuffer-unaffected-by-colormask.html": 0.1918,
    "conformance2/rendering/canvas-resizing-with-pbo-bound.html": 0.3581,
    "conformance2/rendering/clear-func-buffer-type-match.html": 0.1038,
    "conformance2/rendering/clear-srgb-color-buffer.html": 0.0867,
    "conformance2/rendering/clearbuffer-sub-source.html": 0.1148,
    "conformance2/rendering/clearbufferfv-with-alpha-false.html": 0.0913,
    "conformance2/rendering/clipping-wide-points.html": 1.9129,
    "conformance2/rendering/depth-stencil-feedback-loop.html": 0.0983,
    "conformance2/rendering/draw-buffers-dirty-state-bug.html": 0.1149,
    "conformance2/rendering/draw-buffers-driver-hang.html": 0.455,
    "conformance2/rendering/draw-buffers-sparse-output-locations.html": 0.0963,
    "conformance2/rendering/draw-buffers.html": 0.3564,
    "conformance2/rendering/draw-with-integer-texture-base-level.html": 0.1999,
    "conformance2/rendering/element-index-uint.html": 0.1976,
    "conformance2/rendering/framebuffer-completeness-draw-framebuffer.html": 0.104,
    "conformance2/rendering/framebuffer-completeness-unaffected.html": 0.1383,
    "conformance2/rendering/framebuffer-mismatched-attachment-targets.html": 0.2008,
    "conformance2/rendering/framebuffer-render-to-layer-angle-issue.html": 0.1135,
    "conformance2/rendering/framebuffer-render-to-layer.html": 0.7669,
    "conformance2/rendering/framebuffer-texture-changing-base-level.html": 0.0996,
    "conformance2/rendering/framebuffer-texture-level1.html": 0.0761,
    "conformance2/rendering/framebuffer-to-texture.html": 0.0975,
    "conformance2/rendering/framebuffer-unsupported.html": 0.0959,
    "conformance2/rendering/fs-color-type-mismatch-color-buffer-type.html": 0.1088,
    "conformance2/rendering/instanced-arrays.html": 1.9088,
    "conformance2/rendering/instanced-rendering-bug.html": 0.445,
    "conformance2/rendering/instanced-rendering-large-divisor.html": 0.1356,
    "conformance2/rendering/line-rendering-quality.html": 0.1142,
    "conformance2/rendering/multisampling-depth-resolve.html": 0.1117,
    "conformance2/rendering/multisampling-fragment-evaluation.html": 0.0812,
    "conformance2/rendering/out-of-bounds-index-buffers-after-copying.html": 0.1474,
    "conformance2/rendering/rasterizer-discard-and-implicit-clear.html": 1.4008,
    "conformance2/rendering/read-draw-when-missing-image.html": 0.1084,
    "conformance2/rendering/rgb-format-support.html": 0.0987,
    "conformance2/rendering/texture-switch-performance.html": 0,
    "conformance2/rendering/uniform-block-buffer-size.html": 0.1215,
    "conformance2/rendering/vertex-id-large-count.html": 1.9753,
    "conformance2/rendering/vertex-id.html": 2.3189,
    "conformance2/samplers/multi-context-sampler-test.html": 0.0895,
    "conformance2/samplers/sampler-drawing-test.html": 0.1388,
    "conformance2/samplers/samplers.html": 0.1214,
    "conformance2/state/gl-enum-tests.html": 0.2,
    "conformance2/state/gl-get-calls.html": 0.0951,
    "conformance2/state/gl-getstring.html": 0.098,
    "conformance2/state/gl-object-get-calls.html": 22.2968,
    "conformance2/sync/sync-webgl-specific.html": 6.9014,
    "conformance2/textures/canvas/tex-2d-r11f_g11f_b10f-rgb-float.html": 0.6004,
    "conformance2/textures/canvas/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 0.4392,
    "conformance2/textures/canvas/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.554,
    "conformance2/textures/canvas/tex-2d-r16f-red-float.html": 0.6157,
    "conformance2/textures/canvas/tex-2d-r16f-red-half_float.html": 0.6029,
    "conformance2/textures/canvas/tex-2d-r32f-red-float.html": 0.4813,
    "conformance2/textures/canvas/tex-2d-r8-red-unsigned_byte.html": 0.502,
    "conformance2/textures/canvas/tex-2d-r8ui-red_integer-unsigned_byte.html": 0.7378,
    "conformance2/textures/canvas/tex-2d-rg16f-rg-float.html": 0.6204,
    "conformance2/textures/canvas/tex-2d-rg16f-rg-half_float.html": 0.5536,
    "conformance2/textures/canvas/tex-2d-rg32f-rg-float.html": 0.5169,
    "conformance2/textures/canvas/tex-2d-rg8-rg-unsigned_byte.html": 0.4814,
    "conformance2/textures/canvas/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 0.4036,
    "conformance2/textures/canvas/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.6945,
    "conformance2/textures/canvas/tex-2d-rgb16f-rgb-float.html": 0.602,
    "conformance2/textures/canvas/tex-2d-rgb16f-rgb-half_float.html": 0.4745,
    "conformance2/textures/canvas/tex-2d-rgb32f-rgb-float.html": 0.4202,
    "conformance2/textures/canvas/tex-2d-rgb565-rgb-unsigned_byte.html": 0.5849,
    "conformance2/textures/canvas/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 0.5676,
    "conformance2/textures/canvas/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 0.4867,
    "conformance2/textures/canvas/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.647,
    "conformance2/textures/canvas/tex-2d-rgb8-rgb-unsigned_byte.html": 0.4662,
    "conformance2/textures/canvas/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 0.5802,
    "conformance2/textures/canvas/tex-2d-rgb9_e5-rgb-float.html": 0.9427,
    "conformance2/textures/canvas/tex-2d-rgb9_e5-rgb-half_float.html": 0.9773,
    "conformance2/textures/canvas/tex-2d-rgba16f-rgba-float.html": 0.5363,
    "conformance2/textures/canvas/tex-2d-rgba16f-rgba-half_float.html": 0.4822,
    "conformance2/textures/canvas/tex-2d-rgba32f-rgba-float.html": 0.4947,
    "conformance2/textures/canvas/tex-2d-rgba4-rgba-unsigned_byte.html": 0.7728,
    "conformance2/textures/canvas/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.8952,
    "conformance2/textures/canvas/tex-2d-rgba8-rgba-unsigned_byte.html": 0.3976,
    "conformance2/textures/canvas/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 0.9639,
    "conformance2/textures/canvas/tex-2d-srgb8-rgb-unsigned_byte.html": 0.8682,
    "conformance2/textures/canvas/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 0.6471,
    "conformance2/textures/canvas/tex-3d-r11f_g11f_b10f-rgb-float.html": 17.7934,
    "conformance2/textures/canvas/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 16.6231,
    "conformance2/textures/canvas/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 17.3488,
    "conformance2/textures/canvas/tex-3d-r16f-red-float.html": 19.3254,
    "conformance2/textures/canvas/tex-3d-r16f-red-half_float.html": 17.8359,
    "conformance2/textures/canvas/tex-3d-r32f-red-float.html": 17.4373,
    "conformance2/textures/canvas/tex-3d-r8-red-unsigned_byte.html": 17.1691,
    "conformance2/textures/canvas/tex-3d-r8ui-red_integer-unsigned_byte.html": 18.1871,
    "conformance2/textures/canvas/tex-3d-rg16f-rg-float.html": 16.8162,
    "conformance2/textures/canvas/tex-3d-rg16f-rg-half_float.html": 16.9321,
    "conformance2/textures/canvas/tex-3d-rg32f-rg-float.html": 17.9956,
    "conformance2/textures/canvas/tex-3d-rg8-rg-unsigned_byte.html": 17.2269,
    "conformance2/textures/canvas/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 19.0397,
    "conformance2/textures/canvas/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 17.0561,
    "conformance2/textures/canvas/tex-3d-rgb16f-rgb-float.html": 17.9942,
    "conformance2/textures/canvas/tex-3d-rgb16f-rgb-half_float.html": 17.0605,
    "conformance2/textures/canvas/tex-3d-rgb32f-rgb-float.html": 16.2464,
    "conformance2/textures/canvas/tex-3d-rgb565-rgb-unsigned_byte.html": 17.8845,
    "conformance2/textures/canvas/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 17.4978,
    "conformance2/textures/canvas/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 17.4015,
    "conformance2/textures/canvas/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 16.9104,
    "conformance2/textures/canvas/tex-3d-rgb8-rgb-unsigned_byte.html": 16.6348,
    "conformance2/textures/canvas/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 17.2496,
    "conformance2/textures/canvas/tex-3d-rgb9_e5-rgb-float.html": 16.8908,
    "conformance2/textures/canvas/tex-3d-rgb9_e5-rgb-half_float.html": 16.8887,
    "conformance2/textures/canvas/tex-3d-rgba16f-rgba-float.html": 16.5063,
    "conformance2/textures/canvas/tex-3d-rgba16f-rgba-half_float.html": 17.0964,
    "conformance2/textures/canvas/tex-3d-rgba32f-rgba-float.html": 17.595,
    "conformance2/textures/canvas/tex-3d-rgba4-rgba-unsigned_byte.html": 16.9412,
    "conformance2/textures/canvas/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 17.9634,
    "conformance2/textures/canvas/tex-3d-rgba8-rgba-unsigned_byte.html": 18.0503,
    "conformance2/textures/canvas/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 17.4669,
    "conformance2/textures/canvas/tex-3d-srgb8-rgb-unsigned_byte.html": 17.3148,
    "conformance2/textures/canvas/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 17.068,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-r11f_g11f_b10f-rgb-float.html": 0.5819,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 0.5813,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.6128,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-r16f-red-float.html": 0.7692,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-r16f-red-half_float.html": 0.5903,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-r32f-red-float.html": 0.8955,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-r8-red-unsigned_byte.html": 0.6247,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-r8ui-red_integer-unsigned_byte.html": 1.0309,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rg16f-rg-float.html": 0.7262,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rg16f-rg-half_float.html": 0.5798,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rg32f-rg-float.html": 0.6193,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rg8-rg-unsigned_byte.html": 0.715,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 0.5821,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.9022,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb16f-rgb-float.html": 0.5923,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb16f-rgb-half_float.html": 0.6665,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb32f-rgb-float.html": 0.8658,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb565-rgb-unsigned_byte.html": 0.5648,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 0.5886,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 0.5638,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 1.1981,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb8-rgb-unsigned_byte.html": 0.5534,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 1.1243,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb9_e5-rgb-float.html": 1.4393,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb9_e5-rgb-half_float.html": 1.3744,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgba16f-rgba-float.html": 0.6873,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgba16f-rgba-half_float.html": 0.778,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgba32f-rgba-float.html": 0.6427,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgba4-rgba-unsigned_byte.html": 0.696,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.6825,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgba8-rgba-unsigned_byte.html": 0.6827,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 0.6611,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-srgb8-rgb-unsigned_byte.html": 0.9371,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 0.888,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-r11f_g11f_b10f-rgb-float.html": 1.3549,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 1.4831,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 1.185,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-r16f-red-float.html": 1.2075,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-r16f-red-half_float.html": 1.244,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-r32f-red-float.html": 1.1738,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-r8-red-unsigned_byte.html": 1.2599,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-r8ui-red_integer-unsigned_byte.html": 1.213,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rg16f-rg-float.html": 1.2918,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rg16f-rg-half_float.html": 1.1411,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rg32f-rg-float.html": 1.2154,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rg8-rg-unsigned_byte.html": 1.0476,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 1.2712,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 1.349,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb16f-rgb-float.html": 1.295,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb16f-rgb-half_float.html": 1.1741,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb32f-rgb-float.html": 1.3275,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb565-rgb-unsigned_byte.html": 1.0943,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 1.2308,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 1.0923,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 1.2439,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb8-rgb-unsigned_byte.html": 1.7014,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 1.0353,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb9_e5-rgb-float.html": 1.3807,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb9_e5-rgb-half_float.html": 1.1274,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgba16f-rgba-float.html": 1.5919,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgba16f-rgba-half_float.html": 1.3309,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgba32f-rgba-float.html": 1.7676,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgba4-rgba-unsigned_byte.html": 1.0185,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 1.079,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgba8-rgba-unsigned_byte.html": 1.1483,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 1.2398,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-srgb8-rgb-unsigned_byte.html": 1.3664,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 1.7666,
    "conformance2/textures/image/tex-2d-r11f_g11f_b10f-rgb-float.html": 0.2485,
    "conformance2/textures/image/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 0.2371,
    "conformance2/textures/image/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.3268,
    "conformance2/textures/image/tex-2d-r16f-red-float.html": 0.2915,
    "conformance2/textures/image/tex-2d-r16f-red-half_float.html": 0.3146,
    "conformance2/textures/image/tex-2d-r32f-red-float.html": 0.3047,
    "conformance2/textures/image/tex-2d-r8-red-unsigned_byte.html": 0.2643,
    "conformance2/textures/image/tex-2d-r8ui-red_integer-unsigned_byte.html": 0.291,
    "conformance2/textures/image/tex-2d-rg16f-rg-float.html": 0.259,
    "conformance2/textures/image/tex-2d-rg16f-rg-half_float.html": 0.2623,
    "conformance2/textures/image/tex-2d-rg32f-rg-float.html": 0.2975,
    "conformance2/textures/image/tex-2d-rg8-rg-unsigned_byte.html": 0.2805,
    "conformance2/textures/image/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 0.2962,
    "conformance2/textures/image/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.2668,
    "conformance2/textures/image/tex-2d-rgb16f-rgb-float.html": 0.275,
    "conformance2/textures/image/tex-2d-rgb16f-rgb-half_float.html": 0.357,
    "conformance2/textures/image/tex-2d-rgb32f-rgb-float.html": 0.2675,
    "conformance2/textures/image/tex-2d-rgb565-rgb-unsigned_byte.html": 0.2501,
    "conformance2/textures/image/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 0.2504,
    "conformance2/textures/image/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 0.266,
    "conformance2/textures/image/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.3317,
    "conformance2/textures/image/tex-2d-rgb8-rgb-unsigned_byte.html": 0.2732,
    "conformance2/textures/image/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 0.2911,
    "conformance2/textures/image/tex-2d-rgb9_e5-rgb-float.html": 0.2371,
    "conformance2/textures/image/tex-2d-rgb9_e5-rgb-half_float.html": 0.2431,
    "conformance2/textures/image/tex-2d-rgba16f-rgba-float.html": 0.4524,
    "conformance2/textures/image/tex-2d-rgba16f-rgba-half_float.html": 0.2519,
    "conformance2/textures/image/tex-2d-rgba32f-rgba-float.html": 0.371,
    "conformance2/textures/image/tex-2d-rgba4-rgba-unsigned_byte.html": 0.2592,
    "conformance2/textures/image/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.3239,
    "conformance2/textures/image/tex-2d-rgba8-rgba-unsigned_byte.html": 0.2943,
    "conformance2/textures/image/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 0.3061,
    "conformance2/textures/image/tex-2d-srgb8-rgb-unsigned_byte.html": 0.3004,
    "conformance2/textures/image/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 0.332,
    "conformance2/textures/image/tex-3d-r11f_g11f_b10f-rgb-float.html": 0.2879,
    "conformance2/textures/image/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 0.2465,
    "conformance2/textures/image/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.2192,
    "conformance2/textures/image/tex-3d-r16f-red-float.html": 0.2293,
    "conformance2/textures/image/tex-3d-r16f-red-half_float.html": 0.2956,
    "conformance2/textures/image/tex-3d-r32f-red-float.html": 0.2638,
    "conformance2/textures/image/tex-3d-r8-red-unsigned_byte.html": 0.2568,
    "conformance2/textures/image/tex-3d-r8ui-red_integer-unsigned_byte.html": 0.4624,
    "conformance2/textures/image/tex-3d-rg16f-rg-float.html": 0.2428,
    "conformance2/textures/image/tex-3d-rg16f-rg-half_float.html": 0.2996,
    "conformance2/textures/image/tex-3d-rg32f-rg-float.html": 0.2758,
    "conformance2/textures/image/tex-3d-rg8-rg-unsigned_byte.html": 0.2859,
    "conformance2/textures/image/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 0.2833,
    "conformance2/textures/image/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.2032,
    "conformance2/textures/image/tex-3d-rgb16f-rgb-float.html": 0.2617,
    "conformance2/textures/image/tex-3d-rgb16f-rgb-half_float.html": 0.2466,
    "conformance2/textures/image/tex-3d-rgb32f-rgb-float.html": 0.2976,
    "conformance2/textures/image/tex-3d-rgb565-rgb-unsigned_byte.html": 0.2005,
    "conformance2/textures/image/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 0.2858,
    "conformance2/textures/image/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 0.2869,
    "conformance2/textures/image/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.3235,
    "conformance2/textures/image/tex-3d-rgb8-rgb-unsigned_byte.html": 0.2813,
    "conformance2/textures/image/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 0.2546,
    "conformance2/textures/image/tex-3d-rgb9_e5-rgb-float.html": 0.2507,
    "conformance2/textures/image/tex-3d-rgb9_e5-rgb-half_float.html": 0.2481,
    "conformance2/textures/image/tex-3d-rgba16f-rgba-float.html": 0.2386,
    "conformance2/textures/image/tex-3d-rgba16f-rgba-half_float.html": 0.2903,
    "conformance2/textures/image/tex-3d-rgba32f-rgba-float.html": 0.3186,
    "conformance2/textures/image/tex-3d-rgba4-rgba-unsigned_byte.html": 0.2624,
    "conformance2/textures/image/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.2399,
    "conformance2/textures/image/tex-3d-rgba8-rgba-unsigned_byte.html": 0.2712,
    "conformance2/textures/image/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 0.29,
    "conformance2/textures/image/tex-3d-srgb8-rgb-unsigned_byte.html": 0.2619,
    "conformance2/textures/image/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 0.2763,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-r11f_g11f_b10f-rgb-float.html": 0.3921,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 0.4715,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.4114,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-r16f-red-float.html": 0.3655,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-r16f-red-half_float.html": 0.3806,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-r32f-red-float.html": 0.387,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-r8-red-unsigned_byte.html": 0.5482,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-r8ui-red_integer-unsigned_byte.html": 0.3944,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rg16f-rg-float.html": 0.4237,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rg16f-rg-half_float.html": 0.4914,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rg32f-rg-float.html": 0.4079,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rg8-rg-unsigned_byte.html": 0.6083,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 0.3871,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.3163,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb16f-rgb-float.html": 0.3715,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb16f-rgb-half_float.html": 0.3999,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb32f-rgb-float.html": 0.6105,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb565-rgb-unsigned_byte.html": 0.3689,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 0.3575,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 0.3687,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.4652,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb8-rgb-unsigned_byte.html": 0.4478,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 0.4463,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb9_e5-rgb-float.html": 0.3799,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb9_e5-rgb-half_float.html": 0.4817,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgba16f-rgba-float.html": 0.4565,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgba16f-rgba-half_float.html": 0.4194,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgba32f-rgba-float.html": 0.4684,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgba4-rgba-unsigned_byte.html": 0.388,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.5896,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgba8-rgba-unsigned_byte.html": 0.4172,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 0.3984,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-srgb8-rgb-unsigned_byte.html": 0.4539,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 0.4621,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-r11f_g11f_b10f-rgb-float.html": 0.166,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 0.1554,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.2284,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-r16f-red-float.html": 0.1768,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-r16f-red-half_float.html": 0.2358,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-r32f-red-float.html": 0.1565,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-r8-red-unsigned_byte.html": 0.1715,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-r8ui-red_integer-unsigned_byte.html": 0.1753,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rg16f-rg-float.html": 0.1863,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rg16f-rg-half_float.html": 0.1716,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rg32f-rg-float.html": 0.1572,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rg8-rg-unsigned_byte.html": 0.1533,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 0.1897,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.1754,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb16f-rgb-float.html": 0.1814,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb16f-rgb-half_float.html": 0.1613,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb32f-rgb-float.html": 0.2067,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb565-rgb-unsigned_byte.html": 0.1842,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 0.1569,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 0.1633,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.1901,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb8-rgb-unsigned_byte.html": 0.1438,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 0.1503,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb9_e5-rgb-float.html": 0.1618,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb9_e5-rgb-half_float.html": 0.155,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgba16f-rgba-float.html": 0.1808,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgba16f-rgba-half_float.html": 0.1636,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgba32f-rgba-float.html": 0.1599,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgba4-rgba-unsigned_byte.html": 0.1524,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.1758,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgba8-rgba-unsigned_byte.html": 0.1775,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 0.1743,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-srgb8-rgb-unsigned_byte.html": 0.1935,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 0.1642,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-r11f_g11f_b10f-rgb-float.html": 0.5527,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 0.5474,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.5119,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-r16f-red-float.html": 0.3643,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-r16f-red-half_float.html": 0.4822,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-r32f-red-float.html": 0.4449,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-r8-red-unsigned_byte.html": 0.4048,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-r8ui-red_integer-unsigned_byte.html": 0.4081,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rg16f-rg-float.html": 0.3808,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rg16f-rg-half_float.html": 0.4993,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rg32f-rg-float.html": 0.4864,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rg8-rg-unsigned_byte.html": 0.4211,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 0.3483,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.5813,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb16f-rgb-float.html": 0.5476,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb16f-rgb-half_float.html": 0.4994,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb32f-rgb-float.html": 0.4885,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb565-rgb-unsigned_byte.html": 0.3941,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 0.4751,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 0.455,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.5121,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb8-rgb-unsigned_byte.html": 0.5079,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 0.4622,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb9_e5-rgb-float.html": 0.5241,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb9_e5-rgb-half_float.html": 0.5643,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgba16f-rgba-float.html": 0.463,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgba16f-rgba-half_float.html": 0.3713,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgba32f-rgba-float.html": 0.4771,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgba4-rgba-unsigned_byte.html": 0.4408,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.4125,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgba8-rgba-unsigned_byte.html": 0.4954,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 0.4945,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-srgb8-rgb-unsigned_byte.html": 0.5688,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 0.4756,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-r11f_g11f_b10f-rgb-float.html": 0.5036,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 0.3234,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.2684,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-r16f-red-float.html": 0.2481,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-r16f-red-half_float.html": 0.3018,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-r32f-red-float.html": 0.3782,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-r8-red-unsigned_byte.html": 0.241,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-r8ui-red_integer-unsigned_byte.html": 0.3502,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rg16f-rg-float.html": 0.3828,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rg16f-rg-half_float.html": 0.3304,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rg32f-rg-float.html": 0.2972,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rg8-rg-unsigned_byte.html": 0.3355,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 0.2373,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.3564,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb16f-rgb-float.html": 0.2699,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb16f-rgb-half_float.html": 0.3069,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb32f-rgb-float.html": 0.3421,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb565-rgb-unsigned_byte.html": 0.3196,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 0.3092,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 0.3031,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.4706,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb8-rgb-unsigned_byte.html": 0.3426,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 0.3222,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb9_e5-rgb-float.html": 0.4428,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb9_e5-rgb-half_float.html": 0.3273,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgba16f-rgba-float.html": 0.3306,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgba16f-rgba-half_float.html": 0.378,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgba32f-rgba-float.html": 0.3123,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgba4-rgba-unsigned_byte.html": 0.2394,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.3312,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgba8-rgba-unsigned_byte.html": 0.33,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 0.249,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-srgb8-rgb-unsigned_byte.html": 0.3409,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 0.4782,
    "conformance2/textures/image_bitmap_from_image/tex-2d-r11f_g11f_b10f-rgb-float.html": 0.2271,
    "conformance2/textures/image_bitmap_from_image/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 0.2841,
    "conformance2/textures/image_bitmap_from_image/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.1998,
    "conformance2/textures/image_bitmap_from_image/tex-2d-r16f-red-float.html": 0.2421,
    "conformance2/textures/image_bitmap_from_image/tex-2d-r16f-red-half_float.html": 0.2321,
    "conformance2/textures/image_bitmap_from_image/tex-2d-r32f-red-float.html": 0.1944,
    "conformance2/textures/image_bitmap_from_image/tex-2d-r8-red-unsigned_byte.html": 0.2343,
    "conformance2/textures/image_bitmap_from_image/tex-2d-r8ui-red_integer-unsigned_byte.html": 0.3064,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rg16f-rg-float.html": 0.3257,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rg16f-rg-half_float.html": 0.2427,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rg32f-rg-float.html": 0.2858,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rg8-rg-unsigned_byte.html": 0.1943,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 0.2364,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.2098,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb16f-rgb-float.html": 0.2286,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb16f-rgb-half_float.html": 0.2558,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb32f-rgb-float.html": 0.2855,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb565-rgb-unsigned_byte.html": 0.2287,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 0.2659,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 0.2574,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.2206,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb8-rgb-unsigned_byte.html": 0.2322,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 0.2762,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb9_e5-rgb-float.html": 0.2412,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb9_e5-rgb-half_float.html": 0.2454,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgba16f-rgba-float.html": 0.2369,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgba16f-rgba-half_float.html": 0.2265,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgba32f-rgba-float.html": 0.2371,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgba4-rgba-unsigned_byte.html": 0.2816,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.2399,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgba8-rgba-unsigned_byte.html": 0.253,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 0.2764,
    "conformance2/textures/image_bitmap_from_image/tex-2d-srgb8-rgb-unsigned_byte.html": 0.275,
    "conformance2/textures/image_bitmap_from_image/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 0.2288,
    "conformance2/textures/image_bitmap_from_image/tex-3d-r11f_g11f_b10f-rgb-float.html": 0.1776,
    "conformance2/textures/image_bitmap_from_image/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 0.1898,
    "conformance2/textures/image_bitmap_from_image/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.1756,
    "conformance2/textures/image_bitmap_from_image/tex-3d-r16f-red-float.html": 0.1677,
    "conformance2/textures/image_bitmap_from_image/tex-3d-r16f-red-half_float.html": 0.211,
    "conformance2/textures/image_bitmap_from_image/tex-3d-r32f-red-float.html": 0.1702,
    "conformance2/textures/image_bitmap_from_image/tex-3d-r8-red-unsigned_byte.html": 0.1459,
    "conformance2/textures/image_bitmap_from_image/tex-3d-r8ui-red_integer-unsigned_byte.html": 0.1895,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rg16f-rg-float.html": 0.2091,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rg16f-rg-half_float.html": 0.1736,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rg32f-rg-float.html": 0.1489,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rg8-rg-unsigned_byte.html": 0.1707,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 0.1561,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.1807,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb16f-rgb-float.html": 0.1542,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb16f-rgb-half_float.html": 0.1523,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb32f-rgb-float.html": 0.1922,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb565-rgb-unsigned_byte.html": 0.1774,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 0.1734,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 0.167,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.1886,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb8-rgb-unsigned_byte.html": 0.1849,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 0.1629,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb9_e5-rgb-float.html": 0.1561,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb9_e5-rgb-half_float.html": 0.1987,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgba16f-rgba-float.html": 0.1709,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgba16f-rgba-half_float.html": 0.1877,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgba32f-rgba-float.html": 0.165,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgba4-rgba-unsigned_byte.html": 0.15,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.1885,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgba8-rgba-unsigned_byte.html": 0.1811,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 0.209,
    "conformance2/textures/image_bitmap_from_image/tex-3d-srgb8-rgb-unsigned_byte.html": 0.1534,
    "conformance2/textures/image_bitmap_from_image/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 0.1693,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-r11f_g11f_b10f-rgb-float.html": 0.231,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 0.3287,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.2383,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-r16f-red-float.html": 0.228,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-r16f-red-half_float.html": 0.2381,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-r32f-red-float.html": 0.2279,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-r8-red-unsigned_byte.html": 0.2688,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-r8ui-red_integer-unsigned_byte.html": 0.2032,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rg16f-rg-float.html": 0.2429,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rg16f-rg-half_float.html": 0.2626,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rg32f-rg-float.html": 0.1898,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rg8-rg-unsigned_byte.html": 0.2426,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 0.2998,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.3639,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb16f-rgb-float.html": 0.2595,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb16f-rgb-half_float.html": 0.2623,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb32f-rgb-float.html": 0.3038,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb565-rgb-unsigned_byte.html": 0.2018,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 0.2025,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 0.2609,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.2611,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb8-rgb-unsigned_byte.html": 0.2623,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 0.231,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb9_e5-rgb-float.html": 0.2198,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb9_e5-rgb-half_float.html": 0.2029,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgba16f-rgba-float.html": 0.268,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgba16f-rgba-half_float.html": 0.2759,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgba32f-rgba-float.html": 0.4087,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgba4-rgba-unsigned_byte.html": 0.2515,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.2075,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgba8-rgba-unsigned_byte.html": 0.2592,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 0.289,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-srgb8-rgb-unsigned_byte.html": 0.2551,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 0.2482,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-r11f_g11f_b10f-rgb-float.html": 0.2128,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 0.1716,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.1743,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-r16f-red-float.html": 0.307,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-r16f-red-half_float.html": 0.1732,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-r32f-red-float.html": 0.1752,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-r8-red-unsigned_byte.html": 0.1646,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-r8ui-red_integer-unsigned_byte.html": 0.1649,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rg16f-rg-float.html": 0.1718,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rg16f-rg-half_float.html": 0.1829,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rg32f-rg-float.html": 0.1768,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rg8-rg-unsigned_byte.html": 0.1714,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 0.1878,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.1409,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb16f-rgb-float.html": 0.1712,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb16f-rgb-half_float.html": 0.1634,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb32f-rgb-float.html": 0.1705,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb565-rgb-unsigned_byte.html": 0.1693,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 0.1667,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 0.1662,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.1576,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb8-rgb-unsigned_byte.html": 0.1417,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 0.1553,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb9_e5-rgb-float.html": 0.1702,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb9_e5-rgb-half_float.html": 0.1834,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgba16f-rgba-float.html": 0.1353,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgba16f-rgba-half_float.html": 0.1504,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgba32f-rgba-float.html": 0.1948,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgba4-rgba-unsigned_byte.html": 0.1626,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.1765,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgba8-rgba-unsigned_byte.html": 0.1776,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 0.1712,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-srgb8-rgb-unsigned_byte.html": 0.2044,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 0.1736,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-r11f_g11f_b10f-rgb-float.html": 0.2403,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 0.239,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.2374,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-r16f-red-float.html": 0.2534,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-r16f-red-half_float.html": 0.3623,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-r32f-red-float.html": 0.2628,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-r8-red-unsigned_byte.html": 0.2454,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-r8ui-red_integer-unsigned_byte.html": 0.3337,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rg16f-rg-float.html": 0.2832,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rg16f-rg-half_float.html": 0.2872,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rg32f-rg-float.html": 0.261,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rg8-rg-unsigned_byte.html": 0.2351,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 0.2956,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.2731,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb16f-rgb-float.html": 0.2005,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb16f-rgb-half_float.html": 0.2655,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb32f-rgb-float.html": 0.2358,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb565-rgb-unsigned_byte.html": 0.2633,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 0.3095,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 0.1909,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.2078,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb8-rgb-unsigned_byte.html": 0.3414,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 0.2085,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb9_e5-rgb-float.html": 0.2509,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb9_e5-rgb-half_float.html": 0.2554,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgba16f-rgba-float.html": 0.2812,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgba16f-rgba-half_float.html": 0.2294,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgba32f-rgba-float.html": 0.2516,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgba4-rgba-unsigned_byte.html": 0.2455,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.2935,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgba8-rgba-unsigned_byte.html": 0.2694,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 0.2901,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-srgb8-rgb-unsigned_byte.html": 0.2441,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 0.2263,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-r11f_g11f_b10f-rgb-float.html": 0.1691,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 0.1398,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.1765,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-r16f-red-float.html": 0.1794,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-r16f-red-half_float.html": 0.16,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-r32f-red-float.html": 0.1764,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-r8-red-unsigned_byte.html": 0.1801,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-r8ui-red_integer-unsigned_byte.html": 0.1573,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rg16f-rg-float.html": 0.2024,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rg16f-rg-half_float.html": 0.1805,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rg32f-rg-float.html": 0.1907,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rg8-rg-unsigned_byte.html": 0.166,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 0.1651,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.1765,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb16f-rgb-float.html": 0.1427,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb16f-rgb-half_float.html": 0.1747,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb32f-rgb-float.html": 0.1753,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb565-rgb-unsigned_byte.html": 0.2043,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 0.1375,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 0.1662,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.2288,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb8-rgb-unsigned_byte.html": 0.1694,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 0.1733,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb9_e5-rgb-float.html": 0.2187,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb9_e5-rgb-half_float.html": 0.2263,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgba16f-rgba-float.html": 0.1964,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgba16f-rgba-half_float.html": 0.1742,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgba32f-rgba-float.html": 0.1774,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgba4-rgba-unsigned_byte.html": 0.2041,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.2181,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgba8-rgba-unsigned_byte.html": 0.1883,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 0.1828,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-srgb8-rgb-unsigned_byte.html": 0.1665,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 0.1684,
    "conformance2/textures/image_bitmap_from_video/tex-2d-r11f_g11f_b10f-rgb-float.html": 1.3096,
    "conformance2/textures/image_bitmap_from_video/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 1.2532,
    "conformance2/textures/image_bitmap_from_video/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 1.2896,
    "conformance2/textures/image_bitmap_from_video/tex-2d-r16f-red-float.html": 1.1482,
    "conformance2/textures/image_bitmap_from_video/tex-2d-r16f-red-half_float.html": 0.9944,
    "conformance2/textures/image_bitmap_from_video/tex-2d-r32f-red-float.html": 1.5935,
    "conformance2/textures/image_bitmap_from_video/tex-2d-r8-red-unsigned_byte.html": 1.5126,
    "conformance2/textures/image_bitmap_from_video/tex-2d-r8ui-red_integer-unsigned_byte.html": 1.294,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rg16f-rg-float.html": 1.1176,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rg16f-rg-half_float.html": 1.1788,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rg32f-rg-float.html": 0.8573,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rg8-rg-unsigned_byte.html": 1.2593,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 1.3219,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.996,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb16f-rgb-float.html": 0.903,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb16f-rgb-half_float.html": 1.2817,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb32f-rgb-float.html": 1.3436,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb565-rgb-unsigned_byte.html": 1.2678,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 1.4202,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 1.3985,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 1.327,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb8-rgb-unsigned_byte.html": 1.2247,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 1.3427,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb9_e5-rgb-float.html": 0.8809,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb9_e5-rgb-half_float.html": 1.4426,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgba16f-rgba-float.html": 1.2341,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgba16f-rgba-half_float.html": 1.3755,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgba32f-rgba-float.html": 1.559,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgba4-rgba-unsigned_byte.html": 0.9008,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 1.2554,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgba8-rgba-unsigned_byte.html": 1.4098,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 1.5434,
    "conformance2/textures/image_bitmap_from_video/tex-2d-srgb8-rgb-unsigned_byte.html": 1.3405,
    "conformance2/textures/image_bitmap_from_video/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 0.8405,
    "conformance2/textures/image_bitmap_from_video/tex-3d-r11f_g11f_b10f-rgb-float.html": 1.3966,
    "conformance2/textures/image_bitmap_from_video/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 1.4405,
    "conformance2/textures/image_bitmap_from_video/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 1.5996,
    "conformance2/textures/image_bitmap_from_video/tex-3d-r16f-red-float.html": 1.319,
    "conformance2/textures/image_bitmap_from_video/tex-3d-r16f-red-half_float.html": 1.292,
    "conformance2/textures/image_bitmap_from_video/tex-3d-r32f-red-float.html": 1.5355,
    "conformance2/textures/image_bitmap_from_video/tex-3d-r8-red-unsigned_byte.html": 1.155,
    "conformance2/textures/image_bitmap_from_video/tex-3d-r8ui-red_integer-unsigned_byte.html": 1.2659,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rg16f-rg-float.html": 1.3102,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rg16f-rg-half_float.html": 1.282,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rg32f-rg-float.html": 1.7403,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rg8-rg-unsigned_byte.html": 1.0599,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 1.4317,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.713,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb16f-rgb-float.html": 1.3534,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb16f-rgb-half_float.html": 0.993,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb32f-rgb-float.html": 1.4356,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb565-rgb-unsigned_byte.html": 0.9937,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 0.7185,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 0.8621,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 1.3088,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb8-rgb-unsigned_byte.html": 1.1309,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 1.4152,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb9_e5-rgb-float.html": 0.7386,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb9_e5-rgb-half_float.html": 1.1765,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgba16f-rgba-float.html": 1.0556,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgba16f-rgba-half_float.html": 1.1697,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgba32f-rgba-float.html": 1.5388,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgba4-rgba-unsigned_byte.html": 0.8931,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 1.1784,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgba8-rgba-unsigned_byte.html": 1.4303,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 1.2385,
    "conformance2/textures/image_bitmap_from_video/tex-3d-srgb8-rgb-unsigned_byte.html": 0.8118,
    "conformance2/textures/image_bitmap_from_video/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 1.3142,
    "conformance2/textures/image_data/tex-2d-r11f_g11f_b10f-rgb-float.html": 0.4357,
    "conformance2/textures/image_data/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 0.4662,
    "conformance2/textures/image_data/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.4415,
    "conformance2/textures/image_data/tex-2d-r16f-red-float.html": 0.4463,
    "conformance2/textures/image_data/tex-2d-r16f-red-half_float.html": 0.6639,
    "conformance2/textures/image_data/tex-2d-r32f-red-float.html": 0.4621,
    "conformance2/textures/image_data/tex-2d-r8-red-unsigned_byte.html": 0.4699,
    "conformance2/textures/image_data/tex-2d-r8ui-red_integer-unsigned_byte.html": 0.3626,
    "conformance2/textures/image_data/tex-2d-rg16f-rg-float.html": 0.412,
    "conformance2/textures/image_data/tex-2d-rg16f-rg-half_float.html": 0.4158,
    "conformance2/textures/image_data/tex-2d-rg32f-rg-float.html": 0.3822,
    "conformance2/textures/image_data/tex-2d-rg8-rg-unsigned_byte.html": 0.675,
    "conformance2/textures/image_data/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 0.4645,
    "conformance2/textures/image_data/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.4151,
    "conformance2/textures/image_data/tex-2d-rgb16f-rgb-float.html": 0.4441,
    "conformance2/textures/image_data/tex-2d-rgb16f-rgb-half_float.html": 0.4351,
    "conformance2/textures/image_data/tex-2d-rgb32f-rgb-float.html": 0.4377,
    "conformance2/textures/image_data/tex-2d-rgb565-rgb-unsigned_byte.html": 0.4323,
    "conformance2/textures/image_data/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 0.4481,
    "conformance2/textures/image_data/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 0.4424,
    "conformance2/textures/image_data/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.4827,
    "conformance2/textures/image_data/tex-2d-rgb8-rgb-unsigned_byte.html": 0.4806,
    "conformance2/textures/image_data/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 0.4287,
    "conformance2/textures/image_data/tex-2d-rgb9_e5-rgb-float.html": 0.3958,
    "conformance2/textures/image_data/tex-2d-rgb9_e5-rgb-half_float.html": 0.4225,
    "conformance2/textures/image_data/tex-2d-rgba16f-rgba-float.html": 0.379,
    "conformance2/textures/image_data/tex-2d-rgba16f-rgba-half_float.html": 0.4263,
    "conformance2/textures/image_data/tex-2d-rgba32f-rgba-float.html": 0.3516,
    "conformance2/textures/image_data/tex-2d-rgba4-rgba-unsigned_byte.html": 0.4873,
    "conformance2/textures/image_data/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.446,
    "conformance2/textures/image_data/tex-2d-rgba8-rgba-unsigned_byte.html": 0.4802,
    "conformance2/textures/image_data/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 0.4569,
    "conformance2/textures/image_data/tex-2d-srgb8-rgb-unsigned_byte.html": 0.409,
    "conformance2/textures/image_data/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 0.4469,
    "conformance2/textures/image_data/tex-3d-r11f_g11f_b10f-rgb-float.html": 0.3954,
    "conformance2/textures/image_data/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 0.4264,
    "conformance2/textures/image_data/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.3886,
    "conformance2/textures/image_data/tex-3d-r16f-red-float.html": 0.4315,
    "conformance2/textures/image_data/tex-3d-r16f-red-half_float.html": 0.5976,
    "conformance2/textures/image_data/tex-3d-r32f-red-float.html": 0.3407,
    "conformance2/textures/image_data/tex-3d-r8-red-unsigned_byte.html": 0.438,
    "conformance2/textures/image_data/tex-3d-r8ui-red_integer-unsigned_byte.html": 0.3599,
    "conformance2/textures/image_data/tex-3d-rg16f-rg-float.html": 0.3499,
    "conformance2/textures/image_data/tex-3d-rg16f-rg-half_float.html": 0.3228,
    "conformance2/textures/image_data/tex-3d-rg32f-rg-float.html": 0.3752,
    "conformance2/textures/image_data/tex-3d-rg8-rg-unsigned_byte.html": 0.4061,
    "conformance2/textures/image_data/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 0.3754,
    "conformance2/textures/image_data/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.3519,
    "conformance2/textures/image_data/tex-3d-rgb16f-rgb-float.html": 0.415,
    "conformance2/textures/image_data/tex-3d-rgb16f-rgb-half_float.html": 0.3601,
    "conformance2/textures/image_data/tex-3d-rgb32f-rgb-float.html": 0.3028,
    "conformance2/textures/image_data/tex-3d-rgb565-rgb-unsigned_byte.html": 0.2964,
    "conformance2/textures/image_data/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 0.3652,
    "conformance2/textures/image_data/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 0.38,
    "conformance2/textures/image_data/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.4088,
    "conformance2/textures/image_data/tex-3d-rgb8-rgb-unsigned_byte.html": 0.364,
    "conformance2/textures/image_data/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 0.3464,
    "conformance2/textures/image_data/tex-3d-rgb9_e5-rgb-float.html": 0.3775,
    "conformance2/textures/image_data/tex-3d-rgb9_e5-rgb-half_float.html": 0.3887,
    "conformance2/textures/image_data/tex-3d-rgba16f-rgba-float.html": 0.3868,
    "conformance2/textures/image_data/tex-3d-rgba16f-rgba-half_float.html": 0.4149,
    "conformance2/textures/image_data/tex-3d-rgba32f-rgba-float.html": 0.3802,
    "conformance2/textures/image_data/tex-3d-rgba4-rgba-unsigned_byte.html": 0.3843,
    "conformance2/textures/image_data/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.4256,
    "conformance2/textures/image_data/tex-3d-rgba8-rgba-unsigned_byte.html": 0.4471,
    "conformance2/textures/image_data/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 0.3879,
    "conformance2/textures/image_data/tex-3d-srgb8-rgb-unsigned_byte.html": 0.3318,
    "conformance2/textures/image_data/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 0.3979,
    "conformance2/textures/misc/active-3d-texture-bug.html": 0.1294,
    "conformance2/textures/misc/angle-stuck-depth-textures.html": 0.135,
    "conformance2/textures/misc/canvas-remains-unchanged-after-used-in-webgl-texture.html": 0.1169,
    "conformance2/textures/misc/compressed-tex-from-pbo-crash.html": 0.0912,
    "conformance2/textures/misc/compressed-tex-image.html": 0.1113,
    "conformance2/textures/misc/copy-texture-cube-map-AMD-bug.html": 0.1086,
    "conformance2/textures/misc/copy-texture-cube-map-bug.html": 0.1004,
    "conformance2/textures/misc/copy-texture-image-luma-format.html": 1.5086,
    "conformance2/textures/misc/copy-texture-image-same-texture.html": 0.1834,
    "conformance2/textures/misc/copy-texture-image-webgl-specific.html": 0.1242,
    "conformance2/textures/misc/copy-texture-image.html": 0.1934,
    "conformance2/textures/misc/generate-mipmap-with-large-base-level.html": 0.0987,
    "conformance2/textures/misc/gl-get-tex-parameter.html": 0.1974,
    "conformance2/textures/misc/immutable-tex-render-feedback.html": 0.8629,
    "conformance2/textures/misc/integer-cubemap-specification-order-bug.html": 0.2275,
    "conformance2/textures/misc/integer-cubemap-texture-sampling.html": 1.098,
    "conformance2/textures/misc/mipmap-fbo.html": 0.0985,
    "conformance2/textures/misc/npot-video-sizing.html": 0.3009,
    "conformance2/textures/misc/origin-clean-conformance-offscreencanvas.html": 0.2038,
    "conformance2/textures/misc/tex-3d-mipmap-levels-intel-bug.html": 0.1028,
    "conformance2/textures/misc/tex-3d-size-limit.html": 0.1366,
    "conformance2/textures/misc/tex-base-level-bug.html": 1.603,
    "conformance2/textures/misc/tex-image-and-sub-image-with-array-buffer-view-sub-source.html": 0.2185,
    "conformance2/textures/misc/tex-image-with-bad-args-from-dom-elements.html": 0.6044,
    "conformance2/textures/misc/tex-image-with-bad-args.html": 0.1069,
    "conformance2/textures/misc/tex-image-with-different-data-source.html": 0.1798,
    "conformance2/textures/misc/tex-input-validation.html": 0.1505,
    "conformance2/textures/misc/tex-mipmap-levels.html": 0.1353,
    "conformance2/textures/misc/tex-new-formats.html": 0.3551,
    "conformance2/textures/misc/tex-srgb-mipmap.html": 0.2416,
    "conformance2/textures/misc/tex-storage-2d.html": 0.2524,
    "conformance2/textures/misc/tex-storage-and-subimage-3d.html": 0.1258,
    "conformance2/textures/misc/tex-storage-compressed-formats.html": 0.1017,
    "conformance2/textures/misc/tex-subimage3d-canvas-bug.html": 0.1393,
    "conformance2/textures/misc/tex-subimage3d-pixel-buffer-bug.html": 0.125,
    "conformance2/textures/misc/tex-unpack-params-imagedata.html": 0.1025,
    "conformance2/textures/misc/tex-unpack-params-with-flip-y-and-premultiply-alpha.html": 0.3252,
    "conformance2/textures/misc/tex-unpack-params.html": 0.3952,
    "conformance2/textures/misc/texel-fetch-undefined.html": 0.1221,
    "conformance2/textures/misc/texture-npot.html": 0.1523,
    "conformance2/textures/svg_image/tex-2d-r11f_g11f_b10f-rgb-float.html": 0.1519,
    "conformance2/textures/svg_image/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 0.1522,
    "conformance2/textures/svg_image/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.1554,
    "conformance2/textures/svg_image/tex-2d-r16f-red-float.html": 0.2043,
    "conformance2/textures/svg_image/tex-2d-r16f-red-half_float.html": 0.1463,
    "conformance2/textures/svg_image/tex-2d-r32f-red-float.html": 0.1546,
    "conformance2/textures/svg_image/tex-2d-r8-red-unsigned_byte.html": 0.1408,
    "conformance2/textures/svg_image/tex-2d-r8ui-red_integer-unsigned_byte.html": 0.1607,
    "conformance2/textures/svg_image/tex-2d-rg16f-rg-float.html": 0.1952,
    "conformance2/textures/svg_image/tex-2d-rg16f-rg-half_float.html": 0.1413,
    "conformance2/textures/svg_image/tex-2d-rg32f-rg-float.html": 0.1814,
    "conformance2/textures/svg_image/tex-2d-rg8-rg-unsigned_byte.html": 0.1701,
    "conformance2/textures/svg_image/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 0.1605,
    "conformance2/textures/svg_image/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.1507,
    "conformance2/textures/svg_image/tex-2d-rgb16f-rgb-float.html": 0.2486,
    "conformance2/textures/svg_image/tex-2d-rgb16f-rgb-half_float.html": 0.2628,
    "conformance2/textures/svg_image/tex-2d-rgb32f-rgb-float.html": 0.1748,
    "conformance2/textures/svg_image/tex-2d-rgb565-rgb-unsigned_byte.html": 0.178,
    "conformance2/textures/svg_image/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 0.156,
    "conformance2/textures/svg_image/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 0.1942,
    "conformance2/textures/svg_image/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.1868,
    "conformance2/textures/svg_image/tex-2d-rgb8-rgb-unsigned_byte.html": 0.1918,
    "conformance2/textures/svg_image/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 0.2473,
    "conformance2/textures/svg_image/tex-2d-rgb9_e5-rgb-float.html": 0.3054,
    "conformance2/textures/svg_image/tex-2d-rgb9_e5-rgb-half_float.html": 0.1373,
    "conformance2/textures/svg_image/tex-2d-rgba16f-rgba-float.html": 0.1681,
    "conformance2/textures/svg_image/tex-2d-rgba16f-rgba-half_float.html": 0.136,
    "conformance2/textures/svg_image/tex-2d-rgba32f-rgba-float.html": 0.1468,
    "conformance2/textures/svg_image/tex-2d-rgba4-rgba-unsigned_byte.html": 0.1669,
    "conformance2/textures/svg_image/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.1649,
    "conformance2/textures/svg_image/tex-2d-rgba8-rgba-unsigned_byte.html": 0.4348,
    "conformance2/textures/svg_image/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 0.1817,
    "conformance2/textures/svg_image/tex-2d-srgb8-rgb-unsigned_byte.html": 0.1532,
    "conformance2/textures/svg_image/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 0.1783,
    "conformance2/textures/svg_image/tex-3d-r11f_g11f_b10f-rgb-float.html": 0.1195,
    "conformance2/textures/svg_image/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 0.1253,
    "conformance2/textures/svg_image/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.1121,
    "conformance2/textures/svg_image/tex-3d-r16f-red-float.html": 0.1436,
    "conformance2/textures/svg_image/tex-3d-r16f-red-half_float.html": 0.1251,
    "conformance2/textures/svg_image/tex-3d-r32f-red-float.html": 0.1493,
    "conformance2/textures/svg_image/tex-3d-r8-red-unsigned_byte.html": 0.1276,
    "conformance2/textures/svg_image/tex-3d-r8ui-red_integer-unsigned_byte.html": 0.1381,
    "conformance2/textures/svg_image/tex-3d-rg16f-rg-float.html": 0.1119,
    "conformance2/textures/svg_image/tex-3d-rg16f-rg-half_float.html": 0.1466,
    "conformance2/textures/svg_image/tex-3d-rg32f-rg-float.html": 0.1259,
    "conformance2/textures/svg_image/tex-3d-rg8-rg-unsigned_byte.html": 0.1376,
    "conformance2/textures/svg_image/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 0.1599,
    "conformance2/textures/svg_image/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.1964,
    "conformance2/textures/svg_image/tex-3d-rgb16f-rgb-float.html": 0.1311,
    "conformance2/textures/svg_image/tex-3d-rgb16f-rgb-half_float.html": 0.1108,
    "conformance2/textures/svg_image/tex-3d-rgb32f-rgb-float.html": 0.1165,
    "conformance2/textures/svg_image/tex-3d-rgb565-rgb-unsigned_byte.html": 0.1374,
    "conformance2/textures/svg_image/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 0.1225,
    "conformance2/textures/svg_image/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 0.1602,
    "conformance2/textures/svg_image/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.1298,
    "conformance2/textures/svg_image/tex-3d-rgb8-rgb-unsigned_byte.html": 0.1481,
    "conformance2/textures/svg_image/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 0.1649,
    "conformance2/textures/svg_image/tex-3d-rgb9_e5-rgb-float.html": 0.1499,
    "conformance2/textures/svg_image/tex-3d-rgb9_e5-rgb-half_float.html": 0.1437,
    "conformance2/textures/svg_image/tex-3d-rgba16f-rgba-float.html": 0.1168,
    "conformance2/textures/svg_image/tex-3d-rgba16f-rgba-half_float.html": 0.1179,
    "conformance2/textures/svg_image/tex-3d-rgba32f-rgba-float.html": 0.1382,
    "conformance2/textures/svg_image/tex-3d-rgba4-rgba-unsigned_byte.html": 0.1155,
    "conformance2/textures/svg_image/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.1086,
    "conformance2/textures/svg_image/tex-3d-rgba8-rgba-unsigned_byte.html": 0.1242,
    "conformance2/textures/svg_image/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 0.1214,
    "conformance2/textures/svg_image/tex-3d-srgb8-rgb-unsigned_byte.html": 0.1555,
    "conformance2/textures/svg_image/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 0.1513,
    "conformance2/textures/video/tex-2d-r11f_g11f_b10f-rgb-float.html": 2.0002,
    "conformance2/textures/video/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 1.9087,
    "conformance2/textures/video/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 1.7386,
    "conformance2/textures/video/tex-2d-r16f-red-float.html": 2.2089,
    "conformance2/textures/video/tex-2d-r16f-red-half_float.html": 2.0498,
    "conformance2/textures/video/tex-2d-r32f-red-float.html": 1.6977,
    "conformance2/textures/video/tex-2d-r8-red-unsigned_byte.html": 2.1201,
    "conformance2/textures/video/tex-2d-r8ui-red_integer-unsigned_byte.html": 1.8973,
    "conformance2/textures/video/tex-2d-rg16f-rg-float.html": 1.9444,
    "conformance2/textures/video/tex-2d-rg16f-rg-half_float.html": 1.5295,
    "conformance2/textures/video/tex-2d-rg32f-rg-float.html": 1.6112,
    "conformance2/textures/video/tex-2d-rg8-rg-unsigned_byte.html": 1.6927,
    "conformance2/textures/video/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 1.8433,
    "conformance2/textures/video/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 1.8276,
    "conformance2/textures/video/tex-2d-rgb16f-rgb-float.html": 1.9322,
    "conformance2/textures/video/tex-2d-rgb16f-rgb-half_float.html": 1.9322,
    "conformance2/textures/video/tex-2d-rgb32f-rgb-float.html": 2.2508,
    "conformance2/textures/video/tex-2d-rgb565-rgb-unsigned_byte.html": 2.1589,
    "conformance2/textures/video/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 2.2346,
    "conformance2/textures/video/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 1.726,
    "conformance2/textures/video/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 1.9486,
    "conformance2/textures/video/tex-2d-rgb8-rgb-unsigned_byte.html": 1.7427,
    "conformance2/textures/video/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 1.9139,
    "conformance2/textures/video/tex-2d-rgb9_e5-rgb-float.html": 1.7479,
    "conformance2/textures/video/tex-2d-rgb9_e5-rgb-half_float.html": 1.6346,
    "conformance2/textures/video/tex-2d-rgba16f-rgba-float.html": 1.508,
    "conformance2/textures/video/tex-2d-rgba16f-rgba-half_float.html": 1.7435,
    "conformance2/textures/video/tex-2d-rgba32f-rgba-float.html": 1.7809,
    "conformance2/textures/video/tex-2d-rgba4-rgba-unsigned_byte.html": 1.7998,
    "conformance2/textures/video/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 1.8525,
    "conformance2/textures/video/tex-2d-rgba8-rgba-unsigned_byte.html": 1.7094,
    "conformance2/textures/video/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 1.8598,
    "conformance2/textures/video/tex-2d-srgb8-rgb-unsigned_byte.html": 2.5405,
    "conformance2/textures/video/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 1.6973,
    "conformance2/textures/video/tex-3d-r11f_g11f_b10f-rgb-float.html": 2.043,
    "conformance2/textures/video/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 2.1903,
    "conformance2/textures/video/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 1.7429,
    "conformance2/textures/video/tex-3d-r16f-red-float.html": 2.2047,
    "conformance2/textures/video/tex-3d-r16f-red-half_float.html": 2.3143,
    "conformance2/textures/video/tex-3d-r32f-red-float.html": 1.7802,
    "conformance2/textures/video/tex-3d-r8-red-unsigned_byte.html": 1.8716,
    "conformance2/textures/video/tex-3d-r8ui-red_integer-unsigned_byte.html": 1.6467,
    "conformance2/textures/video/tex-3d-rg16f-rg-float.html": 2.6037,
    "conformance2/textures/video/tex-3d-rg16f-rg-half_float.html": 1.7532,
    "conformance2/textures/video/tex-3d-rg32f-rg-float.html": 1.8007,
    "conformance2/textures/video/tex-3d-rg8-rg-unsigned_byte.html": 1.776,
    "conformance2/textures/video/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 1.9689,
    "conformance2/textures/video/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 2.0284,
    "conformance2/textures/video/tex-3d-rgb16f-rgb-float.html": 1.9076,
    "conformance2/textures/video/tex-3d-rgb16f-rgb-half_float.html": 2.1482,
    "conformance2/textures/video/tex-3d-rgb32f-rgb-float.html": 1.6788,
    "conformance2/textures/video/tex-3d-rgb565-rgb-unsigned_byte.html": 1.6675,
    "conformance2/textures/video/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 1.9391,
    "conformance2/textures/video/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 1.8459,
    "conformance2/textures/video/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 2.0818,
    "conformance2/textures/video/tex-3d-rgb8-rgb-unsigned_byte.html": 2.1516,
    "conformance2/textures/video/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 1.7939,
    "conformance2/textures/video/tex-3d-rgb9_e5-rgb-float.html": 1.4769,
    "conformance2/textures/video/tex-3d-rgb9_e5-rgb-half_float.html": 2.0431,
    "conformance2/textures/video/tex-3d-rgba16f-rgba-float.html": 1.7693,
    "conformance2/textures/video/tex-3d-rgba16f-rgba-half_float.html": 1.8234,
    "conformance2/textures/video/tex-3d-rgba32f-rgba-float.html": 2.29,
    "conformance2/textures/video/tex-3d-rgba4-rgba-unsigned_byte.html": 1.8497,
    "conformance2/textures/video/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 1.6732,
    "conformance2/textures/video/tex-3d-rgba8-rgba-unsigned_byte.html": 1.7503,
    "conformance2/textures/video/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 2.0099,
    "conformance2/textures/video/tex-3d-srgb8-rgb-unsigned_byte.html": 1.804,
    "conformance2/textures/video/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 1.7748,
    "conformance2/textures/webgl_canvas/tex-2d-r11f_g11f_b10f-rgb-float.html": 0.7689,
    "conformance2/textures/webgl_canvas/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 0.746,
    "conformance2/textures/webgl_canvas/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.7472,
    "conformance2/textures/webgl_canvas/tex-2d-r16f-red-float.html": 0.811,
    "conformance2/textures/webgl_canvas/tex-2d-r16f-red-half_float.html": 0.7067,
    "conformance2/textures/webgl_canvas/tex-2d-r32f-red-float.html": 0.7673,
    "conformance2/textures/webgl_canvas/tex-2d-r8-red-unsigned_byte.html": 0.7324,
    "conformance2/textures/webgl_canvas/tex-2d-r8ui-red_integer-unsigned_byte.html": 0.7961,
    "conformance2/textures/webgl_canvas/tex-2d-rg16f-rg-float.html": 0.889,
    "conformance2/textures/webgl_canvas/tex-2d-rg16f-rg-half_float.html": 0.6648,
    "conformance2/textures/webgl_canvas/tex-2d-rg32f-rg-float.html": 0.661,
    "conformance2/textures/webgl_canvas/tex-2d-rg8-rg-unsigned_byte.html": 0.6946,
    "conformance2/textures/webgl_canvas/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 0.7827,
    "conformance2/textures/webgl_canvas/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.7156,
    "conformance2/textures/webgl_canvas/tex-2d-rgb16f-rgb-float.html": 0.7559,
    "conformance2/textures/webgl_canvas/tex-2d-rgb16f-rgb-half_float.html": 0.7027,
    "conformance2/textures/webgl_canvas/tex-2d-rgb32f-rgb-float.html": 0.6454,
    "conformance2/textures/webgl_canvas/tex-2d-rgb565-rgb-unsigned_byte.html": 0.6282,
    "conformance2/textures/webgl_canvas/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 0.7423,
    "conformance2/textures/webgl_canvas/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 0.5364,
    "conformance2/textures/webgl_canvas/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.9382,
    "conformance2/textures/webgl_canvas/tex-2d-rgb8-rgb-unsigned_byte.html": 0.7361,
    "conformance2/textures/webgl_canvas/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 0.8278,
    "conformance2/textures/webgl_canvas/tex-2d-rgb9_e5-rgb-float.html": 1.1565,
    "conformance2/textures/webgl_canvas/tex-2d-rgb9_e5-rgb-half_float.html": 1.0446,
    "conformance2/textures/webgl_canvas/tex-2d-rgba16f-rgba-float.html": 0.7724,
    "conformance2/textures/webgl_canvas/tex-2d-rgba16f-rgba-half_float.html": 0.8513,
    "conformance2/textures/webgl_canvas/tex-2d-rgba32f-rgba-float.html": 0.7564,
    "conformance2/textures/webgl_canvas/tex-2d-rgba4-rgba-unsigned_byte.html": 0.8102,
    "conformance2/textures/webgl_canvas/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.8156,
    "conformance2/textures/webgl_canvas/tex-2d-rgba8-rgba-unsigned_byte.html": 0.7391,
    "conformance2/textures/webgl_canvas/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 0.6378,
    "conformance2/textures/webgl_canvas/tex-2d-srgb8-rgb-unsigned_byte.html": 0.8841,
    "conformance2/textures/webgl_canvas/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 0.8455,
    "conformance2/textures/webgl_canvas/tex-3d-r11f_g11f_b10f-rgb-float.html": 17.2283,
    "conformance2/textures/webgl_canvas/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 14.6081,
    "conformance2/textures/webgl_canvas/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 16.0338,
    "conformance2/textures/webgl_canvas/tex-3d-r16f-red-float.html": 15.4787,
    "conformance2/textures/webgl_canvas/tex-3d-r16f-red-half_float.html": 16.2054,
    "conformance2/textures/webgl_canvas/tex-3d-r32f-red-float.html": 15.0806,
    "conformance2/textures/webgl_canvas/tex-3d-r8-red-unsigned_byte.html": 16.6818,
    "conformance2/textures/webgl_canvas/tex-3d-r8ui-red_integer-unsigned_byte.html": 16.8306,
    "conformance2/textures/webgl_canvas/tex-3d-rg16f-rg-float.html": 16.4642,
    "conformance2/textures/webgl_canvas/tex-3d-rg16f-rg-half_float.html": 16.7323,
    "conformance2/textures/webgl_canvas/tex-3d-rg32f-rg-float.html": 15.8429,
    "conformance2/textures/webgl_canvas/tex-3d-rg8-rg-unsigned_byte.html": 17.7657,
    "conformance2/textures/webgl_canvas/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 15.6081,
    "conformance2/textures/webgl_canvas/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 18.1103,
    "conformance2/textures/webgl_canvas/tex-3d-rgb16f-rgb-float.html": 15.7369,
    "conformance2/textures/webgl_canvas/tex-3d-rgb16f-rgb-half_float.html": 16.8833,
    "conformance2/textures/webgl_canvas/tex-3d-rgb32f-rgb-float.html": 14.8933,
    "conformance2/textures/webgl_canvas/tex-3d-rgb565-rgb-unsigned_byte.html": 15.8402,
    "conformance2/textures/webgl_canvas/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 15.8577,
    "conformance2/textures/webgl_canvas/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 16.4503,
    "conformance2/textures/webgl_canvas/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 15.6904,
    "conformance2/textures/webgl_canvas/tex-3d-rgb8-rgb-unsigned_byte.html": 15.9706,
    "conformance2/textures/webgl_canvas/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 16.1374,
    "conformance2/textures/webgl_canvas/tex-3d-rgb9_e5-rgb-float.html": 14.3486,
    "conformance2/textures/webgl_canvas/tex-3d-rgb9_e5-rgb-half_float.html": 15.1278,
    "conformance2/textures/webgl_canvas/tex-3d-rgba16f-rgba-float.html": 16.2353,
    "conformance2/textures/webgl_canvas/tex-3d-rgba16f-rgba-half_float.html": 17.2269,
    "conformance2/textures/webgl_canvas/tex-3d-rgba32f-rgba-float.html": 15.6514,
    "conformance2/textures/webgl_canvas/tex-3d-rgba4-rgba-unsigned_byte.html": 16.6278,
    "conformance2/textures/webgl_canvas/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 14.6798,
    "conformance2/textures/webgl_canvas/tex-3d-rgba8-rgba-unsigned_byte.html": 17.6746,
    "conformance2/textures/webgl_canvas/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 14.9612,
    "conformance2/textures/webgl_canvas/tex-3d-srgb8-rgb-unsigned_byte.html": 16.8655,
    "conformance2/textures/webgl_canvas/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 16.3937,
    "conformance2/transform_feedback/default_transform_feedback.html": 0.0916,
    "conformance2/transform_feedback/non-existent-varying.html": 0.0979,
    "conformance2/transform_feedback/same-buffer-two-binding-points.html": 0.1322,
    "conformance2/transform_feedback/simultaneous_binding.html": 1.74,
    "conformance2/transform_feedback/switching-objects.html": 0.1359,
    "conformance2/transform_feedback/too-small-buffers.html": 0.1524,
    "conformance2/transform_feedback/transform_feedback.html": 1.2731,
    "conformance2/transform_feedback/two-unreferenced-varyings.html": 0.1056,
    "conformance2/transform_feedback/unwritten-output-defaults-to-zero.html": 0.0976,
    "conformance2/uniforms/dependent-buffer-change.html": 0.1123,
    "conformance2/uniforms/draw-with-uniform-blocks.html": 0.1162,
    "conformance2/uniforms/gl-uniform-arrays-sub-source.html": 0.4252,
    "conformance2/uniforms/incompatible-texture-type-for-sampler.html": 1.4496,
    "conformance2/uniforms/large-uniform-buffers.html": 0.0986,
    "conformance2/uniforms/query-uniform-blocks-after-shader-detach.html": 0.1664,
    "conformance2/uniforms/simple-buffer-change.html": 0.135,
    "conformance2/uniforms/uniform-blocks-with-arrays.html": 0.1376,
    "conformance2/vertex_arrays/vertex-array-object-and-disabled-attributes.html": 0.096,
    "conformance2/vertex_arrays/vertex-array-object.html": 0.1839,
    "deqp/data/gles3/shaders/arrays.html": 5.2858,
    "deqp/data/gles3/shaders/conditionals.html": 1.2948,
    "deqp/data/gles3/shaders/constant_expressions.html": 1.5428,
    "deqp/data/gles3/shaders/constants.html": 3.9456,
    "deqp/data/gles3/shaders/conversions_matrix_combine.html": 11.8512,
    "deqp/data/gles3/shaders/conversions_matrix_to_matrix.html": 7.8486,
    "deqp/data/gles3/shaders/conversions_scalar_to_matrix.html": 4.661,
    "deqp/data/gles3/shaders/conversions_scalar_to_scalar.html": 2,
    "deqp/data/gles3/shaders/conversions_scalar_to_vector.html": 6.4575,
    "deqp/data/gles3/shaders/conversions_vector_combine.html": 20.1388,
    "deqp/data/gles3/shaders/conversions_vector_illegal.html": 1.8368,
    "deqp/data/gles3/shaders/conversions_vector_to_scalar.html": 7.8125,
    "deqp/data/gles3/shaders/conversions_vector_to_vector.html": 10.834,
    "deqp/data/gles3/shaders/declarations.html": 1.4942,
    "deqp/data/gles3/shaders/fragdata.html": 0.2127,
    "deqp/data/gles3/shaders/functions.html": 11.3554,
    "deqp/data/gles3/shaders/invalid_texture_functions.html": 2.3646,
    "deqp/data/gles3/shaders/keywords.html": 8.9911,
    "deqp/data/gles3/shaders/linkage.html": 4.8855,
    "deqp/data/gles3/shaders/negative.html": 0.2471,
    "deqp/data/gles3/shaders/preprocessor.html": 14.5152,
    "deqp/data/gles3/shaders/qualification_order.html": 1.8884,
    "deqp/data/gles3/shaders/scoping.html": 2.0706,
    "deqp/data/gles3/shaders/switch.html": 1.2108,
    "deqp/data/gles3/shaders/swizzles_bvec2.html": 2.3928,
    "deqp/data/gles3/shaders/swizzles_bvec3.html": 3.9233,
    "deqp/data/gles3/shaders/swizzles_bvec4.html": 5.0453,
    "deqp/data/gles3/shaders/swizzles_ivec2.html": 3.1362,
    "deqp/data/gles3/shaders/swizzles_ivec3.html": 4.0005,
    "deqp/data/gles3/shaders/swizzles_ivec4.html": 5.729,
    "deqp/data/gles3/shaders/swizzles_vec2.html": 2.2015,
    "deqp/data/gles3/shaders/swizzles_vec3.html": 4.9024,
    "deqp/data/gles3/shaders/swizzles_vec4.html": 5.0546,
    "deqp/framework/opengl/simplereference/referencecontext.html": 0.9905,
    "deqp/functional/gles3/attriblocation.html": 5.7695,
    "deqp/functional/gles3/booleanstatequery.html": 0.2772,
    "deqp/functional/gles3/buffercopy.html": 4.085,
    "deqp/functional/gles3/bufferobjectquery.html": 0.1948,
    "deqp/functional/gles3/clipping.html": 6.43,
    "deqp/functional/gles3/defaultvertexattribute.html": 10.2623,
    "deqp/functional/gles3/draw/draw_arrays.html": 15.2755,
    "deqp/functional/gles3/draw/draw_arrays_instanced.html": 20.6841,
    "deqp/functional/gles3/draw/draw_elements.html": 12.803,
    "deqp/functional/gles3/draw/draw_elements_instanced.html": 17.4014,
    "deqp/functional/gles3/draw/draw_range_elements.html": 8.4515,
    "deqp/functional/gles3/draw/instancing.html": 0.6451,
    "deqp/functional/gles3/draw/random.html": 14.811,
    "deqp/functional/gles3/fbocolorbuffer/blend.html": 6.2613,
    "deqp/functional/gles3/fbocolorbuffer/clear.html": 2.1612,
    "deqp/functional/gles3/fbocolorbuffer/tex2d_00.html": 6.771,
    "deqp/functional/gles3/fbocolorbuffer/tex2d_01.html": 8.6428,
    "deqp/functional/gles3/fbocolorbuffer/tex2d_02.html": 6.0985,
    "deqp/functional/gles3/fbocolorbuffer/tex2d_03.html": 11.8446,
    "deqp/functional/gles3/fbocolorbuffer/tex2d_04.html": 8.9695,
    "deqp/functional/gles3/fbocolorbuffer/tex2d_05.html": 5.3828,
    "deqp/functional/gles3/fbocolorbuffer/tex2darray_00.html": 8.2948,
    "deqp/functional/gles3/fbocolorbuffer/tex2darray_01.html": 6.844,
    "deqp/functional/gles3/fbocolorbuffer/tex2darray_02.html": 11.1618,
    "deqp/functional/gles3/fbocolorbuffer/tex2darray_03.html": 6.6496,
    "deqp/functional/gles3/fbocolorbuffer/tex2darray_04.html": 12.7782,
    "deqp/functional/gles3/fbocolorbuffer/tex2darray_05.html": 7.5225,
    "deqp/functional/gles3/fbocolorbuffer/tex3d_00.html": 8.0446,
    "deqp/functional/gles3/fbocolorbuffer/tex3d_01.html": 10.7973,
    "deqp/functional/gles3/fbocolorbuffer/tex3d_02.html": 6.5515,
    "deqp/functional/gles3/fbocolorbuffer/tex3d_03.html": 11.2994,
    "deqp/functional/gles3/fbocolorbuffer/tex3d_04.html": 8.7767,
    "deqp/functional/gles3/fbocolorbuffer/tex3d_05.html": 6.9282,
    "deqp/functional/gles3/fbocolorbuffer/texcube_00.html": 9.3355,
    "deqp/functional/gles3/fbocolorbuffer/texcube_01.html": 7.1803,
    "deqp/functional/gles3/fbocolorbuffer/texcube_02.html": 9.2478,
    "deqp/functional/gles3/fbocolorbuffer/texcube_03.html": 7.0728,
    "deqp/functional/gles3/fbocolorbuffer/texcube_04.html": 9.2105,
    "deqp/functional/gles3/fbocolorbuffer/texcube_05.html": 6.2493,
    "deqp/functional/gles3/fbocompleteness.html": 9.751,
    "deqp/functional/gles3/fbodepthbuffer.html": 5.743,
    "deqp/functional/gles3/fboinvalidate/default.html": 11.8757,
    "deqp/functional/gles3/fboinvalidate/format_00.html": 5.6473,
    "deqp/functional/gles3/fboinvalidate/format_01.html": 6.1982,
    "deqp/functional/gles3/fboinvalidate/format_02.html": 5.5433,
    "deqp/functional/gles3/fboinvalidate/sub.html": 9.747,
    "deqp/functional/gles3/fboinvalidate/target.html": 13.3253,
    "deqp/functional/gles3/fboinvalidate/whole.html": 15.0173,
    "deqp/functional/gles3/fbomultisample.2_samples.html": 21.2972,
    "deqp/functional/gles3/fbomultisample.4_samples.html": 25.9088,
    "deqp/functional/gles3/fbomultisample.8_samples.html": 0.413,
    "deqp/functional/gles3/fborender/recreate_color_00.html": 6.749,
    "deqp/functional/gles3/fborender/recreate_color_01.html": 4.7287,
    "deqp/functional/gles3/fborender/recreate_color_02.html": 4.7025,
    "deqp/functional/gles3/fborender/recreate_color_03.html": 6.2137,
    "deqp/functional/gles3/fborender/recreate_color_04.html": 7.1119,
    "deqp/functional/gles3/fborender/recreate_color_05.html": 4.8481,
    "deqp/functional/gles3/fborender/recreate_color_06.html": 8.2212,
    "deqp/functional/gles3/fborender/recreate_depth_stencil.html": 6.3844,
    "deqp/functional/gles3/fborender/resize_00.html": 6.041,
    "deqp/functional/gles3/fborender/resize_01.html": 5.0931,
    "deqp/functional/gles3/fborender/resize_02.html": 4.8377,
    "deqp/functional/gles3/fborender/resize_03.html": 9.1583,
    "deqp/functional/gles3/fborender/shared_colorbuffer_00.html": 8.6865,
    "deqp/functional/gles3/fborender/shared_colorbuffer_01.html": 7.0117,
    "deqp/functional/gles3/fborender/shared_colorbuffer_02.html": 10.9377,
    "deqp/functional/gles3/fborender/shared_colorbuffer_clear.html": 2.1403,
    "deqp/functional/gles3/fborender/shared_depth_stencil.html": 6.3678,
    "deqp/functional/gles3/fborender/stencil_clear.html": 2.9536,
    "deqp/functional/gles3/fbostatequery.html": 0.3718,
    "deqp/functional/gles3/fbostencilbuffer.html": 4.5886,
    "deqp/functional/gles3/floatstatequery.html": 0.5339,
    "deqp/functional/gles3/fragdepth.html": 2.2062,
    "deqp/functional/gles3/fragmentoutput/array.fixed.html": 4.9217,
    "deqp/functional/gles3/fragmentoutput/array.float.html": 9.1977,
    "deqp/functional/gles3/fragmentoutput/array.int.html": 6.2646,
    "deqp/functional/gles3/fragmentoutput/array.uint.html": 7.1586,
    "deqp/functional/gles3/fragmentoutput/basic.fixed.html": 3.8563,
    "deqp/functional/gles3/fragmentoutput/basic.float.html": 4.9165,
    "deqp/functional/gles3/fragmentoutput/basic.int.html": 3.8754,
    "deqp/functional/gles3/fragmentoutput/basic.uint.html": 4.7296,
    "deqp/functional/gles3/fragmentoutput/random_00.html": 3.558,
    "deqp/functional/gles3/fragmentoutput/random_01.html": 3.6149,
    "deqp/functional/gles3/fragmentoutput/random_02.html": 3.9735,
    "deqp/functional/gles3/framebufferblit/conversion_00.html": 2.8512,
    "deqp/functional/gles3/framebufferblit/conversion_01.html": 4.1561,
    "deqp/functional/gles3/framebufferblit/conversion_02.html": 5.97,
    "deqp/functional/gles3/framebufferblit/conversion_03.html": 4.095,
    "deqp/functional/gles3/framebufferblit/conversion_04.html": 5.9491,
    "deqp/functional/gles3/framebufferblit/conversion_05.html": 4.4013,
    "deqp/functional/gles3/framebufferblit/conversion_06.html": 6.1957,
    "deqp/functional/gles3/framebufferblit/conversion_07.html": 4.5193,
    "deqp/functional/gles3/framebufferblit/conversion_08.html": 6.276,
    "deqp/functional/gles3/framebufferblit/conversion_09.html": 3.8964,
    "deqp/functional/gles3/framebufferblit/conversion_10.html": 6.0841,
    "deqp/functional/gles3/framebufferblit/conversion_11.html": 6.2517,
    "deqp/functional/gles3/framebufferblit/conversion_12.html": 7.8429,
    "deqp/functional/gles3/framebufferblit/conversion_13.html": 8.8497,
    "deqp/functional/gles3/framebufferblit/conversion_14.html": 2.9081,
    "deqp/functional/gles3/framebufferblit/conversion_15.html": 6.4593,
    "deqp/functional/gles3/framebufferblit/conversion_16.html": 2.8584,
    "deqp/functional/gles3/framebufferblit/conversion_17.html": 4.1779,
    "deqp/functional/gles3/framebufferblit/conversion_18.html": 11.5522,
    "deqp/functional/gles3/framebufferblit/conversion_19.html": 3.8168,
    "deqp/functional/gles3/framebufferblit/conversion_20.html": 3.1397,
    "deqp/functional/gles3/framebufferblit/conversion_21.html": 3.022,
    "deqp/functional/gles3/framebufferblit/conversion_22.html": 3.3362,
    "deqp/functional/gles3/framebufferblit/conversion_23.html": 3.0672,
    "deqp/functional/gles3/framebufferblit/conversion_24.html": 5.936,
    "deqp/functional/gles3/framebufferblit/conversion_25.html": 8.6718,
    "deqp/functional/gles3/framebufferblit/conversion_26.html": 3.0467,
    "deqp/functional/gles3/framebufferblit/conversion_27.html": 3.2629,
    "deqp/functional/gles3/framebufferblit/conversion_28.html": 5.4092,
    "deqp/functional/gles3/framebufferblit/conversion_29.html": 4.7382,
    "deqp/functional/gles3/framebufferblit/conversion_30.html": 6.3825,
    "deqp/functional/gles3/framebufferblit/conversion_31.html": 7.959,
    "deqp/functional/gles3/framebufferblit/conversion_32.html": 6.0906,
    "deqp/functional/gles3/framebufferblit/conversion_33.html": 8.3935,
    "deqp/functional/gles3/framebufferblit/conversion_34.html": 4.767,
    "deqp/functional/gles3/framebufferblit/default_framebuffer_00.html": 5.0593,
    "deqp/functional/gles3/framebufferblit/default_framebuffer_01.html": 8.5718,
    "deqp/functional/gles3/framebufferblit/default_framebuffer_02.html": 4.0097,
    "deqp/functional/gles3/framebufferblit/default_framebuffer_03.html": 9.3853,
    "deqp/functional/gles3/framebufferblit/default_framebuffer_04.html": 15.7082,
    "deqp/functional/gles3/framebufferblit/default_framebuffer_05.html": 7.0342,
    "deqp/functional/gles3/framebufferblit/default_framebuffer_06.html": 10.2338,
    "deqp/functional/gles3/framebufferblit/depth_stencil.html": 8.2397,
    "deqp/functional/gles3/framebufferblit/rect_00.html": 4.485,
    "deqp/functional/gles3/framebufferblit/rect_01.html": 5.0577,
    "deqp/functional/gles3/framebufferblit/rect_02.html": 2.4811,
    "deqp/functional/gles3/framebufferblit/rect_03.html": 1.127,
    "deqp/functional/gles3/framebufferblit/rect_04.html": 1.5564,
    "deqp/functional/gles3/framebufferblit/rect_05.html": 0.9818,
    "deqp/functional/gles3/framebufferblit/rect_06.html": 0.3653,
    "deqp/functional/gles3/indexedstatequery.html": 0.2383,
    "deqp/functional/gles3/instancedrendering.html": 16.9606,
    "deqp/functional/gles3/integerstatequery.html": 3.9952,
    "deqp/functional/gles3/internalformatquery.html": 0.4216,
    "deqp/functional/gles3/lifetime.html": 1.3354,
    "deqp/functional/gles3/multisample/default_fbo.html": 0.3359,
    "deqp/functional/gles3/multisample/fbo_4_samples.html": 6.8154,
    "deqp/functional/gles3/multisample/fbo_8_samples.html": 0.726,
    "deqp/functional/gles3/multisample/fbo_max_samples.html": 5.4857,
    "deqp/functional/gles3/negativebufferapi.html": 0.7575,
    "deqp/functional/gles3/negativefragmentapi.html": 0.2859,
    "deqp/functional/gles3/negativeshaderapi.html": 0.8458,
    "deqp/functional/gles3/negativestateapi.html": 0.8118,
    "deqp/functional/gles3/negativetextureapi.html": 1.3874,
    "deqp/functional/gles3/negativevertexarrayapi.html": 0.6397,
    "deqp/functional/gles3/occlusionquery_conservative.html": 22.0574,
    "deqp/functional/gles3/occlusionquery_strict.html": 22.9349,
    "deqp/functional/gles3/pixelbufferobject.html": 7.4304,
    "deqp/functional/gles3/primitiverestart/00.html": 3.007,
    "deqp/functional/gles3/primitiverestart/01.html": 4.2371,
    "deqp/functional/gles3/primitiverestart/02.html": 4.4135,
    "deqp/functional/gles3/primitiverestart/03.html": 3.5277,
    "deqp/functional/gles3/primitiverestart/04.html": 2.7754,
    "deqp/functional/gles3/primitiverestart/05.html": 3.1026,
    "deqp/functional/gles3/primitiverestart/06.html": 4.7348,
    "deqp/functional/gles3/primitiverestart/07.html": 3.2071,
    "deqp/functional/gles3/rasterizerdiscard.html": 3.6179,
    "deqp/functional/gles3/rbostatequery.html": 0.1807,
    "deqp/functional/gles3/readpixel.html": 1.4783,
    "deqp/functional/gles3/samplerobject.html": 4.8296,
    "deqp/functional/gles3/samplerstatequery.html": 0.2418,
    "deqp/functional/gles3/shaderapi.html": 0.6646,
    "deqp/functional/gles3/shaderbuiltinvar.html": 4.5403,
    "deqp/functional/gles3/shadercommonfunction.html": 11.2528,
    "deqp/functional/gles3/shaderderivate_dfdx.html": 8.0654,
    "deqp/functional/gles3/shaderderivate_dfdy.html": 10.9519,
    "deqp/functional/gles3/shaderderivate_fwidth.html": 8.1441,
    "deqp/functional/gles3/shaderindexing/mat_00.html": 14.6311,
    "deqp/functional/gles3/shaderindexing/mat_01.html": 9.4939,
    "deqp/functional/gles3/shaderindexing/mat_02.html": 14.362,
    "deqp/functional/gles3/shaderindexing/tmp.html": 14.5907,
    "deqp/functional/gles3/shaderindexing/uniform.html": 3.7101,
    "deqp/functional/gles3/shaderindexing/varying.html": 7.3423,
    "deqp/functional/gles3/shaderindexing/vec2.html": 8.656,
    "deqp/functional/gles3/shaderindexing/vec3.html": 7.7796,
    "deqp/functional/gles3/shaderindexing/vec4.html": 8.6853,
    "deqp/functional/gles3/shaderloop_do_while.html": 18.7432,
    "deqp/functional/gles3/shaderloop_for.html": 20.4926,
    "deqp/functional/gles3/shaderloop_while.html": 26.6494,
    "deqp/functional/gles3/shadermatrix/add_assign.html": 10.7177,
    "deqp/functional/gles3/shadermatrix/add_const.html": 19.2302,
    "deqp/functional/gles3/shadermatrix/add_dynamic.html": 19.7166,
    "deqp/functional/gles3/shadermatrix/add_uniform.html": 18.7479,
    "deqp/functional/gles3/shadermatrix/determinant.html": 3.6448,
    "deqp/functional/gles3/shadermatrix/div_assign.html": 10.8919,
    "deqp/functional/gles3/shadermatrix/div_const.html": 18.6741,
    "deqp/functional/gles3/shadermatrix/div_dynamic.html": 28.8952,
    "deqp/functional/gles3/shadermatrix/div_uniform.html": 18.9204,
    "deqp/functional/gles3/shadermatrix/inverse.html": 8.5303,
    "deqp/functional/gles3/shadermatrix/matrixcompmult.html": 10.9916,
    "deqp/functional/gles3/shadermatrix/mul_assign.html": 3.7823,
    "deqp/functional/gles3/shadermatrix/mul_const_highp.html": 12.4437,
    "deqp/functional/gles3/shadermatrix/mul_const_lowp.html": 12.7424,
    "deqp/functional/gles3/shadermatrix/mul_const_mediump.html": 18.8918,
    "deqp/functional/gles3/shadermatrix/mul_dynamic_highp.html": 18.478,
    "deqp/functional/gles3/shadermatrix/mul_dynamic_lowp.html": 19.9331,
    "deqp/functional/gles3/shadermatrix/mul_dynamic_mediump.html": 18.4094,
    "deqp/functional/gles3/shadermatrix/mul_uniform_highp.html": 17.8554,
    "deqp/functional/gles3/shadermatrix/mul_uniform_lowp.html": 18.7259,
    "deqp/functional/gles3/shadermatrix/mul_uniform_mediump.html": 17.9014,
    "deqp/functional/gles3/shadermatrix/negation.html": 9.6484,
    "deqp/functional/gles3/shadermatrix/outerproduct.html": 9.3408,
    "deqp/functional/gles3/shadermatrix/post_decrement.html": 10.0706,
    "deqp/functional/gles3/shadermatrix/post_increment.html": 9.5318,
    "deqp/functional/gles3/shadermatrix/pre_decrement.html": 11.1714,
    "deqp/functional/gles3/shadermatrix/pre_increment.html": 10.8737,
    "deqp/functional/gles3/shadermatrix/sub_assign.html": 10.9502,
    "deqp/functional/gles3/shadermatrix/sub_const.html": 12.6884,
    "deqp/functional/gles3/shadermatrix/sub_dynamic.html": 20.178,
    "deqp/functional/gles3/shadermatrix/sub_uniform.html": 18.7749,
    "deqp/functional/gles3/shadermatrix/transpose.html": 9.3147,
    "deqp/functional/gles3/shadermatrix/unary_addition.html": 7.7361,
    "deqp/functional/gles3/shaderoperator/angle_and_trigonometry_00.html": 10.7356,
    "deqp/functional/gles3/shaderoperator/angle_and_trigonometry_01.html": 6.617,
    "deqp/functional/gles3/shaderoperator/angle_and_trigonometry_02.html": 7.2744,
    "deqp/functional/gles3/shaderoperator/angle_and_trigonometry_03.html": 4.8199,
    "deqp/functional/gles3/shaderoperator/binary_operator_00.html": 31.5426,
    "deqp/functional/gles3/shaderoperator/binary_operator_01.html": 28.7145,
    "deqp/functional/gles3/shaderoperator/binary_operator_02.html": 17.8937,
    "deqp/functional/gles3/shaderoperator/binary_operator_03.html": 17.397,
    "deqp/functional/gles3/shaderoperator/binary_operator_04.html": 23.8735,
    "deqp/functional/gles3/shaderoperator/binary_operator_05.html": 20.3677,
    "deqp/functional/gles3/shaderoperator/binary_operator_06.html": 21.196,
    "deqp/functional/gles3/shaderoperator/binary_operator_07.html": 13.3945,
    "deqp/functional/gles3/shaderoperator/binary_operator_08.html": 12.129,
    "deqp/functional/gles3/shaderoperator/binary_operator_09.html": 23.9548,
    "deqp/functional/gles3/shaderoperator/binary_operator_10.html": 21.0273,
    "deqp/functional/gles3/shaderoperator/binary_operator_11.html": 20.7518,
    "deqp/functional/gles3/shaderoperator/binary_operator_12.html": 12.1227,
    "deqp/functional/gles3/shaderoperator/binary_operator_13.html": 12.0911,
    "deqp/functional/gles3/shaderoperator/binary_operator_14.html": 23.9148,
    "deqp/functional/gles3/shaderoperator/binary_operator_15.html": 46.6722,
    "deqp/functional/gles3/shaderoperator/bool_compare.html": 3.5745,
    "deqp/functional/gles3/shaderoperator/common_functions_00.html": 12.4004,
    "deqp/functional/gles3/shaderoperator/common_functions_01.html": 19.4822,
    "deqp/functional/gles3/shaderoperator/common_functions_02.html": 11.5597,
    "deqp/functional/gles3/shaderoperator/common_functions_03.html": 20.3613,
    "deqp/functional/gles3/shaderoperator/common_functions_04.html": 12.0418,
    "deqp/functional/gles3/shaderoperator/common_functions_05.html": 12.1655,
    "deqp/functional/gles3/shaderoperator/common_functions_06.html": 9.3283,
    "deqp/functional/gles3/shaderoperator/exponential.html": 11.5197,
    "deqp/functional/gles3/shaderoperator/float_compare.html": 28.518,
    "deqp/functional/gles3/shaderoperator/geometric.html": 11.8144,
    "deqp/functional/gles3/shaderoperator/int_compare.html": 13.9283,
    "deqp/functional/gles3/shaderoperator/selection.html": 9.2307,
    "deqp/functional/gles3/shaderoperator/sequence.html": 7.882,
    "deqp/functional/gles3/shaderoperator/unary_operator_00.html": 16.4322,
    "deqp/functional/gles3/shaderoperator/unary_operator_01.html": 29.4257,
    "deqp/functional/gles3/shaderoperator/unary_operator_02.html": 28.8107,
    "deqp/functional/gles3/shaderpackingfunction.html": 1.0178,
    "deqp/functional/gles3/shaderprecision_float.html": 16.0458,
    "deqp/functional/gles3/shaderprecision_int.html": 17.7359,
    "deqp/functional/gles3/shaderprecision_uint.html": 16.8194,
    "deqp/functional/gles3/shaderstatequery.html": 1.0373,
    "deqp/functional/gles3/shaderstruct.html": 9.5612,
    "deqp/functional/gles3/shaderswitch.html": 11.6428,
    "deqp/functional/gles3/shadertexturefunction/texelfetch.html": 6.2869,
    "deqp/functional/gles3/shadertexturefunction/texelfetchoffset.html": 3.5769,
    "deqp/functional/gles3/shadertexturefunction/texture.html": 14.0433,
    "deqp/functional/gles3/shadertexturefunction/texturegrad.html": 8.8871,
    "deqp/functional/gles3/shadertexturefunction/texturegradoffset.html": 5.4977,
    "deqp/functional/gles3/shadertexturefunction/texturelod.html": 6.143,
    "deqp/functional/gles3/shadertexturefunction/texturelodoffset.html": 5.2379,
    "deqp/functional/gles3/shadertexturefunction/textureoffset.html": 10.1323,
    "deqp/functional/gles3/shadertexturefunction/textureproj.html": 8.1216,
    "deqp/functional/gles3/shadertexturefunction/textureprojgrad.html": 3.6078,
    "deqp/functional/gles3/shadertexturefunction/textureprojgradoffset.html": 6.5869,
    "deqp/functional/gles3/shadertexturefunction/textureprojlod.html": 5.0428,
    "deqp/functional/gles3/shadertexturefunction/textureprojlodoffset.html": 5.1619,
    "deqp/functional/gles3/shadertexturefunction/textureprojoffset.html": 4.7148,
    "deqp/functional/gles3/shadertexturefunction/texturesize.html": 0,
    "deqp/functional/gles3/stringquery.html": 0.319,
    "deqp/functional/gles3/sync.html": 5.3198,
    "deqp/functional/gles3/texturefiltering/2d_array_combinations_00.html": 3.7273,
    "deqp/functional/gles3/texturefiltering/2d_array_combinations_01.html": 5.9881,
    "deqp/functional/gles3/texturefiltering/2d_array_combinations_02.html": 4.0115,
    "deqp/functional/gles3/texturefiltering/2d_array_combinations_03.html": 5.8517,
    "deqp/functional/gles3/texturefiltering/2d_array_combinations_04.html": 4.2062,
    "deqp/functional/gles3/texturefiltering/2d_array_combinations_05.html": 5.1923,
    "deqp/functional/gles3/texturefiltering/2d_array_formats_00.html": 2.3562,
    "deqp/functional/gles3/texturefiltering/2d_array_formats_01.html": 1.7825,
    "deqp/functional/gles3/texturefiltering/2d_array_formats_02.html": 1.8544,
    "deqp/functional/gles3/texturefiltering/2d_array_formats_03.html": 1.577,
    "deqp/functional/gles3/texturefiltering/2d_array_formats_04.html": 1.8692,
    "deqp/functional/gles3/texturefiltering/2d_array_formats_05.html": 2.2532,
    "deqp/functional/gles3/texturefiltering/2d_array_formats_06.html": 1.3335,
    "deqp/functional/gles3/texturefiltering/2d_array_formats_07.html": 1.6922,
    "deqp/functional/gles3/texturefiltering/2d_array_formats_08.html": 1.5168,
    "deqp/functional/gles3/texturefiltering/2d_array_formats_09.html": 2.3343,
    "deqp/functional/gles3/texturefiltering/2d_array_sizes_00.html": 1.4215,
    "deqp/functional/gles3/texturefiltering/2d_array_sizes_01.html": 1.2196,
    "deqp/functional/gles3/texturefiltering/2d_array_sizes_02.html": 1.6792,
    "deqp/functional/gles3/texturefiltering/2d_array_sizes_03.html": 1.3599,
    "deqp/functional/gles3/texturefiltering/2d_array_sizes_04.html": 5.6072,
    "deqp/functional/gles3/texturefiltering/2d_combinations_00.html": 2.462,
    "deqp/functional/gles3/texturefiltering/2d_combinations_01.html": 3.2353,
    "deqp/functional/gles3/texturefiltering/2d_combinations_02.html": 3.101,
    "deqp/functional/gles3/texturefiltering/2d_combinations_03.html": 2.9667,
    "deqp/functional/gles3/texturefiltering/2d_combinations_04.html": 2.8308,
    "deqp/functional/gles3/texturefiltering/2d_combinations_05.html": 2.6584,
    "deqp/functional/gles3/texturefiltering/2d_formats_00.html": 1.785,
    "deqp/functional/gles3/texturefiltering/2d_formats_01.html": 2.4257,
    "deqp/functional/gles3/texturefiltering/2d_formats_02.html": 1.2252,
    "deqp/functional/gles3/texturefiltering/2d_formats_03.html": 1.411,
    "deqp/functional/gles3/texturefiltering/2d_formats_04.html": 1.7538,
    "deqp/functional/gles3/texturefiltering/2d_formats_05.html": 1.3496,
    "deqp/functional/gles3/texturefiltering/2d_formats_06.html": 1.2312,
    "deqp/functional/gles3/texturefiltering/2d_formats_07.html": 1.22,
    "deqp/functional/gles3/texturefiltering/2d_formats_08.html": 1.0615,
    "deqp/functional/gles3/texturefiltering/2d_formats_09.html": 1.0661,
    "deqp/functional/gles3/texturefiltering/2d_sizes_00.html": 1.0073,
    "deqp/functional/gles3/texturefiltering/2d_sizes_01.html": 1.984,
    "deqp/functional/gles3/texturefiltering/2d_sizes_02.html": 1.3064,
    "deqp/functional/gles3/texturefiltering/2d_sizes_03.html": 1.8105,
    "deqp/functional/gles3/texturefiltering/2d_sizes_04.html": 1.0786,
    "deqp/functional/gles3/texturefiltering/2d_sizes_05.html": 1.0118,
    "deqp/functional/gles3/texturefiltering/3d_combinations_00.html": 2.2712,
    "deqp/functional/gles3/texturefiltering/3d_combinations_01.html": 2.1447,
    "deqp/functional/gles3/texturefiltering/3d_combinations_02.html": 2.403,
    "deqp/functional/gles3/texturefiltering/3d_combinations_03.html": 2.2022,
    "deqp/functional/gles3/texturefiltering/3d_combinations_04.html": 2.3757,
    "deqp/functional/gles3/texturefiltering/3d_combinations_05.html": 2.3086,
    "deqp/functional/gles3/texturefiltering/3d_combinations_06.html": 2.6829,
    "deqp/functional/gles3/texturefiltering/3d_combinations_07.html": 3.1837,
    "deqp/functional/gles3/texturefiltering/3d_combinations_08.html": 3.3434,
    "deqp/functional/gles3/texturefiltering/3d_combinations_09.html": 2.1624,
    "deqp/functional/gles3/texturefiltering/3d_combinations_10.html": 3.0465,
    "deqp/functional/gles3/texturefiltering/3d_combinations_11.html": 2.4698,
    "deqp/functional/gles3/texturefiltering/3d_combinations_12.html": 2.2754,
    "deqp/functional/gles3/texturefiltering/3d_combinations_13.html": 2.9114,
    "deqp/functional/gles3/texturefiltering/3d_combinations_14.html": 3.0975,
    "deqp/functional/gles3/texturefiltering/3d_combinations_15.html": 3.3173,
    "deqp/functional/gles3/texturefiltering/3d_combinations_16.html": 3.3426,
    "deqp/functional/gles3/texturefiltering/3d_combinations_17.html": 2.3433,
    "deqp/functional/gles3/texturefiltering/3d_combinations_18.html": 2.3136,
    "deqp/functional/gles3/texturefiltering/3d_combinations_19.html": 2.3881,
    "deqp/functional/gles3/texturefiltering/3d_combinations_20.html": 2.356,
    "deqp/functional/gles3/texturefiltering/3d_combinations_21.html": 2.2471,
    "deqp/functional/gles3/texturefiltering/3d_combinations_22.html": 2.6616,
    "deqp/functional/gles3/texturefiltering/3d_combinations_23.html": 2.1626,
    "deqp/functional/gles3/texturefiltering/3d_combinations_24.html": 3.0573,
    "deqp/functional/gles3/texturefiltering/3d_combinations_25.html": 2.2907,
    "deqp/functional/gles3/texturefiltering/3d_combinations_26.html": 2.6419,
    "deqp/functional/gles3/texturefiltering/3d_combinations_27.html": 2.2759,
    "deqp/functional/gles3/texturefiltering/3d_combinations_28.html": 2.6736,
    "deqp/functional/gles3/texturefiltering/3d_combinations_29.html": 3.0269,
    "deqp/functional/gles3/texturefiltering/3d_combinations_30.html": 2.4877,
    "deqp/functional/gles3/texturefiltering/3d_combinations_31.html": 2.2012,
    "deqp/functional/gles3/texturefiltering/3d_combinations_32.html": 2.6529,
    "deqp/functional/gles3/texturefiltering/3d_combinations_33.html": 2.4452,
    "deqp/functional/gles3/texturefiltering/3d_combinations_34.html": 2.5094,
    "deqp/functional/gles3/texturefiltering/3d_combinations_35.html": 2.2472,
    "deqp/functional/gles3/texturefiltering/3d_formats_00.html": 2.6762,
    "deqp/functional/gles3/texturefiltering/3d_formats_01.html": 2.0762,
    "deqp/functional/gles3/texturefiltering/3d_formats_02.html": 2.2859,
    "deqp/functional/gles3/texturefiltering/3d_formats_03.html": 1.8549,
    "deqp/functional/gles3/texturefiltering/3d_formats_04.html": 1.5838,
    "deqp/functional/gles3/texturefiltering/3d_formats_05.html": 1.7198,
    "deqp/functional/gles3/texturefiltering/3d_formats_06.html": 1.5809,
    "deqp/functional/gles3/texturefiltering/3d_formats_07.html": 1.3649,
    "deqp/functional/gles3/texturefiltering/3d_formats_08.html": 1.648,
    "deqp/functional/gles3/texturefiltering/3d_formats_09.html": 1.5452,
    "deqp/functional/gles3/texturefiltering/3d_sizes_00.html": 2.0888,
    "deqp/functional/gles3/texturefiltering/3d_sizes_01.html": 1.4037,
    "deqp/functional/gles3/texturefiltering/3d_sizes_02.html": 1.5776,
    "deqp/functional/gles3/texturefiltering/3d_sizes_03.html": 1.2553,
    "deqp/functional/gles3/texturefiltering/3d_sizes_04.html": 1.5989,
    "deqp/functional/gles3/texturefiltering/cube_combinations_00.html": 9.3284,
    "deqp/functional/gles3/texturefiltering/cube_combinations_01.html": 13.3068,
    "deqp/functional/gles3/texturefiltering/cube_combinations_02.html": 17.689,
    "deqp/functional/gles3/texturefiltering/cube_combinations_03.html": 19.0514,
    "deqp/functional/gles3/texturefiltering/cube_combinations_04.html": 21.4373,
    "deqp/functional/gles3/texturefiltering/cube_combinations_05.html": 24.2307,
    "deqp/functional/gles3/texturefiltering/cube_formats_00.html": 6.6398,
    "deqp/functional/gles3/texturefiltering/cube_formats_01.html": 6.9537,
    "deqp/functional/gles3/texturefiltering/cube_formats_02.html": 4.653,
    "deqp/functional/gles3/texturefiltering/cube_formats_03.html": 4.4127,
    "deqp/functional/gles3/texturefiltering/cube_formats_04.html": 4.4781,
    "deqp/functional/gles3/texturefiltering/cube_formats_05.html": 4.5833,
    "deqp/functional/gles3/texturefiltering/cube_formats_06.html": 6.6753,
    "deqp/functional/gles3/texturefiltering/cube_formats_07.html": 6.9342,
    "deqp/functional/gles3/texturefiltering/cube_formats_08.html": 6.7137,
    "deqp/functional/gles3/texturefiltering/cube_formats_09.html": 4.9254,
    "deqp/functional/gles3/texturefiltering/cube_no_edges_visible.html": 1.346,
    "deqp/functional/gles3/texturefiltering/cube_sizes_00.html": 5.2746,
    "deqp/functional/gles3/texturefiltering/cube_sizes_01.html": 7.5548,
    "deqp/functional/gles3/texturefiltering/cube_sizes_02.html": 9.9939,
    "deqp/functional/gles3/texturefiltering/cube_sizes_03.html": 5.6813,
    "deqp/functional/gles3/texturefiltering/cube_sizes_04.html": 6.7305,
    "deqp/functional/gles3/textureformat/compressed_2d.html": 0.3437,
    "deqp/functional/gles3/textureformat/compressed_cube.html": 0.1671,
    "deqp/functional/gles3/textureformat/sized_color_2d_array_npot_00.html": 3.4252,
    "deqp/functional/gles3/textureformat/sized_color_2d_array_npot_01.html": 3.6762,
    "deqp/functional/gles3/textureformat/sized_color_2d_array_npot_02.html": 3.2538,
    "deqp/functional/gles3/textureformat/sized_color_2d_array_npot_03.html": 4.1512,
    "deqp/functional/gles3/textureformat/sized_color_2d_array_pot_00.html": 3.5713,
    "deqp/functional/gles3/textureformat/sized_color_2d_array_pot_01.html": 3.9424,
    "deqp/functional/gles3/textureformat/sized_color_2d_array_pot_02.html": 3.4887,
    "deqp/functional/gles3/textureformat/sized_color_2d_array_pot_03.html": 5.5294,
    "deqp/functional/gles3/textureformat/sized_color_2d_npot_00.html": 0.7456,
    "deqp/functional/gles3/textureformat/sized_color_2d_npot_01.html": 1.1725,
    "deqp/functional/gles3/textureformat/sized_color_2d_npot_02.html": 0.8888,
    "deqp/functional/gles3/textureformat/sized_color_2d_npot_03.html": 1.4367,
    "deqp/functional/gles3/textureformat/sized_color_2d_pot_00.html": 1.2157,
    "deqp/functional/gles3/textureformat/sized_color_2d_pot_01.html": 0.8983,
    "deqp/functional/gles3/textureformat/sized_color_2d_pot_02.html": 0.9418,
    "deqp/functional/gles3/textureformat/sized_color_2d_pot_03.html": 0.8543,
    "deqp/functional/gles3/textureformat/sized_color_3d_npot_00.html": 2.9694,
    "deqp/functional/gles3/textureformat/sized_color_3d_npot_01.html": 2.9894,
    "deqp/functional/gles3/textureformat/sized_color_3d_npot_02.html": 4.0048,
    "deqp/functional/gles3/textureformat/sized_color_3d_npot_03.html": 3.9354,
    "deqp/functional/gles3/textureformat/sized_color_3d_pot_00.html": 8.766,
    "deqp/functional/gles3/textureformat/sized_color_3d_pot_01.html": 5.8854,
    "deqp/functional/gles3/textureformat/sized_color_3d_pot_02.html": 6.076,
    "deqp/functional/gles3/textureformat/sized_color_3d_pot_03.html": 6.8935,
    "deqp/functional/gles3/textureformat/sized_color_cube_npot_00.html": 3.1961,
    "deqp/functional/gles3/textureformat/sized_color_cube_npot_01.html": 3.0007,
    "deqp/functional/gles3/textureformat/sized_color_cube_npot_02.html": 3.987,
    "deqp/functional/gles3/textureformat/sized_color_cube_npot_03.html": 3.1562,
    "deqp/functional/gles3/textureformat/sized_color_cube_pot_00.html": 4.2208,
    "deqp/functional/gles3/textureformat/sized_color_cube_pot_01.html": 4.4271,
    "deqp/functional/gles3/textureformat/sized_color_cube_pot_02.html": 2.845,
    "deqp/functional/gles3/textureformat/sized_color_cube_pot_03.html": 2.7102,
    "deqp/functional/gles3/textureformat/sized_depth_stencil.html": 4.8835,
    "deqp/functional/gles3/textureformat/unsized_2d.html": 6.1078,
    "deqp/functional/gles3/textureformat/unsized_2d_array.html": 4.3371,
    "deqp/functional/gles3/textureformat/unsized_3d.html": 6.3463,
    "deqp/functional/gles3/textureshadow/2d_array_linear_always.html": 0.9447,
    "deqp/functional/gles3/textureshadow/2d_array_linear_equal.html": 1.6091,
    "deqp/functional/gles3/textureshadow/2d_array_linear_greater.html": 1.3057,
    "deqp/functional/gles3/textureshadow/2d_array_linear_greater_or_equal.html": 1.5314,
    "deqp/functional/gles3/textureshadow/2d_array_linear_less.html": 1.4715,
    "deqp/functional/gles3/textureshadow/2d_array_linear_less_or_equal.html": 1.3394,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_linear_always.html": 0.9137,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_linear_equal.html": 1.6573,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_linear_greater.html": 2.0498,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_linear_greater_or_equal.html": 1.8779,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_linear_less.html": 1.883,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_linear_less_or_equal.html": 1.9168,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_linear_never.html": 0.9038,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_linear_not_equal.html": 1.5914,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_nearest_always.html": 0.7986,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_nearest_equal.html": 1.4358,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_nearest_greater.html": 1.625,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_nearest_greater_or_equal.html": 1.4606,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_nearest_less.html": 1.4766,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_nearest_less_or_equal.html": 1.6092,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_nearest_never.html": 0.8396,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_nearest_not_equal.html": 1.3962,
    "deqp/functional/gles3/textureshadow/2d_array_linear_never.html": 0.8006,
    "deqp/functional/gles3/textureshadow/2d_array_linear_not_equal.html": 1.5484,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_always.html": 0.8227,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_equal.html": 0.826,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_greater.html": 0.7618,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_greater_or_equal.html": 0.7157,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_less.html": 0.7005,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_less_or_equal.html": 0.7691,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_linear_always.html": 0.7556,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_linear_equal.html": 1.143,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_linear_greater.html": 1.1215,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_linear_greater_or_equal.html": 1.0277,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_linear_less.html": 1.0002,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_linear_less_or_equal.html": 1.087,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_linear_never.html": 0.7199,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_linear_not_equal.html": 1.0945,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_nearest_always.html": 0.754,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_nearest_equal.html": 1.2287,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_nearest_greater.html": 1.1788,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_nearest_greater_or_equal.html": 1.0948,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_nearest_less.html": 1.0192,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_nearest_less_or_equal.html": 1.1958,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_nearest_never.html": 0.7919,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_nearest_not_equal.html": 1.1264,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_never.html": 0.7262,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_not_equal.html": 0.6999,
    "deqp/functional/gles3/textureshadow/2d_linear_always.html": 0.7284,
    "deqp/functional/gles3/textureshadow/2d_linear_equal.html": 1.2642,
    "deqp/functional/gles3/textureshadow/2d_linear_greater.html": 1.2001,
    "deqp/functional/gles3/textureshadow/2d_linear_greater_or_equal.html": 1.1879,
    "deqp/functional/gles3/textureshadow/2d_linear_less.html": 1.268,
    "deqp/functional/gles3/textureshadow/2d_linear_less_or_equal.html": 1.2071,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_linear_always.html": 0.6928,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_linear_equal.html": 2.0587,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_linear_greater.html": 1.6347,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_linear_greater_or_equal.html": 2.1258,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_linear_less.html": 2.101,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_linear_less_or_equal.html": 1.6616,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_linear_never.html": 0.7988,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_linear_not_equal.html": 2.1895,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_nearest_always.html": 0.7836,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_nearest_equal.html": 1.2261,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_nearest_greater.html": 1.3537,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_nearest_greater_or_equal.html": 1.2515,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_nearest_less.html": 1.2278,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_nearest_less_or_equal.html": 1.378,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_nearest_never.html": 0.7148,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_nearest_not_equal.html": 1.2722,
    "deqp/functional/gles3/textureshadow/2d_linear_never.html": 0.714,
    "deqp/functional/gles3/textureshadow/2d_linear_not_equal.html": 1.2905,
    "deqp/functional/gles3/textureshadow/2d_nearest_always.html": 0.7056,
    "deqp/functional/gles3/textureshadow/2d_nearest_equal.html": 0.6919,
    "deqp/functional/gles3/textureshadow/2d_nearest_greater.html": 0.7712,
    "deqp/functional/gles3/textureshadow/2d_nearest_greater_or_equal.html": 0.6754,
    "deqp/functional/gles3/textureshadow/2d_nearest_less.html": 0.8138,
    "deqp/functional/gles3/textureshadow/2d_nearest_less_or_equal.html": 0.6843,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_linear_always.html": 0.7385,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_linear_equal.html": 1.7252,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_linear_greater.html": 1.0438,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_linear_greater_or_equal.html": 1.5259,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_linear_less.html": 1.5416,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_linear_less_or_equal.html": 0.9888,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_linear_never.html": 0.7092,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_linear_not_equal.html": 1.8183,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_nearest_always.html": 0.7511,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_nearest_equal.html": 0.9972,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_nearest_greater.html": 1.0713,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_nearest_greater_or_equal.html": 0.9293,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_nearest_less.html": 0.8959,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_nearest_less_or_equal.html": 1.1684,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_nearest_never.html": 0.7745,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_nearest_not_equal.html": 1.046,
    "deqp/functional/gles3/textureshadow/2d_nearest_never.html": 0.7778,
    "deqp/functional/gles3/textureshadow/2d_nearest_not_equal.html": 0.7213,
    "deqp/functional/gles3/textureshadow/cube_linear_always.html": 2.3852,
    "deqp/functional/gles3/textureshadow/cube_linear_equal.html": 3.5341,
    "deqp/functional/gles3/textureshadow/cube_linear_greater.html": 3.4127,
    "deqp/functional/gles3/textureshadow/cube_linear_greater_or_equal.html": 3.7492,
    "deqp/functional/gles3/textureshadow/cube_linear_less.html": 3.676,
    "deqp/functional/gles3/textureshadow/cube_linear_less_or_equal.html": 3.2886,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_linear_always.html": 2.471,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_linear_equal.html": 4.6635,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_linear_greater.html": 4.8636,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_linear_greater_or_equal.html": 5.269,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_linear_less.html": 5.2619,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_linear_less_or_equal.html": 4.9225,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_linear_never.html": 2.5513,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_linear_not_equal.html": 4.7474,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_nearest_always.html": 2.4701,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_nearest_equal.html": 3.6101,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_nearest_greater.html": 3.5586,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_nearest_greater_or_equal.html": 4.0557,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_nearest_less.html": 3.9332,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_nearest_less_or_equal.html": 3.57,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_nearest_never.html": 2.421,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_nearest_not_equal.html": 3.6802,
    "deqp/functional/gles3/textureshadow/cube_linear_never.html": 2.4093,
    "deqp/functional/gles3/textureshadow/cube_linear_not_equal.html": 3.5747,
    "deqp/functional/gles3/textureshadow/cube_nearest_always.html": 2.255,
    "deqp/functional/gles3/textureshadow/cube_nearest_equal.html": 2.2785,
    "deqp/functional/gles3/textureshadow/cube_nearest_greater.html": 2.2444,
    "deqp/functional/gles3/textureshadow/cube_nearest_greater_or_equal.html": 2.4893,
    "deqp/functional/gles3/textureshadow/cube_nearest_less.html": 2.4363,
    "deqp/functional/gles3/textureshadow/cube_nearest_less_or_equal.html": 2.3853,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_linear_always.html": 2.5734,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_linear_equal.html": 4.3811,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_linear_greater.html": 4.2474,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_linear_greater_or_equal.html": 4.6498,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_linear_less.html": 4.5639,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_linear_less_or_equal.html": 4.2472,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_linear_never.html": 2.3946,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_linear_not_equal.html": 4.4236,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_nearest_always.html": 2.3849,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_nearest_equal.html": 3.1734,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_nearest_greater.html": 3.0545,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_nearest_greater_or_equal.html": 3.3368,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_nearest_less.html": 3.3342,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_nearest_less_or_equal.html": 3.0063,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_nearest_never.html": 2.4184,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_nearest_not_equal.html": 3.2519,
    "deqp/functional/gles3/textureshadow/cube_nearest_never.html": 2.2871,
    "deqp/functional/gles3/textureshadow/cube_nearest_not_equal.html": 2.2832,
    "deqp/functional/gles3/texturespecification/basic_copyteximage2d.html": 7.7781,
    "deqp/functional/gles3/texturespecification/basic_copytexsubimage2d.html": 13.1338,
    "deqp/functional/gles3/texturespecification/basic_teximage2d_2d_00.html": 4.1058,
    "deqp/functional/gles3/texturespecification/basic_teximage2d_2d_01.html": 3.4428,
    "deqp/functional/gles3/texturespecification/basic_teximage2d_cube_00.html": 4.6321,
    "deqp/functional/gles3/texturespecification/basic_teximage2d_cube_01.html": 4.4072,
    "deqp/functional/gles3/texturespecification/basic_teximage2d_cube_02.html": 4.0647,
    "deqp/functional/gles3/texturespecification/basic_teximage2d_cube_03.html": 5.3534,
    "deqp/functional/gles3/texturespecification/basic_teximage2d_cube_04.html": 4.9998,
    "deqp/functional/gles3/texturespecification/basic_teximage3d_2d_array_00.html": 5.5486,
    "deqp/functional/gles3/texturespecification/basic_teximage3d_2d_array_01.html": 3.5315,
    "deqp/functional/gles3/texturespecification/basic_teximage3d_2d_array_02.html": 3.8701,
    "deqp/functional/gles3/texturespecification/basic_teximage3d_3d_00.html": 3.6136,
    "deqp/functional/gles3/texturespecification/basic_teximage3d_3d_01.html": 2.6021,
    "deqp/functional/gles3/texturespecification/basic_teximage3d_3d_02.html": 3.8986,
    "deqp/functional/gles3/texturespecification/basic_teximage3d_3d_03.html": 3.2084,
    "deqp/functional/gles3/texturespecification/basic_teximage3d_3d_04.html": 2.6693,
    "deqp/functional/gles3/texturespecification/basic_texsubimage2d_2d_00.html": 3.217,
    "deqp/functional/gles3/texturespecification/basic_texsubimage2d_2d_01.html": 2.5427,
    "deqp/functional/gles3/texturespecification/basic_texsubimage2d_2d_02.html": 2.6711,
    "deqp/functional/gles3/texturespecification/basic_texsubimage2d_cube_00.html": 4.3918,
    "deqp/functional/gles3/texturespecification/basic_texsubimage2d_cube_01.html": 3.9811,
    "deqp/functional/gles3/texturespecification/basic_texsubimage2d_cube_02.html": 8.3729,
    "deqp/functional/gles3/texturespecification/basic_texsubimage2d_cube_03.html": 4.1732,
    "deqp/functional/gles3/texturespecification/basic_texsubimage2d_cube_04.html": 3.7542,
    "deqp/functional/gles3/texturespecification/basic_texsubimage3d_00.html": 2.4063,
    "deqp/functional/gles3/texturespecification/basic_texsubimage3d_01.html": 2.2682,
    "deqp/functional/gles3/texturespecification/basic_texsubimage3d_02.html": 4.2485,
    "deqp/functional/gles3/texturespecification/basic_texsubimage3d_03.html": 2.6037,
    "deqp/functional/gles3/texturespecification/basic_texsubimage3d_04.html": 2.1254,
    "deqp/functional/gles3/texturespecification/random_teximage2d_2d.html": 4.5129,
    "deqp/functional/gles3/texturespecification/random_teximage2d_cube.html": 7.4109,
    "deqp/functional/gles3/texturespecification/teximage2d_align.html": 8.3583,
    "deqp/functional/gles3/texturespecification/teximage2d_depth.html": 0.9557,
    "deqp/functional/gles3/texturespecification/teximage2d_depth_pbo.html": 1.8866,
    "deqp/functional/gles3/texturespecification/teximage2d_pbo_2d_00.html": 2.6903,
    "deqp/functional/gles3/texturespecification/teximage2d_pbo_2d_01.html": 1.5224,
    "deqp/functional/gles3/texturespecification/teximage2d_pbo_cube_00.html": 5.4412,
    "deqp/functional/gles3/texturespecification/teximage2d_pbo_cube_01.html": 2.9814,
    "deqp/functional/gles3/texturespecification/teximage2d_pbo_cube_02.html": 2.9614,
    "deqp/functional/gles3/texturespecification/teximage2d_pbo_cube_03.html": 3.2919,
    "deqp/functional/gles3/texturespecification/teximage2d_pbo_cube_04.html": 3.4478,
    "deqp/functional/gles3/texturespecification/teximage2d_pbo_params.html": 1.705,
    "deqp/functional/gles3/texturespecification/teximage2d_unpack_params.html": 0.961,
    "deqp/functional/gles3/texturespecification/teximage3d_depth.html": 1.6139,
    "deqp/functional/gles3/texturespecification/teximage3d_depth_pbo.html": 2.1952,
    "deqp/functional/gles3/texturespecification/teximage3d_pbo_2d_array_00.html": 6.4598,
    "deqp/functional/gles3/texturespecification/teximage3d_pbo_2d_array_01.html": 5.4556,
    "deqp/functional/gles3/texturespecification/teximage3d_pbo_3d_00.html": 4.8184,
    "deqp/functional/gles3/texturespecification/teximage3d_pbo_3d_01.html": 3.2514,
    "deqp/functional/gles3/texturespecification/teximage3d_pbo_params.html": 2.2326,
    "deqp/functional/gles3/texturespecification/teximage3d_unpack_params.html": 1.3508,
    "deqp/functional/gles3/texturespecification/texstorage2d_format_2d_00.html": 4.9581,
    "deqp/functional/gles3/texturespecification/texstorage2d_format_2d_01.html": 4.1544,
    "deqp/functional/gles3/texturespecification/texstorage2d_format_2d_02.html": 3.0268,
    "deqp/functional/gles3/texturespecification/texstorage2d_format_cube_00.html": 5.7146,
    "deqp/functional/gles3/texturespecification/texstorage2d_format_cube_01.html": 5.8719,
    "deqp/functional/gles3/texturespecification/texstorage2d_format_cube_02.html": 5.2104,
    "deqp/functional/gles3/texturespecification/texstorage2d_format_cube_03.html": 6.0963,
    "deqp/functional/gles3/texturespecification/texstorage2d_format_cube_04.html": 3.6512,
    "deqp/functional/gles3/texturespecification/texstorage2d_format_depth_stencil.html": 2.7211,
    "deqp/functional/gles3/texturespecification/texstorage2d_format_size.html": 2.2551,
    "deqp/functional/gles3/texturespecification/texstorage3d_format_2d_array_00.html": 3.4225,
    "deqp/functional/gles3/texturespecification/texstorage3d_format_2d_array_01.html": 2.3928,
    "deqp/functional/gles3/texturespecification/texstorage3d_format_2d_array_02.html": 2.1238,
    "deqp/functional/gles3/texturespecification/texstorage3d_format_3d_00.html": 3.85,
    "deqp/functional/gles3/texturespecification/texstorage3d_format_3d_01.html": 3.2043,
    "deqp/functional/gles3/texturespecification/texstorage3d_format_3d_02.html": 6.4056,
    "deqp/functional/gles3/texturespecification/texstorage3d_format_3d_03.html": 4.6378,
    "deqp/functional/gles3/texturespecification/texstorage3d_format_depth_stencil.html": 1.2565,
    "deqp/functional/gles3/texturespecification/texstorage3d_format_size.html": 3.6202,
    "deqp/functional/gles3/texturespecification/texsubimage2d_align.html": 7.5773,
    "deqp/functional/gles3/texturespecification/texsubimage2d_depth.html": 0.9133,
    "deqp/functional/gles3/texturespecification/texsubimage2d_empty_tex.html": 3.7792,
    "deqp/functional/gles3/texturespecification/texsubimage2d_pbo_2d_00.html": 2.1877,
    "deqp/functional/gles3/texturespecification/texsubimage2d_pbo_2d_01.html": 1.7025,
    "deqp/functional/gles3/texturespecification/texsubimage2d_pbo_cube_00.html": 3.641,
    "deqp/functional/gles3/texturespecification/texsubimage2d_pbo_cube_01.html": 4.3914,
    "deqp/functional/gles3/texturespecification/texsubimage2d_pbo_cube_02.html": 3.3016,
    "deqp/functional/gles3/texturespecification/texsubimage2d_pbo_cube_03.html": 5.3785,
    "deqp/functional/gles3/texturespecification/texsubimage2d_pbo_cube_04.html": 5.3441,
    "deqp/functional/gles3/texturespecification/texsubimage2d_pbo_params.html": 1.6602,
    "deqp/functional/gles3/texturespecification/texsubimage2d_unpack_params.html": 1.2747,
    "deqp/functional/gles3/texturespecification/texsubimage3d_depth.html": 1.5505,
    "deqp/functional/gles3/texturespecification/texsubimage3d_pbo_2d_array_00.html": 3.5868,
    "deqp/functional/gles3/texturespecification/texsubimage3d_pbo_2d_array_01.html": 4.1421,
    "deqp/functional/gles3/texturespecification/texsubimage3d_pbo_3d_00.html": 4.6812,
    "deqp/functional/gles3/texturespecification/texsubimage3d_pbo_3d_01.html": 3.3489,
    "deqp/functional/gles3/texturespecification/texsubimage3d_pbo_params.html": 1.6369,
    "deqp/functional/gles3/texturespecification/texsubimage3d_unpack_params.html": 1.9946,
    "deqp/functional/gles3/texturestatequery.html": 2.1906,
    "deqp/functional/gles3/texturewrap/eac_r11_npot.html": 0.2002,
    "deqp/functional/gles3/texturewrap/eac_r11_pot.html": 0.3236,
    "deqp/functional/gles3/texturewrap/eac_rg11_npot.html": 0.629,
    "deqp/functional/gles3/texturewrap/eac_rg11_pot.html": 0.174,
    "deqp/functional/gles3/texturewrap/eac_signed_r11_npot.html": 0.1515,
    "deqp/functional/gles3/texturewrap/eac_signed_r11_pot.html": 0.1811,
    "deqp/functional/gles3/texturewrap/eac_signed_rg11_npot.html": 0.2651,
    "deqp/functional/gles3/texturewrap/eac_signed_rg11_pot.html": 0.1489,
    "deqp/functional/gles3/texturewrap/etc2_eac_rgba8_npot.html": 0.1667,
    "deqp/functional/gles3/texturewrap/etc2_eac_rgba8_pot.html": 0.1708,
    "deqp/functional/gles3/texturewrap/etc2_eac_srgb8_alpha8_npot.html": 0.174,
    "deqp/functional/gles3/texturewrap/etc2_eac_srgb8_alpha8_pot.html": 0.1462,
    "deqp/functional/gles3/texturewrap/etc2_rgb8_npot.html": 0.191,
    "deqp/functional/gles3/texturewrap/etc2_rgb8_pot.html": 0.7066,
    "deqp/functional/gles3/texturewrap/etc2_rgb8_punchthrough_alpha1_npot.html": 0.1713,
    "deqp/functional/gles3/texturewrap/etc2_rgb8_punchthrough_alpha1_pot.html": 0.2925,
    "deqp/functional/gles3/texturewrap/etc2_srgb8_npot.html": 0.4791,
    "deqp/functional/gles3/texturewrap/etc2_srgb8_pot.html": 0.172,
    "deqp/functional/gles3/texturewrap/etc2_srgb8_punchthrough_alpha1_npot.html": 0.1512,
    "deqp/functional/gles3/texturewrap/etc2_srgb8_punchthrough_alpha1_pot.html": 0.1444,
    "deqp/functional/gles3/texturewrap/rgba8_npot.html": 4.346,
    "deqp/functional/gles3/texturewrap/rgba8_pot.html": 2.9879,
    "deqp/functional/gles3/transformfeedback/array_element_interleaved_lines.html": 1.2912,
    "deqp/functional/gles3/transformfeedback/array_element_interleaved_points.html": 1.6748,
    "deqp/functional/gles3/transformfeedback/array_element_interleaved_triangles.html": 1.6412,
    "deqp/functional/gles3/transformfeedback/array_element_separate_lines.html": 1.5705,
    "deqp/functional/gles3/transformfeedback/array_element_separate_points.html": 1.6126,
    "deqp/functional/gles3/transformfeedback/array_element_separate_triangles.html": 1.7062,
    "deqp/functional/gles3/transformfeedback/array_interleaved_lines.html": 1.5949,
    "deqp/functional/gles3/transformfeedback/array_interleaved_points.html": 1.6044,
    "deqp/functional/gles3/transformfeedback/array_interleaved_triangles.html": 1.5999,
    "deqp/functional/gles3/transformfeedback/array_separate_lines.html": 1.5239,
    "deqp/functional/gles3/transformfeedback/array_separate_points.html": 1.4156,
    "deqp/functional/gles3/transformfeedback/array_separate_triangles.html": 1.5551,
    "deqp/functional/gles3/transformfeedback/basic_types_interleaved_lines.html": 31.9543,
    "deqp/functional/gles3/transformfeedback/basic_types_interleaved_points.html": 31.4602,
    "deqp/functional/gles3/transformfeedback/basic_types_interleaved_triangles.html": 34.0381,
    "deqp/functional/gles3/transformfeedback/basic_types_separate_lines.html": 20.8195,
    "deqp/functional/gles3/transformfeedback/basic_types_separate_points.html": 20.055,
    "deqp/functional/gles3/transformfeedback/basic_types_separate_triangles.html": 21.2452,
    "deqp/functional/gles3/transformfeedback/interpolation_centroid.html": 9.9135,
    "deqp/functional/gles3/transformfeedback/interpolation_flat.html": 8.9559,
    "deqp/functional/gles3/transformfeedback/interpolation_smooth.html": 9.6173,
    "deqp/functional/gles3/transformfeedback/point_size.html": 3.1287,
    "deqp/functional/gles3/transformfeedback/position.html": 3.0203,
    "deqp/functional/gles3/transformfeedback/random_interleaved_lines.html": 5.399,
    "deqp/functional/gles3/transformfeedback/random_interleaved_points.html": 5.4005,
    "deqp/functional/gles3/transformfeedback/random_interleaved_triangles.html": 6.6311,
    "deqp/functional/gles3/transformfeedback/random_separate_lines.html": 5.4165,
    "deqp/functional/gles3/transformfeedback/random_separate_points.html": 5.6601,
    "deqp/functional/gles3/transformfeedback/random_separate_triangles.html": 5.0193,
    "deqp/functional/gles3/uniformapi/info_query.html": 22.2896,
    "deqp/functional/gles3/uniformapi/random.html": 3.6014,
    "deqp/functional/gles3/uniformapi/value_assigned.html": 39.1811,
    "deqp/functional/gles3/uniformapi/value_initial.html": 14.4388,
    "deqp/functional/gles3/uniformbuffers/instance_array_basic_type.html": 5.7824,
    "deqp/functional/gles3/uniformbuffers/multi_basic_types.html": 0.7726,
    "deqp/functional/gles3/uniformbuffers/multi_nested_struct.html": 1.0805,
    "deqp/functional/gles3/uniformbuffers/random.html": 13.8476,
    "deqp/functional/gles3/uniformbuffers/single_basic_array.html": 5.3277,
    "deqp/functional/gles3/uniformbuffers/single_basic_type.html": 11.7598,
    "deqp/functional/gles3/uniformbuffers/single_nested_struct.html": 1.1945,
    "deqp/functional/gles3/uniformbuffers/single_nested_struct_array.html": 1.0941,
    "deqp/functional/gles3/uniformbuffers/single_struct.html": 0.6086,
    "deqp/functional/gles3/uniformbuffers/single_struct_array.html": 1.9721,
    "deqp/functional/gles3/vertexarrayobject.html": 1.3463,
    "deqp/functional/gles3/vertexarrays/multiple_attributes.count.html": 17.281,
    "deqp/functional/gles3/vertexarrays/multiple_attributes.output.html": 43.8998,
    "deqp/functional/gles3/vertexarrays/multiple_attributes.storage.html": 2.5533,
    "deqp/functional/gles3/vertexarrays/multiple_attributes.stride.html": 38.9993,
    "deqp/functional/gles3/vertexarrays/single_attribute.first.html": 36.8233,
    "deqp/functional/gles3/vertexarrays/single_attribute.normalize.html": 16.277,
    "deqp/functional/gles3/vertexarrays/single_attribute.offset.html": 29.1099,
    "deqp/functional/gles3/vertexarrays/single_attribute.output_type.byte.html": 18.0786,
    "deqp/functional/gles3/vertexarrays/single_attribute.output_type.float.html": 16.7516,
    "deqp/functional/gles3/vertexarrays/single_attribute.output_type.half.html": 10.9544,
    "deqp/functional/gles3/vertexarrays/single_attribute.output_type.int.html": 10.3948,
    "deqp/functional/gles3/vertexarrays/single_attribute.output_type.int_2_10_10_10.html": 6.0471,
    "deqp/functional/gles3/vertexarrays/single_attribute.output_type.short.html": 16.7329,
    "deqp/functional/gles3/vertexarrays/single_attribute.output_type.unsigned_byte.html": 11.4826,
    "deqp/functional/gles3/vertexarrays/single_attribute.output_type.unsigned_int.html": 15.1338,
    "deqp/functional/gles3/vertexarrays/single_attribute.output_type.unsigned_int_2_10_10_10.html": 3.4213,
    "deqp/functional/gles3/vertexarrays/single_attribute.output_type.unsigned_short.html": 14.4028,
    "deqp/functional/gles3/vertexarrays/single_attribute.stride.html": 21.7631,
    "deqp/functional/gles3/vertexarrays/single_attribute.usage.dynamic_copy.html": 12.8775,
    "deqp/functional/gles3/vertexarrays/single_attribute.usage.dynamic_draw.html": 14.7893,
    "deqp/functional/gles3/vertexarrays/single_attribute.usage.dynamic_read.html": 18.5234,
    "deqp/functional/gles3/vertexarrays/single_attribute.usage.static_copy.html": 16.012,
    "deqp/functional/gles3/vertexarrays/single_attribute.usage.static_draw.html": 15.8174,
    "deqp/functional/gles3/vertexarrays/single_attribute.usage.static_read.html": 15.7655,
    "deqp/functional/gles3/vertexarrays/single_attribute.usage.stream_copy.html": 11.0928,
    "deqp/functional/gles3/vertexarrays/single_attribute.usage.stream_draw.html": 15.8999,
    "deqp/functional/gles3/vertexarrays/single_attribute.usage.stream_read.html": 11.4439
  }
}