shuishen
2022-11-02 764cb58899b8ca0e9632a5e83c6950569442c41c
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
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
/**
 * Cesium - https://github.com/CesiumGS/cesium
 *
 * Copyright 2011-2020 Cesium Contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 * Columbus View (Pat. Pend.)
 *
 * Portions licensed separately.
 * See https://github.com/CesiumGS/cesium/blob/master/LICENSE.md for full licensing details.
 */
define(['exports', './when-8d13db60', './Check-70bec281', './RuntimeError-ba10bc3e'], function (exports, when, Check, RuntimeError) { 'use strict';
 
    /**
     * @license
     *
     * Grauw URI utilities
     *
     * See: http://hg.grauw.nl/grauw-lib/file/tip/src/uri.js
     *
     * @author Laurens Holst (http://www.grauw.nl/)
     *
     *   Copyright 2012 Laurens Holst
     *
     *   Licensed under the Apache License, Version 2.0 (the "License");
     *   you may not use this file except in compliance with the License.
     *   You may obtain a copy of the License at
     *
     *       http://www.apache.org/licenses/LICENSE-2.0
     *
     *   Unless required by applicable law or agreed to in writing, software
     *   distributed under the License is distributed on an "AS IS" BASIS,
     *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     *   See the License for the specific language governing permissions and
     *   limitations under the License.
     *
     */
 
        /**
         * Constructs a URI object.
         * @constructor
         * @class Implementation of URI parsing and base URI resolving algorithm in RFC 3986.
         * @param {string|URI} uri A string or URI object to create the object from.
         */
        function URI(uri) {
            if (uri instanceof URI) {  // copy constructor
                this.scheme = uri.scheme;
                this.authority = uri.authority;
                this.path = uri.path;
                this.query = uri.query;
                this.fragment = uri.fragment;
            } else if (uri) {  // uri is URI string or cast to string
                var c = parseRegex.exec(uri);
                this.scheme = c[1];
                this.authority = c[2];
                this.path = c[3];
                this.query = c[4];
                this.fragment = c[5];
            }
        }
        // Initial values on the prototype
        URI.prototype.scheme    = null;
        URI.prototype.authority = null;
        URI.prototype.path      = '';
        URI.prototype.query     = null;
        URI.prototype.fragment  = null;
 
        // Regular expression from RFC 3986 appendix B
        var parseRegex = new RegExp('^(?:([^:/?#]+):)?(?://([^/?#]*))?([^?#]*)(?:\\?([^#]*))?(?:#(.*))?$');
 
        /**
         * Returns the scheme part of the URI.
         * In "http://example.com:80/a/b?x#y" this is "http".
         */
        URI.prototype.getScheme = function() {
            return this.scheme;
        };
 
        /**
         * Returns the authority part of the URI.
         * In "http://example.com:80/a/b?x#y" this is "example.com:80".
         */
        URI.prototype.getAuthority = function() {
            return this.authority;
        };
 
        /**
         * Returns the path part of the URI.
         * In "http://example.com:80/a/b?x#y" this is "/a/b".
         * In "mailto:mike@example.com" this is "mike@example.com".
         */
        URI.prototype.getPath = function() {
            return this.path;
        };
 
        /**
         * Returns the query part of the URI.
         * In "http://example.com:80/a/b?x#y" this is "x".
         */
        URI.prototype.getQuery = function() {
            return this.query;
        };
 
        /**
         * Returns the fragment part of the URI.
         * In "http://example.com:80/a/b?x#y" this is "y".
         */
        URI.prototype.getFragment = function() {
            return this.fragment;
        };
 
        /**
         * Tests whether the URI is an absolute URI.
         * See RFC 3986 section 4.3.
         */
        URI.prototype.isAbsolute = function() {
            return !!this.scheme && !this.fragment;
        };
 
        ///**
        //* Extensive validation of the URI against the ABNF in RFC 3986
        //*/
        //URI.prototype.validate
 
        /**
         * Tests whether the URI is a same-document reference.
         * See RFC 3986 section 4.4.
         *
         * To perform more thorough comparison, you can normalise the URI objects.
         */
        URI.prototype.isSameDocumentAs = function(uri) {
            return uri.scheme == this.scheme &&
                uri.authority == this.authority &&
                     uri.path == this.path &&
                    uri.query == this.query;
        };
 
        /**
         * Simple String Comparison of two URIs.
         * See RFC 3986 section 6.2.1.
         *
         * To perform more thorough comparison, you can normalise the URI objects.
         */
        URI.prototype.equals = function(uri) {
            return this.isSameDocumentAs(uri) && uri.fragment == this.fragment;
        };
 
        /**
         * Normalizes the URI using syntax-based normalization.
         * This includes case normalization, percent-encoding normalization and path segment normalization.
         * XXX: Percent-encoding normalization does not escape characters that need to be escaped.
         *      (Although that would not be a valid URI in the first place. See validate().)
         * See RFC 3986 section 6.2.2.
         */
        URI.prototype.normalize = function() {
            this.removeDotSegments();
            if (this.scheme)
                this.scheme = this.scheme.toLowerCase();
            if (this.authority)
                this.authority = this.authority.replace(authorityRegex, replaceAuthority).
                                        replace(caseRegex, replaceCase);
            if (this.path)
                this.path = this.path.replace(caseRegex, replaceCase);
            if (this.query)
                this.query = this.query.replace(caseRegex, replaceCase);
            if (this.fragment)
                this.fragment = this.fragment.replace(caseRegex, replaceCase);
        };
 
        var caseRegex = /%[0-9a-z]{2}/gi;
        var percentRegex = /[a-zA-Z0-9\-\._~]/;
        var authorityRegex = /(.*@)?([^@:]*)(:.*)?/;
 
        function replaceCase(str) {
            var dec = unescape(str);
            return percentRegex.test(dec) ? dec : str.toUpperCase();
        }
 
        function replaceAuthority(str, p1, p2, p3) {
            return (p1 || '') + p2.toLowerCase() + (p3 || '');
        }
 
        /**
         * Resolve a relative URI (this) against a base URI.
         * The base URI must be an absolute URI.
         * See RFC 3986 section 5.2
         */
        URI.prototype.resolve = function(baseURI) {
            var uri = new URI();
            if (this.scheme) {
                uri.scheme = this.scheme;
                uri.authority = this.authority;
                uri.path = this.path;
                uri.query = this.query;
            } else {
                uri.scheme = baseURI.scheme;
                if (this.authority) {
                    uri.authority = this.authority;
                    uri.path = this.path;
                    uri.query = this.query;
                } else {
                    uri.authority = baseURI.authority;
                    if (this.path == '') {
                        uri.path = baseURI.path;
                        uri.query = this.query || baseURI.query;
                    } else {
                        if (this.path.charAt(0) == '/') {
                            uri.path = this.path;
                            uri.removeDotSegments();
                        } else {
                            if (baseURI.authority && baseURI.path == '') {
                                uri.path = '/' + this.path;
                            } else {
                                uri.path = baseURI.path.substring(0, baseURI.path.lastIndexOf('/') + 1) + this.path;
                            }
                            uri.removeDotSegments();
                        }
                        uri.query = this.query;
                    }
                }
            }
            uri.fragment = this.fragment;
            return uri;
        };
 
        /**
         * Remove dot segments from path.
         * See RFC 3986 section 5.2.4
         * @private
         */
        URI.prototype.removeDotSegments = function() {
            var input = this.path.split('/'),
                output = [],
                segment,
                absPath = input[0] == '';
            if (absPath)
                input.shift();
            var sFirst = input[0] == '' ? input.shift() : null;
            while (input.length) {
                segment = input.shift();
                if (segment == '..') {
                    output.pop();
                } else if (segment != '.') {
                    output.push(segment);
                }
            }
            if (segment == '.' || segment == '..')
                output.push('');
            if (absPath)
                output.unshift('');
            this.path = output.join('/');
        };
 
        // We don't like this function because it builds up a cache that is never cleared.
    //    /**
    //     * Resolves a relative URI against an absolute base URI.
    //     * Convenience method.
    //     * @param {String} uri the relative URI to resolve
    //     * @param {String} baseURI the base URI (must be absolute) to resolve against
    //     */
    //    URI.resolve = function(sURI, sBaseURI) {
    //        var uri = cache[sURI] || (cache[sURI] = new URI(sURI));
    //        var baseURI = cache[sBaseURI] || (cache[sBaseURI] = new URI(sBaseURI));
    //        return uri.resolve(baseURI).toString();
    //    };
 
    //    var cache = {};
 
        /**
         * Serialises the URI to a string.
         */
        URI.prototype.toString = function() {
            var result = '';
            if (this.scheme)
                result += this.scheme + ':';
            if (this.authority)
                result += '//' + this.authority;
            result += this.path;
            if (this.query)
                result += '?' + this.query;
            if (this.fragment)
                result += '#' + this.fragment;
            return result;
        };
 
    /**
         * @private
         */
        function appendForwardSlash(url) {
            if (url.length === 0 || url[url.length - 1] !== '/') {
                url = url + '/';
            }
            return url;
        }
 
    /**
         * Clones an object, returning a new object containing the same properties.
         *
         * @exports clone
         *
         * @param {Object} object The object to clone.
         * @param {Boolean} [deep=false] If true, all properties will be deep cloned recursively.
         * @returns {Object} The cloned object.
         */
        function clone(object, deep) {
            if (object === null || typeof object !== 'object') {
                return object;
            }
 
            deep = when.defaultValue(deep, false);
 
            var result = new object.constructor();
            for ( var propertyName in object) {
                if (object.hasOwnProperty(propertyName)) {
                    var value = object[propertyName];
                    if (deep) {
                        value = clone(value, deep);
                    }
                    result[propertyName] = value;
                }
            }
 
            return result;
        }
 
    /**
         * Merges two objects, copying their properties onto a new combined object. When two objects have the same
         * property, the value of the property on the first object is used.  If either object is undefined,
         * it will be treated as an empty object.
         *
         * @example
         * var object1 = {
         *     propOne : 1,
         *     propTwo : {
         *         value1 : 10
         *     }
         * }
         * var object2 = {
         *     propTwo : 2
         * }
         * var final = Cesium.combine(object1, object2);
         *
         * // final === {
         * //     propOne : 1,
         * //     propTwo : {
         * //         value1 : 10
         * //     }
         * // }
         *
         * @param {Object} [object1] The first object to merge.
         * @param {Object} [object2] The second object to merge.
         * @param {Boolean} [deep=false] Perform a recursive merge.
         * @returns {Object} The combined object containing all properties from both objects.
         *
         * @exports combine
         */
        function combine(object1, object2, deep) {
            deep = when.defaultValue(deep, false);
 
            var result = {};
 
            var object1Defined = when.defined(object1);
            var object2Defined = when.defined(object2);
            var property;
            var object1Value;
            var object2Value;
            if (object1Defined) {
                for (property in object1) {
                    if (object1.hasOwnProperty(property)) {
                        object1Value = object1[property];
                        if (object2Defined && deep && typeof object1Value === 'object' && object2.hasOwnProperty(property)) {
                            object2Value = object2[property];
                            if (typeof object2Value === 'object') {
                                result[property] = combine(object1Value, object2Value, deep);
                            } else {
                                result[property] = object1Value;
                            }
                        } else {
                            result[property] = object1Value;
                        }
                    }
                }
            }
            if (object2Defined) {
                for (property in object2) {
                    if (object2.hasOwnProperty(property) && !result.hasOwnProperty(property)) {
                        object2Value = object2[property];
                        result[property] = object2Value;
                    }
                }
            }
            return result;
        }
 
    /**
         * Given a relative Uri and a base Uri, returns the absolute Uri of the relative Uri.
         * @exports getAbsoluteUri
         *
         * @param {String} relative The relative Uri.
         * @param {String} [base] The base Uri.
         * @returns {String} The absolute Uri of the given relative Uri.
         *
         * @example
         * //absolute Uri will be "https://test.com/awesome.png";
         * var absoluteUri = Cesium.getAbsoluteUri('awesome.png', 'https://test.com');
         */
        function getAbsoluteUri(relative, base) {
            var documentObject;
            if (typeof document !== 'undefined') {
                documentObject = document;
            }
 
            return getAbsoluteUri._implementation(relative, base, documentObject);
        }
 
        getAbsoluteUri._implementation = function(relative, base, documentObject) {
            //>>includeStart('debug', pragmas.debug);
            if (!when.defined(relative)) {
                throw new Check.DeveloperError('relative uri is required.');
            }
            //>>includeEnd('debug');
 
            if (!when.defined(base)) {
                if (typeof documentObject === 'undefined') {
                    return relative;
                }
                base = when.defaultValue(documentObject.baseURI, documentObject.location.href);
            }
 
            var baseUri = new URI(base);
            var relativeUri = new URI(relative);
            return relativeUri.resolve(baseUri).toString();
        };
 
    /**
         * Given a URI, returns the base path of the URI.
         * @exports getBaseUri
         *
         * @param {String} uri The Uri.
         * @param {Boolean} [includeQuery = false] Whether or not to include the query string and fragment form the uri
         * @returns {String} The base path of the Uri.
         *
         * @example
         * // basePath will be "/Gallery/";
         * var basePath = Cesium.getBaseUri('/Gallery/simple.czml?value=true&example=false');
         *
         * // basePath will be "/Gallery/?value=true&example=false";
         * var basePath = Cesium.getBaseUri('/Gallery/simple.czml?value=true&example=false', true);
         */
        function getBaseUri(uri, includeQuery) {
            //>>includeStart('debug', pragmas.debug);
            if (!when.defined(uri)) {
                throw new Check.DeveloperError('uri is required.');
            }
            //>>includeEnd('debug');
 
            var basePath = '';
            var i = uri.lastIndexOf('/');
            if (i !== -1) {
                basePath = uri.substring(0, i + 1);
            }
 
            if (!includeQuery) {
                return basePath;
            }
 
            uri = new URI(uri);
            if (when.defined(uri.query)) {
                basePath += '?' + uri.query;
            }
            if (when.defined(uri.fragment)){
                basePath += '#' + uri.fragment;
            }
 
            return basePath;
        }
 
    /**
         * Given a URI, returns the extension of the URI.
         * @exports getExtensionFromUri
         *
         * @param {String} uri The Uri.
         * @returns {String} The extension of the Uri.
         *
         * @example
         * //extension will be "czml";
         * var extension = Cesium.getExtensionFromUri('/Gallery/simple.czml?value=true&example=false');
         */
        function getExtensionFromUri(uri) {
            //>>includeStart('debug', pragmas.debug);
            if (!when.defined(uri)) {
                throw new Check.DeveloperError('uri is required.');
            }
            //>>includeEnd('debug');
 
            var uriObject = new URI(uri);
            uriObject.normalize();
            var path = uriObject.path;
            var index = path.lastIndexOf('/');
            if (index !== -1) {
                path = path.substr(index + 1);
            }
            index = path.lastIndexOf('.');
            if (index === -1) {
                path = '';
            } else {
                path = path.substr(index + 1);
            }
            return path;
        }
 
    var blobUriRegex = /^blob:/i;
 
        /**
         * Determines if the specified uri is a blob uri.
         *
         * @exports isBlobUri
         *
         * @param {String} uri The uri to test.
         * @returns {Boolean} true when the uri is a blob uri; otherwise, false.
         *
         * @private
         */
        function isBlobUri(uri) {
            //>>includeStart('debug', pragmas.debug);
            Check.Check.typeOf.string('uri', uri);
            //>>includeEnd('debug');
 
            return blobUriRegex.test(uri);
        }
 
    var a;
 
        /**
         * Given a URL, determine whether that URL is considered cross-origin to the current page.
         *
         * @private
         */
        function isCrossOriginUrl(url) {
            if (!when.defined(a)) {
                a = document.createElement('a');
            }
 
            // copy window location into the anchor to get consistent results
            // when the port is default for the protocol (e.g. 80 for HTTP)
            a.href = window.location.href;
 
            // host includes both hostname and port if the port is not standard
            var host = a.host;
            var protocol = a.protocol;
 
            a.href = url;
            // IE only absolutizes href on get, not set
            a.href = a.href; // eslint-disable-line no-self-assign
 
            return protocol !== a.protocol || host !== a.host;
        }
 
    var dataUriRegex = /^data:/i;
 
        /**
         * Determines if the specified uri is a data uri.
         *
         * @exports isDataUri
         *
         * @param {String} uri The uri to test.
         * @returns {Boolean} true when the uri is a data uri; otherwise, false.
         *
         * @private
         */
        function isDataUri(uri) {
            //>>includeStart('debug', pragmas.debug);
            Check.Check.typeOf.string('uri', uri);
            //>>includeEnd('debug');
 
            return dataUriRegex.test(uri);
        }
 
    /**
         * @private
         */
        function loadAndExecuteScript(url) {
            var deferred = when.when.defer();
            var script = document.createElement('script');
            script.async = true;
            script.src = url;
 
            var head = document.getElementsByTagName('head')[0];
            script.onload = function() {
                script.onload = undefined;
                head.removeChild(script);
                deferred.resolve();
            };
            script.onerror = function(e) {
                deferred.reject(e);
            };
 
            head.appendChild(script);
 
            return deferred.promise;
        }
 
    /**
         * Converts an object representing a set of name/value pairs into a query string,
         * with names and values encoded properly for use in a URL.  Values that are arrays
         * will produce multiple values with the same name.
         * @exports objectToQuery
         *
         * @param {Object} obj The object containing data to encode.
         * @returns {String} An encoded query string.
         *
         *
         * @example
         * var str = Cesium.objectToQuery({
         *     key1 : 'some value',
         *     key2 : 'a/b',
         *     key3 : ['x', 'y']
         * });
         *
         * @see queryToObject
         * // str will be:
         * // 'key1=some%20value&key2=a%2Fb&key3=x&key3=y'
         */
        function objectToQuery(obj, donotEncodeSpecialCharacters) {
            //>>includeStart('debug', pragmas.debug);
            if (!when.defined(obj)) {
                throw new Check.DeveloperError('obj is required.');
            }
            //>>includeEnd('debug');
 
            var result = '';
            for ( var propName in obj) {
                if (obj.hasOwnProperty(propName)) {
                    var value = obj[propName];
 
                    var part = encodeURIComponent(propName) + '=';
                    if (Array.isArray(value)) {
                        for (var i = 0, len = value.length; i < len; ++i) {
                            if (donotEncodeSpecialCharacters === true) {
                                result += part + encodeURI(value[i]) + '&';
                            } else {
                                result += part + encodeURIComponent(value[i]) + '&';
                            }
                        }
                    } else {
                        if (donotEncodeSpecialCharacters === true) {
                            result += part + encodeURI(value) + '&';
                        } else {
                            result += part + encodeURIComponent(value) + '&';
                        }
                    }
                }
            }
 
            // trim last &
            result = result.slice(0, -1);
 
            // This function used to replace %20 with + which is more compact and readable.
            // However, some servers didn't properly handle + as a space.
            // https://github.com/CesiumGS/cesium/issues/2192
 
            return result;
        }
 
    /**
         * Parses a query string into an object, where the keys and values of the object are the
         * name/value pairs from the query string, decoded. If a name appears multiple times,
         * the value in the object will be an array of values.
         * @exports queryToObject
         *
         * @param {String} queryString The query string.
         * @returns {Object} An object containing the parameters parsed from the query string.
         *
         *
         * @example
         * var obj = Cesium.queryToObject('key1=some%20value&key2=a%2Fb&key3=x&key3=y');
         * // obj will be:
         * // {
         * //   key1 : 'some value',
         * //   key2 : 'a/b',
         * //   key3 : ['x', 'y']
         * // }
         *
         * @see objectToQuery
         */
        function queryToObject(queryString) {
            //>>includeStart('debug', pragmas.debug);
            if (!when.defined(queryString)) {
                throw new Check.DeveloperError('queryString is required.');
            }
            //>>includeEnd('debug');
 
            var result = {};
            if (queryString === '') {
                return result;
            }
            var parts = queryString.replace(/\+/g, '%20').split(/[&;]/);
            for (var i = 0, len = parts.length; i < len; ++i) {
                var subparts = parts[i].split('=');
                if (subparts.length > 2) {
                    var index = parts[i].indexOf("=");
                    var key = parts[i].substring(0, index);
                    var strvalue = parts[i].substring(index + 1, parts[i].length);
                    subparts = [key, strvalue];
                }
                var name = decodeURIComponent(subparts[0]);
                var value = subparts[1];
                if (when.defined(value)) {
                    value = decodeURIComponent(value);
                } else {
                    value = '';
                }
 
                var resultValue = result[name];
                if (typeof resultValue === 'string') {
                    // expand the single value to an array
                    result[name] = [resultValue, value];
                } else if (Array.isArray(resultValue)) {
                    resultValue.push(value);
                } else {
                    result[name] = value;
                }
            }
            return result;
        }
 
    /**
         * State of the request.
         *
         * @exports RequestState
         */
        var RequestState = {
            /**
             * Initial unissued state.
             *
             * @type Number
             * @constant
             */
            UNISSUED : 0,
 
            /**
             * Issued but not yet active. Will become active when open slots are available.
             *
             * @type Number
             * @constant
             */
            ISSUED : 1,
 
            /**
             * Actual http request has been sent.
             *
             * @type Number
             * @constant
             */
            ACTIVE : 2,
 
            /**
             * Request completed successfully.
             *
             * @type Number
             * @constant
             */
            RECEIVED : 3,
 
            /**
             * Request was cancelled, either explicitly or automatically because of low priority.
             *
             * @type Number
             * @constant
             */
            CANCELLED : 4,
 
            /**
             * Request failed.
             *
             * @type Number
             * @constant
             */
            FAILED : 5
        };
    var RequestState$1 = Object.freeze(RequestState);
 
    /**
         * An enum identifying the type of request. Used for finer grained logging and priority sorting.
         *
         * @exports RequestType
         */
        var RequestType = {
            /**
             * Terrain request.
             *
             * @type Number
             * @constant
             */
            TERRAIN : 0,
 
            /**
             * Imagery request.
             *
             * @type Number
             * @constant
             */
            IMAGERY : 1,
 
            /**
             * 3D Tiles request.
             *
             * @type Number
             * @constant
             */
            TILES3D : 2,
 
            /**
             * Other request.
             *
             * @type Number
             * @constant
             */
            OTHER : 3,
            PACK : 4,
            BLOCK : 5,
            BLOCKPACK : 6
        };
 
        var RequestType$1 = Object.freeze(RequestType);
 
    /**
         * Stores information for making a request. In general this does not need to be constructed directly.
         *
         * @alias Request
         * @constructor
         * @namespace
         * @exports Request
         * @param {Object} [options] An object with the following properties:
         * @param {String} [options.url] The url to request.
         * @param {Request~RequestCallback} [options.requestFunction] The function that makes the actual data request.
         * @param {Request~CancelCallback} [options.cancelFunction] The function that is called when the request is cancelled.
         * @param {Request~PriorityCallback} [options.priorityFunction] The function that is called to update the request's priority, which occurs once per frame.
         * @param {Number} [options.priority=0.0] The initial priority of the request.
         * @param {Boolean} [options.throttle=false] Whether to throttle and prioritize the request. If false, the request will be sent immediately. If true, the request will be throttled and sent based on priority.
         * @param {Boolean} [options.throttleByServer=false] Whether to throttle the request by server.
         * @param {RequestType} [options.type=RequestType.OTHER] The type of request.
         */
        function Request(options) {
            options = when.defaultValue(options, when.defaultValue.EMPTY_OBJECT);
 
            var throttleByServer = when.defaultValue(options.throttleByServer, false);
            var throttle = when.defaultValue(options.throttle, false);
 
            /**
             * The URL to request.
             *
             * @type {String}
             */
            this.url = options.url;
 
            /**
             * The function that makes the actual data request.
             *
             * @type {Request~RequestCallback}
             */
            this.requestFunction = options.requestFunction;
 
            /**
             * The function that is called when the request is cancelled.
             *
             * @type {Request~CancelCallback}
             */
            this.cancelFunction = options.cancelFunction;
 
            /**
             * The function that is called to update the request's priority, which occurs once per frame.
             *
             * @type {Request~PriorityCallback}
             */
            this.priorityFunction = options.priorityFunction;
 
            /**
             * Priority is a unit-less value where lower values represent higher priority.
             * For world-based objects, this is usually the distance from the camera.
             * A request that does not have a priority function defaults to a priority of 0.
             *
             * If priorityFunction is defined, this value is updated every frame with the result of that call.
             *
             * @type {Number}
             * @default 0.0
             */
            this.priority = when.defaultValue(options.priority, 0.0);
 
            /**
             * Whether to throttle and prioritize the request. If false, the request will be sent immediately. If true, the
             * request will be throttled and sent based on priority.
             *
             * @type {Boolean}
             * @readonly
             *
             * @default false
             */
            this.throttle = throttle;
 
            /**
             * Whether to throttle the request by server. Browsers typically support about 6-8 parallel connections
             * for HTTP/1 servers, and an unlimited amount of connections for HTTP/2 servers. Setting this value
             * to <code>true</code> is preferable for requests going through HTTP/1 servers.
             *
             * @type {Boolean}
             * @readonly
             *
             * @default false
             */
            this.throttleByServer = throttleByServer;
 
            /**
             * Type of request.
             *
             * @type {RequestType}
             * @readonly
             *
             * @default RequestType.OTHER
             */
            this.type = when.defaultValue(options.type, RequestType$1.OTHER);
 
            /**
             * A key used to identify the server that a request is going to. It is derived from the url's authority and scheme.
             *
             * @type {String}
             *
             * @private
             */
            this.serverKey = undefined;
 
            /**
             * The current state of the request.
             *
             * @type {RequestState}
             * @readonly
             */
            this.state = RequestState$1.UNISSUED;
 
            /**
             * The requests's deferred promise.
             *
             * @type {Object}
             *
             * @private
             */
            this.deferred = undefined;
 
            /**
             * Whether the request was explicitly cancelled.
             *
             * @type {Boolean}
             *
             * @private
             */
            this.cancelled = false;
        }
 
        /**
         * Mark the request as cancelled.
         *
         * @private
         */
        Request.prototype.cancel = function() {
            this.cancelled = true;
        };
 
        /**
         * Duplicates a Request instance.
         *
         * @param {Request} [result] The object onto which to store the result.
         *
         * @returns {Request} The modified result parameter or a new Resource instance if one was not provided.
         */
        Request.prototype.clone = function(result) {
            if (!when.defined(result)) {
                return new Request(this);
            }
 
            result.url = this.url;
            result.requestFunction = this.requestFunction;
            result.cancelFunction = this.cancelFunction;
            result.priorityFunction = this.priorityFunction;
            result.priority = this.priority;
            result.throttle = this.throttle;
            result.throttleByServer = this.throttleByServer;
            result.type = this.type;
            result.serverKey = this.serverKey;
 
            // These get defaulted because the cloned request hasn't been issued
            result.state = this.RequestState.UNISSUED;
            result.deferred = undefined;
            result.cancelled = false;
 
            return result;
        };
 
    /**
         * Parses the result of XMLHttpRequest's getAllResponseHeaders() method into
         * a dictionary.
         *
         * @exports parseResponseHeaders
         *
         * @param {String} headerString The header string returned by getAllResponseHeaders().  The format is
         *                 described here: http://www.w3.org/TR/XMLHttpRequest/#the-getallresponseheaders()-method
         * @returns {Object} A dictionary of key/value pairs, where each key is the name of a header and the corresponding value
         *                   is that header's value.
         *
         * @private
         */
        function parseResponseHeaders(headerString) {
            var headers = {};
 
            if (!headerString) {
              return headers;
            }
 
            var headerPairs = headerString.split('\u000d\u000a');
 
            for (var i = 0; i < headerPairs.length; ++i) {
              var headerPair = headerPairs[i];
              // Can't use split() here because it does the wrong thing
              // if the header value has the string ": " in it.
              var index = headerPair.indexOf('\u003a\u0020');
              if (index > 0) {
                var key = headerPair.substring(0, index);
                var val = headerPair.substring(index + 2);
                headers[key] = val;
              }
            }
 
            return headers;
        }
 
    /**
         * An event that is raised when a request encounters an error.
         *
         * @constructor
         * @alias RequestErrorEvent
         *
         * @param {Number} [statusCode] The HTTP error status code, such as 404.
         * @param {Object} [response] The response included along with the error.
         * @param {String|Object} [responseHeaders] The response headers, represented either as an object literal or as a
         *                        string in the format returned by XMLHttpRequest's getAllResponseHeaders() function.
         */
        function RequestErrorEvent(statusCode, response, responseHeaders) {
            /**
             * The HTTP error status code, such as 404.  If the error does not have a particular
             * HTTP code, this property will be undefined.
             *
             * @type {Number}
             */
            this.statusCode = statusCode;
 
            /**
             * The response included along with the error.  If the error does not include a response,
             * this property will be undefined.
             *
             * @type {Object}
             */
            this.response = response;
 
            /**
             * The headers included in the response, represented as an object literal of key/value pairs.
             * If the error does not include any headers, this property will be undefined.
             *
             * @type {Object}
             */
            this.responseHeaders = responseHeaders;
 
            if (typeof this.responseHeaders === 'string') {
                this.responseHeaders = parseResponseHeaders(this.responseHeaders);
            }
        }
 
        /**
         * Creates a string representing this RequestErrorEvent.
         * @memberof RequestErrorEvent
         *
         * @returns {String} A string representing the provided RequestErrorEvent.
         */
        RequestErrorEvent.prototype.toString = function() {
            var str = 'Request has failed.';
            if (when.defined(this.statusCode)) {
                str += ' Status Code: ' + this.statusCode;
            }
            return str;
        };
 
    /**
         * A generic utility class for managing subscribers for a particular event.
         * This class is usually instantiated inside of a container class and
         * exposed as a property for others to subscribe to.
         *
         * @alias Event
         * @constructor
         * @example
         * MyObject.prototype.myListener = function(arg1, arg2) {
         *     this.myArg1Copy = arg1;
         *     this.myArg2Copy = arg2;
         * }
         *
         * var myObjectInstance = new MyObject();
         * var evt = new Cesium.Event();
         * evt.addEventListener(MyObject.prototype.myListener, myObjectInstance);
         * evt.raiseEvent('1', '2');
         * evt.removeEventListener(MyObject.prototype.myListener);
         */
        function Event() {
            this._listeners = [];
            this._scopes = [];
            this._toRemove = [];
            this._insideRaiseEvent = false;
        }
 
        Object.defineProperties(Event.prototype, {
            /**
             * The number of listeners currently subscribed to the event.
             * @memberof Event.prototype
             * @type {Number}
             * @readonly
             */
            numberOfListeners : {
                get : function() {
                    return this._listeners.length - this._toRemove.length;
                }
            }
        });
 
        /**
         * Registers a callback function to be executed whenever the event is raised.
         * An optional scope can be provided to serve as the <code>this</code> pointer
         * in which the function will execute.
         *
         * @param {Function} listener The function to be executed when the event is raised.
         * @param {Object} [scope] An optional object scope to serve as the <code>this</code>
         *        pointer in which the listener function will execute.
         * @returns {Event~RemoveCallback} A function that will remove this event listener when invoked.
         *
         * @see Event#raiseEvent
         * @see Event#removeEventListener
         */
        Event.prototype.addEventListener = function(listener, scope) {
            //>>includeStart('debug', pragmas.debug);
            Check.Check.typeOf.func('listener', listener);
            //>>includeEnd('debug');
 
            this._listeners.push(listener);
            this._scopes.push(scope);
 
            var event = this;
            return function() {
                event.removeEventListener(listener, scope);
            };
        };
 
        /**
         * Unregisters a previously registered callback.
         *
         * @param {Function} listener The function to be unregistered.
         * @param {Object} [scope] The scope that was originally passed to addEventListener.
         * @returns {Boolean} <code>true</code> if the listener was removed; <code>false</code> if the listener and scope are not registered with the event.
         *
         * @see Event#addEventListener
         * @see Event#raiseEvent
         */
        Event.prototype.removeEventListener = function(listener, scope) {
            //>>includeStart('debug', pragmas.debug);
            Check.Check.typeOf.func('listener', listener);
            //>>includeEnd('debug');
 
            var listeners = this._listeners;
            var scopes = this._scopes;
 
            var index = -1;
            for (var i = 0; i < listeners.length; i++) {
                if (listeners[i] === listener && scopes[i] === scope) {
                    index = i;
                    break;
                }
            }
 
            if (index !== -1) {
                if (this._insideRaiseEvent) {
                    //In order to allow removing an event subscription from within
                    //a callback, we don't actually remove the items here.  Instead
                    //remember the index they are at and undefined their value.
                    this._toRemove.push(index);
                    listeners[index] = undefined;
                    scopes[index] = undefined;
                } else {
                    listeners.splice(index, 1);
                    scopes.splice(index, 1);
                }
                return true;
            }
 
            return false;
        };
 
        function compareNumber(a,b) {
            return b - a;
        }
 
        /**
         * Raises the event by calling each registered listener with all supplied arguments.
         *
         * @param {*} arguments This method takes any number of parameters and passes them through to the listener functions.
         *
         * @see Event#addEventListener
         * @see Event#removeEventListener
         */
        Event.prototype.raiseEvent = function() {
            this._insideRaiseEvent = true;
 
            var i;
            var listeners = this._listeners;
            var scopes = this._scopes;
            var length = listeners.length;
 
            for (i = 0; i < length; i++) {
                var listener = listeners[i];
                if (when.defined(listener)) {
                    listeners[i].apply(scopes[i], arguments);
                }
            }
 
            //Actually remove items removed in removeEventListener.
            var toRemove = this._toRemove;
            length = toRemove.length;
            if (length > 0) {
                toRemove.sort(compareNumber);
                for (i = 0; i < length; i++) {
                    var index = toRemove[i];
                    listeners.splice(index, 1);
                    scopes.splice(index, 1);
                }
                toRemove.length = 0;
            }
 
            this._insideRaiseEvent = false;
        };
 
    /**
         * Array implementation of a heap.
         *
         * @alias Heap
         * @constructor
         * @private
         *
         * @param {Object} options Object with the following properties:
         * @param {Heap~ComparatorCallback} options.comparator The comparator to use for the heap. If comparator(a, b) is less than 0, sort a to a lower index than b, otherwise sort to a higher index.
         */
        function Heap(options) {
            //>>includeStart('debug', pragmas.debug);
            Check.Check.typeOf.object('options', options);
            Check.Check.defined('options.comparator', options.comparator);
            //>>includeEnd('debug');
 
            this._comparator = options.comparator;
            this._array = [];
            this._length = 0;
            this._maximumLength = undefined;
        }
 
        Object.defineProperties(Heap.prototype, {
            /**
             * Gets the length of the heap.
             *
             * @memberof Heap.prototype
             *
             * @type {Number}
             * @readonly
             */
            length : {
                get : function() {
                    return this._length;
                }
            },
 
            /**
             * Gets the internal array.
             *
             * @memberof Heap.prototype
             *
             * @type {Array}
             * @readonly
             */
            internalArray : {
                get : function() {
                    return this._array;
                }
            },
 
            /**
             * Gets and sets the maximum length of the heap.
             *
             * @memberof Heap.prototype
             *
             * @type {Number}
             */
            maximumLength : {
                get : function() {
                    return this._maximumLength;
                },
                set : function(value) {
                    this._maximumLength = value;
                    if (this._length > value && value > 0) {
                        this._length = value;
                        this._array.length = value;
                    }
                }
            },
 
            /**
             * The comparator to use for the heap. If comparator(a, b) is less than 0, sort a to a lower index than b, otherwise sort to a higher index.
             *
             * @memberof Heap.prototype
             *
             * @type {Heap~ComparatorCallback}
             */
            comparator : {
                get : function() {
                    return this._comparator;
                }
            }
        });
 
        function swap(array, a, b) {
            var temp = array[a];
            array[a] = array[b];
            array[b] = temp;
        }
 
        /**
         * Resizes the internal array of the heap.
         *
         * @param {Number} [length] The length to resize internal array to. Defaults to the current length of the heap.
         */
        Heap.prototype.reserve = function(length) {
            length = when.defaultValue(length, this._length);
            this._array.length = length;
        };
 
        /**
         * Update the heap so that index and all descendants satisfy the heap property.
         *
         * @param {Number} [index=0] The starting index to heapify from.
         */
        Heap.prototype.heapify = function(index) {
            index = when.defaultValue(index, 0);
            var length = this._length;
            var comparator = this._comparator;
            var array = this._array;
            var candidate = -1;
            var inserting = true;
 
            while (inserting) {
                var right = 2 * (index + 1);
                var left = right - 1;
 
                if (left < length && comparator(array[left], array[index]) < 0) {
                    candidate = left;
                } else {
                    candidate = index;
                }
 
                if (right < length && comparator(array[right], array[candidate]) < 0) {
                    candidate = right;
                }
                if (candidate !== index) {
                    swap(array, candidate, index);
                    index = candidate;
                } else {
                    inserting = false;
                }
            }
        };
 
        /**
         * Resort the heap.
         */
        Heap.prototype.resort = function() {
            var length = this._length;
            for (var i = Math.ceil(length / 2); i >= 0; --i) {
                this.heapify(i);
            }
        };
 
        /**
         * Insert an element into the heap. If the length would grow greater than maximumLength
         * of the heap, extra elements are removed.
         *
         * @param {*} element The element to insert
         *
         * @return {*} The element that was removed from the heap if the heap is at full capacity.
         */
        Heap.prototype.insert = function(element) {
            //>>includeStart('debug', pragmas.debug);
            Check.Check.defined('element', element);
            //>>includeEnd('debug');
 
            var array = this._array;
            var comparator = this._comparator;
            var maximumLength = this._maximumLength;
 
            var index = this._length++;
            if (index < array.length) {
                array[index] = element;
            } else {
                array.push(element);
            }
 
            while (index !== 0) {
                var parent = Math.floor((index - 1) / 2);
                if (comparator(array[index], array[parent]) < 0) {
                    swap(array, index, parent);
                    index = parent;
                } else {
                    break;
                }
            }
 
            var removedElement;
 
            if (when.defined(maximumLength) && (this._length > maximumLength)) {
                removedElement = array[maximumLength];
                array.pop();
                this._length = maximumLength;
            }
 
            return removedElement;
        };
 
        /**
         * Remove the element specified by index from the heap and return it.
         *
         * @param {Number} [index=0] The index to remove.
         * @returns {*} The specified element of the heap.
         */
        Heap.prototype.pop = function(index) {
            index = when.defaultValue(index, 0);
            if (this._length === 0) {
                return undefined;
            }
            //>>includeStart('debug', pragmas.debug);
            Check.Check.typeOf.number.lessThan('index', index, this._length);
            //>>includeEnd('debug');
 
            var array = this._array;
            var root = array[index];
            swap(array, index, --this._length);
            array[this._length] = undefined;
            this.heapify(index);
            return root;
        };
 
    /**
         * Gets a timestamp that can be used in measuring the time between events.  Timestamps
         * are expressed in milliseconds, but it is not specified what the milliseconds are
         * measured from.  This function uses performance.now() if it is available, or Date.now()
         * otherwise.
         *
         * @exports getTimestamp
         *
         * @returns {Number} The timestamp in milliseconds since some unspecified reference time.
         */
        var getTimestamp;
 
        if (typeof performance !== 'undefined' && typeof performance.now === 'function' && isFinite(performance.now())) {
            getTimestamp = function() {
                return performance.now();
            };
        } else {
            getTimestamp = function() {
                return Date.now();
            };
        }
    var getTimestamp$1 = getTimestamp;
 
    function sortRequests(a, b) {
        return a.priority - b.priority;
    }
 
    var statistics = {
        numberOfAttemptedRequests : 0,
        numberOfActiveRequests : 0,
        numberOfCancelledRequests : 0,
        numberOfCancelledActiveRequests : 0,
        numberOfFailedRequests : 0,
        numberOfActiveRequestsEver : 0,
        lastNumberOfActiveRequests : 0,
        totalRequestTime : 0
    };
 
    var priorityHeapLength = 20;
    var requestHeap = new Heap({
        comparator : sortRequests
    });
    requestHeap.maximumLength = priorityHeapLength;
    requestHeap.reserve(priorityHeapLength);
 
    var activeRequests = [];
    var numberOfActiveRequestsByServer = {};
 
    var pageUri = typeof document !== 'undefined' ? new URI(document.location.href) : new URI();
 
    var requestCompletedEvent = new Event();
 
    /**
     * Tracks the number of active requests and prioritizes incoming requests.
     *
     * @exports RequestScheduler
     *
     * @private
     */
    function RequestScheduler() {
    }
 
    RequestScheduler.statisticRequestTime = -1;
 
    /**
     * The maximum number of simultaneous active requests. Un-throttled requests do not observe this limit.
     * @type {Number}
     * @default 50
     */
    RequestScheduler.maximumRequests = 50;
 
    /**
     * The maximum number of simultaneous active requests per server. Un-throttled requests or servers specifically
     * listed in requestsByServer do not observe this limit.
     * @type {Number}
     * @default 6
     */
    RequestScheduler.maximumRequestsPerServer = 6;
 
    RequestScheduler.perPacketCount = 20;//批量下载,每帧每个包的最大请求数限制,默认是20,不超过120
 
 
    /**
     * A per serverKey list of overrides to use for throttling instead of maximumRequestsPerServer
     */
    RequestScheduler.requestsByServer = {
        'api.cesium.com:443': 18,
        'assets.cesium.com:443': 18
    };
 
    /**
     * Specifies if the request scheduler should throttle incoming requests, or let the browser queue requests under its control.
     * @type {Boolean}
     * @default true
     */
    RequestScheduler.throttleRequests = true;
 
    /**
     * When true, log statistics to the console every frame
     * @type {Boolean}
     * @default false
     */
    RequestScheduler.debugShowStatistics = false;
 
    /**
     * An event that's raised when a request is completed.  Event handlers are passed
     * the error object if the request fails.
     *
     * @type {Event}
     * @default Event()
     */
    RequestScheduler.requestCompletedEvent = requestCompletedEvent;
 
    Object.defineProperties(RequestScheduler, {
        /**
         * Returns the statistics used by the request scheduler.
         *
         * @memberof RequestScheduler
         *
         * @type Object
         * @readonly
         */
        statistics : {
            get : function() {
                return statistics;
            }
        },
 
        /**
         * The maximum size of the priority heap. This limits the number of requests that are sorted by priority. Only applies to requests that are not yet active.
         *
         * @memberof RequestScheduler
         *
         * @type {Number}
         * @default 20
         */
        priorityHeapLength : {
            get : function() {
                return priorityHeapLength;
            },
            set : function(value) {
                // If the new length shrinks the heap, need to cancel some of the requests.
                // Since this value is not intended to be tweaked regularly it is fine to just cancel the high priority requests.
                if (value < priorityHeapLength) {
                    while (requestHeap.length > value) {
                        var request = requestHeap.pop();
                        cancelRequest(request);
                    }
                }
                priorityHeapLength = value;
                requestHeap.maximumLength = value;
                requestHeap.reserve(value);
            }
        }
    });
 
    function updatePriority(request) {
        if (when.defined(request.priorityFunction)) {
            request.priority = request.priorityFunction();
        }
    }
 
    function serverHasOpenSlots(serverKey) {
        var maxRequests = when.defaultValue(RequestScheduler.requestsByServer[serverKey], RequestScheduler.maximumRequestsPerServer);
        return numberOfActiveRequestsByServer[serverKey] < maxRequests;
    }
 
 
    RequestScheduler.packRequestGroup = {};//每帧的所有需要打包的请求 : (serverIP + provider name), value :[request, request,...]
    RequestScheduler.packRequestPromise = {};//每帧打包请求的promise  (serverIP + provider name) : defer
    RequestScheduler.packRequestQuadKey = {};//请求包的四叉树编码 (serverIP + provider name) : (quadkey;quadkey;...)
    RequestScheduler.quadKeyIndex = {};//记录当前四叉树编码数组的索引
    RequestScheduler.packRequestHeap = {};//每个图层对应一个二叉堆(serverIp + provider name) : heap
 
    RequestScheduler.blockDefer = {};
    RequestScheduler.blockRequest = {};
 
    function getRequestKey(request) {
        if(when.defined(request.packKey)){
            return request.packKey;
        }
 
        request.packKey = request.serverKey + '_' + request.providerName;
        return request.packKey;
    }
 
    function getRequestBlockKey(request){
        if(when.defined(request.blockKey)){
            return request.blockKey;
        }
 
        request.blockKey = request.serverKey + '_' + request.providerName + '_' + request.quadKey + request.url.substring(request.url.indexOf("dataVersion"));
        return request.blockKey;
    }
 
    function preparePackRequest (request) {
        var packKey = getRequestKey(request);
        if(!when.defined(RequestScheduler.packRequestGroup[packKey])) {
            RequestScheduler.packRequestGroup[packKey] = [];
        }
 
        if(!when.defined(RequestScheduler.packRequestQuadKey[packKey])) {
            RequestScheduler.packRequestQuadKey[packKey] = '';
        }
 
        if(!when.defined(RequestScheduler.packRequestPromise[packKey])) {
            RequestScheduler.packRequestPromise[packKey] = when.when.defer();
        }
 
        if(!when.defined(RequestScheduler.quadKeyIndex[packKey])) {
            RequestScheduler.quadKeyIndex[packKey] = 0;
        }
 
        request.quadKeyIndex = RequestScheduler.quadKeyIndex[packKey]++;
        request.deferred = RequestScheduler.packRequestPromise[packKey];
        request.state = RequestState$1.ISSUED;
        RequestScheduler.packRequestGroup[packKey].push(request);
        return request.deferred.promise;
    }
 
    function prepareBlockRequest(request) {
        var key = getRequestBlockKey(request);
        var deferred = RequestScheduler.blockDefer[key];
        if(!when.defined(deferred)) {
            deferred = RequestScheduler.blockDefer[key] = when.when.defer();
            RequestScheduler.blockRequest[key] = request;
        }
 
        request.deferred = deferred;
        request.state = RequestState$1.ISSUED;
        return request.deferred.promise;
    }
 
    function clearRequestPackets() {
        RequestScheduler.packRequestGroup = {};
        RequestScheduler.packRequestPromise = {};
        RequestScheduler.packRequestQuadKey = {};
        RequestScheduler.quadKeyIndex = {};
    }
 
    function clearBlockRequest() {
        RequestScheduler.blockRequest = {};
    }
 
    function cancelAllRequests(requests) {
        for(var i = 0,j = requests.length;i < j;i++) {
            var request = requests[i];
            request.state = RequestState$1.CANCELLED;
        }
    }
 
    function combineQuadkey(reqGroup) {
        var quadkeys = [];
        var keyMap = {};
        for(var i = 0,j = reqGroup.length;i < j;i++){
            var request = reqGroup[i];
            if(request.cancelled){
                continue ;
            }
            var quadKey = request.quadKey;
            if(keyMap[quadKey]){
                continue;
            }
            keyMap[quadKey] = true;
            quadkeys.push(quadKey);
        }
        return quadkeys;
    }
 
    function startPackingRequest() {
        var packRequestGroup = RequestScheduler.packRequestGroup;
        for(var key in packRequestGroup) {
            if(packRequestGroup.hasOwnProperty(key)) {
                var reqGroup = packRequestGroup[key];
                if(reqGroup.length < 1) {
                    continue ;
                }
 
                var packRequest = reqGroup[0].clone();
                var isTileMap = packRequest.url.indexOf("rest/maps") !== -1;
                packRequest.serverKey = reqGroup[0].serverKey;
                packRequest.state = reqGroup[0].state;
                var oldUrl = packRequest.url;
 
                var quadKeys = combineQuadkey(reqGroup);
                if(quadKeys.length < 1){
                    continue ;
                }
 
                if (isTileMap) {
                    RequestScheduler.packRequestQuadKey[key] = quadKeys.join(',');
                } else {
                    RequestScheduler.packRequestQuadKey[key] = quadKeys.join(';');
                }
                
 
                var quadKey = RequestScheduler.packRequestQuadKey[key];
                if (packRequest.throttleByServer && !serverHasOpenSlots(packRequest.serverKey)) {
                    cancelAllRequests(reqGroup);
                    RequestScheduler.packRequestPromise[key].reject();
                    continue;
                }
 
                packRequest.deferred = RequestScheduler.packRequestPromise[key];
                var uri = new URI(oldUrl);
                if (isTileMap) {
                    uri.query = when.defined(uri.query) ? uri.query + '&tiles=' + quadKey : 'tiles=' + quadKey;
                } else {
                    uri.query = when.defined(uri.query) ? uri.query + '&extratiles=' + quadKey : 'extratiles=' + quadKey;
                }
                
                packRequest.url = uri.toString();
                startRequest(packRequest, packRequest.url);
            }
        }
 
        clearRequestPackets();
    }
 
    function updateBlockRequest() {
        var blockRequest = RequestScheduler.blockRequest;
        for(var key in blockRequest) {
            if(blockRequest.hasOwnProperty(key)) {
                var request = blockRequest[key];
                startRequest(request);
            }
        }
 
        clearBlockRequest();
    }
 
    function issueRequest(request) {
        if (request.state === RequestState$1.UNISSUED) {
            request.state = RequestState$1.ISSUED;
            if(request.type === RequestType$1.PACK || request.type === RequestType$1.BLOCKPACK){
                var packKey = getRequestKey(request);
                if(!when.defined(RequestScheduler.packRequestPromise[packKey])) {
                    RequestScheduler.packRequestPromise[packKey] = when.when.defer();
                }
 
                request.deferred = RequestScheduler.packRequestPromise[packKey];
 
            }
            else{
                request.deferred = when.when.defer();
            }
        }
        return request.deferred.promise;
    }
 
    function getRequestReceivedFunction(request) {
        return function(results) {
            if (request.state === RequestState$1.CANCELLED) {
                // If the data request comes back but the request is cancelled, ignore it.
                return;
            }
            --statistics.numberOfActiveRequests;
            --numberOfActiveRequestsByServer[request.serverKey];
            requestCompletedEvent.raiseEvent();
            request.state = RequestState$1.RECEIVED;
            request.deferred.resolve(results);
            request.endTime = getTimestamp$1();
            if(RequestScheduler.statisticRequestTime > 0 ||  request.type !== RequestType$1.OTHER) {
                statistics.totalRequestTime += request.endTime - request.startTime;
            }
 
            if(request.type === RequestType$1.BLOCK || request.type === RequestType$1.BLOCKPACK){
                var key = getRequestBlockKey(request);
                if(when.defined(RequestScheduler.blockDefer[key])){
                    RequestScheduler.blockDefer[key] = undefined;
                    delete RequestScheduler.blockDefer[key];
                }
 
            }
        };
    }
 
    function getRequestFailedFunction(request) {
        return function(error) {
            if (request.state === RequestState$1.CANCELLED) {
                // If the data request comes back but the request is cancelled, ignore it.
                return;
            }
            ++statistics.numberOfFailedRequests;
            --statistics.numberOfActiveRequests;
            --numberOfActiveRequestsByServer[request.serverKey];
            requestCompletedEvent.raiseEvent(error);
            request.state = RequestState$1.FAILED;
            request.deferred.reject(error);
        };
    }
 
    function startRequest(request, url) {
        var promise = issueRequest(request);
        request.state = RequestState$1.ACTIVE;
        activeRequests.push(request);
        ++statistics.numberOfActiveRequests;
        ++statistics.numberOfActiveRequestsEver;
        ++numberOfActiveRequestsByServer[request.serverKey];
        request.startTime = getTimestamp$1();
        request.requestFunction(url).then(getRequestReceivedFunction(request)).otherwise(getRequestFailedFunction(request));
        return promise;
    }
 
    function cancelRequest(request) {
        var active = request.state === RequestState$1.ACTIVE;
        request.state = RequestState$1.CANCELLED;
        ++statistics.numberOfCancelledRequests;
        request.deferred.reject();
 
        if (active) {
            --statistics.numberOfActiveRequests;
            --numberOfActiveRequestsByServer[request.serverKey];
            ++statistics.numberOfCancelledActiveRequests;
        }
 
        if (when.defined(request.cancelFunction)) {
            request.cancelFunction();
        }
    }
 
    function updatePackRequestHeap() {
        for(var key in RequestScheduler.packRequestHeap) {
            if(RequestScheduler.packRequestHeap.hasOwnProperty(key)) {
                var heap = RequestScheduler.packRequestHeap[key];
                var issuedRequests = heap.internalArray;
                var issuedLength = heap.length;
                for (var i = 0; i < issuedLength; ++i) {
                    updatePriority(issuedRequests[i]);
                }
                heap.resort();
            }
        }
    }
 
    function packingRequest() {
        for(var key in RequestScheduler.packRequestHeap) {
            if(RequestScheduler.packRequestHeap.hasOwnProperty(key)) {
                var heap = RequestScheduler.packRequestHeap[key];
                while(heap.length > 0) {
                    var request = heap.pop();
                    if (request.cancelled) {
                        cancelRequest(request);
                        continue;
                    }
 
                    preparePackRequest(request);
                }
            }
        }
 
        startPackingRequest();
    }
 
    /**
     * Sort requests by priority and start requests.
     */
    RequestScheduler.update = function() {
        var i;
        var request;
 
        // Loop over all active requests. Cancelled, failed, or received requests are removed from the array to make room for new requests.
        var removeCount = 0;
        var activeLength = activeRequests.length;
        for (i = 0; i < activeLength; ++i) {
            request = activeRequests[i];
            if (request.cancelled) {
                // Request was explicitly cancelled
                cancelRequest(request);
            }
            if (request.state !== RequestState$1.ACTIVE) {
                // Request is no longer active, remove from array
                ++removeCount;
                continue;
            }
            if (removeCount > 0) {
                // Shift back to fill in vacated slots from completed requests
                activeRequests[i - removeCount] = request;
            }
        }
        activeRequests.length -= removeCount;
 
        // Update priority of issued requests and resort the heap
        var issuedRequests = requestHeap.internalArray;
        var issuedLength = requestHeap.length;
        for (i = 0; i < issuedLength; ++i) {
            updatePriority(issuedRequests[i]);
        }
        requestHeap.resort();
 
        updatePackRequestHeap();
        updateBlockRequest();
 
        packingRequest();
 
        // Get the number of open slots and fill with the highest priority requests.
        // Un-throttled requests are automatically added to activeRequests, so activeRequests.length may exceed maximumRequests
        var openSlots = Math.max(RequestScheduler.maximumRequests - activeRequests.length, 0);
        var filledSlots = 0;
        while (filledSlots < openSlots && requestHeap.length > 0) {
            // Loop until all open slots are filled or the heap becomes empty
            request = requestHeap.pop();
            if (request.cancelled) {
                // Request was explicitly cancelled
                cancelRequest(request);
                continue;
            }
 
            if (request.throttleByServer && !serverHasOpenSlots(request.serverKey)) {
                // Open slots are available, but the request is throttled by its server. Cancel and try again later.
                cancelRequest(request);
                continue;
            }
 
            startRequest(request);
 
            ++filledSlots;
        }
 
        updateStatistics();
    };
 
    /**
     * Get the server key from a given url.
     *
     * @param {String} url The url.
     * @returns {String} The server key.
     */
    RequestScheduler.getServerKey = function(url) {
        //>>includeStart('debug', pragmas.debug);
        Check.Check.typeOf.string('url', url);
        //>>includeEnd('debug');
 
        var uri = new URI(url).resolve(pageUri);
        uri.normalize();
        var serverKey = uri.authority;
        if (!/:/.test(serverKey)) {
            // If the authority does not contain a port number, add port 443 for https or port 80 for http
            serverKey = serverKey + ':' + (uri.scheme === 'https' ? '443' : '80');
        }
 
        var length = numberOfActiveRequestsByServer[serverKey];
        if (!when.defined(length)) {
            numberOfActiveRequestsByServer[serverKey] = 0;
        }
 
        return serverKey;
    };
 
    function getPackRequestHeap(request) {
        var packKey = getRequestKey(request);
        var heap = RequestScheduler.packRequestHeap[packKey];
        if(!when.defined(heap)) {
            heap = RequestScheduler.packRequestHeap[packKey] = new Heap({
                comparator : sortRequests
            });
            heap.maximumLength = RequestScheduler.perPacketCount;
            heap.reserve(priorityHeapLength);
        }
 
        return heap;
    }
 
    /**
     * Issue a request. If request.throttle is false, the request is sent immediately. Otherwise the request will be
     * queued and sorted by priority before being sent.
     *
     * @param {Request} request The request object.
     *
     * @returns {Promise|undefined} A Promise for the requested data, or undefined if this request does not have high enough priority to be issued.
     */
    RequestScheduler.request = function(request) {
        //>>includeStart('debug', pragmas.debug);
        Check.Check.typeOf.object('request', request);
        Check.Check.typeOf.string('request.url', request.url);
        Check.Check.typeOf.func('request.requestFunction', request.requestFunction);
        //>>includeEnd('debug');
 
        if (isDataUri(request.url) || isBlobUri(request.url)) {
            requestCompletedEvent.raiseEvent();
            request.state = RequestState$1.RECEIVED;
            return request.requestFunction();
        }
 
        ++statistics.numberOfAttemptedRequests;
 
        if (!when.defined(request.serverKey)) {
            request.serverKey = RequestScheduler.getServerKey(request.url);
        }
 
        if(request.type === RequestType$1.BLOCK) {
            return prepareBlockRequest(request);
        }
 
        if (request.throttleByServer && !serverHasOpenSlots(request.serverKey)) {
            // Server is saturated. Try again later.
            return undefined;
        }
 
        if (!RequestScheduler.throttleRequests || !request.throttle) {
            return startRequest(request);
        }
 
        if (activeRequests.length >= RequestScheduler.maximumRequests) {
            // Active requests are saturated. Try again later.
            return undefined;
        }
 
        // Insert into the priority heap and see if a request was bumped off. If this request is the lowest
        // priority it will be returned.
        updatePriority(request);
        var removedRequest;
        if(request.type === RequestType$1.PACK || request.type === RequestType$1.BLOCKPACK) {
            var packRequestHeap = getPackRequestHeap(request);
 
 
            var inset = true;
            if(request.type === RequestType$1.BLOCKPACK){
                for(var i=0; i<packRequestHeap.length; i++){
                    if(packRequestHeap._array[i].quadKey === request.quadKey){
                        request.blockRequest = packRequestHeap._array[i];
                        inset = false;
                        break;
                    }
                }
            }
 
            if(inset){
                removedRequest = packRequestHeap.insert(request);
            }
 
        }
        else{
            removedRequest = requestHeap.insert(request);
        }
 
        if (when.defined(removedRequest)) {
            if (removedRequest === request) {
                // Request does not have high enough priority to be issued
                return undefined;
            }
            // A previously issued request has been bumped off the priority heap, so cancel it
            cancelRequest(removedRequest);
        }
 
        return issueRequest(request);
    };
 
    function updateStatistics() {
        if (!RequestScheduler.debugShowStatistics) {
            return;
        }
 
        if (statistics.numberOfActiveRequests === 0 && statistics.lastNumberOfActiveRequests > 0) {
            if (statistics.numberOfAttemptedRequests > 0) {
                console.log('Number of attempted requests: ' + statistics.numberOfAttemptedRequests);
                statistics.numberOfAttemptedRequests = 0;
            }
 
            if (statistics.numberOfCancelledRequests > 0) {
                console.log('Number of cancelled requests: ' + statistics.numberOfCancelledRequests);
                statistics.numberOfCancelledRequests = 0;
            }
 
            if (statistics.numberOfCancelledActiveRequests > 0) {
                console.log('Number of cancelled active requests: ' + statistics.numberOfCancelledActiveRequests);
                statistics.numberOfCancelledActiveRequests = 0;
            }
 
            if (statistics.numberOfFailedRequests > 0) {
                console.log('Number of failed requests: ' + statistics.numberOfFailedRequests);
                statistics.numberOfFailedRequests = 0;
            }
        }
 
        statistics.lastNumberOfActiveRequests = statistics.numberOfActiveRequests;
    }
 
    /**
     * For testing only. Clears any requests that may not have completed from previous tests.
     *
     * @private
     */
    RequestScheduler.clearForSpecs = function() {
        while (requestHeap.length > 0) {
            var request = requestHeap.pop();
            cancelRequest(request);
        }
        var length = activeRequests.length;
        for (var i = 0; i < length; ++i) {
            cancelRequest(activeRequests[i]);
        }
        activeRequests.length = 0;
        numberOfActiveRequestsByServer = {};
 
        // Clear stats
        statistics.numberOfAttemptedRequests = 0;
        statistics.numberOfActiveRequests = 0;
        statistics.numberOfCancelledRequests = 0;
        statistics.numberOfCancelledActiveRequests = 0;
        statistics.numberOfFailedRequests = 0;
        statistics.numberOfActiveRequestsEver = 0;
        statistics.lastNumberOfActiveRequests = 0;
        statistics.totalRequestTime = 0;
    };
 
    /**
     * For testing only.
     *
     * @private
     */
    RequestScheduler.numberOfActiveRequestsByServer = function(serverKey) {
        return numberOfActiveRequestsByServer[serverKey];
    };
 
    /**
     * For testing only.
     *
     * @private
     */
    RequestScheduler.requestHeap = requestHeap;
 
    /**
         * A singleton that contains all of the servers that are trusted. Credentials will be sent with
         * any requests to these servers.
         *
         * @exports TrustedServers
         *
         * @see {@link http://www.w3.org/TR/cors/|Cross-Origin Resource Sharing}
         */
        var TrustedServers = {};
        var _servers = {};
 
        /**
         * Adds a trusted server to the registry
         *
         * @param {String} host The host to be added.
         * @param {Number} port The port used to access the host.
         *
         * @example
         * // Add a trusted server
         * TrustedServers.add('my.server.com', 80);
         */
        TrustedServers.add = function(host, port) {
            //>>includeStart('debug', pragmas.debug);
            if (!when.defined(host)) {
                throw new Check.DeveloperError('host is required.');
            }
            if (!when.defined(port) || port <= 0) {
                throw new Check.DeveloperError('port is required to be greater than 0.');
            }
            //>>includeEnd('debug');
 
            var authority = host.toLowerCase() + ':' + port;
            if (!when.defined(_servers[authority])) {
                _servers[authority] = true;
            }
        };
 
        /**
         * Removes a trusted server from the registry
         *
         * @param {String} host The host to be removed.
         * @param {Number} port The port used to access the host.
         *
         * @example
         * // Remove a trusted server
         * TrustedServers.remove('my.server.com', 80);
         */
        TrustedServers.remove = function(host, port) {
            //>>includeStart('debug', pragmas.debug);
            if (!when.defined(host)) {
                throw new Check.DeveloperError('host is required.');
            }
            if (!when.defined(port) || port <= 0) {
                throw new Check.DeveloperError('port is required to be greater than 0.');
            }
            //>>includeEnd('debug');
 
            var authority = host.toLowerCase() + ':' + port;
            if (when.defined(_servers[authority])) {
                delete _servers[authority];
            }
        };
 
        function getAuthority(url) {
            var uri = new URI(url);
            uri.normalize();
 
            // Removes username:password@ so we just have host[:port]
            var authority = uri.getAuthority();
            if (!when.defined(authority)) {
                return undefined; // Relative URL
            }
 
            if (authority.indexOf('@') !== -1) {
                var parts = authority.split('@');
                authority = parts[1];
            }
 
            // If the port is missing add one based on the scheme
            if (authority.indexOf(':') === -1) {
                var scheme = uri.getScheme();
                if (!when.defined(scheme)) {
                    scheme = window.location.protocol;
                    scheme = scheme.substring(0, scheme.length-1);
                }
                if (scheme === 'http') {
                    authority += ':80';
                } else if (scheme === 'https') {
                    authority += ':443';
                } else {
                    return undefined;
                }
            }
 
            return authority;
        }
 
        /**
         * Tests whether a server is trusted or not. The server must have been added with the port if it is included in the url.
         *
         * @param {String} url The url to be tested against the trusted list
         *
         * @returns {boolean} Returns true if url is trusted, false otherwise.
         *
         * @example
         * // Add server
         * TrustedServers.add('my.server.com', 81);
         *
         * // Check if server is trusted
         * if (TrustedServers.contains('https://my.server.com:81/path/to/file.png')) {
         *     // my.server.com:81 is trusted
         * }
         * if (TrustedServers.contains('https://my.server.com/path/to/file.png')) {
         *     // my.server.com isn't trusted
         * }
         */
        TrustedServers.contains = function(url) {
            //>>includeStart('debug', pragmas.debug);
            if (!when.defined(url)) {
                throw new Check.DeveloperError('url is required.');
            }
            //>>includeEnd('debug');
            var authority = getAuthority(url);
            if (when.defined(authority) && when.defined(_servers[authority])) {
                return true;
            }
 
            return false;
        };
 
        /**
         * Clears the registry
         *
         * @example
         * // Remove a trusted server
         * TrustedServers.clear();
         */
        TrustedServers.clear = function() {
            _servers = {};
        };
 
    var warnings = {};
 
        /**
         * Logs a one time message to the console.  Use this function instead of
         * <code>console.log</code> directly since this does not log duplicate messages
         * unless it is called from multiple workers.
         *
         * @exports oneTimeWarning
         *
         * @param {String} identifier The unique identifier for this warning.
         * @param {String} [message=identifier] The message to log to the console.
         *
         * @example
         * for(var i=0;i<foo.length;++i) {
         *    if (!defined(foo[i].bar)) {
         *       // Something that can be recovered from but may happen a lot
         *       oneTimeWarning('foo.bar undefined', 'foo.bar is undefined. Setting to 0.');
         *       foo[i].bar = 0;
         *       // ...
         *    }
         * }
         *
         * @private
         */
        function oneTimeWarning(identifier, message) {
            //>>includeStart('debug', pragmas.debug);
            if (!when.defined(identifier)) {
                throw new Check.DeveloperError('identifier is required.');
            }
            //>>includeEnd('debug');
 
            if (!when.defined(warnings[identifier])) {
                warnings[identifier] = true;
                console.warn(when.defaultValue(message, identifier));
            }
        }
 
        oneTimeWarning.geometryOutlines = 'Entity geometry outlines are unsupported on terrain. Outlines will be disabled. To enable outlines, disable geometry terrain clamping by explicitly setting height to 0.';
 
        oneTimeWarning.geometryZIndex = 'Entity geometry with zIndex are unsupported when height or extrudedHeight are defined.  zIndex will be ignored';
 
        oneTimeWarning.geometryHeightReference = 'Entity corridor, ellipse, polygon or rectangle with heightReference must also have a defined height.  heightReference will be ignored';
        oneTimeWarning.geometryExtrudedHeightReference = 'Entity corridor, ellipse, polygon or rectangle with extrudedHeightReference must also have a defined extrudedHeight.  extrudedHeightReference will be ignored';
 
    /**
         * Logs a deprecation message to the console.  Use this function instead of
         * <code>console.log</code> directly since this does not log duplicate messages
         * unless it is called from multiple workers.
         *
         * @exports deprecationWarning
         *
         * @param {String} identifier The unique identifier for this deprecated API.
         * @param {String} message The message to log to the console.
         *
         * @example
         * // Deprecated function or class
         * function Foo() {
         *    deprecationWarning('Foo', 'Foo was deprecated in Cesium 1.01.  It will be removed in 1.03.  Use newFoo instead.');
         *    // ...
         * }
         *
         * // Deprecated function
         * Bar.prototype.func = function() {
         *    deprecationWarning('Bar.func', 'Bar.func() was deprecated in Cesium 1.01.  It will be removed in 1.03.  Use Bar.newFunc() instead.');
         *    // ...
         * };
         *
         * // Deprecated property
         * Object.defineProperties(Bar.prototype, {
         *     prop : {
         *         get : function() {
         *             deprecationWarning('Bar.prop', 'Bar.prop was deprecated in Cesium 1.01.  It will be removed in 1.03.  Use Bar.newProp instead.');
         *             // ...
         *         },
         *         set : function(value) {
         *             deprecationWarning('Bar.prop', 'Bar.prop was deprecated in Cesium 1.01.  It will be removed in 1.03.  Use Bar.newProp instead.');
         *             // ...
         *         }
         *     }
         * });
         *
         * @private
         */
        function deprecationWarning(identifier, message) {
            //>>includeStart('debug', pragmas.debug);
            if (!when.defined(identifier) || !when.defined(message)) {
                throw new Check.DeveloperError('identifier and message are required.');
            }
            //>>includeEnd('debug');
 
            oneTimeWarning(identifier, message);
        }
 
    var xhrBlobSupported = (function() {
            try {
                var xhr = new XMLHttpRequest();
                xhr.open('GET', '#', true);
                xhr.responseType = 'blob';
                return xhr.responseType === 'blob';
            } catch (e) {
                return false;
            }
        })();
 
        /**
         * Parses a query string and returns the object equivalent.
         *
         * @param {Uri} uri The Uri with a query object.
         * @param {Resource} resource The Resource that will be assigned queryParameters.
         * @param {Boolean} merge If true, we'll merge with the resource's existing queryParameters. Otherwise they will be replaced.
         * @param {Boolean} preserveQueryParameters If true duplicate parameters will be concatenated into an array. If false, keys in uri will take precedence.
         *
         * @private
         */
        function parseQuery(uri, resource, merge, preserveQueryParameters) {
            var queryString = uri.query;
            if (!when.defined(queryString) || (queryString.length === 0)) {
                return {};
            }
 
            var query;
            // Special case we run into where the querystring is just a string, not key/value pairs
            if (queryString.indexOf('=') === -1) {
                var result = {};
                result[queryString] = undefined;
                query = result;
            } else {
                query = queryToObject(queryString);
            }
 
            if (merge) {
                resource._queryParameters = combineQueryParameters(query, resource._queryParameters, preserveQueryParameters);
            } else {
                resource._queryParameters = query;
            }
            uri.query = undefined;
        }
 
        /**
         * Converts a query object into a string.
         *
         * @param {Uri} uri The Uri object that will have the query object set.
         * @param {Resource} resource The resource that has queryParameters
         *
         * @private
         */
        function stringifyQuery(uri, resource) {
            var queryObject = resource._queryParameters;
 
            var keys = Object.keys(queryObject);
 
            // We have 1 key with an undefined value, so this is just a string, not key/value pairs
            if (keys.length === 1 && !when.defined(queryObject[keys[0]])) {
                uri.query = keys[0];
            } else {
                uri.query = objectToQuery(queryObject);
            }
        }
 
        /**
         * Clones a value if it is defined, otherwise returns the default value
         *
         * @param {*} [val] The value to clone.
         * @param {*} [defaultVal] The default value.
         *
         * @returns {*} A clone of val or the defaultVal.
         *
         * @private
         */
        function defaultClone(val, defaultVal) {
            if (!when.defined(val)) {
                return defaultVal;
            }
 
            return when.defined(val.clone) ? val.clone() : clone(val);
        }
 
        /**
         * Checks to make sure the Resource isn't already being requested.
         *
         * @param {Request} request The request to check.
         *
         * @private
         */
        function checkAndResetRequest(request) {
            if (request.state === RequestState$1.ISSUED || request.state === RequestState$1.ACTIVE) {
                throw new RuntimeError.RuntimeError('The Resource is already being fetched.');
            }
 
            request.state = RequestState$1.UNISSUED;
            request.deferred = undefined;
        }
 
        /**
         * This combines a map of query parameters.
         *
         * @param {Object} q1 The first map of query parameters. Values in this map will take precedence if preserveQueryParameters is false.
         * @param {Object} q2 The second map of query parameters.
         * @param {Boolean} preserveQueryParameters If true duplicate parameters will be concatenated into an array. If false, keys in q1 will take precedence.
         *
         * @returns {Object} The combined map of query parameters.
         *
         * @example
         * var q1 = {
         *   a: 1,
         *   b: 2
         * };
         * var q2 = {
         *   a: 3,
         *   c: 4
         * };
         * var q3 = {
         *   b: [5, 6],
         *   d: 7
         * }
         *
         * // Returns
         * // {
         * //   a: [1, 3],
         * //   b: 2,
         * //   c: 4
         * // };
         * combineQueryParameters(q1, q2, true);
         *
         * // Returns
         * // {
         * //   a: 1,
         * //   b: 2,
         * //   c: 4
         * // };
         * combineQueryParameters(q1, q2, false);
         *
         * // Returns
         * // {
         * //   a: 1,
         * //   b: [2, 5, 6],
         * //   d: 7
         * // };
         * combineQueryParameters(q1, q3, true);
         *
         * // Returns
         * // {
         * //   a: 1,
         * //   b: 2,
         * //   d: 7
         * // };
         * combineQueryParameters(q1, q3, false);
         *
         * @private
         */
        function combineQueryParameters(q1, q2, preserveQueryParameters) {
            if (!preserveQueryParameters) {
                return combine(q1, q2);
            }
 
            var result = clone(q1, true);
            for (var param in q2) {
                if (q2.hasOwnProperty(param)) {
                    var value = result[param];
                    var q2Value = q2[param];
                    if (when.defined(value)) {
                        if (!Array.isArray(value)) {
                            value = result[param] = [value];
                        }
 
                        result[param] = value.concat(q2Value);
                    } else {
                        result[param] = Array.isArray(q2Value) ? q2Value.slice() : q2Value;
                    }
                }
            }
 
            return result;
        }
 
        /**
         * A resource that includes the location and any other parameters we need to retrieve it or create derived resources. It also provides the ability to retry requests.
         *
         * @alias Resource
         * @constructor
         *
         * @param {String|Object} options A url or an object with the following properties
         * @param {String} options.url The url of the resource.
         * @param {Object} [options.queryParameters] An object containing query parameters that will be sent when retrieving the resource.
         * @param {Object} [options.templateValues] Key/Value pairs that are used to replace template values (eg. {x}).
         * @param {Object} [options.headers={}] Additional HTTP headers that will be sent.
         * @param {DefaultProxy} [options.proxy] A proxy to be used when loading the resource.
         * @param {Resource~RetryCallback} [options.retryCallback] The Function to call when a request for this resource fails. If it returns true, the request will be retried.
         * @param {Number} [options.retryAttempts=0] The number of times the retryCallback should be called before giving up.
         * @param {Request} [options.request] A Request object that will be used. Intended for internal use only.
         *
         * @example
         * function refreshTokenRetryCallback(resource, error) {
         *   if (error.statusCode === 403) {
         *     // 403 status code means a new token should be generated
         *     return getNewAccessToken()
         *       .then(function(token) {
         *         resource.queryParameters.access_token = token;
         *         return true;
         *       })
         *       .otherwise(function() {
         *         return false;
         *       });
         *   }
         *
         *   return false;
         * }
         *
         * var resource = new Resource({
         *    url: 'http://server.com/path/to/resource.json',
         *    proxy: new DefaultProxy('/proxy/'),
         *    headers: {
         *      'X-My-Header': 'valueOfHeader'
         *    },
         *    queryParameters: {
         *      'access_token': '123-435-456-000'
         *    },
         *    retryCallback: refreshTokenRetryCallback,
         *    retryAttempts: 1
         * });
         */
        function Resource(options) {
            options = when.defaultValue(options, when.defaultValue.EMPTY_OBJECT);
            if (typeof options === 'string') {
                options = {
                    url: options
                };
            }
 
            //>>includeStart('debug', pragmas.debug);
            Check.Check.typeOf.string('options.url', options.url);
            //>>includeEnd('debug');
 
            this._url = undefined;
            this._templateValues = defaultClone(options.templateValues, {});
            this._queryParameters = defaultClone(options.queryParameters, {});
 
            /**
             * Additional HTTP headers that will be sent with the request.
             *
             * @type {Object}
             */
            this.headers = defaultClone(options.headers, {});
 
            /**
             * A Request object that will be used. Intended for internal use only.
             *
             * @type {Request}
             */
            this.request = when.defaultValue(options.request, new Request());
 
            /**
             * A proxy to be used when loading the resource.
             *
             * @type {DefaultProxy}
             */
            this.proxy = options.proxy;
 
            /**
             * Function to call when a request for this resource fails. If it returns true or a Promise that resolves to true, the request will be retried.
             *
             * @type {Function}
             */
            this.retryCallback = options.retryCallback;
 
            /**
             * The number of times the retryCallback should be called before giving up.
             *
             * @type {Number}
             */
            this.retryAttempts = when.defaultValue(options.retryAttempts, 0);
            this._retryCount = 0;
 
            var uri = new URI(options.url);
            parseQuery(uri, this, true, true);
 
            // Remove the fragment as it's not sent with a request
            uri.fragment = undefined;
 
            this._url = uri.toString();
        }
 
        /**
         * A helper function to create a resource depending on whether we have a String or a Resource
         *
         * @param {Resource|String} resource A Resource or a String to use when creating a new Resource.
         *
         * @returns {Resource} If resource is a String, a Resource constructed with the url and options. Otherwise the resource parameter is returned.
         *
         * @private
         */
        Resource.createIfNeeded = function(resource) {
            if (resource instanceof Resource) {
                // Keep existing request object. This function is used internally to duplicate a Resource, so that it can't
                //  be modified outside of a class that holds it (eg. an imagery or terrain provider). Since the Request objects
                //  are managed outside of the providers, by the tile loading code, we want to keep the request property the same so if it is changed
                //  in the underlying tiling code the requests for this resource will use it.
                return  resource.getDerivedResource({
                    request: resource.request
                });
            }
 
            if (typeof resource !== 'string') {
                return resource;
            }
 
            return new Resource({
                url: resource
            });
        };
 
        var supportsImageBitmapOptionsPromise;
        /**
         * A helper function to check whether createImageBitmap supports passing ImageBitmapOptions.
         *
         * @returns {Promise<Boolean>} A promise that resolves to true if this browser supports creating an ImageBitmap with options.
         *
         * @private
         */
        Resource.supportsImageBitmapOptions = function() {
            // Until the HTML folks figure out what to do about this, we need to actually try loading an image to
            // know if this browser supports passing options to the createImageBitmap function.
            // https://github.com/whatwg/html/pull/4248
            if (when.defined(supportsImageBitmapOptionsPromise)) {
                return supportsImageBitmapOptionsPromise;
            }
 
            if (typeof createImageBitmap !== 'function') {
                supportsImageBitmapOptionsPromise = when.when.resolve(false);
                return supportsImageBitmapOptionsPromise;
            }
 
            var imageDataUri = 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVQImWP4////fwAJ+wP9CNHoHgAAAABJRU5ErkJggg==';
 
            supportsImageBitmapOptionsPromise = Resource.fetchBlob({
                url : imageDataUri
            })
                .then(function(blob) {
                    return createImageBitmap(blob, {
                        imageOrientation: 'flipY',
                        premultiplyAlpha: 'none'
                    });
                })
                .then(function(imageBitmap) {
                    return true;
                })
                .otherwise(function() {
                    return false;
                });
 
            return supportsImageBitmapOptionsPromise;
        };
 
        Object.defineProperties(Resource, {
            /**
             * Returns true if blobs are supported.
             *
             * @memberof Resource
             * @type {Boolean}
             *
             * @readonly
             */
            isBlobSupported : {
                get : function() {
                    return xhrBlobSupported;
                }
            }
        });
 
        Object.defineProperties(Resource.prototype, {
            /**
             * Query parameters appended to the url.
             *
             * @memberof Resource.prototype
             * @type {Object}
             *
             * @readonly
             */
            queryParameters: {
                get: function() {
                    return this._queryParameters;
                }
            },
 
            /**
             * The key/value pairs used to replace template parameters in the url.
             *
             * @memberof Resource.prototype
             * @type {Object}
             *
             * @readonly
             */
            templateValues: {
                get: function() {
                    return this._templateValues;
                }
            },
 
            /**
             * The url to the resource with template values replaced, query string appended and encoded by proxy if one was set.
             *
             * @memberof Resource.prototype
             * @type {String}
             */
            url: {
                get: function() {
                    return this.getUrlComponent(true, true);
                },
                set: function(value) {
                    var uri = new URI(value);
 
                    parseQuery(uri, this, false);
 
                    // Remove the fragment as it's not sent with a request
                    uri.fragment = undefined;
 
                    this._url = uri.toString();
                }
            },
 
            /**
             * The file extension of the resource.
             *
             * @memberof Resource.prototype
             * @type {String}
             *
             * @readonly
             */
            extension: {
                get: function() {
                    return getExtensionFromUri(this._url);
                }
            },
 
            /**
             * True if the Resource refers to a data URI.
             *
             * @memberof Resource.prototype
             * @type {Boolean}
             */
            isDataUri: {
                get: function() {
                    return isDataUri(this._url);
                }
            },
 
            /**
             * True if the Resource refers to a blob URI.
             *
             * @memberof Resource.prototype
             * @type {Boolean}
             */
            isBlobUri: {
                get: function() {
                    return isBlobUri(this._url);
                }
            },
 
            /**
             * True if the Resource refers to a cross origin URL.
             *
             * @memberof Resource.prototype
             * @type {Boolean}
             */
            isCrossOriginUrl: {
                get: function() {
                    return isCrossOriginUrl(this._url);
                }
            },
 
            /**
             * True if the Resource has request headers. This is equivalent to checking if the headers property has any keys.
             *
             * @memberof Resource.prototype
             * @type {Boolean}
             */
            hasHeaders: {
                get: function() {
                    return (Object.keys(this.headers).length > 0);
                }
            }
        });
 
        /**
         * Returns the url, optional with the query string and processed by a proxy.
         *
         * @param {Boolean} [query=false] If true, the query string is included.
         * @param {Boolean} [proxy=false] If true, the url is processed the proxy object if defined.
         *
         * @returns {String} The url with all the requested components.
         */
        Resource.prototype.getUrlComponent = function(query, proxy) {
            if(this.isDataUri) {
                return this._url;
            }
 
            var uri = new URI(this._url);
 
            if (query) {
                stringifyQuery(uri, this);
            }
 
            // objectToQuery escapes the placeholders.  Undo that.
            var url = uri.toString().replace(/%7B/g, '{').replace(/%7D/g, '}');
 
            var templateValues = this._templateValues;
            url = url.replace(/{(.*?)}/g, function(match, key) {
                var replacement = templateValues[key];
                if (when.defined(replacement)) {
                    // use the replacement value from templateValues if there is one...
                    return encodeURIComponent(replacement);
                }
                // otherwise leave it unchanged
                return match;
            });
 
            if (proxy && when.defined(this.proxy)) {
                url = this.proxy.getURL(url);
            }
            return url;
        };
 
        /**
         * Combines the specified object and the existing query parameters. This allows you to add many parameters at once,
         *  as opposed to adding them one at a time to the queryParameters property. If a value is already set, it will be replaced with the new value.
         *
         * @param {Object} params The query parameters
         * @param {Boolean} [useAsDefault=false] If true the params will be used as the default values, so they will only be set if they are undefined.
         */
        Resource.prototype.setQueryParameters = function(params, useAsDefault) {
            if (useAsDefault) {
                this._queryParameters = combineQueryParameters(this._queryParameters, params, false);
            } else {
                this._queryParameters = combineQueryParameters(params, this._queryParameters, false);
            }
        };
 
        /**
         * Combines the specified object and the existing query parameters. This allows you to add many parameters at once,
         *  as opposed to adding them one at a time to the queryParameters property.
         *
         * @param {Object} params The query parameters
         */
        Resource.prototype.appendQueryParameters = function(params) {
            this._queryParameters = combineQueryParameters(params, this._queryParameters, true);
        };
 
        /**
         * Combines the specified object and the existing template values. This allows you to add many values at once,
         *  as opposed to adding them one at a time to the templateValues property. If a value is already set, it will become an array and the new value will be appended.
         *
         * @param {Object} template The template values
         * @param {Boolean} [useAsDefault=false] If true the values will be used as the default values, so they will only be set if they are undefined.
         */
        Resource.prototype.setTemplateValues = function(template, useAsDefault) {
            if (useAsDefault) {
                this._templateValues = combine(this._templateValues, template);
            } else {
                this._templateValues = combine(template, this._templateValues);
            }
        };
 
        /**
         * Returns a resource relative to the current instance. All properties remain the same as the current instance unless overridden in options.
         *
         * @param {Object} options An object with the following properties
         * @param {String} [options.url]  The url that will be resolved relative to the url of the current instance.
         * @param {Object} [options.queryParameters] An object containing query parameters that will be combined with those of the current instance.
         * @param {Object} [options.templateValues] Key/Value pairs that are used to replace template values (eg. {x}). These will be combined with those of the current instance.
         * @param {Object} [options.headers={}] Additional HTTP headers that will be sent.
         * @param {DefaultProxy} [options.proxy] A proxy to be used when loading the resource.
         * @param {Resource~RetryCallback} [options.retryCallback] The function to call when loading the resource fails.
         * @param {Number} [options.retryAttempts] The number of times the retryCallback should be called before giving up.
         * @param {Request} [options.request] A Request object that will be used. Intended for internal use only.
         * @param {Boolean} [options.preserveQueryParameters=false] If true, this will keep all query parameters from the current resource and derived resource. If false, derived parameters will replace those of the current resource.
         *
         * @returns {Resource} The resource derived from the current one.
         */
        Resource.prototype.getDerivedResource = function(options) {
            var resource = this.clone();
            resource._retryCount = 0;
 
            if (when.defined(options.url)) {
                var uri = new URI(options.url);
 
                var preserveQueryParameters = when.defaultValue(options.preserveQueryParameters, false);
                parseQuery(uri, resource, true, preserveQueryParameters);
 
                // Remove the fragment as it's not sent with a request
                uri.fragment = undefined;
 
                resource._url = uri.resolve(new URI(getAbsoluteUri(this._url))).toString();
            }
 
            if (when.defined(options.queryParameters)) {
                resource._queryParameters = combine(options.queryParameters, resource._queryParameters);
            }
            if (when.defined(options.templateValues)) {
                resource._templateValues = combine(options.templateValues, resource.templateValues);
            }
            if (when.defined(options.headers)) {
                resource.headers = combine(options.headers, resource.headers);
            }
            if (when.defined(options.proxy)) {
                resource.proxy = options.proxy;
            }
            if (when.defined(options.request)) {
                resource.request = options.request;
            }
            if (when.defined(options.retryCallback)) {
                resource.retryCallback = options.retryCallback;
            }
            if (when.defined(options.retryAttempts)) {
                resource.retryAttempts = options.retryAttempts;
            }
 
            return resource;
        };
 
        /**
         * Called when a resource fails to load. This will call the retryCallback function if defined until retryAttempts is reached.
         *
         * @param {Error} [error] The error that was encountered.
         *
         * @returns {Promise<Boolean>} A promise to a boolean, that if true will cause the resource request to be retried.
         *
         * @private
         */
        Resource.prototype.retryOnError = function(error) {
            var retryCallback = this.retryCallback;
            if ((typeof retryCallback !== 'function') || (this._retryCount >= this.retryAttempts)) {
                return when.when(false);
            }
 
            var that = this;
            return when.when(retryCallback(this, error))
                .then(function(result) {
                    ++that._retryCount;
 
                    return result;
                });
        };
 
        /**
         * Duplicates a Resource instance.
         *
         * @param {Resource} [result] The object onto which to store the result.
         *
         * @returns {Resource} The modified result parameter or a new Resource instance if one was not provided.
         */
        Resource.prototype.clone = function(result) {
            if (!when.defined(result)) {
                result = new Resource({
                    url : this._url
                });
            }
 
            result._url = this._url;
            result._queryParameters = clone(this._queryParameters);
            result._templateValues = clone(this._templateValues);
            result.headers = clone(this.headers);
            result.proxy = this.proxy;
            result.retryCallback = this.retryCallback;
            result.retryAttempts = this.retryAttempts;
            result._retryCount = 0;
            result.request = this.request.clone();
 
            return result;
        };
 
        /**
         * Returns the base path of the Resource.
         *
         * @param {Boolean} [includeQuery = false] Whether or not to include the query string and fragment form the uri
         *
         * @returns {String} The base URI of the resource
         */
        Resource.prototype.getBaseUri = function(includeQuery) {
            return getBaseUri(this.getUrlComponent(includeQuery), includeQuery);
        };
 
        /**
         * Appends a forward slash to the URL.
         */
        Resource.prototype.appendForwardSlash = function() {
            this._url = appendForwardSlash(this._url);
        };
 
        /**
         * Asynchronously loads the resource as raw binary data.  Returns a promise that will resolve to
         * an ArrayBuffer once loaded, or reject if the resource failed to load.  The data is loaded
         * using XMLHttpRequest, which means that in order to make requests to another origin,
         * the server must have Cross-Origin Resource Sharing (CORS) headers enabled.
         *
         * @returns {Promise.<ArrayBuffer>|undefined} a promise that will resolve to the requested data when loaded. Returns undefined if <code>request.throttle</code> is true and the request does not have high enough priority.
         *
         * @example
         * // load a single URL asynchronously
         * resource.fetchArrayBuffer().then(function(arrayBuffer) {
         *     // use the data
         * }).otherwise(function(error) {
         *     // an error occurred
         * });
         *
         * @see {@link http://www.w3.org/TR/cors/|Cross-Origin Resource Sharing}
         * @see {@link http://wiki.commonjs.org/wiki/Promises/A|CommonJS Promises/A}
         */
        Resource.prototype.fetchArrayBuffer = function () {
            return this.fetch({
                responseType : 'arraybuffer'
            });
        };
 
        /**
         * Creates a Resource and calls fetchArrayBuffer() on it.
         *
         * @param {String|Object} options A url or an object with the following properties
         * @param {String} options.url The url of the resource.
         * @param {Object} [options.queryParameters] An object containing query parameters that will be sent when retrieving the resource.
         * @param {Object} [options.templateValues] Key/Value pairs that are used to replace template values (eg. {x}).
         * @param {Object} [options.headers={}] Additional HTTP headers that will be sent.
         * @param {DefaultProxy} [options.proxy] A proxy to be used when loading the resource.
         * @param {Resource~RetryCallback} [options.retryCallback] The Function to call when a request for this resource fails. If it returns true, the request will be retried.
         * @param {Number} [options.retryAttempts=0] The number of times the retryCallback should be called before giving up.
         * @param {Request} [options.request] A Request object that will be used. Intended for internal use only.
         * @returns {Promise.<ArrayBuffer>|undefined} a promise that will resolve to the requested data when loaded. Returns undefined if <code>request.throttle</code> is true and the request does not have high enough priority.
         */
        Resource.fetchArrayBuffer = function (options) {
            var resource = new Resource(options);
            return resource.fetchArrayBuffer();
        };
 
        /**
         * Asynchronously loads the given resource as a blob.  Returns a promise that will resolve to
         * a Blob once loaded, or reject if the resource failed to load.  The data is loaded
         * using XMLHttpRequest, which means that in order to make requests to another origin,
         * the server must have Cross-Origin Resource Sharing (CORS) headers enabled.
         *
         * @returns {Promise.<Blob>|undefined} a promise that will resolve to the requested data when loaded. Returns undefined if <code>request.throttle</code> is true and the request does not have high enough priority.
         *
         * @example
         * // load a single URL asynchronously
         * resource.fetchBlob().then(function(blob) {
         *     // use the data
         * }).otherwise(function(error) {
         *     // an error occurred
         * });
         *
         * @see {@link http://www.w3.org/TR/cors/|Cross-Origin Resource Sharing}
         * @see {@link http://wiki.commonjs.org/wiki/Promises/A|CommonJS Promises/A}
         */
        Resource.prototype.fetchBlob = function () {
            return this.fetch({
                responseType : 'blob'
            });
        };
 
        /**
         * Creates a Resource and calls fetchBlob() on it.
         *
         * @param {String|Object} options A url or an object with the following properties
         * @param {String} options.url The url of the resource.
         * @param {Object} [options.queryParameters] An object containing query parameters that will be sent when retrieving the resource.
         * @param {Object} [options.templateValues] Key/Value pairs that are used to replace template values (eg. {x}).
         * @param {Object} [options.headers={}] Additional HTTP headers that will be sent.
         * @param {DefaultProxy} [options.proxy] A proxy to be used when loading the resource.
         * @param {Resource~RetryCallback} [options.retryCallback] The Function to call when a request for this resource fails. If it returns true, the request will be retried.
         * @param {Number} [options.retryAttempts=0] The number of times the retryCallback should be called before giving up.
         * @param {Request} [options.request] A Request object that will be used. Intended for internal use only.
         * @returns {Promise.<Blob>|undefined} a promise that will resolve to the requested data when loaded. Returns undefined if <code>request.throttle</code> is true and the request does not have high enough priority.
         */
        Resource.fetchBlob = function (options) {
            var resource = new Resource(options);
            return resource.fetchBlob();
        };
 
        /**
         * Asynchronously loads the given image resource.  Returns a promise that will resolve to
         * an {@link https://developer.mozilla.org/en-US/docs/Web/API/ImageBitmap|ImageBitmap} if <code>preferImageBitmap</code> is true and the browser supports <code>createImageBitmap</code> or otherwise an
         * {@link https://developer.mozilla.org/en-US/docs/Web/API/HTMLImageElement|Image} once loaded, or reject if the image failed to load.
         *
         * @param {Object} [options] An object with the following properties.
         * @param {Boolean} [options.preferBlob=false] If true, we will load the image via a blob.
         * @param {Boolean} [options.preferImageBitmap=false] If true, image will be decoded during fetch and an <code>ImageBitmap</code> is returned.
         * @param {Boolean} [options.flipY=false] If true, image will be vertically flipped during decode. Only applies if the browser supports <code>createImageBitmap</code>.
         * @returns {Promise.<ImageBitmap>|Promise.<Image>|undefined} a promise that will resolve to the requested data when loaded. Returns undefined if <code>request.throttle</code> is true and the request does not have high enough priority.
         *
         *
         * @example
         * // load a single image asynchronously
         * resource.fetchImage().then(function(image) {
         *     // use the loaded image
         * }).otherwise(function(error) {
         *     // an error occurred
         * });
         *
         * // load several images in parallel
         * when.all([resource1.fetchImage(), resource2.fetchImage()]).then(function(images) {
         *     // images is an array containing all the loaded images
         * });
         *
         * @see {@link http://www.w3.org/TR/cors/|Cross-Origin Resource Sharing}
         * @see {@link http://wiki.commonjs.org/wiki/Promises/A|CommonJS Promises/A}
         */
        Resource.prototype.fetchImage = function (options) {
            options = when.defaultValue(options, when.defaultValue.EMPTY_OBJECT);
            var preferImageBitmap = when.defaultValue(options.preferImageBitmap, false);
            var preferBlob = when.defaultValue(options.preferBlob, false);
            var flipY = when.defaultValue(options.flipY, false);
 
            checkAndResetRequest(this.request);
 
            // We try to load the image normally if
            // 1. Blobs aren't supported
            // 2. It's a data URI
            // 3. It's a blob URI
            // 4. It doesn't have request headers and we preferBlob is false
            if (!xhrBlobSupported || this.isDataUri || this.isBlobUri || (!this.hasHeaders && !preferBlob)) {
                return fetchImage({
                    resource: this,
                    flipY: flipY,
                    preferImageBitmap: preferImageBitmap
                });
            }
 
            var blobPromise = this.fetchBlob();
            if (!when.defined(blobPromise)) {
                return;
            }
 
            var supportsImageBitmap;
            var useImageBitmap;
            var generatedBlobResource;
            var generatedBlob;
            return Resource.supportsImageBitmapOptions()
                .then(function(result) {
                    supportsImageBitmap = result;
                    useImageBitmap = supportsImageBitmap && preferImageBitmap;
                    return blobPromise;
                })
                .then(function(blob) {
                    if (!when.defined(blob)) {
                        return;
                    }
                    generatedBlob = blob;
                    if (useImageBitmap) {
                        return Resource.createImageBitmapFromBlob(blob, {
                            flipY: flipY,
                            premultiplyAlpha: false
                        });
                    }
                    var blobUrl = window.URL.createObjectURL(blob);
                    generatedBlobResource = new Resource({
                        url: blobUrl
                    });
 
                    return fetchImage({
                        resource: generatedBlobResource,
                        flipY: flipY,
                        preferImageBitmap: false
                    });
                })
                .then(function(image) {
                    if (!when.defined(image)) {
                        return;
                    }
 
                    // The blob object may be needed for use by a TileDiscardPolicy,
                    // so attach it to the image.
                    image.blob = generatedBlob;
 
                    if (useImageBitmap) {
                        return image;
                    }
 
                    window.URL.revokeObjectURL(generatedBlobResource.url);
                    return image;
                })
                .otherwise(function(error) {
                    if (when.defined(generatedBlobResource)) {
                        window.URL.revokeObjectURL(generatedBlobResource.url);
                    }
 
                    // If the blob load succeeded but the image decode failed, attach the blob
                    // to the error object for use by a TileDiscardPolicy.
                    // In particular, BingMapsImageryProvider uses this to detect the
                    // zero-length response that is returned when a tile is not available.
                    error.blob = generatedBlob;
 
                    return when.when.reject(error);
                });
        };
 
        /**
         * Fetches an image and returns a promise to it.
         *
         * @param {Object} [options] An object with the following properties.
         * @param {Resource} [options.resource] Resource object that points to an image to fetch.
         * @param {Boolean} [options.preferImageBitmap] If true, image will be decoded during fetch and an <code>ImageBitmap</code> is returned.
         * @param {Boolean} [options.flipY] If true, image will be vertically flipped during decode. Only applies if the browser supports <code>createImageBitmap</code>.
         *
         * @private
         */
        function fetchImage(options) {
            var resource = options.resource;
            var flipY = options.flipY;
            var preferImageBitmap = options.preferImageBitmap;
 
            var request = resource.request;
            request.url = resource.url;
            request.requestFunction = function() {
                var crossOrigin = false;
 
                // data URIs can't have crossorigin set.
                if (!resource.isDataUri && !resource.isBlobUri) {
                    crossOrigin = resource.isCrossOriginUrl;
                }
 
                var deferred = when.when.defer();
                Resource._Implementations.createImage(request, crossOrigin, deferred, flipY, preferImageBitmap);
 
                return deferred.promise;
            };
 
            var promise = RequestScheduler.request(request);
            if (!when.defined(promise)) {
                return;
            }
 
            return promise
                .otherwise(function(e) {
                    // Don't retry cancelled or otherwise aborted requests
                    if (request.state !== RequestState$1.FAILED) {
                        return when.when.reject(e);
                    }
 
                    return resource.retryOnError(e)
                        .then(function(retry) {
                            if (retry) {
                                // Reset request so it can try again
                                request.state = RequestState$1.UNISSUED;
                                request.deferred = undefined;
 
                                return fetchImage({
                                    resource: resource,
                                    flipY: flipY,
                                    preferImageBitmap: preferImageBitmap
                                });
                            }
 
                            return when.when.reject(e);
                        });
                });
        }
 
        /**
         * Creates a Resource and calls fetchImage() on it.
         *
         * @param {String|Object} options A url or an object with the following properties
         * @param {String} options.url The url of the resource.
         * @param {Object} [options.queryParameters] An object containing query parameters that will be sent when retrieving the resource.
         * @param {Object} [options.templateValues] Key/Value pairs that are used to replace template values (eg. {x}).
         * @param {Object} [options.headers={}] Additional HTTP headers that will be sent.
         * @param {DefaultProxy} [options.proxy] A proxy to be used when loading the resource.
         * @param {Boolean} [options.flipY=false] Whether to vertically flip the image during fetch and decode. Only applies when requesting an image and the browser supports <code>createImageBitmap</code>.
         * @param {Resource~RetryCallback} [options.retryCallback] The Function to call when a request for this resource fails. If it returns true, the request will be retried.
         * @param {Number} [options.retryAttempts=0] The number of times the retryCallback should be called before giving up.
         * @param {Request} [options.request] A Request object that will be used. Intended for internal use only.
         * @param {Boolean} [options.preferBlob=false]  If true, we will load the image via a blob.
         * @param {Boolean} [options.preferImageBitmap=false] If true, image will be decoded during fetch and an <code>ImageBitmap</code> is returned.
         * @returns {Promise.<ImageBitmap>|Promise.<Image>|undefined} a promise that will resolve to the requested data when loaded. Returns undefined if <code>request.throttle</code> is true and the request does not have high enough priority.
         */
        Resource.fetchImage = function (options) {
            var resource = new Resource(options);
            return resource.fetchImage({
                flipY: options.flipY,
                preferBlob: options.preferBlob,
                preferImageBitmap: options.preferImageBitmap
            });
        };
 
        /**
         * Asynchronously loads the given resource as text.  Returns a promise that will resolve to
         * a String once loaded, or reject if the resource failed to load.  The data is loaded
         * using XMLHttpRequest, which means that in order to make requests to another origin,
         * the server must have Cross-Origin Resource Sharing (CORS) headers enabled.
         *
         * @returns {Promise.<String>|undefined} a promise that will resolve to the requested data when loaded. Returns undefined if <code>request.throttle</code> is true and the request does not have high enough priority.
         *
         * @example
         * // load text from a URL, setting a custom header
         * var resource = new Resource({
         *   url: 'http://someUrl.com/someJson.txt',
         *   headers: {
         *     'X-Custom-Header' : 'some value'
         *   }
         * });
         * resource.fetchText().then(function(text) {
         *     // Do something with the text
         * }).otherwise(function(error) {
         *     // an error occurred
         * });
         *
         * @see {@link https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest|XMLHttpRequest}
         * @see {@link http://www.w3.org/TR/cors/|Cross-Origin Resource Sharing}
         * @see {@link http://wiki.commonjs.org/wiki/Promises/A|CommonJS Promises/A}
         */
        Resource.prototype.fetchText = function() {
            return this.fetch({
                responseType : 'text'
            });
        };
 
        /**
         * Creates a Resource and calls fetchText() on it.
         *
         * @param {String|Object} options A url or an object with the following properties
         * @param {String} options.url The url of the resource.
         * @param {Object} [options.queryParameters] An object containing query parameters that will be sent when retrieving the resource.
         * @param {Object} [options.templateValues] Key/Value pairs that are used to replace template values (eg. {x}).
         * @param {Object} [options.headers={}] Additional HTTP headers that will be sent.
         * @param {DefaultProxy} [options.proxy] A proxy to be used when loading the resource.
         * @param {Resource~RetryCallback} [options.retryCallback] The Function to call when a request for this resource fails. If it returns true, the request will be retried.
         * @param {Number} [options.retryAttempts=0] The number of times the retryCallback should be called before giving up.
         * @param {Request} [options.request] A Request object that will be used. Intended for internal use only.
         * @returns {Promise.<String>|undefined} a promise that will resolve to the requested data when loaded. Returns undefined if <code>request.throttle</code> is true and the request does not have high enough priority.
         */
        Resource.fetchText = function (options) {
            var resource = new Resource(options);
            return resource.fetchText();
        };
 
        // note: &#42;&#47;&#42; below is */* but that ends the comment block early
        /**
         * Asynchronously loads the given resource as JSON.  Returns a promise that will resolve to
         * a JSON object once loaded, or reject if the resource failed to load.  The data is loaded
         * using XMLHttpRequest, which means that in order to make requests to another origin,
         * the server must have Cross-Origin Resource Sharing (CORS) headers enabled. This function
         * adds 'Accept: application/json,&#42;&#47;&#42;;q=0.01' to the request headers, if not
         * already specified.
         *
         * @returns {Promise.<Object>|undefined} a promise that will resolve to the requested data when loaded. Returns undefined if <code>request.throttle</code> is true and the request does not have high enough priority.
         *
         *
         * @example
         * resource.fetchJson().then(function(jsonData) {
         *     // Do something with the JSON object
         * }).otherwise(function(error) {
         *     // an error occurred
         * });
         *
         * @see {@link http://www.w3.org/TR/cors/|Cross-Origin Resource Sharing}
         * @see {@link http://wiki.commonjs.org/wiki/Promises/A|CommonJS Promises/A}
         */
        Resource.prototype.fetchJson = function() {
            var promise = this.fetch({
                responseType : 'text',
                headers: {
                    Accept : 'application/json,*/*;q=0.01'
                }
            });
 
            if (!when.defined(promise)) {
                return undefined;
            }
 
            return promise
                .then(function(value) {
                    if (!when.defined(value)) {
                        return;
                    }
                    return JSON.parse(value);
                });
        };
 
        /**
         * Creates a Resource and calls fetchJson() on it.
         *
         * @param {String|Object} options A url or an object with the following properties
         * @param {String} options.url The url of the resource.
         * @param {Object} [options.queryParameters] An object containing query parameters that will be sent when retrieving the resource.
         * @param {Object} [options.templateValues] Key/Value pairs that are used to replace template values (eg. {x}).
         * @param {Object} [options.headers={}] Additional HTTP headers that will be sent.
         * @param {DefaultProxy} [options.proxy] A proxy to be used when loading the resource.
         * @param {Resource~RetryCallback} [options.retryCallback] The Function to call when a request for this resource fails. If it returns true, the request will be retried.
         * @param {Number} [options.retryAttempts=0] The number of times the retryCallback should be called before giving up.
         * @param {Request} [options.request] A Request object that will be used. Intended for internal use only.
         * @returns {Promise.<Object>|undefined} a promise that will resolve to the requested data when loaded. Returns undefined if <code>request.throttle</code> is true and the request does not have high enough priority.
         */
        Resource.fetchJson = function (options) {
            var resource = new Resource(options);
            return resource.fetchJson();
        };
 
        /**
         * Asynchronously loads the given resource as XML.  Returns a promise that will resolve to
         * an XML Document once loaded, or reject if the resource failed to load.  The data is loaded
         * using XMLHttpRequest, which means that in order to make requests to another origin,
         * the server must have Cross-Origin Resource Sharing (CORS) headers enabled.
         *
         * @returns {Promise.<XMLDocument>|undefined} a promise that will resolve to the requested data when loaded. Returns undefined if <code>request.throttle</code> is true and the request does not have high enough priority.
         *
         *
         * @example
         * // load XML from a URL, setting a custom header
         * Cesium.loadXML('http://someUrl.com/someXML.xml', {
         *   'X-Custom-Header' : 'some value'
         * }).then(function(document) {
         *     // Do something with the document
         * }).otherwise(function(error) {
         *     // an error occurred
         * });
         *
         * @see {@link https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest|XMLHttpRequest}
         * @see {@link http://www.w3.org/TR/cors/|Cross-Origin Resource Sharing}
         * @see {@link http://wiki.commonjs.org/wiki/Promises/A|CommonJS Promises/A}
         */
        Resource.prototype.fetchXML = function() {
            return this.fetch({
                responseType : 'document',
                overrideMimeType : 'text/xml'
            });
        };
 
        /**
         * Creates a Resource and calls fetchXML() on it.
         *
         * @param {String|Object} options A url or an object with the following properties
         * @param {String} options.url The url of the resource.
         * @param {Object} [options.queryParameters] An object containing query parameters that will be sent when retrieving the resource.
         * @param {Object} [options.templateValues] Key/Value pairs that are used to replace template values (eg. {x}).
         * @param {Object} [options.headers={}] Additional HTTP headers that will be sent.
         * @param {DefaultProxy} [options.proxy] A proxy to be used when loading the resource.
         * @param {Resource~RetryCallback} [options.retryCallback] The Function to call when a request for this resource fails. If it returns true, the request will be retried.
         * @param {Number} [options.retryAttempts=0] The number of times the retryCallback should be called before giving up.
         * @param {Request} [options.request] A Request object that will be used. Intended for internal use only.
         * @returns {Promise.<XMLDocument>|undefined} a promise that will resolve to the requested data when loaded. Returns undefined if <code>request.throttle</code> is true and the request does not have high enough priority.
         */
        Resource.fetchXML = function (options) {
            var resource = new Resource(options);
            return resource.fetchXML();
        };
 
        /**
         * Requests a resource using JSONP.
         *
         * @param {String} [callbackParameterName='callback'] The callback parameter name that the server expects.
         * @returns {Promise.<Object>|undefined} a promise that will resolve to the requested data when loaded. Returns undefined if <code>request.throttle</code> is true and the request does not have high enough priority.
         *
         *
         * @example
         * // load a data asynchronously
         * resource.fetchJsonp().then(function(data) {
         *     // use the loaded data
         * }).otherwise(function(error) {
         *     // an error occurred
         * });
         *
         * @see {@link http://wiki.commonjs.org/wiki/Promises/A|CommonJS Promises/A}
         */
        Resource.prototype.fetchJsonp = function(callbackParameterName) {
            callbackParameterName = when.defaultValue(callbackParameterName, 'callback');
 
            checkAndResetRequest(this.request);
 
            //generate a unique function name
            var functionName;
            do {
                functionName = 'loadJsonp' + Math.random().toString().substring(2, 8);
            } while (when.defined(window[functionName]));
 
            return fetchJsonp(this, callbackParameterName, functionName);
        };
 
        function fetchJsonp(resource, callbackParameterName, functionName) {
            var callbackQuery = {};
            callbackQuery[callbackParameterName] = functionName;
            resource.setQueryParameters(callbackQuery);
 
            var request = resource.request;
            request.url = resource.url;
            request.requestFunction = function() {
                var deferred = when.when.defer();
 
                //assign a function with that name in the global scope
                window[functionName] = function(data) {
                    deferred.resolve(data);
 
                    try {
                        delete window[functionName];
                    } catch (e) {
                        window[functionName] = undefined;
                    }
                };
 
                Resource._Implementations.loadAndExecuteScript(resource.url, functionName, deferred);
                return deferred.promise;
            };
 
            var promise = RequestScheduler.request(request);
            if (!when.defined(promise)) {
                return;
            }
 
            return promise
                .otherwise(function(e) {
                    if (request.state !== RequestState$1.FAILED) {
                        return when.when.reject(e);
                    }
 
                    return resource.retryOnError(e)
                        .then(function(retry) {
                            if (retry) {
                                // Reset request so it can try again
                                request.state = RequestState$1.UNISSUED;
                                request.deferred = undefined;
 
                                return fetchJsonp(resource, callbackParameterName, functionName);
                            }
 
                            return when.when.reject(e);
                        });
                });
        }
 
        /**
         * Creates a Resource from a URL and calls fetchJsonp() on it.
         *
         * @param {String|Object} options A url or an object with the following properties
         * @param {String} options.url The url of the resource.
         * @param {Object} [options.queryParameters] An object containing query parameters that will be sent when retrieving the resource.
         * @param {Object} [options.templateValues] Key/Value pairs that are used to replace template values (eg. {x}).
         * @param {Object} [options.headers={}] Additional HTTP headers that will be sent.
         * @param {DefaultProxy} [options.proxy] A proxy to be used when loading the resource.
         * @param {Resource~RetryCallback} [options.retryCallback] The Function to call when a request for this resource fails. If it returns true, the request will be retried.
         * @param {Number} [options.retryAttempts=0] The number of times the retryCallback should be called before giving up.
         * @param {Request} [options.request] A Request object that will be used. Intended for internal use only.
         * @param {String} [options.callbackParameterName='callback'] The callback parameter name that the server expects.
         * @returns {Promise.<Object>|undefined} a promise that will resolve to the requested data when loaded. Returns undefined if <code>request.throttle</code> is true and the request does not have high enough priority.
         */
        Resource.fetchJsonp = function (options) {
            var resource = new Resource(options);
            return resource.fetchJsonp(options.callbackParameterName);
        };
 
        /**
         * @private
         */
        Resource.prototype._makeRequest = function(options) {
            var resource = this;
            checkAndResetRequest(resource.request);
 
            var request = resource.request;
            request.url = resource.url;
 
            request.requestFunction = function(url) {
                var responseType = options.responseType;
                var headers = combine(options.headers, resource.headers);
                var overrideMimeType = options.overrideMimeType;
                var method = options.method;
                var data = options.data;
                var deferred = when.when.defer();
                var newUrl = when.defined(url) ? url : resource.url;
                var xhr = Resource._Implementations.loadWithXhr(newUrl, responseType, method, data, headers, deferred, overrideMimeType);
                if (when.defined(xhr) && when.defined(xhr.abort)) {
                    request.cancelFunction = function() {
                        xhr.abort();
                    };
                }
                return deferred.promise;
            };
 
            var promise = RequestScheduler.request(request);
            if (!when.defined(promise)) {
                return;
            }
 
            return promise
                .then(function(data) {
                    return data;
                })
                .otherwise(function(e) {
                    if (request.state !== RequestState$1.FAILED) {
                        return when.when.reject(e);
                    }
 
                    return resource.retryOnError(e)
                        .then(function(retry) {
                            if (retry) {
                                // Reset request so it can try again
                                request.state = RequestState$1.UNISSUED;
                                request.deferred = undefined;
 
                                return resource.fetch(options);
                            }
 
                            return when.when.reject(e);
                        });
                });
        };
 
        var dataUriRegex$1 = /^data:(.*?)(;base64)?,(.*)$/;
 
        function decodeDataUriText(isBase64, data) {
            var result = decodeURIComponent(data);
            if (isBase64) {
                return atob(result);
            }
            return result;
        }
 
        function decodeDataUriArrayBuffer(isBase64, data) {
            var byteString = decodeDataUriText(isBase64, data);
            var buffer = new ArrayBuffer(byteString.length);
            var view = new Uint8Array(buffer);
            for (var i = 0; i < byteString.length; i++) {
                view[i] = byteString.charCodeAt(i);
            }
            return buffer;
        }
 
        function decodeDataUri(dataUriRegexResult, responseType) {
            responseType = when.defaultValue(responseType, '');
            var mimeType = dataUriRegexResult[1];
            var isBase64 = !!dataUriRegexResult[2];
            var data = dataUriRegexResult[3];
 
            switch (responseType) {
                case '':
                case 'text':
                    return decodeDataUriText(isBase64, data);
                case 'arraybuffer':
                    return decodeDataUriArrayBuffer(isBase64, data);
                case 'blob':
                    var buffer = decodeDataUriArrayBuffer(isBase64, data);
                    return new Blob([buffer], {
                        type : mimeType
                    });
                case 'document':
                    var parser = new DOMParser();
                    return parser.parseFromString(decodeDataUriText(isBase64, data), mimeType);
                case 'json':
                    return JSON.parse(decodeDataUriText(isBase64, data));
                default:
                    //>>includeStart('debug', pragmas.debug);
                    throw new Check.DeveloperError('Unhandled responseType: ' + responseType);
                //>>includeEnd('debug');
            }
        }
 
        /**
         * Asynchronously loads the given resource.  Returns a promise that will resolve to
         * the result once loaded, or reject if the resource failed to load.  The data is loaded
         * using XMLHttpRequest, which means that in order to make requests to another origin,
         * the server must have Cross-Origin Resource Sharing (CORS) headers enabled. It's recommended that you use
         * the more specific functions eg. fetchJson, fetchBlob, etc.
         *
         * @param {Object} [options] Object with the following properties:
         * @param {String} [options.responseType] The type of response.  This controls the type of item returned.
         * @param {Object} [options.headers] Additional HTTP headers to send with the request, if any.
         * @param {String} [options.overrideMimeType] Overrides the MIME type returned by the server.
         * @returns {Promise.<Object>|undefined} a promise that will resolve to the requested data when loaded. Returns undefined if <code>request.throttle</code> is true and the request does not have high enough priority.
         *
         *
         * @example
         * resource.fetch()
         *   .then(function(body) {
         *       // use the data
         *   }).otherwise(function(error) {
         *       // an error occurred
         *   });
         *
         * @see {@link http://www.w3.org/TR/cors/|Cross-Origin Resource Sharing}
         * @see {@link http://wiki.commonjs.org/wiki/Promises/A|CommonJS Promises/A}
         */
        Resource.prototype.fetch = function(options) {
            options = defaultClone(options, {});
            options.method = 'GET';
 
            return this._makeRequest(options);
        };
 
        /**
         * Creates a Resource from a URL and calls fetch() on it.
         *
         * @param {String|Object} options A url or an object with the following properties
         * @param {String} options.url The url of the resource.
         * @param {Object} [options.queryParameters] An object containing query parameters that will be sent when retrieving the resource.
         * @param {Object} [options.templateValues] Key/Value pairs that are used to replace template values (eg. {x}).
         * @param {Object} [options.headers={}] Additional HTTP headers that will be sent.
         * @param {DefaultProxy} [options.proxy] A proxy to be used when loading the resource.
         * @param {Resource~RetryCallback} [options.retryCallback] The Function to call when a request for this resource fails. If it returns true, the request will be retried.
         * @param {Number} [options.retryAttempts=0] The number of times the retryCallback should be called before giving up.
         * @param {Request} [options.request] A Request object that will be used. Intended for internal use only.
         * @param {String} [options.responseType] The type of response.  This controls the type of item returned.
         * @param {String} [options.overrideMimeType] Overrides the MIME type returned by the server.
         * @returns {Promise.<Object>|undefined} a promise that will resolve to the requested data when loaded. Returns undefined if <code>request.throttle</code> is true and the request does not have high enough priority.
         */
        Resource.fetch = function (options) {
            var resource = new Resource(options);
            return resource.fetch({
                // Make copy of just the needed fields because headers can be passed to both the constructor and to fetch
                responseType: options.responseType,
                overrideMimeType: options.overrideMimeType
            });
        };
 
        /**
         * Asynchronously deletes the given resource.  Returns a promise that will resolve to
         * the result once loaded, or reject if the resource failed to load.  The data is loaded
         * using XMLHttpRequest, which means that in order to make requests to another origin,
         * the server must have Cross-Origin Resource Sharing (CORS) headers enabled.
         *
         * @param {Object} [options] Object with the following properties:
         * @param {String} [options.responseType] The type of response.  This controls the type of item returned.
         * @param {Object} [options.headers] Additional HTTP headers to send with the request, if any.
         * @param {String} [options.overrideMimeType] Overrides the MIME type returned by the server.
         * @returns {Promise.<Object>|undefined} a promise that will resolve to the requested data when loaded. Returns undefined if <code>request.throttle</code> is true and the request does not have high enough priority.
         *
         *
         * @example
         * resource.delete()
         *   .then(function(body) {
         *       // use the data
         *   }).otherwise(function(error) {
         *       // an error occurred
         *   });
         *
         * @see {@link http://www.w3.org/TR/cors/|Cross-Origin Resource Sharing}
         * @see {@link http://wiki.commonjs.org/wiki/Promises/A|CommonJS Promises/A}
         */
        Resource.prototype.delete = function(options) {
            options = defaultClone(options, {});
            options.method = 'DELETE';
 
            return this._makeRequest(options);
        };
 
        /**
         * Creates a Resource from a URL and calls delete() on it.
         *
         * @param {String|Object} options A url or an object with the following properties
         * @param {String} options.url The url of the resource.
         * @param {Object} [options.data] Data that is posted with the resource.
         * @param {Object} [options.queryParameters] An object containing query parameters that will be sent when retrieving the resource.
         * @param {Object} [options.templateValues] Key/Value pairs that are used to replace template values (eg. {x}).
         * @param {Object} [options.headers={}] Additional HTTP headers that will be sent.
         * @param {DefaultProxy} [options.proxy] A proxy to be used when loading the resource.
         * @param {Resource~RetryCallback} [options.retryCallback] The Function to call when a request for this resource fails. If it returns true, the request will be retried.
         * @param {Number} [options.retryAttempts=0] The number of times the retryCallback should be called before giving up.
         * @param {Request} [options.request] A Request object that will be used. Intended for internal use only.
         * @param {String} [options.responseType] The type of response.  This controls the type of item returned.
         * @param {String} [options.overrideMimeType] Overrides the MIME type returned by the server.
         * @returns {Promise.<Object>|undefined} a promise that will resolve to the requested data when loaded. Returns undefined if <code>request.throttle</code> is true and the request does not have high enough priority.
         */
        Resource.delete = function (options) {
            var resource = new Resource(options);
            return resource.delete({
                // Make copy of just the needed fields because headers can be passed to both the constructor and to fetch
                responseType: options.responseType,
                overrideMimeType: options.overrideMimeType,
                data: options.data
            });
        };
 
        /**
         * Asynchronously gets headers the given resource.  Returns a promise that will resolve to
         * the result once loaded, or reject if the resource failed to load.  The data is loaded
         * using XMLHttpRequest, which means that in order to make requests to another origin,
         * the server must have Cross-Origin Resource Sharing (CORS) headers enabled.
         *
         * @param {Object} [options] Object with the following properties:
         * @param {String} [options.responseType] The type of response.  This controls the type of item returned.
         * @param {Object} [options.headers] Additional HTTP headers to send with the request, if any.
         * @param {String} [options.overrideMimeType] Overrides the MIME type returned by the server.
         * @returns {Promise.<Object>|undefined} a promise that will resolve to the requested data when loaded. Returns undefined if <code>request.throttle</code> is true and the request does not have high enough priority.
         *
         *
         * @example
         * resource.head()
         *   .then(function(headers) {
         *       // use the data
         *   }).otherwise(function(error) {
         *       // an error occurred
         *   });
         *
         * @see {@link http://www.w3.org/TR/cors/|Cross-Origin Resource Sharing}
         * @see {@link http://wiki.commonjs.org/wiki/Promises/A|CommonJS Promises/A}
         */
        Resource.prototype.head = function(options) {
            options = defaultClone(options, {});
            options.method = 'HEAD';
 
            return this._makeRequest(options);
        };
 
        /**
         * Creates a Resource from a URL and calls head() on it.
         *
         * @param {String|Object} options A url or an object with the following properties
         * @param {String} options.url The url of the resource.
         * @param {Object} [options.queryParameters] An object containing query parameters that will be sent when retrieving the resource.
         * @param {Object} [options.templateValues] Key/Value pairs that are used to replace template values (eg. {x}).
         * @param {Object} [options.headers={}] Additional HTTP headers that will be sent.
         * @param {DefaultProxy} [options.proxy] A proxy to be used when loading the resource.
         * @param {Resource~RetryCallback} [options.retryCallback] The Function to call when a request for this resource fails. If it returns true, the request will be retried.
         * @param {Number} [options.retryAttempts=0] The number of times the retryCallback should be called before giving up.
         * @param {Request} [options.request] A Request object that will be used. Intended for internal use only.
         * @param {String} [options.responseType] The type of response.  This controls the type of item returned.
         * @param {String} [options.overrideMimeType] Overrides the MIME type returned by the server.
         * @returns {Promise.<Object>|undefined} a promise that will resolve to the requested data when loaded. Returns undefined if <code>request.throttle</code> is true and the request does not have high enough priority.
         */
        Resource.head = function (options) {
            var resource = new Resource(options);
            return resource.head({
                // Make copy of just the needed fields because headers can be passed to both the constructor and to fetch
                responseType: options.responseType,
                overrideMimeType: options.overrideMimeType
            });
        };
 
        /**
         * Asynchronously gets options the given resource.  Returns a promise that will resolve to
         * the result once loaded, or reject if the resource failed to load.  The data is loaded
         * using XMLHttpRequest, which means that in order to make requests to another origin,
         * the server must have Cross-Origin Resource Sharing (CORS) headers enabled.
         *
         * @param {Object} [options] Object with the following properties:
         * @param {String} [options.responseType] The type of response.  This controls the type of item returned.
         * @param {Object} [options.headers] Additional HTTP headers to send with the request, if any.
         * @param {String} [options.overrideMimeType] Overrides the MIME type returned by the server.
         * @returns {Promise.<Object>|undefined} a promise that will resolve to the requested data when loaded. Returns undefined if <code>request.throttle</code> is true and the request does not have high enough priority.
         *
         *
         * @example
         * resource.options()
         *   .then(function(headers) {
         *       // use the data
         *   }).otherwise(function(error) {
         *       // an error occurred
         *   });
         *
         * @see {@link http://www.w3.org/TR/cors/|Cross-Origin Resource Sharing}
         * @see {@link http://wiki.commonjs.org/wiki/Promises/A|CommonJS Promises/A}
         */
        Resource.prototype.options = function(options) {
            options = defaultClone(options, {});
            options.method = 'OPTIONS';
 
            return this._makeRequest(options);
        };
 
        /**
         * Creates a Resource from a URL and calls options() on it.
         *
         * @param {String|Object} options A url or an object with the following properties
         * @param {String} options.url The url of the resource.
         * @param {Object} [options.queryParameters] An object containing query parameters that will be sent when retrieving the resource.
         * @param {Object} [options.templateValues] Key/Value pairs that are used to replace template values (eg. {x}).
         * @param {Object} [options.headers={}] Additional HTTP headers that will be sent.
         * @param {DefaultProxy} [options.proxy] A proxy to be used when loading the resource.
         * @param {Resource~RetryCallback} [options.retryCallback] The Function to call when a request for this resource fails. If it returns true, the request will be retried.
         * @param {Number} [options.retryAttempts=0] The number of times the retryCallback should be called before giving up.
         * @param {Request} [options.request] A Request object that will be used. Intended for internal use only.
         * @param {String} [options.responseType] The type of response.  This controls the type of item returned.
         * @param {String} [options.overrideMimeType] Overrides the MIME type returned by the server.
         * @returns {Promise.<Object>|undefined} a promise that will resolve to the requested data when loaded. Returns undefined if <code>request.throttle</code> is true and the request does not have high enough priority.
         */
        Resource.options = function (options) {
            var resource = new Resource(options);
            return resource.options({
                // Make copy of just the needed fields because headers can be passed to both the constructor and to fetch
                responseType: options.responseType,
                overrideMimeType: options.overrideMimeType
            });
        };
 
        /**
         * Asynchronously posts data to the given resource.  Returns a promise that will resolve to
         * the result once loaded, or reject if the resource failed to load.  The data is loaded
         * using XMLHttpRequest, which means that in order to make requests to another origin,
         * the server must have Cross-Origin Resource Sharing (CORS) headers enabled.
         *
         * @param {Object} data Data that is posted with the resource.
         * @param {Object} [options] Object with the following properties:
         * @param {Object} [options.data] Data that is posted with the resource.
         * @param {String} [options.responseType] The type of response.  This controls the type of item returned.
         * @param {Object} [options.headers] Additional HTTP headers to send with the request, if any.
         * @param {String} [options.overrideMimeType] Overrides the MIME type returned by the server.
         * @returns {Promise.<Object>|undefined} a promise that will resolve to the requested data when loaded. Returns undefined if <code>request.throttle</code> is true and the request does not have high enough priority.
         *
         *
         * @example
         * resource.post(data)
         *   .then(function(result) {
         *       // use the result
         *   }).otherwise(function(error) {
         *       // an error occurred
         *   });
         *
         * @see {@link http://www.w3.org/TR/cors/|Cross-Origin Resource Sharing}
         * @see {@link http://wiki.commonjs.org/wiki/Promises/A|CommonJS Promises/A}
         */
        Resource.prototype.post = function(data, options) {
            Check.Check.defined('data', data);
 
            options = defaultClone(options, {});
            options.method = 'POST';
            options.data = data;
 
            return this._makeRequest(options);
        };
 
        /**
         * Creates a Resource from a URL and calls post() on it.
         *
         * @param {Object} options A url or an object with the following properties
         * @param {String} options.url The url of the resource.
         * @param {Object} options.data Data that is posted with the resource.
         * @param {Object} [options.queryParameters] An object containing query parameters that will be sent when retrieving the resource.
         * @param {Object} [options.templateValues] Key/Value pairs that are used to replace template values (eg. {x}).
         * @param {Object} [options.headers={}] Additional HTTP headers that will be sent.
         * @param {DefaultProxy} [options.proxy] A proxy to be used when loading the resource.
         * @param {Resource~RetryCallback} [options.retryCallback] The Function to call when a request for this resource fails. If it returns true, the request will be retried.
         * @param {Number} [options.retryAttempts=0] The number of times the retryCallback should be called before giving up.
         * @param {Request} [options.request] A Request object that will be used. Intended for internal use only.
         * @param {String} [options.responseType] The type of response.  This controls the type of item returned.
         * @param {String} [options.overrideMimeType] Overrides the MIME type returned by the server.
         * @returns {Promise.<Object>|undefined} a promise that will resolve to the requested data when loaded. Returns undefined if <code>request.throttle</code> is true and the request does not have high enough priority.
         */
        Resource.post = function (options) {
            var resource = new Resource(options);
            return resource.post(options.data, {
                // Make copy of just the needed fields because headers can be passed to both the constructor and to post
                responseType: options.responseType,
                overrideMimeType: options.overrideMimeType
            });
        };
 
        /**
         * Asynchronously puts data to the given resource.  Returns a promise that will resolve to
         * the result once loaded, or reject if the resource failed to load.  The data is loaded
         * using XMLHttpRequest, which means that in order to make requests to another origin,
         * the server must have Cross-Origin Resource Sharing (CORS) headers enabled.
         *
         * @param {Object} data Data that is posted with the resource.
         * @param {Object} [options] Object with the following properties:
         * @param {String} [options.responseType] The type of response.  This controls the type of item returned.
         * @param {Object} [options.headers] Additional HTTP headers to send with the request, if any.
         * @param {String} [options.overrideMimeType] Overrides the MIME type returned by the server.
         * @returns {Promise.<Object>|undefined} a promise that will resolve to the requested data when loaded. Returns undefined if <code>request.throttle</code> is true and the request does not have high enough priority.
         *
         *
         * @example
         * resource.put(data)
         *   .then(function(result) {
         *       // use the result
         *   }).otherwise(function(error) {
         *       // an error occurred
         *   });
         *
         * @see {@link http://www.w3.org/TR/cors/|Cross-Origin Resource Sharing}
         * @see {@link http://wiki.commonjs.org/wiki/Promises/A|CommonJS Promises/A}
         */
        Resource.prototype.put = function(data, options) {
            Check.Check.defined('data', data);
 
            options = defaultClone(options, {});
            options.method = 'PUT';
            options.data = data;
 
            return this._makeRequest(options);
        };
 
        /**
         * Creates a Resource from a URL and calls put() on it.
         *
         * @param {Object} options A url or an object with the following properties
         * @param {String} options.url The url of the resource.
         * @param {Object} options.data Data that is posted with the resource.
         * @param {Object} [options.queryParameters] An object containing query parameters that will be sent when retrieving the resource.
         * @param {Object} [options.templateValues] Key/Value pairs that are used to replace template values (eg. {x}).
         * @param {Object} [options.headers={}] Additional HTTP headers that will be sent.
         * @param {DefaultProxy} [options.proxy] A proxy to be used when loading the resource.
         * @param {Resource~RetryCallback} [options.retryCallback] The Function to call when a request for this resource fails. If it returns true, the request will be retried.
         * @param {Number} [options.retryAttempts=0] The number of times the retryCallback should be called before giving up.
         * @param {Request} [options.request] A Request object that will be used. Intended for internal use only.
         * @param {String} [options.responseType] The type of response.  This controls the type of item returned.
         * @param {String} [options.overrideMimeType] Overrides the MIME type returned by the server.
         * @returns {Promise.<Object>|undefined} a promise that will resolve to the requested data when loaded. Returns undefined if <code>request.throttle</code> is true and the request does not have high enough priority.
         */
        Resource.put = function (options) {
            var resource = new Resource(options);
            return resource.put(options.data, {
                // Make copy of just the needed fields because headers can be passed to both the constructor and to post
                responseType: options.responseType,
                overrideMimeType: options.overrideMimeType
            });
        };
 
        /**
         * Asynchronously patches data to the given resource.  Returns a promise that will resolve to
         * the result once loaded, or reject if the resource failed to load.  The data is loaded
         * using XMLHttpRequest, which means that in order to make requests to another origin,
         * the server must have Cross-Origin Resource Sharing (CORS) headers enabled.
         *
         * @param {Object} data Data that is posted with the resource.
         * @param {Object} [options] Object with the following properties:
         * @param {String} [options.responseType] The type of response.  This controls the type of item returned.
         * @param {Object} [options.headers] Additional HTTP headers to send with the request, if any.
         * @param {String} [options.overrideMimeType] Overrides the MIME type returned by the server.
         * @returns {Promise.<Object>|undefined} a promise that will resolve to the requested data when loaded. Returns undefined if <code>request.throttle</code> is true and the request does not have high enough priority.
         *
         *
         * @example
         * resource.patch(data)
         *   .then(function(result) {
         *       // use the result
         *   }).otherwise(function(error) {
         *       // an error occurred
         *   });
         *
         * @see {@link http://www.w3.org/TR/cors/|Cross-Origin Resource Sharing}
         * @see {@link http://wiki.commonjs.org/wiki/Promises/A|CommonJS Promises/A}
         */
        Resource.prototype.patch = function(data, options) {
            Check.Check.defined('data', data);
 
            options = defaultClone(options, {});
            options.method = 'PATCH';
            options.data = data;
 
            return this._makeRequest(options);
        };
 
        /**
         * Creates a Resource from a URL and calls patch() on it.
         *
         * @param {Object} options A url or an object with the following properties
         * @param {String} options.url The url of the resource.
         * @param {Object} options.data Data that is posted with the resource.
         * @param {Object} [options.queryParameters] An object containing query parameters that will be sent when retrieving the resource.
         * @param {Object} [options.templateValues] Key/Value pairs that are used to replace template values (eg. {x}).
         * @param {Object} [options.headers={}] Additional HTTP headers that will be sent.
         * @param {DefaultProxy} [options.proxy] A proxy to be used when loading the resource.
         * @param {Resource~RetryCallback} [options.retryCallback] The Function to call when a request for this resource fails. If it returns true, the request will be retried.
         * @param {Number} [options.retryAttempts=0] The number of times the retryCallback should be called before giving up.
         * @param {Request} [options.request] A Request object that will be used. Intended for internal use only.
         * @param {String} [options.responseType] The type of response.  This controls the type of item returned.
         * @param {String} [options.overrideMimeType] Overrides the MIME type returned by the server.
         * @returns {Promise.<Object>|undefined} a promise that will resolve to the requested data when loaded. Returns undefined if <code>request.throttle</code> is true and the request does not have high enough priority.
         */
        Resource.patch = function (options) {
            var resource = new Resource(options);
            return resource.patch(options.data, {
                // Make copy of just the needed fields because headers can be passed to both the constructor and to post
                responseType: options.responseType,
                overrideMimeType: options.overrideMimeType
            });
        };
 
        /**
         * Contains implementations of functions that can be replaced for testing
         *
         * @private
         */
        Resource._Implementations = {};
 
        function loadImageElement(url, crossOrigin, deferred) {
            var image = new Image();
 
            image.onload = function() {
                deferred.resolve(image);
            };
 
            image.onerror = function(e) {
                deferred.reject(e);
            };
 
            if (crossOrigin) {
                if (TrustedServers.contains(url)) {
                    image.crossOrigin = 'use-credentials';
                } else {
                    image.crossOrigin = '';
                }
            }
 
            image.src = url;
        }
 
        Resource._Implementations.createImage = function(request, crossOrigin, deferred, flipY, preferImageBitmap) {
            var url = request.url;
            // Passing an Image to createImageBitmap will force it to run on the main thread
            // since DOM elements don't exist on workers. We convert it to a blob so it's non-blocking.
            // See:
            //    https://bugzilla.mozilla.org/show_bug.cgi?id=1044102#c38
            //    https://bugs.chromium.org/p/chromium/issues/detail?id=580202#c10
            Resource.supportsImageBitmapOptions()
                .then(function(supportsImageBitmap) {
                    // We can only use ImageBitmap if we can flip on decode.
                    // See: https://github.com/CesiumGS/cesium/pull/7579#issuecomment-466146898
                    if (!(supportsImageBitmap && preferImageBitmap)) {
                        loadImageElement(url, crossOrigin, deferred);
                        return;
                    }
                    var responseType = 'blob';
                    var method = 'GET';
                    var xhrDeferred = when.when.defer();
                    var xhr = Resource._Implementations.loadWithXhr(
                        url,
                        responseType,
                        method,
                        undefined,
                        undefined,
                        xhrDeferred,
                        undefined,
                        undefined,
                        undefined
                    );
 
                    if (when.defined(xhr) && when.defined(xhr.abort)) {
                        request.cancelFunction = function() {
                            xhr.abort();
                        };
                    }
                    return xhrDeferred.promise.then(function(blob) {
                        if (!when.defined(blob)) {
                            deferred.reject(new RuntimeError.RuntimeError('Successfully retrieved ' + url + ' but it contained no content.'));
                            return;
                        }
 
                        return Resource.createImageBitmapFromBlob(blob, {
                            flipY: flipY,
                            premultiplyAlpha: false
                        });
                    }).then(deferred.resolve);
                })
                .otherwise(deferred.reject);
        };
 
        /**
         * Wrapper for createImageBitmap
         *
         * @private
         */
        Resource.createImageBitmapFromBlob = function(blob, options) {
            Check.Check.defined('options', options);
            Check.Check.typeOf.bool('options.flipY', options.flipY);
            Check.Check.typeOf.bool('options.premultiplyAlpha', options.premultiplyAlpha);
 
            return createImageBitmap(blob, {
                imageOrientation: options.flipY ? 'flipY' : 'none',
                premultiplyAlpha: options.premultiplyAlpha ? 'premultiply' : 'none'
            });
        };
 
        function decodeResponse(loadWithHttpResponse, responseType) {
            switch (responseType) {
              case 'text':
                  return loadWithHttpResponse.toString('utf8');
              case 'json':
                  return JSON.parse(loadWithHttpResponse.toString('utf8'));
              default:
                  return new Uint8Array(loadWithHttpResponse).buffer;
            }
        }
 
        function loadWithHttpRequest(url, responseType, method, data, headers, deferred, overrideMimeType) {
            // Note: only the 'json' and 'text' responseTypes transforms the loaded buffer
            var URL = require('url').parse(url); // eslint-disable-line
            var http = URL.protocol === 'https:' ? require('https') : require('http'); // eslint-disable-line
            var zlib = require('zlib'); // eslint-disable-line
            var options = {
                protocol : URL.protocol,
                hostname : URL.hostname,
                port : URL.port,
                path : URL.path,
                query : URL.query,
                method : method,
                headers : headers
            };
 
            http.request(options)
                .on('response', function(res) {
                    if (res.statusCode < 200 || res.statusCode >= 300) {
                        deferred.reject(new RequestErrorEvent(res.statusCode, res, res.headers));
                        return;
                    }
 
                    var chunkArray = [];
                    res.on('data', function(chunk) {
                        chunkArray.push(chunk);
                    });
 
                    res.on('end', function() {
                        var result = Buffer.concat(chunkArray); // eslint-disable-line
                        if (res.headers['content-encoding'] === 'gzip') {
                            zlib.gunzip(result, function(error, resultUnzipped) {
                                if (error) {
                                    deferred.reject(new RuntimeError.RuntimeError('Error decompressing response.'));
                                } else {
                                    deferred.resolve(decodeResponse(resultUnzipped, responseType));
                                }
                            });
                        } else {
                            deferred.resolve(decodeResponse(result, responseType));
                        }
                    });
                }).on('error', function(e) {
                    deferred.reject(new RequestErrorEvent());
                }).end();
        }
 
        var noXMLHttpRequest = typeof XMLHttpRequest === 'undefined';
        Resource._Implementations.loadWithXhr = function(url, responseType, method, data, headers, deferred, overrideMimeType) {
            var dataUriRegexResult = dataUriRegex$1.exec(url);
            if (dataUriRegexResult !== null) {
                deferred.resolve(decodeDataUri(dataUriRegexResult, responseType));
                return;
            }
 
            if (noXMLHttpRequest) {
                loadWithHttpRequest(url, responseType, method, data, headers, deferred);
                return;
            }
 
            var xhr = new XMLHttpRequest();
 
            if (TrustedServers.contains(url)) {
                xhr.withCredentials = true;
            }
 
            url = url.replace(/{/g, '%7B').replace(/}/g, '%7D');
            xhr.open(method, url, true);
 
            if (when.defined(overrideMimeType) && when.defined(xhr.overrideMimeType)) {
                xhr.overrideMimeType(overrideMimeType);
            }
 
            if (when.defined(headers)) {
                for (var key in headers) {
                    if (headers.hasOwnProperty(key)) {
                        xhr.setRequestHeader(key, headers[key]);
                    }
                }
            }
 
            if (when.defined(responseType)) {
                xhr.responseType = responseType;
            }
 
            // While non-standard, file protocol always returns a status of 0 on success
            var localFile = false;
            if (typeof url === 'string') {
                localFile = (url.indexOf('file://') === 0) || (typeof window !== 'undefined' && window.location.origin === 'file://');
            }
 
            xhr.onload = function() {
                if ((xhr.status < 200 || xhr.status >= 300) && !(localFile && xhr.status === 0)) {
                    deferred.reject(new RequestErrorEvent(xhr.status, xhr.response, xhr.getAllResponseHeaders()));
                    return;
                }
 
                var response = xhr.response;
                var browserResponseType = xhr.responseType;
 
                if (method === 'HEAD' || method === 'OPTIONS') {
                    var responseHeaderString = xhr.getAllResponseHeaders();
                    var splitHeaders = responseHeaderString.trim().split(/[\r\n]+/);
 
                    var responseHeaders = {};
                    splitHeaders.forEach(function (line) {
                        var parts = line.split(': ');
                        var header = parts.shift();
                        responseHeaders[header] = parts.join(': ');
                    });
 
                    deferred.resolve(responseHeaders);
                    return;
                }
 
                //All modern browsers will go into either the first or second if block or last else block.
                //Other code paths support older browsers that either do not support the supplied responseType
                //or do not support the xhr.response property.
                if (xhr.status === 204) {
                    // accept no content
                    deferred.resolve();
                } else if (when.defined(response) && (!when.defined(responseType) || (browserResponseType === responseType))) {
                    deferred.resolve(response);
                } else if ((responseType === 'json') && typeof response === 'string') {
                    try {
                        deferred.resolve(JSON.parse(response));
                    } catch (e) {
                        deferred.reject(e);
                    }
                } else if ((browserResponseType === '' || browserResponseType === 'document') && when.defined(xhr.responseXML) && xhr.responseXML.hasChildNodes()) {
                    deferred.resolve(xhr.responseXML);
                } else if ((browserResponseType === '' || browserResponseType === 'text') && when.defined(xhr.responseText)) {
                    deferred.resolve(xhr.responseText);
                } else {
                    deferred.reject(new RuntimeError.RuntimeError('Invalid XMLHttpRequest response type.'));
                }
            };
 
            xhr.onerror = function(e) {
                deferred.reject(new RequestErrorEvent());
            };
 
            xhr.send(data);
 
            return xhr;
        };
 
        Resource._Implementations.loadAndExecuteScript = function(url, functionName, deferred) {
            return loadAndExecuteScript(url).otherwise(deferred.reject);
        };
 
        /**
         * The default implementations
         *
         * @private
         */
        Resource._DefaultImplementations = {};
        Resource._DefaultImplementations.createImage = Resource._Implementations.createImage;
        Resource._DefaultImplementations.loadWithXhr = Resource._Implementations.loadWithXhr;
        Resource._DefaultImplementations.loadAndExecuteScript = Resource._Implementations.loadAndExecuteScript;
 
        /**
         * A resource instance initialized to the current browser location
         *
         * @type {Resource}
         * @constant
         */
        Resource.DEFAULT = Object.freeze(new Resource({
            url: (typeof document === 'undefined') ? '' : document.location.href.split('?')[0]
        }));
 
    /*global CESIUM_BASE_URL*/
 
        var cesiumScriptRegex = /((?:.*\/)|^)Cesium\.js$/;
        function getBaseUrlFromCesiumScript() {
            var scripts = document.getElementsByTagName('script');
            for ( var i = 0, len = scripts.length; i < len; ++i) {
                var src = scripts[i].getAttribute('src');
                var result = cesiumScriptRegex.exec(src);
                if (result !== null) {
                    return result[1];
                }
            }
            return undefined;
        }
 
        var a$1;
        function tryMakeAbsolute(url) {
            if (typeof document === 'undefined') {
                //Node.js and Web Workers. In both cases, the URL will already be absolute.
                return url;
            }
 
            if (!when.defined(a$1)) {
                a$1 = document.createElement('a');
            }
            a$1.href = url;
 
            // IE only absolutizes href on get, not set
            a$1.href = a$1.href; // eslint-disable-line no-self-assign
            return a$1.href;
        }
 
        var baseResource;
        function getCesiumBaseUrl() {
            if (when.defined(baseResource)) {
                return baseResource;
            }
 
            var baseUrlString;
            if (typeof CESIUM_BASE_URL !== 'undefined') {
                baseUrlString = CESIUM_BASE_URL;
            } else if (typeof define === 'object' && when.defined(define.amd) && !define.amd.toUrlUndefined && when.defined(require.toUrl)) {
                baseUrlString = getAbsoluteUri('..', buildModuleUrl('Core/buildModuleUrl.js'));
            } else {
                baseUrlString = getBaseUrlFromCesiumScript();
            }
 
            //>>includeStart('debug', pragmas.debug);
            if (!when.defined(baseUrlString)) {
                throw new Check.DeveloperError('Unable to determine Cesium base URL automatically, try defining a global variable called CESIUM_BASE_URL.');
            }
            //>>includeEnd('debug');
 
            baseResource = new Resource({
                url: tryMakeAbsolute(baseUrlString)
            });
            baseResource.appendForwardSlash();
 
            return baseResource;
        }
 
        function buildModuleUrlFromRequireToUrl(moduleID) {
            //moduleID will be non-relative, so require it relative to this module, in Core.
            return tryMakeAbsolute(require.toUrl('../' + moduleID));
        }
 
        function buildModuleUrlFromBaseUrl(moduleID) {
            var resource = getCesiumBaseUrl().getDerivedResource({
                url: moduleID
            });
            return resource.url;
        }
 
        var implementation;
 
        /**
         * Given a non-relative moduleID, returns an absolute URL to the file represented by that module ID,
         * using, in order of preference, require.toUrl, the value of a global CESIUM_BASE_URL, or
         * the base URL of the Cesium.js script.
         *
         * @private
         */
        function buildModuleUrl(moduleID) {
            if (!when.defined(implementation)) {
                //select implementation
                if (typeof define === 'object' && when.defined(define.amd) && !define.amd.toUrlUndefined && when.defined(require.toUrl)) {
                    implementation = buildModuleUrlFromRequireToUrl;
                } else {
                    implementation = buildModuleUrlFromBaseUrl;
                }
            }
 
            var url = implementation(moduleID);
            return url;
        }
 
        // exposed for testing
        buildModuleUrl._cesiumScriptRegex = cesiumScriptRegex;
        buildModuleUrl._buildModuleUrlFromBaseUrl = buildModuleUrlFromBaseUrl;
        buildModuleUrl._clearBaseResource = function() {
            baseResource = undefined;
        };
 
        /**
         * Sets the base URL for resolving modules.
         * @param {String} value The new base URL.
         */
        buildModuleUrl.setBaseUrl = function(value) {
            baseResource = Resource.DEFAULT.getDerivedResource({
                url: value
            });
        };
 
        /**
         * Gets the base URL for resolving modules.
         */
        buildModuleUrl.getCesiumBaseUrl = getCesiumBaseUrl;
 
    exports.Resource = Resource;
    exports.buildModuleUrl = buildModuleUrl;
    exports.deprecationWarning = deprecationWarning;
    exports.oneTimeWarning = oneTimeWarning;
 
});