rxjs-rails 2.3.20 → 2.3.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/rxjs/rails/version.rb +1 -1
- data/vendor/assets/javascripts/rx.all.compat.js +117 -143
- data/vendor/assets/javascripts/rx.all.compat.min.js +2 -2
- data/vendor/assets/javascripts/rx.all.js +267 -139
- data/vendor/assets/javascripts/rx.all.min.js +3 -3
- data/vendor/assets/javascripts/rx.backpressure.js +254 -132
- data/vendor/assets/javascripts/rx.backpressure.min.js +1 -1
- data/vendor/assets/javascripts/rx.compat.js +16 -8
- data/vendor/assets/javascripts/rx.compat.min.js +2 -2
- data/vendor/assets/javascripts/rx.js +16 -8
- data/vendor/assets/javascripts/rx.lite.compat.js +117 -143
- data/vendor/assets/javascripts/rx.lite.compat.min.js +2 -2
- data/vendor/assets/javascripts/rx.lite.js +117 -143
- data/vendor/assets/javascripts/rx.lite.min.js +2 -2
- data/vendor/assets/javascripts/rx.min.js +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 75f8a3704009ca13830dd5a7f7a542958f13eee7
|
4
|
+
data.tar.gz: 634ed81f173c1b043a6b97f3eeecf3336225863f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c36351353ad1c9d8b4958963f8d6236733e5fc9935d4994f512cbe3d4513b13072eacab7db128c7d3e431a981453ba0a3cdf0dcb5d36a9c437f47aa3d4ee093c
|
7
|
+
data.tar.gz: 7a9f637b69dfc552f0077d83230b06ca67300e9a8222c8305ba86fd3889c4dda6f9d74d9d16be1e75debaf4198968bb146f487ff2a975784dd910fcc200657ec
|
data/lib/rxjs/rails/version.rb
CHANGED
@@ -122,8 +122,6 @@
|
|
122
122
|
}
|
123
123
|
var fileName = fileNameAndLineNumber[0], lineNumber = fileNameAndLineNumber[1];
|
124
124
|
|
125
|
-
console.log(rFileName, rStartingLine, rEndingLine);
|
126
|
-
|
127
125
|
return fileName === rFileName &&
|
128
126
|
lineNumber >= rStartingLine &&
|
129
127
|
lineNumber <= rEndingLine;
|
@@ -211,6 +209,14 @@
|
|
211
209
|
stringProto = String.prototype,
|
212
210
|
propertyIsEnumerable = objectProto.propertyIsEnumerable;
|
213
211
|
|
212
|
+
// Fix for Tessel
|
213
|
+
if (!propertyIsEnumerable) {
|
214
|
+
propertyIsEnumerable = objectProto.propertyIsEnumerable = function (key) {
|
215
|
+
for (var k in this) { if (k === key) { return true; } }
|
216
|
+
return false;
|
217
|
+
};
|
218
|
+
}
|
219
|
+
|
214
220
|
try {
|
215
221
|
supportNodeClass = !(toString.call(document) == objectClass && !({ 'toString': 0 } + ''));
|
216
222
|
} catch (e) {
|
@@ -2191,16 +2197,18 @@ if (!Array.prototype.forEach) {
|
|
2191
2197
|
|
2192
2198
|
var self = this;
|
2193
2199
|
this._subscribe = function (observer) {
|
2200
|
+
var oldOnError = observer.onError.bind(observer);
|
2201
|
+
|
2194
2202
|
observer.onError = function (err) {
|
2195
|
-
makeStackTraceLong(
|
2196
|
-
|
2203
|
+
makeStackTraceLong(err, self);
|
2204
|
+
oldOnError(err);
|
2197
2205
|
};
|
2198
2206
|
|
2199
|
-
subscribe(observer);
|
2207
|
+
return subscribe(observer);
|
2200
2208
|
};
|
2209
|
+
} else {
|
2210
|
+
this._subscribe = subscribe;
|
2201
2211
|
}
|
2202
|
-
|
2203
|
-
this._subscribe = subscribe;
|
2204
2212
|
}
|
2205
2213
|
|
2206
2214
|
observableProto = Observable.prototype;
|
@@ -4399,7 +4407,7 @@ if (!Array.prototype.forEach) {
|
|
4399
4407
|
return source.subscribe(function (value) {
|
4400
4408
|
var shouldRun;
|
4401
4409
|
try {
|
4402
|
-
shouldRun = predicate.call(thisArg, value, count++,
|
4410
|
+
shouldRun = predicate.call(thisArg, value, count++, source);
|
4403
4411
|
} catch (e) {
|
4404
4412
|
observer.onError(e);
|
4405
4413
|
return;
|
@@ -5689,9 +5697,9 @@ if (!Array.prototype.forEach) {
|
|
5689
5697
|
return observableFromPromise(promise);
|
5690
5698
|
}
|
5691
5699
|
|
5692
|
-
var PausableObservable = (function (
|
5700
|
+
var PausableObservable = (function (__super__) {
|
5693
5701
|
|
5694
|
-
inherits(PausableObservable,
|
5702
|
+
inherits(PausableObservable, __super__);
|
5695
5703
|
|
5696
5704
|
function subscribe(observer) {
|
5697
5705
|
var conn = this.source.publish(),
|
@@ -5720,7 +5728,7 @@ if (!Array.prototype.forEach) {
|
|
5720
5728
|
this.pauser = this.controller;
|
5721
5729
|
}
|
5722
5730
|
|
5723
|
-
|
5731
|
+
__super__.call(this, subscribe, source);
|
5724
5732
|
}
|
5725
5733
|
|
5726
5734
|
PausableObservable.prototype.pause = function () {
|
@@ -5804,7 +5812,7 @@ if (!Array.prototype.forEach) {
|
|
5804
5812
|
next(true, 1);
|
5805
5813
|
})
|
5806
5814
|
);
|
5807
|
-
});
|
5815
|
+
}, source);
|
5808
5816
|
}
|
5809
5817
|
|
5810
5818
|
var PausableBufferedObservable = (function (__super__) {
|
@@ -5869,7 +5877,7 @@ if (!Array.prototype.forEach) {
|
|
5869
5877
|
this.pauser = this.controller;
|
5870
5878
|
}
|
5871
5879
|
|
5872
|
-
__super__.call(this, subscribe);
|
5880
|
+
__super__.call(this, subscribe, source);
|
5873
5881
|
}
|
5874
5882
|
|
5875
5883
|
PausableBufferedObservable.prototype.pause = function () {
|
@@ -5897,29 +5905,16 @@ if (!Array.prototype.forEach) {
|
|
5897
5905
|
return new PausableBufferedObservable(this, subject);
|
5898
5906
|
};
|
5899
5907
|
|
5900
|
-
|
5901
|
-
* Attaches a controller to the observable sequence with the ability to queue.
|
5902
|
-
* @example
|
5903
|
-
* var source = Rx.Observable.interval(100).controlled();
|
5904
|
-
* source.request(3); // Reads 3 values
|
5905
|
-
* @param {Observable} pauser The observable sequence used to pause the underlying sequence.
|
5906
|
-
* @returns {Observable} The observable sequence which is paused based upon the pauser.
|
5907
|
-
*/
|
5908
|
-
observableProto.controlled = function (enableQueue) {
|
5909
|
-
if (enableQueue == null) { enableQueue = true; }
|
5910
|
-
return new ControlledObservable(this, enableQueue);
|
5911
|
-
};
|
5912
|
-
|
5913
|
-
var ControlledObservable = (function (_super) {
|
5908
|
+
var ControlledObservable = (function (__super__) {
|
5914
5909
|
|
5915
|
-
inherits(ControlledObservable,
|
5910
|
+
inherits(ControlledObservable, __super__);
|
5916
5911
|
|
5917
5912
|
function subscribe (observer) {
|
5918
5913
|
return this.source.subscribe(observer);
|
5919
5914
|
}
|
5920
5915
|
|
5921
5916
|
function ControlledObservable (source, enableQueue) {
|
5922
|
-
|
5917
|
+
__super__.call(this, subscribe, source);
|
5923
5918
|
this.subject = new ControlledSubject(enableQueue);
|
5924
5919
|
this.source = source.multicast(this.subject).refCount();
|
5925
5920
|
}
|
@@ -5933,132 +5928,111 @@ if (!Array.prototype.forEach) {
|
|
5933
5928
|
|
5934
5929
|
}(Observable));
|
5935
5930
|
|
5936
|
-
|
5931
|
+
var ControlledSubject = (function (__super__) {
|
5937
5932
|
|
5938
|
-
|
5939
|
-
|
5940
|
-
|
5941
|
-
|
5942
|
-
inherits(ControlledSubject, _super);
|
5933
|
+
function subscribe (observer) {
|
5934
|
+
return this.subject.subscribe(observer);
|
5935
|
+
}
|
5943
5936
|
|
5944
|
-
|
5945
|
-
if (enableQueue == null) {
|
5946
|
-
enableQueue = true;
|
5947
|
-
}
|
5937
|
+
inherits(ControlledSubject, __super__);
|
5948
5938
|
|
5949
|
-
|
5950
|
-
|
5951
|
-
this.enableQueue = enableQueue;
|
5952
|
-
this.queue = enableQueue ? [] : null;
|
5953
|
-
this.requestedCount = 0;
|
5954
|
-
this.requestedDisposable = disposableEmpty;
|
5955
|
-
this.error = null;
|
5956
|
-
this.hasFailed = false;
|
5957
|
-
this.hasCompleted = false;
|
5958
|
-
this.controlledDisposable = disposableEmpty;
|
5959
|
-
}
|
5960
|
-
|
5961
|
-
addProperties(ControlledSubject.prototype, Observer, {
|
5962
|
-
onCompleted: function () {
|
5963
|
-
checkDisposed.call(this);
|
5964
|
-
this.hasCompleted = true;
|
5939
|
+
function ControlledSubject(enableQueue) {
|
5940
|
+
enableQueue == null && (enableQueue = true);
|
5965
5941
|
|
5966
|
-
|
5967
|
-
|
5968
|
-
|
5969
|
-
|
5970
|
-
|
5971
|
-
|
5972
|
-
|
5973
|
-
|
5942
|
+
__super__.call(this, subscribe);
|
5943
|
+
this.subject = new Subject();
|
5944
|
+
this.enableQueue = enableQueue;
|
5945
|
+
this.queue = enableQueue ? [] : null;
|
5946
|
+
this.requestedCount = 0;
|
5947
|
+
this.requestedDisposable = disposableEmpty;
|
5948
|
+
this.error = null;
|
5949
|
+
this.hasFailed = false;
|
5950
|
+
this.hasCompleted = false;
|
5951
|
+
this.controlledDisposable = disposableEmpty;
|
5952
|
+
}
|
5974
5953
|
|
5975
|
-
|
5976
|
-
|
5977
|
-
|
5978
|
-
|
5979
|
-
|
5980
|
-
|
5981
|
-
|
5954
|
+
addProperties(ControlledSubject.prototype, Observer, {
|
5955
|
+
onCompleted: function () {
|
5956
|
+
this.hasCompleted = true;
|
5957
|
+
(!this.enableQueue || this.queue.length === 0) && this.subject.onCompleted();
|
5958
|
+
},
|
5959
|
+
onError: function (error) {
|
5960
|
+
this.hasFailed = true;
|
5961
|
+
this.error = error;
|
5962
|
+
(!this.enableQueue || this.queue.length === 0) && this.subject.onError(error);
|
5963
|
+
},
|
5964
|
+
onNext: function (value) {
|
5965
|
+
var hasRequested = false;
|
5982
5966
|
|
5983
|
-
|
5984
|
-
|
5985
|
-
|
5986
|
-
|
5987
|
-
|
5988
|
-
|
5989
|
-
|
5990
|
-
|
5991
|
-
|
5992
|
-
|
5993
|
-
|
5994
|
-
|
5967
|
+
if (this.requestedCount === 0) {
|
5968
|
+
this.enableQueue && this.queue.push(value);
|
5969
|
+
} else {
|
5970
|
+
(this.requestedCount !== -1 && this.requestedCount-- === 0) && this.disposeCurrentRequest();
|
5971
|
+
hasRequested = true;
|
5972
|
+
}
|
5973
|
+
hasRequested && this.subject.onNext(value);
|
5974
|
+
},
|
5975
|
+
_processRequest: function (numberOfItems) {
|
5976
|
+
if (this.enableQueue) {
|
5977
|
+
while (this.queue.length >= numberOfItems && numberOfItems > 0) {
|
5978
|
+
this.subject.onNext(this.queue.shift());
|
5979
|
+
numberOfItems--;
|
5980
|
+
}
|
5995
5981
|
|
5996
|
-
|
5997
|
-
|
5998
|
-
|
5999
|
-
|
6000
|
-
_processRequest: function (numberOfItems) {
|
6001
|
-
if (this.enableQueue) {
|
6002
|
-
//console.log('queue length', this.queue.length);
|
6003
|
-
|
6004
|
-
while (this.queue.length >= numberOfItems && numberOfItems > 0) {
|
6005
|
-
//console.log('number of items', numberOfItems);
|
6006
|
-
this.subject.onNext(this.queue.shift());
|
6007
|
-
numberOfItems--;
|
6008
|
-
}
|
5982
|
+
return this.queue.length !== 0 ?
|
5983
|
+
{ numberOfItems: numberOfItems, returnValue: true } :
|
5984
|
+
{ numberOfItems: numberOfItems, returnValue: false };
|
5985
|
+
}
|
6009
5986
|
|
6010
|
-
|
6011
|
-
|
6012
|
-
|
6013
|
-
|
6014
|
-
|
6015
|
-
|
5987
|
+
if (this.hasFailed) {
|
5988
|
+
this.subject.onError(this.error);
|
5989
|
+
this.controlledDisposable.dispose();
|
5990
|
+
this.controlledDisposable = disposableEmpty;
|
5991
|
+
} else if (this.hasCompleted) {
|
5992
|
+
this.subject.onCompleted();
|
5993
|
+
this.controlledDisposable.dispose();
|
5994
|
+
this.controlledDisposable = disposableEmpty;
|
5995
|
+
}
|
6016
5996
|
|
6017
|
-
|
6018
|
-
|
6019
|
-
|
6020
|
-
|
6021
|
-
|
6022
|
-
|
6023
|
-
|
6024
|
-
|
6025
|
-
|
5997
|
+
return { numberOfItems: numberOfItems, returnValue: false };
|
5998
|
+
},
|
5999
|
+
request: function (number) {
|
6000
|
+
this.disposeCurrentRequest();
|
6001
|
+
var self = this, r = this._processRequest(number);
|
6002
|
+
|
6003
|
+
var number = r.numberOfItems;
|
6004
|
+
if (!r.returnValue) {
|
6005
|
+
this.requestedCount = number;
|
6006
|
+
this.requestedDisposable = disposableCreate(function () {
|
6007
|
+
self.requestedCount = 0;
|
6008
|
+
});
|
6026
6009
|
|
6027
|
-
|
6028
|
-
|
6029
|
-
|
6030
|
-
|
6031
|
-
|
6032
|
-
|
6033
|
-
|
6034
|
-
|
6035
|
-
|
6036
|
-
|
6037
|
-
this.requestedCount = number;
|
6038
|
-
this.requestedDisposable = disposableCreate(function () {
|
6039
|
-
self.requestedCount = 0;
|
6040
|
-
});
|
6041
|
-
|
6042
|
-
return this.requestedDisposable
|
6043
|
-
} else {
|
6044
|
-
return disposableEmpty;
|
6045
|
-
}
|
6046
|
-
},
|
6047
|
-
disposeCurrentRequest: function () {
|
6048
|
-
this.requestedDisposable.dispose();
|
6049
|
-
this.requestedDisposable = disposableEmpty;
|
6050
|
-
},
|
6010
|
+
return this.requestedDisposable
|
6011
|
+
} else {
|
6012
|
+
return disposableEmpty;
|
6013
|
+
}
|
6014
|
+
},
|
6015
|
+
disposeCurrentRequest: function () {
|
6016
|
+
this.requestedDisposable.dispose();
|
6017
|
+
this.requestedDisposable = disposableEmpty;
|
6018
|
+
}
|
6019
|
+
});
|
6051
6020
|
|
6052
|
-
|
6053
|
-
|
6054
|
-
this.error = null;
|
6055
|
-
this.subject.dispose();
|
6056
|
-
this.requestedDisposable.dispose();
|
6057
|
-
}
|
6058
|
-
});
|
6021
|
+
return ControlledSubject;
|
6022
|
+
}(Observable));
|
6059
6023
|
|
6060
|
-
|
6061
|
-
|
6024
|
+
/**
|
6025
|
+
* Attaches a controller to the observable sequence with the ability to queue.
|
6026
|
+
* @example
|
6027
|
+
* var source = Rx.Observable.interval(100).controlled();
|
6028
|
+
* source.request(3); // Reads 3 values
|
6029
|
+
* @param {Observable} pauser The observable sequence used to pause the underlying sequence.
|
6030
|
+
* @returns {Observable} The observable sequence which is paused based upon the pauser.
|
6031
|
+
*/
|
6032
|
+
observableProto.controlled = function (enableQueue) {
|
6033
|
+
if (enableQueue == null) { enableQueue = true; }
|
6034
|
+
return new ControlledObservable(this, enableQueue);
|
6035
|
+
};
|
6062
6036
|
|
6063
6037
|
/**
|
6064
6038
|
* Multicasts the source sequence notifications through an instantiated subject into all uses of the sequence within a selector function. Each
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/* Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.*/
|
2
|
-
(function(a){function b(){if(this.isDisposed)throw new Error(Ib)}function c(a,b){if(Jb&&b.stack&&"object"==typeof a&&null!==a&&a.stack&&-1===a.stack.indexOf(Nb)){for(var c=[],e=b;e;e=e.source)e.stack&&c.unshift(e.stack);c.unshift(a.stack);var f=c.join("\n"+Nb+"\n");a.stack=d(f)}}function d(a){for(var b=a.split("\n"),c=[],d=0,g=b.length;g>d;d++){var h=b[d];e(h)||f(h)||!h||c.push(h)}return c.join("\n")}function e(a){var b=h(a);if(!b)return!1;var c=b[0],d=b[1];return console.log(Lb,Mb,Xd),c===Lb&&d>=Mb&&Xd>=d}function f(a){return-1!==a.indexOf("(module.js:")||-1!==a.indexOf("(node.js:")}function g(){if(Jb)try{throw new Error}catch(a){var b=a.stack.split("\n"),c=b[0].indexOf("@")>0?b[1]:b[2],d=h(c);if(!d)return;return Lb=d[0],d[1]}}function h(a){var b=/at .+ \((.+):(\d+):(?:\d+)\)$/.exec(a);if(b)return[b[1],Number(b[2])];var c=/at ([^ ]+):(\d+):(?:\d+)$/.exec(a);if(c)return[c[1],Number(c[2])];var d=/.*@(.+):(\d+)$/.exec(a);return d?[d[1],Number(d[2])]:void 0}function i(a){var b=typeof a;return a&&("function"==b||"object"==b)||!1}function j(a){var b=[];if(!i(a))return b;lc.nonEnumArgs&&a.length&&mc(a)&&(a=oc.call(a));var c=lc.enumPrototypes&&"function"==typeof a,d=lc.enumErrorProps&&(a===fc||a instanceof Error);for(var e in a)c&&"prototype"==e||d&&("message"==e||"name"==e)||b.push(e);if(lc.nonEnumShadows&&a!==gc){var f=a.constructor,g=-1,h=jc.length;if(a===(f&&f.prototype))var j=a===hc?bc:a===fc?Yb:cc.call(a),k=kc[j];for(;++g<h;)e=jc[g],k&&k[e]||!dc.call(a,e)||b.push(e)}return b}function k(a,b,c){for(var d=-1,e=c(a),f=e.length;++d<f;){var g=e[d];if(b(a[g],g,a)===!1)break}return a}function l(a,b){return k(a,b,j)}function m(a){return"function"!=typeof a.toString&&"string"==typeof(a+"")}function n(a,b,c,d){if(a===b)return 0!==a||1/a==1/b;var e=typeof a,f=typeof b;if(a===a&&(null==a||null==b||"function"!=e&&"object"!=e&&"function"!=f&&"object"!=f))return!1;var g=cc.call(a),h=cc.call(b);if(g==Ub&&(g=_b),h==Ub&&(h=_b),g!=h)return!1;switch(g){case Wb:case Xb:return+a==+b;case $b:return a!=+a?b!=+b:0==a?1/a==1/b:a==+b;case ac:case bc:return a==String(b)}var i=g==Vb;if(!i){if(g!=_b||!lc.nodeClass&&(m(a)||m(b)))return!1;var j=!lc.argsObject&&mc(a)?Object:a.constructor,k=!lc.argsObject&&mc(b)?Object:b.constructor;if(!(j==k||dc.call(a,"constructor")&&dc.call(b,"constructor")||Fb(j)&&j instanceof j&&Fb(k)&&k instanceof k||!("constructor"in a&&"constructor"in b)))return!1}c||(c=[]),d||(d=[]);for(var o=c.length;o--;)if(c[o]==a)return d[o]==b;var p=0,q=!0;if(c.push(a),d.push(b),i){if(o=a.length,p=b.length,q=p==o)for(;p--;){var r=b[p];if(!(q=n(a[p],r,c,d)))break}}else l(b,function(b,e,f){return dc.call(f,e)?(p++,q=dc.call(a,e)&&n(a[e],b,c,d)):void 0}),q&&l(a,function(a,b,c){return dc.call(c,b)?q=--p>-1:void 0});return c.pop(),d.pop(),q}function o(a,b){return 1===a.length&&Array.isArray(a[b])?a[b]:oc.call(a)}function p(a,b){for(var c=new Array(a),d=0;a>d;d++)c[d]=b();return c}function q(a,b){this.id=a,this.value=b}function r(a,b){this.scheduler=a,this.disposable=b,this.isDisposed=!1}function t(){this._s=s}function u(){this._s=s,this._l=s.length,this._i=0}function v(a){this._a=a}function w(a){this._a=a,this._l=A(a),this._i=0}function x(a){return"number"==typeof a&&qb.isFinite(a)}function y(b){var c,d=b[Ob];if(!d&&"string"==typeof b)return c=new t(b),c[Ob]();if(!d&&b.length!==a)return c=new v(b),c[Ob]();if(!d)throw new TypeError("Object is not iterable");return b[Ob]()}function z(a){var b=+a;return 0===b?b:isNaN(b)?b:0>b?-1:1}function A(a){var b=+a.length;return isNaN(b)?0:0!==b&&x(b)?(b=z(b)*Math.floor(Math.abs(b)),0>=b?0:b>jd?jd:b):b}function B(a,b){return xb(a)||(a=Kc),new Rd(function(c){var d=0,e=b.length;return a.scheduleRecursive(function(a){e>d?(c.onNext(b[d++]),a()):c.onCompleted()})})}function C(a,b){return new Rd(function(c){var d=new Bc,e=new Cc;return e.setDisposable(d),d.setDisposable(a.subscribe(c.onNext.bind(c),function(a){var d,f;try{f=b(a)}catch(g){return void c.onError(g)}Db(f)&&(f=gd(f)),d=new Bc,e.setDisposable(d),d.setDisposable(f.subscribe(c))},c.onCompleted.bind(c))),e},a)}function D(a,b){var c=this;return new Rd(function(d){var e=0,f=a.length;return c.subscribe(function(c){if(f>e){var g,h=a[e++];try{g=b(c,h)}catch(i){return void d.onError(i)}d.onNext(g)}else d.onCompleted()},d.onError.bind(d),d.onCompleted.bind(d))},c)}function E(a,b,c){return a.map(function(d,e){var f=b.call(c,d,e,a);return Db(f)&&(f=gd(f)),(Rb(f)||Qb(f))&&(f=kd(f)),f}).concatAll()}function F(a,b,c){for(var d=0,e=a.length;e>d;d++)if(c(a[d],b))return d;return-1}function G(a){this.comparer=a,this.set=[]}function H(a,b,c){return a.map(function(d,e){var f=b.call(c,d,e,a);return Db(f)&&(f=gd(f)),(Rb(f)||Qb(f))&&(f=kd(f)),f}).mergeAll()}function I(a,b,c){return new Rd(function(d){var e=!1,f=null,g=[];return a.subscribe(function(a){var h,i;try{i=b(a)}catch(j){return void d.onError(j)}if(h=0,e)try{h=c(i,f)}catch(k){return void d.onError(k)}else e=!0,f=i;h>0&&(f=i,g=[]),h>=0&&g.push(a)},d.onError.bind(d),function(){d.onNext(g),d.onCompleted()})},a)}function J(a){if(0===a.length)throw new Error(Gb);return a[0]}function K(a,b,c,d){if(0>b)throw new Error(Hb);return new Rd(function(e){var f=b;return a.subscribe(function(a){0===f--&&(e.onNext(a),e.onCompleted())},e.onError.bind(e),function(){c?(e.onNext(d),e.onCompleted()):e.onError(new Error(Hb))})},a)}function L(a,b,c){return new Rd(function(d){var e=c,f=!1;return a.subscribe(function(a){f?d.onError(new Error("Sequence contains more than one element")):(e=a,f=!0)},d.onError.bind(d),function(){f||b?(d.onNext(e),d.onCompleted()):d.onError(new Error(Gb))})},a)}function M(a,b,c){return new Rd(function(d){return a.subscribe(function(a){d.onNext(a),d.onCompleted()},d.onError.bind(d),function(){b?(d.onNext(c),d.onCompleted()):d.onError(new Error(Gb))})},a)}function N(a,b,c){return new Rd(function(d){var e=c,f=!1;return a.subscribe(function(a){e=a,f=!0},d.onError.bind(d),function(){f||b?(d.onNext(e),d.onCompleted()):d.onError(new Error(Gb))})},a)}function O(b,c,d,e){return new Rd(function(f){var g=0;return b.subscribe(function(a){var h;try{h=c.call(d,a,g,b)}catch(i){return void f.onError(i)}h?(f.onNext(e?g:a),f.onCompleted()):g++},f.onError.bind(f),function(){f.onNext(e?-1:a),f.onCompleted()})},b)}function P(a,b){return Array.isArray(a)?Q.call(b,a):U(a)?wd(a.call(b)):V(a)?wd(a):T(a)?R(a):Db(a)?S(a):typeof a===ud?a:i(a)||Array.isArray(a)?Q.call(b,a):a}function Q(a){var b=this;return function(c){function d(a,d){if(!e)try{if(a=P(a,b),typeof a!==ud)return h[d]=a,--g||c(null,h);a.call(b,function(a,b){if(!e){if(a)return e=!0,c(a);h[d]=b,--g||c(null,h)}})}catch(f){e=!0,c(f)}}var e,f=Object.keys(a),g=f.length,h=new a.constructor;if(!g)return void Pc.schedule(function(){c(null,h)});for(var i=0,j=f.length;j>i;i++)d(a[f[i]],f[i])}}function R(a){return function(b){var c,d=!1;a.subscribe(function(a){c=a,d=!0},b,function(){d&&b(null,c)})}}function S(a){return function(b){a.then(function(a){b(null,a)},b)}}function T(a){return a&&typeof a.subscribe===ud}function U(a){return a&&a.constructor&&"GeneratorFunction"===a.constructor.name}function V(a){return a&&typeof a.next===ud&&typeof a[vd]===ud}function i(a){return a&&a.constructor===Object}function W(a){a&&Pc.schedule(function(){throw a})}function X(a){var b=function(){this.cancelBubble=!0},c=function(){if(this.bubbledKeyCode=this.keyCode,this.ctrlKey)try{this.keyCode=0}catch(a){}this.defaultPrevented=!0,this.returnValue=!1,this.modified=!0};if(a||(a=qb.event),!a.target)switch(a.target=a.target||a.srcElement,"mouseover"==a.type&&(a.relatedTarget=a.fromElement),"mouseout"==a.type&&(a.relatedTarget=a.toElement),a.stopPropagation||(a.stopPropagation=b,a.preventDefault=c),a.type){case"keypress":var d="charCode"in a?a.charCode:a.keyCode;10==d?(d=0,a.keyCode=13):13==d||27==d?d=0:3==d&&(d=99),a.charCode=d,a.keyChar=a.charCode?String.fromCharCode(a.charCode):""}return a}function Y(a,b,c){if(a.addEventListener)return a.addEventListener(b,c,!1),zc(function(){a.removeEventListener(b,c,!1)});if(a.attachEvent){var d=function(a){c(X(a))};return a.attachEvent("on"+b,d),zc(function(){a.detachEvent("on"+b,d)})}return a["on"+b]=c,zc(function(){a["on"+b]=null})}function Z(a,b,c){var d=new wc;if("[object NodeList]"===Object.prototype.toString.call(a))for(var e=0,f=a.length;f>e;e++)d.add(Z(a.item(e),b,c));else a&&d.add(Y(a,b,c));return d}function $(a,b,c){return new Rd(function(d){function e(a,b){j[b]=a;var e;if(g[b]=!0,h||(h=g.every(yb))){if(f)return void d.onError(f);try{e=c.apply(null,j)}catch(k){return void d.onError(k)}d.onNext(e)}i&&j[1]&&d.onCompleted()}var f,g=[!1,!1],h=!1,i=!1,j=new Array(2);return new wc(a.subscribe(function(a){e(a,0)},function(a){j[1]?d.onError(a):f=a},function(){i=!0,j[1]&&d.onCompleted()}),b.subscribe(function(a){e(a,1)},d.onError.bind(d),function(){i=!0,e(!0,1)}))})}function _(a,b){return a.groupJoin(this,b,id,function(a,b){return b})}function ab(a){var b=this;return new Rd(function(c){var d=new Ud,e=new wc,f=new Dc(e);return c.onNext(rc(d,f)),e.add(b.subscribe(function(a){d.onNext(a)},function(a){d.onError(a),c.onError(a)},function(){d.onCompleted(),c.onCompleted()})),Db(a)&&(a=gd(a)),e.add(a.subscribe(function(){d.onCompleted(),d=new Ud,c.onNext(rc(d,f))},function(a){d.onError(a),c.onError(a)},function(){d.onCompleted(),c.onCompleted()})),f},b)}function bb(a){var b=this;return new Rd(function(c){function d(){var b;try{b=a()}catch(f){return void c.onError(f)}Db(b)&&(b=gd(b));var i=new Bc;e.setDisposable(i),i.setDisposable(b.take(1).subscribe(wb,function(a){h.onError(a),c.onError(a)},function(){h.onCompleted(),h=new Ud,c.onNext(rc(h,g)),d()}))}var e=new Cc,f=new wc(e),g=new Dc(f),h=new Ud;return c.onNext(rc(h,g)),f.add(b.subscribe(function(a){h.onNext(a)},function(a){h.onError(a),c.onError(a)},function(){h.onCompleted(),c.onCompleted()})),d(),g},b)}function db(b,c){return new Wc(function(){return new Vc(function(){return b()?{done:!1,value:c}:{done:!0,value:a}})})}function eb(a){this.patterns=a}function fb(a,b){this.expression=a,this.selector=b}function gb(a,b,c){var d=a.get(b);if(!d){var e=new Od(b,c);return a.set(b,e),e}return d}function hb(a,b,c){this.joinObserverArray=a,this.onNext=b,this.onCompleted=c,this.joinObservers=new Nd;for(var d=0,e=this.joinObserverArray.length;e>d;d++){var f=this.joinObserverArray[d];this.joinObservers.set(f,f)}}function ib(a,b){return new Rd(function(c){return b.scheduleWithAbsolute(a,function(){c.onNext(0),c.onCompleted()})})}function jb(a,b,c){return new Rd(function(d){var e=0,f=a,g=Gc(b);return c.scheduleRecursiveWithAbsolute(f,function(a){if(g>0){var b=c.now();f+=g,b>=f&&(f=b+g)}d.onNext(e++),a(f)})})}function kb(a,b){return new Rd(function(c){return b.scheduleWithRelative(Gc(a),function(){c.onNext(0),c.onCompleted()})})}function lb(a,b,c){return a===b?new Rd(function(a){return c.schedulePeriodicWithState(0,b,function(b){return a.onNext(b),b+1})}):hd(function(){return jb(c.now()+a,b,c)})}function mb(a,b,c){return new Rd(function(d){var e,f=!1,g=new Cc,h=null,i=[],j=!1;return e=a.materialize().timestamp(c).subscribe(function(a){var e,k;"E"===a.value.kind?(i=[],i.push(a),h=a.value.exception,k=!j):(i.push({value:a.value,timestamp:a.timestamp+b}),k=!f,f=!0),k&&(null!==h?d.onError(h):(e=new Bc,g.setDisposable(e),e.setDisposable(c.scheduleRecursiveWithRelative(b,function(a){var b,e,g,k;if(null===h){j=!0;do g=null,i.length>0&&i[0].timestamp-c.now()<=0&&(g=i.shift().value),null!==g&&g.accept(d);while(null!==g);k=!1,e=0,i.length>0?(k=!0,e=Math.max(0,i[0].timestamp-c.now())):f=!1,b=h,j=!1,null!==b?d.onError(b):k&&a(e)}}))))}),new wc(e,g)},a)}function nb(a,b,c){return hd(function(){return mb(a,b-c.now(),c)})}function ob(a,b){return new Rd(function(c){function d(){g&&(g=!1,c.onNext(f)),e&&c.onCompleted()}var e,f,g;return new wc(a.subscribe(function(a){g=!0,f=a},c.onError.bind(c),function(){e=!0}),b.subscribe(d,c.onError.bind(c),d))},a)}var pb={"boolean":!1,"function":!0,object:!0,number:!1,string:!1,undefined:!1},qb=pb[typeof window]&&window||this,rb=pb[typeof exports]&&exports&&!exports.nodeType&&exports,sb=pb[typeof module]&&module&&!module.nodeType&&module,tb=sb&&sb.exports===rb&&rb,ub=pb[typeof global]&&global;!ub||ub.global!==ub&&ub.window!==ub||(qb=ub);var vb={internals:{},config:{Promise:qb.Promise},helpers:{}},wb=vb.helpers.noop=function(){},xb=(vb.helpers.notDefined=function(a){return"undefined"==typeof a},vb.helpers.isScheduler=function(a){return a instanceof vb.Scheduler}),yb=vb.helpers.identity=function(a){return a},zb=(vb.helpers.pluck=function(a){return function(b){return b[a]}},vb.helpers.just=function(a){return function(){return a}},vb.helpers.defaultNow=function(){return Date.now?Date.now:function(){return+new Date}}()),Ab=vb.helpers.defaultComparer=function(a,b){return nc(a,b)},Bb=vb.helpers.defaultSubComparer=function(a,b){return a>b?1:b>a?-1:0},Cb=(vb.helpers.defaultKeySerializer=function(a){return a.toString()},vb.helpers.defaultError=function(a){throw a}),Db=vb.helpers.isPromise=function(a){return!!a&&"function"==typeof a.then},Eb=(vb.helpers.asArray=function(){return Array.prototype.slice.call(arguments)},vb.helpers.not=function(a){return!a}),Fb=vb.helpers.isFunction=function(){var a=function(a){return"function"==typeof a||!1};return a(/x/)&&(a=function(a){return"function"==typeof a&&"[object Function]"==cc.call(a)}),a}(),Gb="Sequence contains no elements.",Hb="Argument out of range",Ib="Object has been disposed";vb.config.longStackSupport=!1;var Jb=!1;try{throw new Error}catch(Kb){Jb=!!Kb.stack}var Lb,Mb=g(),Nb="From previous event:",Ob="function"==typeof Symbol&&Symbol.iterator||"_es6shim_iterator_";qb.Set&&"function"==typeof(new qb.Set)["@@iterator"]&&(Ob="@@iterator");var Pb=vb.doneEnumerator={done:!0,value:a},Qb=vb.helpers.isIterable=function(b){return b[Ob]!==a},Rb=vb.helpers.isArrayLike=function(b){return b&&b.length!==a};vb.helpers.iterator=Ob;var Sb,Tb=vb.helpers.deprecate=function(){},Ub="[object Arguments]",Vb="[object Array]",Wb="[object Boolean]",Xb="[object Date]",Yb="[object Error]",Zb="[object Function]",$b="[object Number]",_b="[object Object]",ac="[object RegExp]",bc="[object String]",cc=Object.prototype.toString,dc=Object.prototype.hasOwnProperty,ec=cc.call(arguments)==Ub,fc=Error.prototype,gc=Object.prototype,hc=String.prototype,ic=gc.propertyIsEnumerable;try{Sb=!(cc.call(document)==_b&&!({toString:0}+""))}catch(Kb){Sb=!0}var jc=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"],kc={};kc[Vb]=kc[Xb]=kc[$b]={constructor:!0,toLocaleString:!0,toString:!0,valueOf:!0},kc[Wb]=kc[bc]={constructor:!0,toString:!0,valueOf:!0},kc[Yb]=kc[Zb]=kc[ac]={constructor:!0,toString:!0},kc[_b]={constructor:!0};var lc={};!function(){var a=function(){this.x=1},b=[];a.prototype={valueOf:1,y:1};for(var c in new a)b.push(c);for(c in arguments);lc.enumErrorProps=ic.call(fc,"message")||ic.call(fc,"name"),lc.enumPrototypes=ic.call(a,"prototype"),lc.nonEnumArgs=0!=c,lc.nonEnumShadows=!/valueOf/.test(b)}(1);var mc=function(a){return a&&"object"==typeof a?cc.call(a)==Ub:!1};ec||(mc=function(a){return a&&"object"==typeof a?dc.call(a,"callee"):!1});var nc=vb.internals.isEqual=function(a,b){return n(a,b,[],[])},oc=Array.prototype.slice,pc=({}.hasOwnProperty,this.inherits=vb.internals.inherits=function(a,b){function c(){this.constructor=a}c.prototype=b.prototype,a.prototype=new c}),qc=vb.internals.addProperties=function(a){for(var b=oc.call(arguments,1),c=0,d=b.length;d>c;c++){var e=b[c];for(var f in e)a[f]=e[f]}},rc=vb.internals.addRef=function(a,b){return new Rd(function(c){return new wc(b.getDisposable(),a.subscribe(c))})};Function.prototype.bind||(Function.prototype.bind=function(a){var b=this,c=oc.call(arguments,1),d=function(){function e(){}if(this instanceof d){e.prototype=b.prototype;var f=new e,g=b.apply(f,c.concat(oc.call(arguments)));return Object(g)===g?g:f}return b.apply(a,c.concat(oc.call(arguments)))};return d}),Array.prototype.forEach||(Array.prototype.forEach=function(a,b){var c,d;if(null==this)throw new TypeError(" this is null or not defined");var e=Object(this),f=e.length>>>0;if("function"!=typeof a)throw new TypeError(a+" is not a function");for(arguments.length>1&&(c=b),d=0;f>d;){var g;d in e&&(g=e[d],a.call(c,g,d,e)),d++}});var sc=Object("a"),tc="a"!=sc[0]||!(0 in sc);Array.prototype.every||(Array.prototype.every=function(a){var b=Object(this),c=tc&&{}.toString.call(this)==bc?this.split(""):b,d=c.length>>>0,e=arguments[1];if({}.toString.call(a)!=Zb)throw new TypeError(a+" is not a function");for(var f=0;d>f;f++)if(f in c&&!a.call(e,c[f],f,b))return!1;return!0}),Array.prototype.map||(Array.prototype.map=function(a){var b=Object(this),c=tc&&{}.toString.call(this)==bc?this.split(""):b,d=c.length>>>0,e=Array(d),f=arguments[1];if({}.toString.call(a)!=Zb)throw new TypeError(a+" is not a function");for(var g=0;d>g;g++)g in c&&(e[g]=a.call(f,c[g],g,b));return e}),Array.prototype.filter||(Array.prototype.filter=function(a){for(var b,c=[],d=new Object(this),e=0,f=d.length>>>0;f>e;e++)b=d[e],e in d&&a.call(arguments[1],b,e,d)&&c.push(b);return c}),Array.isArray||(Array.isArray=function(a){return{}.toString.call(a)==Vb}),Array.prototype.indexOf||(Array.prototype.indexOf=function(a){var b=Object(this),c=b.length>>>0;if(0===c)return-1;var d=0;if(arguments.length>1&&(d=Number(arguments[1]),d!==d?d=0:0!==d&&1/0!=d&&d!==-1/0&&(d=(d>0||-1)*Math.floor(Math.abs(d)))),d>=c)return-1;for(var e=d>=0?d:Math.max(c-Math.abs(d),0);c>e;e++)if(e in b&&b[e]===a)return e;return-1}),q.prototype.compareTo=function(a){var b=this.value.compareTo(a.value);return 0===b&&(b=this.id-a.id),b};var uc=vb.internals.PriorityQueue=function(a){this.items=new Array(a),this.length=0},vc=uc.prototype;vc.isHigherPriority=function(a,b){return this.items[a].compareTo(this.items[b])<0},vc.percolate=function(a){if(!(a>=this.length||0>a)){var b=a-1>>1;if(!(0>b||b===a)&&this.isHigherPriority(a,b)){var c=this.items[a];this.items[a]=this.items[b],this.items[b]=c,this.percolate(b)}}},vc.heapify=function(a){if(+a||(a=0),!(a>=this.length||0>a)){var b=2*a+1,c=2*a+2,d=a;if(b<this.length&&this.isHigherPriority(b,d)&&(d=b),c<this.length&&this.isHigherPriority(c,d)&&(d=c),d!==a){var e=this.items[a];this.items[a]=this.items[d],this.items[d]=e,this.heapify(d)}}},vc.peek=function(){return this.items[0].value},vc.removeAt=function(a){this.items[a]=this.items[--this.length],delete this.items[this.length],this.heapify()},vc.dequeue=function(){var a=this.peek();return this.removeAt(0),a},vc.enqueue=function(a){var b=this.length++;this.items[b]=new q(uc.count++,a),this.percolate(b)},vc.remove=function(a){for(var b=0;b<this.length;b++)if(this.items[b].value===a)return this.removeAt(b),!0;return!1},uc.count=0;var wc=vb.CompositeDisposable=function(){this.disposables=o(arguments,0),this.isDisposed=!1,this.length=this.disposables.length},xc=wc.prototype;xc.add=function(a){this.isDisposed?a.dispose():(this.disposables.push(a),this.length++)},xc.remove=function(a){var b=!1;if(!this.isDisposed){var c=this.disposables.indexOf(a);-1!==c&&(b=!0,this.disposables.splice(c,1),this.length--,a.dispose())}return b},xc.dispose=function(){if(!this.isDisposed){this.isDisposed=!0;var a=this.disposables.slice(0);this.disposables=[],this.length=0;for(var b=0,c=a.length;c>b;b++)a[b].dispose()}},xc.toArray=function(){return this.disposables.slice(0)};var yc=vb.Disposable=function(a){this.isDisposed=!1,this.action=a||wb};yc.prototype.dispose=function(){this.isDisposed||(this.action(),this.isDisposed=!0)};var zc=yc.create=function(a){return new yc(a)},Ac=yc.empty={dispose:wb},Bc=vb.SingleAssignmentDisposable=function(){function a(){this.isDisposed=!1,this.current=null}var b=a.prototype;return b.getDisposable=function(){return this.current},b.setDisposable=function(a){var b,c=this.isDisposed;c||(b=this.current,this.current=a),b&&b.dispose(),c&&a&&a.dispose()},b.dispose=function(){var a;this.isDisposed||(this.isDisposed=!0,a=this.current,this.current=null),a&&a.dispose()},a}(),Cc=vb.SerialDisposable=Bc,Dc=vb.RefCountDisposable=function(){function a(a){this.disposable=a,this.disposable.count++,this.isInnerDisposed=!1}function b(a){this.underlyingDisposable=a,this.isDisposed=!1,this.isPrimaryDisposed=!1,this.count=0}return a.prototype.dispose=function(){this.disposable.isDisposed||this.isInnerDisposed||(this.isInnerDisposed=!0,this.disposable.count--,0===this.disposable.count&&this.disposable.isPrimaryDisposed&&(this.disposable.isDisposed=!0,this.disposable.underlyingDisposable.dispose()))},b.prototype.dispose=function(){this.isDisposed||this.isPrimaryDisposed||(this.isPrimaryDisposed=!0,0===this.count&&(this.isDisposed=!0,this.underlyingDisposable.dispose()))},b.prototype.getDisposable=function(){return this.isDisposed?Ac:new a(this)},b}();r.prototype.dispose=function(){var a=this;this.scheduler.schedule(function(){a.isDisposed||(a.isDisposed=!0,a.disposable.dispose())})};var Ec=vb.internals.ScheduledItem=function(a,b,c,d,e){this.scheduler=a,this.state=b,this.action=c,this.dueTime=d,this.comparer=e||Bb,this.disposable=new Bc};Ec.prototype.invoke=function(){this.disposable.setDisposable(this.invokeCore())},Ec.prototype.compareTo=function(a){return this.comparer(this.dueTime,a.dueTime)},Ec.prototype.isCancelled=function(){return this.disposable.isDisposed},Ec.prototype.invokeCore=function(){return this.action(this.scheduler,this.state)};var Fc=vb.Scheduler=function(){function a(a,b,c,d){this.now=a,this._schedule=b,this._scheduleRelative=c,this._scheduleAbsolute=d}function b(a,b){return b(),Ac}var c=a.prototype;return c.schedule=function(a){return this._schedule(a,b)},c.scheduleWithState=function(a,b){return this._schedule(a,b)},c.scheduleWithRelative=function(a,c){return this._scheduleRelative(c,a,b)},c.scheduleWithRelativeAndState=function(a,b,c){return this._scheduleRelative(a,b,c)},c.scheduleWithAbsolute=function(a,c){return this._scheduleAbsolute(c,a,b)},c.scheduleWithAbsoluteAndState=function(a,b,c){return this._scheduleAbsolute(a,b,c)},a.now=zb,a.normalize=function(a){return 0>a&&(a=0),a},a}(),Gc=Fc.normalize;!function(a){function b(a,b){var c=b.first,d=b.second,e=new wc,f=function(b){d(b,function(b){var c=!1,d=!1,g=a.scheduleWithState(b,function(a,b){return c?e.remove(g):d=!0,f(b),Ac});d||(e.add(g),c=!0)})};return f(c),e}function c(a,b,c){var d=b.first,e=b.second,f=new wc,g=function(b){e(b,function(b,d){var e=!1,h=!1,i=a[c].call(a,b,d,function(a,b){return e?f.remove(i):h=!0,g(b),Ac});h||(f.add(i),e=!0)})};return g(d),f}function d(a,b){a(function(c){b(a,c)})}a.scheduleRecursive=function(a){return this.scheduleRecursiveWithState(a,function(a,b){a(function(){b(a)})})},a.scheduleRecursiveWithState=function(a,c){return this.scheduleWithState({first:a,second:c},b)},a.scheduleRecursiveWithRelative=function(a,b){return this.scheduleRecursiveWithRelativeAndState(b,a,d)},a.scheduleRecursiveWithRelativeAndState=function(a,b,d){return this._scheduleRelative({first:a,second:d},b,function(a,b){return c(a,b,"scheduleWithRelativeAndState")})},a.scheduleRecursiveWithAbsolute=function(a,b){return this.scheduleRecursiveWithAbsoluteAndState(b,a,d)},a.scheduleRecursiveWithAbsoluteAndState=function(a,b,d){return this._scheduleAbsolute({first:a,second:d},b,function(a,b){return c(a,b,"scheduleWithAbsoluteAndState")})}}(Fc.prototype),function(){Fc.prototype.schedulePeriodic=function(a,b){return this.schedulePeriodicWithState(null,a,b)},Fc.prototype.schedulePeriodicWithState=function(a,b,c){if("undefined"==typeof qb.setInterval)throw new Error("Periodic scheduling not supported.");var d=a,e=qb.setInterval(function(){d=c(d)},b);return zc(function(){qb.clearInterval(e)})}}(Fc.prototype),function(a){a.catchError=a["catch"]=function(a){return new Qc(this,a)}}(Fc.prototype);var Hc,Ic=vb.internals.SchedulePeriodicRecursive=function(){function a(a,b){b(0,this._period);try{this._state=this._action(this._state)}catch(c){throw this._cancel.dispose(),c}}function b(a,b,c,d){this._scheduler=a,this._state=b,this._period=c,this._action=d}return b.prototype.start=function(){var b=new Bc;return this._cancel=b,b.setDisposable(this._scheduler.scheduleRecursiveWithRelativeAndState(0,this._period,a.bind(this))),b},b}(),Jc=Fc.immediate=function(){function a(a,b){return b(this,a)}function b(a,b,c){for(var d=Gc(b);d-this.now()>0;);return c(this,a)}function c(a,b,c){return this.scheduleWithRelativeAndState(a,b-this.now(),c)}return new Fc(zb,a,b,c)}(),Kc=Fc.currentThread=function(){function a(a){for(var b;a.length>0;)if(b=a.dequeue(),!b.isCancelled()){for(;b.dueTime-Fc.now()>0;);b.isCancelled()||b.invoke()}}function b(a,b){return this.scheduleWithRelativeAndState(a,0,b)}function c(b,c,d){var f=this.now()+Fc.normalize(c),g=new Ec(this,b,d,f);if(e)e.enqueue(g);else{e=new uc(4),e.enqueue(g);try{a(e)}catch(h){throw h}finally{e=null}}return g.disposable}function d(a,b,c){return this.scheduleWithRelativeAndState(a,b-this.now(),c)}var e,f=new Fc(zb,b,c,d);return f.scheduleRequired=function(){return!e},f.ensureTrampoline=function(a){e?a():this.schedule(a)},f}(),Lc=wb,Mc=function(){var a,b=wb;if("WScript"in this)a=function(a,b){WScript.Sleep(b),a()};else{if(!qb.setTimeout)throw new Error("No concurrency detected!");a=qb.setTimeout,b=qb.clearTimeout}return{setTimeout:a,clearTimeout:b}}(),Nc=Mc.setTimeout,Oc=Mc.clearTimeout;!function(){function a(){if(!qb.postMessage||qb.importScripts)return!1;var a=!1,b=qb.onmessage;return qb.onmessage=function(){a=!0},qb.postMessage("","*"),qb.onmessage=b,a}var b=RegExp("^"+String(cc).replace(/[.*+?^${}()|[\]\\]/g,"\\$&").replace(/toString| for [^\]]+/g,".*?")+"$"),c="function"==typeof(c=ub&&tb&&ub.setImmediate)&&!b.test(c)&&c,d="function"==typeof(d=ub&&tb&&ub.clearImmediate)&&!b.test(d)&&d;if("function"==typeof c)Hc=c,Lc=d;else if("undefined"!=typeof process&&"[object process]"==={}.toString.call(process))Hc=process.nextTick;else if(a()){var e="ms.rx.schedule"+Math.random(),f={},g=0,h=function(a){if("string"==typeof a.data&&a.data.substring(0,e.length)===e){var b=a.data.substring(e.length),c=f[b];c(),delete f[b]}};qb.addEventListener?qb.addEventListener("message",h,!1):qb.attachEvent("onmessage",h,!1),Hc=function(a){var b=g++;f[b]=a,qb.postMessage(e+b,"*")}}else if(qb.MessageChannel){var i=new qb.MessageChannel,j={},k=0;i.port1.onmessage=function(a){var b=a.data,c=j[b];c(),delete j[b]},Hc=function(a){var b=k++;j[b]=a,i.port2.postMessage(b)}}else"document"in qb&&"onreadystatechange"in qb.document.createElement("script")?Hc=function(a){var b=qb.document.createElement("script");b.onreadystatechange=function(){a(),b.onreadystatechange=null,b.parentNode.removeChild(b),b=null},qb.document.documentElement.appendChild(b)}:(Hc=function(a){return Nc(a,0)},Lc=Oc)}();var Pc=Fc.timeout=function(){function a(a,b){var c=this,d=new Bc,e=Hc(function(){d.isDisposed||d.setDisposable(b(c,a))});return new wc(d,zc(function(){Lc(e)}))}function b(a,b,c){var d=this,e=Fc.normalize(b);if(0===e)return d.scheduleWithState(a,c);var f=new Bc,g=Nc(function(){f.isDisposed||f.setDisposable(c(d,a))},e);return new wc(f,zc(function(){Oc(g)}))}function c(a,b,c){return this.scheduleWithRelativeAndState(a,b-this.now(),c)}return new Fc(zb,a,b,c)}(),Qc=function(a){function b(a,b){return this._scheduler.scheduleWithState(a,this._wrap(b))}function c(a,b,c){return this._scheduler.scheduleWithRelativeAndState(a,b,this._wrap(c))}function d(a,b,c){return this._scheduler.scheduleWithAbsoluteAndState(a,b,this._wrap(c))}function e(e,f){this._scheduler=e,this._handler=f,this._recursiveOriginal=null,this._recursiveWrapper=null,a.call(this,this._scheduler.now.bind(this._scheduler),b,c,d)}return pc(e,a),e.prototype._clone=function(a){return new e(a,this._handler)},e.prototype._wrap=function(a){var b=this;return function(c,d){try{return a(b._getRecursiveWrapper(c),d)}catch(e){if(!b._handler(e))throw e;return Ac}}},e.prototype._getRecursiveWrapper=function(a){if(this._recursiveOriginal!==a){this._recursiveOriginal=a;var b=this._clone(a);b._recursiveOriginal=a,b._recursiveWrapper=b,this._recursiveWrapper=b}return this._recursiveWrapper},e.prototype.schedulePeriodicWithState=function(a,b,c){var d=this,e=!1,f=new Bc;return f.setDisposable(this._scheduler.schedulePeriodicWithState(a,b,function(a){if(e)return null;try{return c(a)}catch(b){if(e=!0,!d._handler(b))throw b;return f.dispose(),null}})),f},e}(Fc),Rc=vb.Notification=function(){function a(a,b){this.hasValue=null==b?!1:b,this.kind=a}return a.prototype.accept=function(a,b,c){return a&&"object"==typeof a?this._acceptObservable(a):this._accept(a,b,c)},a.prototype.toObservable=function(a){var b=this;return xb(a)||(a=Jc),new Rd(function(c){return a.schedule(function(){b._acceptObservable(c),"N"===b.kind&&c.onCompleted()})})},a}(),Sc=Rc.createOnNext=function(){function a(a){return a(this.value)}function b(a){return a.onNext(this.value)}function c(){return"OnNext("+this.value+")"}return function(d){var e=new Rc("N",!0);return e.value=d,e._accept=a,e._acceptObservable=b,e.toString=c,e}}(),Tc=Rc.createOnError=function(){function a(a,b){return b(this.exception)}function b(a){return a.onError(this.exception)}function c(){return"OnError("+this.exception+")"}return function(d){var e=new Rc("E");return e.exception=d,e._accept=a,e._acceptObservable=b,e.toString=c,e}}(),Uc=Rc.createOnCompleted=function(){function a(a,b,c){return c()}function b(a){return a.onCompleted()}function c(){return"OnCompleted()"}return function(){var d=new Rc("C");return d._accept=a,d._acceptObservable=b,d.toString=c,d}}(),Vc=vb.internals.Enumerator=function(a){this._next=a};Vc.prototype.next=function(){return this._next()},Vc.prototype[Ob]=function(){return this};var Wc=vb.internals.Enumerable=function(a){this._iterator=a};Wc.prototype[Ob]=function(){return this._iterator()},Wc.prototype.concat=function(){var a=this;return new Rd(function(b){var c;try{c=a[Ob]()}catch(d){return void b.onError(d)}var e,f=new Cc,g=Jc.scheduleRecursive(function(a){var d;if(!e){try{d=c.next()}catch(g){return void b.onError(g)}if(d.done)return void b.onCompleted();var h=d.value;Db(h)&&(h=gd(h));var i=new Bc;f.setDisposable(i),i.setDisposable(h.subscribe(b.onNext.bind(b),b.onError.bind(b),function(){a()}))}});return new wc(f,g,zc(function(){e=!0}))})},Wc.prototype.catchError=function(){var a=this;return new Rd(function(b){var c;try{c=a[Ob]()}catch(d){return void b.onError(d)}var e,f,g=new Cc,h=Jc.scheduleRecursive(function(a){if(!e){var d;try{d=c.next()}catch(h){return void b.onError(h)}if(d.done)return void(f?b.onError(f):b.onCompleted());var i=d.value;Db(i)&&(i=gd(i));var j=new Bc;g.setDisposable(j),j.setDisposable(i.subscribe(b.onNext.bind(b),function(b){f=b,a()},b.onCompleted.bind(b)))}});return new wc(g,h,zc(function(){e=!0}))})};var Xc=Wc.repeat=function(a,b){return null==b&&(b=-1),new Wc(function(){var c=b;return new Vc(function(){return 0===c?Pb:(c>0&&c--,{done:!1,value:a})})})},Yc=Wc.of=function(a,b,c){return b||(b=yb),new Wc(function(){var d=-1;return new Vc(function(){return++d<a.length?{done:!1,value:b.call(c,a[d],d,a)}:Pb})})},Zc=vb.Observer=function(){};Zc.prototype.toNotifier=function(){var a=this;return function(b){return b.accept(a)}},Zc.prototype.asObserver=function(){return new bd(this.onNext.bind(this),this.onError.bind(this),this.onCompleted.bind(this))},Zc.prototype.checked=function(){return new cd(this)};var $c=Zc.create=function(a,b,c){return a||(a=wb),b||(b=Cb),c||(c=wb),new bd(a,b,c)};Zc.fromNotifier=function(a,b){return new bd(function(c){return a.call(b,Sc(c))},function(c){return a.call(b,Tc(c))},function(){return a.call(b,Uc())})},Zc.prototype.notifyOn=function(a){return new ed(a,this)};var _c,ad=vb.internals.AbstractObserver=function(a){function b(){this.isStopped=!1,a.call(this)}return pc(b,a),b.prototype.onNext=function(a){this.isStopped||this.next(a)},b.prototype.onError=function(a){this.isStopped||(this.isStopped=!0,this.error(a))},b.prototype.onCompleted=function(){this.isStopped||(this.isStopped=!0,this.completed())},b.prototype.dispose=function(){this.isStopped=!0},b.prototype.fail=function(a){return this.isStopped?!1:(this.isStopped=!0,this.error(a),!0)},b}(Zc),bd=vb.AnonymousObserver=function(a){function b(b,c,d){a.call(this),this._onNext=b,this._onError=c,this._onCompleted=d
|
3
|
-
}return pc(b,a),b.prototype.next=function(a){this._onNext(a)},b.prototype.error=function(a){this._onError(a)},b.prototype.completed=function(){this._onCompleted()},b}(ad),cd=function(a){function b(b){a.call(this),this._observer=b,this._state=0}pc(b,a);var c=b.prototype;return c.onNext=function(a){this.checkAccess();try{this._observer.onNext(a)}catch(b){throw b}finally{this._state=0}},c.onError=function(a){this.checkAccess();try{this._observer.onError(a)}catch(b){throw b}finally{this._state=2}},c.onCompleted=function(){this.checkAccess();try{this._observer.onCompleted()}catch(a){throw a}finally{this._state=2}},c.checkAccess=function(){if(1===this._state)throw new Error("Re-entrancy detected");if(2===this._state)throw new Error("Observer completed");0===this._state&&(this._state=1)},b}(Zc),dd=vb.internals.ScheduledObserver=function(a){function b(b,c){a.call(this),this.scheduler=b,this.observer=c,this.isAcquired=!1,this.hasFaulted=!1,this.queue=[],this.disposable=new Cc}return pc(b,a),b.prototype.next=function(a){var b=this;this.queue.push(function(){b.observer.onNext(a)})},b.prototype.error=function(a){var b=this;this.queue.push(function(){b.observer.onError(a)})},b.prototype.completed=function(){var a=this;this.queue.push(function(){a.observer.onCompleted()})},b.prototype.ensureActive=function(){var a=!1,b=this;!this.hasFaulted&&this.queue.length>0&&(a=!this.isAcquired,this.isAcquired=!0),a&&this.disposable.setDisposable(this.scheduler.scheduleRecursive(function(a){var c;if(!(b.queue.length>0))return void(b.isAcquired=!1);c=b.queue.shift();try{c()}catch(d){throw b.queue=[],b.hasFaulted=!0,d}a()}))},b.prototype.dispose=function(){a.prototype.dispose.call(this),this.disposable.dispose()},b}(ad),ed=function(a){function b(b,c,d){a.call(this,b,c),this._cancel=d}return pc(b,a),b.prototype.next=function(b){a.prototype.next.call(this,b),this.ensureActive()},b.prototype.error=function(b){a.prototype.error.call(this,b),this.ensureActive()},b.prototype.completed=function(){a.prototype.completed.call(this),this.ensureActive()},b.prototype.dispose=function(){a.prototype.dispose.call(this),this._cancel&&this._cancel.dispose(),this._cancel=null},b}(dd),fd=vb.Observable=function(){function a(a){if(vb.config.longStackSupport&&Jb){try{throw new Error}catch(b){this.stack=b.stack.substring(b.stack.indexOf("\n")+1)}var d=this;this._subscribe=function(b){b.onError=function(a){c(d,a),b.onError(a)},a(b)}}this._subscribe=a}return _c=a.prototype,_c.subscribe=_c.forEach=function(a,b,c){return this._subscribe("object"==typeof a?a:$c(a,b,c))},_c.subscribeOnNext=function(a,b){return this._subscribe($c(2===arguments.length?function(c){a.call(b,c)}:a))},_c.subscribeOnError=function(a,b){return this._subscribe($c(null,2===arguments.length?function(c){a.call(b,c)}:a))},_c.subscribeOnCompleted=function(a,b){return this._subscribe($c(null,null,2===arguments.length?function(){a.call(b)}:a))},a}();_c.observeOn=function(a){var b=this;return new Rd(function(c){return b.subscribe(new ed(a,c))},b)},_c.subscribeOn=function(a){var b=this;return new Rd(function(c){var d=new Bc,e=new Cc;return e.setDisposable(d),d.setDisposable(a.schedule(function(){e.setDisposable(new r(a,b.subscribe(c)))})),e},b)};var gd=fd.fromPromise=function(a){return hd(function(){var b=new vb.AsyncSubject;return a.then(function(a){b.onNext(a),b.onCompleted()},b.onError.bind(b)),b})};_c.toPromise=function(a){if(a||(a=vb.config.Promise),!a)throw new TypeError("Promise type not provided nor in Rx.config.Promise");var b=this;return new a(function(a,c){var d,e=!1;b.subscribe(function(a){d=a,e=!0},c,function(){e&&a(d)})})},_c.toArray=function(){var a=this;return new Rd(function(b){var c=[];return a.subscribe(c.push.bind(c),b.onError.bind(b),function(){b.onNext(c),b.onCompleted()})},a)},fd.create=fd.createWithDisposable=function(a,b){return new Rd(a,b)};var hd=fd.defer=function(a){return new Rd(function(b){var c;try{c=a()}catch(d){return od(d).subscribe(b)}return Db(c)&&(c=gd(c)),c.subscribe(b)})},id=fd.empty=function(a){return xb(a)||(a=Jc),new Rd(function(b){return a.schedule(function(){b.onCompleted()})})},jd=Math.pow(2,53)-1;t.prototype[Ob]=function(){return new u(this._s)},u.prototype[Ob]=function(){return this},u.prototype.next=function(){if(this._i<this._l){var a=this._s.charAt(this._i++);return{done:!1,value:a}}return Pb},v.prototype[Ob]=function(){return new w(this._a)},w.prototype[Ob]=function(){return this},w.prototype.next=function(){if(this._i<this._l){var a=this._a[this._i++];return{done:!1,value:a}}return Pb};var kd=fd.from=function(a,b,c,d){if(null==a)throw new Error("iterable cannot be null.");if(b&&!Fb(b))throw new Error("mapFn when provided must be a function");xb(d)||(d=Kc);var e=Object(a),f=y(e);return new Rd(function(a){var e=0;return d.scheduleRecursive(function(d){var g;try{g=f.next()}catch(h){return void a.onError(h)}if(g.done)return void a.onCompleted();var i=g.value;if(b&&Fb(b))try{i=b.call(c,i,e)}catch(h){return void a.onError(h)}a.onNext(i),e++,d()})})},ld=fd.fromArray=function(a,b){return Tb("fromArray","from"),xb(b)||(b=Kc),new Rd(function(c){var d=0,e=a.length;return b.scheduleRecursive(function(b){e>d?(c.onNext(a[d++]),b()):c.onCompleted()})})};fd.generate=function(a,b,c,d,e){return xb(e)||(e=Kc),new Rd(function(f){var g=!0,h=a;return e.scheduleRecursive(function(a){var e,i;try{g?g=!1:h=c(h),e=b(h),e&&(i=d(h))}catch(j){return void f.onError(j)}e?(f.onNext(i),a()):f.onCompleted()})})},fd.of=function(){return B(null,arguments)},fd.ofWithScheduler=function(a){return B(a,oc.call(arguments,1))};var md=fd.never=function(){return new Rd(function(){return Ac})};fd.range=function(a,b,c){return xb(c)||(c=Kc),new Rd(function(d){return c.scheduleRecursiveWithState(0,function(c,e){b>c?(d.onNext(a+c),e(c+1)):d.onCompleted()})})},fd.repeat=function(a,b,c){return xb(c)||(c=Kc),nd(a,c).repeat(null==b?-1:b)};var nd=fd["return"]=fd.just=function(a,b){return xb(b)||(b=Jc),new Rd(function(c){return b.schedule(function(){c.onNext(a),c.onCompleted()})})};fd.returnValue=function(){return Tb("returnValue","return or just"),nd.apply(null,arguments)};var od=fd["throw"]=fd.throwException=fd.throwError=function(a,b){return xb(b)||(b=Jc),new Rd(function(c){return b.schedule(function(){c.onError(a)})})};fd.using=function(a,b){return new Rd(function(c){var d,e,f=Ac;try{d=a(),d&&(f=d),e=b(d)}catch(g){return new wc(od(g).subscribe(c),f)}return new wc(e.subscribe(c),f)})},_c.amb=function(a){var b=this;return new Rd(function(c){function d(){f||(f=g,j.dispose())}function e(){f||(f=h,i.dispose())}var f,g="L",h="R",i=new Bc,j=new Bc;return Db(a)&&(a=gd(a)),i.setDisposable(b.subscribe(function(a){d(),f===g&&c.onNext(a)},function(a){d(),f===g&&c.onError(a)},function(){d(),f===g&&c.onCompleted()})),j.setDisposable(a.subscribe(function(a){e(),f===h&&c.onNext(a)},function(a){e(),f===h&&c.onError(a)},function(){e(),f===h&&c.onCompleted()})),new wc(i,j)})},fd.amb=function(){function a(a,b){return a.amb(b)}for(var b=md(),c=o(arguments,0),d=0,e=c.length;e>d;d++)b=a(b,c[d]);return b},_c["catch"]=_c.catchError=function(a){return"function"==typeof a?C(this,a):pd([this,a])},_c.catchException=function(a){return Tb("catchException","catch or catchError"),this.catchError(a)};var pd=fd.catchError=fd["catch"]=function(){return Yc(o(arguments,0)).catchError()};fd.catchException=function(){return Tb("catchException","catch or catchError"),pd.apply(null,arguments)},_c.combineLatest=function(){var a=oc.call(arguments);return Array.isArray(a[0])?a[0].unshift(this):a.unshift(this),qd.apply(this,a)};var qd=fd.combineLatest=function(){var a=oc.call(arguments),b=a.pop();return Array.isArray(a[0])&&(a=a[0]),new Rd(function(c){function d(a){var d;if(h[a]=!0,i||(i=h.every(yb))){try{d=b.apply(null,k)}catch(e){return void c.onError(e)}c.onNext(d)}else j.filter(function(b,c){return c!==a}).every(yb)&&c.onCompleted()}function e(a){j[a]=!0,j.every(yb)&&c.onCompleted()}for(var f=function(){return!1},g=a.length,h=p(g,f),i=!1,j=p(g,f),k=new Array(g),l=new Array(g),m=0;g>m;m++)!function(b){var f=a[b],g=new Bc;Db(f)&&(f=gd(f)),g.setDisposable(f.subscribe(function(a){k[b]=a,d(b)},c.onError.bind(c),function(){e(b)})),l[b]=g}(m);return new wc(l)},this)};_c.concat=function(){var a=oc.call(arguments,0);return a.unshift(this),rd.apply(this,a)};var rd=fd.concat=function(){return Yc(o(arguments,0)).concat()};_c.concatAll=function(){return this.merge(1)},_c.concatObservable=function(){return Tb("concatObservable","concatAll"),this.merge(1)},_c.merge=function(a){if("number"!=typeof a)return sd(this,a);var b=this;return new Rd(function(c){function d(a){var b=new Bc;f.add(b),Db(a)&&(a=gd(a)),b.setDisposable(a.subscribe(c.onNext.bind(c),c.onError.bind(c),function(){f.remove(b),h.length>0?d(h.shift()):(e--,g&&0===e&&c.onCompleted())}))}var e=0,f=new wc,g=!1,h=[];return f.add(b.subscribe(function(b){a>e?(e++,d(b)):h.push(b)},c.onError.bind(c),function(){g=!0,0===e&&c.onCompleted()})),f},b)};var sd=fd.merge=function(){var a,b;return arguments[0]?xb(arguments[0])?(a=arguments[0],b=oc.call(arguments,1)):(a=Jc,b=oc.call(arguments,0)):(a=Jc,b=oc.call(arguments,1)),Array.isArray(b[0])&&(b=b[0]),B(a,b).mergeAll()};_c.mergeAll=function(){var a=this;return new Rd(function(b){var c=new wc,d=!1,e=new Bc;return c.add(e),e.setDisposable(a.subscribe(function(a){var e=new Bc;c.add(e),Db(a)&&(a=gd(a)),e.setDisposable(a.subscribe(b.onNext.bind(b),b.onError.bind(b),function(){c.remove(e),d&&1===c.length&&b.onCompleted()}))},b.onError.bind(b),function(){d=!0,1===c.length&&b.onCompleted()})),c},a)},_c.mergeObservable=function(){return Tb("mergeObservable","mergeAll"),this.mergeAll.apply(this,arguments)},_c.onErrorResumeNext=function(a){if(!a)throw new Error("Second observable is required");return td([this,a])};var td=fd.onErrorResumeNext=function(){var a=o(arguments,0);return new Rd(function(b){var c=0,d=new Cc,e=Jc.scheduleRecursive(function(e){var f,g;c<a.length?(f=a[c++],Db(f)&&(f=gd(f)),g=new Bc,d.setDisposable(g),g.setDisposable(f.subscribe(b.onNext.bind(b),e,e))):b.onCompleted()});return new wc(d,e)})};_c.skipUntil=function(a){var b=this;return new Rd(function(c){var d=!1,e=new wc(b.subscribe(function(a){d&&c.onNext(a)},c.onError.bind(c),function(){d&&c.onCompleted()}));Db(a)&&(a=gd(a));var f=new Bc;return e.add(f),f.setDisposable(a.subscribe(function(){d=!0,f.dispose()},c.onError.bind(c),function(){f.dispose()})),e},b)},_c["switch"]=_c.switchLatest=function(){var a=this;return new Rd(function(b){var c=!1,d=new Cc,e=!1,f=0,g=a.subscribe(function(a){var g=new Bc,h=++f;c=!0,d.setDisposable(g),Db(a)&&(a=gd(a)),g.setDisposable(a.subscribe(function(a){f===h&&b.onNext(a)},function(a){f===h&&b.onError(a)},function(){f===h&&(c=!1,e&&b.onCompleted())}))},b.onError.bind(b),function(){e=!0,!c&&b.onCompleted()});return new wc(g,d)},a)},_c.takeUntil=function(a){var b=this;return new Rd(function(c){return Db(a)&&(a=gd(a)),new wc(b.subscribe(c),a.subscribe(c.onCompleted.bind(c),c.onError.bind(c),wb))},b)},_c.zip=function(){if(Array.isArray(arguments[0]))return D.apply(this,arguments);var a=this,b=oc.call(arguments),c=b.pop();return b.unshift(a),new Rd(function(d){function e(b){var e,f;if(h.every(function(a){return a.length>0})){try{f=h.map(function(a){return a.shift()}),e=c.apply(a,f)}catch(g){return void d.onError(g)}d.onNext(e)}else i.filter(function(a,c){return c!==b}).every(yb)&&d.onCompleted()}function f(a){i[a]=!0,i.every(function(a){return a})&&d.onCompleted()}for(var g=b.length,h=p(g,function(){return[]}),i=p(g,function(){return!1}),j=new Array(g),k=0;g>k;k++)!function(a){var c=b[a],g=new Bc;Db(c)&&(c=gd(c)),g.setDisposable(c.subscribe(function(b){h[a].push(b),e(a)},d.onError.bind(d),function(){f(a)})),j[a]=g}(k);return new wc(j)},a)},fd.zip=function(){var a=oc.call(arguments,0),b=a.shift();return b.zip.apply(b,a)},fd.zipArray=function(){var a=o(arguments,0);return new Rd(function(b){function c(a){if(f.every(function(a){return a.length>0})){var c=f.map(function(a){return a.shift()});b.onNext(c)}else if(g.filter(function(b,c){return c!==a}).every(yb))return void b.onCompleted()}function d(a){return g[a]=!0,g.every(yb)?void b.onCompleted():void 0}for(var e=a.length,f=p(e,function(){return[]}),g=p(e,function(){return!1}),h=new Array(e),i=0;e>i;i++)!function(e){h[e]=new Bc,h[e].setDisposable(a[e].subscribe(function(a){f[e].push(a),c(e)},b.onError.bind(b),function(){d(e)}))}(i);var j=new wc(h);return j.add(zc(function(){for(var a=0,b=f.length;b>a;a++)f[a]=[]})),j})},_c.asObservable=function(){return new Rd(this.subscribe.bind(this),this)},_c.bufferWithCount=function(a,b){return"number"!=typeof b&&(b=a),this.windowWithCount(a,b).selectMany(function(a){return a.toArray()}).where(function(a){return a.length>0})},_c.dematerialize=function(){var a=this;return new Rd(function(b){return a.subscribe(function(a){return a.accept(b)},b.onError.bind(b),b.onCompleted.bind(b))},this)},_c.distinctUntilChanged=function(a,b){var c=this;return a||(a=yb),b||(b=Ab),new Rd(function(d){var e,f=!1;return c.subscribe(function(c){var g,h=!1;try{g=a(c)}catch(i){return void d.onError(i)}if(f)try{h=b(e,g)}catch(i){return void d.onError(i)}f&&h||(f=!0,e=g,d.onNext(c))},d.onError.bind(d),d.onCompleted.bind(d))},this)},_c["do"]=_c.tap=function(a,b,c){var d,e=this;return"function"==typeof a?d=a:(d=a.onNext.bind(a),b=a.onError.bind(a),c=a.onCompleted.bind(a)),new Rd(function(a){return e.subscribe(function(b){try{d(b)}catch(c){a.onError(c)}a.onNext(b)},function(c){if(b)try{b(c)}catch(d){a.onError(d)}a.onError(c)},function(){if(c)try{c()}catch(b){a.onError(b)}a.onCompleted()})},this)},_c.doAction=function(){return Tb("doAction","do or tap"),this.tap.apply(this,arguments)},_c.doOnNext=_c.tapOnNext=function(a,b){return this.tap(2===arguments.length?function(c){a.call(b,c)}:a)},_c.doOnError=_c.tapOnError=function(a,b){return this.tap(wb,2===arguments.length?function(c){a.call(b,c)}:a)},_c.doOnCompleted=_c.tapOnCompleted=function(a,b){return this.tap(wb,null,2===arguments.length?function(){a.call(b)}:a)},_c["finally"]=_c.ensure=function(a){var b=this;return new Rd(function(c){var d;try{d=b.subscribe(c)}catch(e){throw a(),e}return zc(function(){try{d.dispose()}catch(b){throw b}finally{a()}})},this)},_c.finallyAction=function(a){return Tb("finallyAction","finally or ensure"),this.ensure(a)},_c.ignoreElements=function(){var a=this;return new Rd(function(b){return a.subscribe(wb,b.onError.bind(b),b.onCompleted.bind(b))},a)},_c.materialize=function(){var a=this;return new Rd(function(b){return a.subscribe(function(a){b.onNext(Sc(a))},function(a){b.onNext(Tc(a)),b.onCompleted()},function(){b.onNext(Uc()),b.onCompleted()})},a)},_c.repeat=function(a){return Xc(this,a).concat()},_c.retry=function(a){return Xc(this,a).catchError()},_c.scan=function(){var a,b,c=!1,d=this;return 2===arguments.length?(c=!0,a=arguments[0],b=arguments[1]):b=arguments[0],new Rd(function(e){var f,g,h;return d.subscribe(function(d){!h&&(h=!0);try{f?g=b(g,d):(g=c?b(a,d):d,f=!0)}catch(i){return void e.onError(i)}e.onNext(g)},e.onError.bind(e),function(){!h&&c&&e.onNext(a),e.onCompleted()})},d)},_c.skipLast=function(a){var b=this;return new Rd(function(c){var d=[];return b.subscribe(function(b){d.push(b),d.length>a&&c.onNext(d.shift())},c.onError.bind(c),c.onCompleted.bind(c))},b)},_c.startWith=function(){var a,b,c=0;return arguments.length&&xb(arguments[0])?(b=arguments[0],c=1):b=Jc,a=oc.call(arguments,c),Yc([ld(a,b),this]).concat()},_c.takeLast=function(a){var b=this;return new Rd(function(c){var d=[];return b.subscribe(function(b){d.push(b),d.length>a&&d.shift()},c.onError.bind(c),function(){for(;d.length>0;)c.onNext(d.shift());c.onCompleted()})},b)},_c.takeLastBuffer=function(a){var b=this;return new Rd(function(c){var d=[];return b.subscribe(function(b){d.push(b),d.length>a&&d.shift()},c.onError.bind(c),function(){c.onNext(d),c.onCompleted()})},b)},_c.windowWithCount=function(a,b){var c=this;if(+a||(a=0),1/0===Math.abs(a)&&(a=0),0>=a)throw new Error(Hb);if(null==b&&(b=a),+b||(b=0),1/0===Math.abs(b)&&(b=0),0>=b)throw new Error(Hb);return new Rd(function(d){function e(){var a=new Ud;i.push(a),d.onNext(rc(a,g))}var f=new Bc,g=new Dc(f),h=0,i=[];return e(),f.setDisposable(c.subscribe(function(c){for(var d=0,f=i.length;f>d;d++)i[d].onNext(c);var g=h-a+1;g>=0&&g%b===0&&i.shift().onCompleted(),++h%b===0&&e()},function(a){for(;i.length>0;)i.shift().onError(a);d.onError(a)},function(){for(;i.length>0;)i.shift().onCompleted();d.onCompleted()})),g},c)},_c.selectConcat=_c.concatMap=function(a,b,c){return Fb(a)&&Fb(b)?this.concatMap(function(c,d){var e=a(c,d);return Db(e)&&(e=gd(e)),(Rb(e)||Qb(e))&&(e=kd(e)),e.map(function(a,e){return b(c,a,d,e)})}):Fb(a)?E(this,a,c):E(this,function(){return a})},_c.concatMapObserver=_c.selectConcatObserver=function(a,b,c,d){var e=this;return new Rd(function(f){var g=0;return e.subscribe(function(b){var c;try{c=a.call(d,b,g++)}catch(e){return void f.onError(e)}Db(c)&&(c=gd(c)),f.onNext(c)},function(a){var c;try{c=b.call(d,a)}catch(e){return void f.onError(e)}Db(c)&&(c=gd(c)),f.onNext(c),f.onCompleted()},function(){var a;try{a=c.call(d)}catch(b){return void f.onError(b)}Db(a)&&(a=gd(a)),f.onNext(a),f.onCompleted()})},this).concatAll()},_c.defaultIfEmpty=function(b){var c=this;return b===a&&(b=null),new Rd(function(a){var d=!1;return c.subscribe(function(b){d=!0,a.onNext(b)},a.onError.bind(a),function(){!d&&a.onNext(b),a.onCompleted()})},this)},G.prototype.push=function(a){var b=-1===F(this.set,a,this.comparer);return b&&this.set.push(a),b},_c.distinct=function(a,b){var c=this;return b||(b=Ab),new Rd(function(d){var e=new G(b);return c.subscribe(function(b){var c=b;if(a)try{c=a(b)}catch(f){return void d.onError(f)}e.push(c)&&d.onNext(b)},d.onError.bind(d),d.onCompleted.bind(d))},this)},_c.groupBy=function(a,b,c){return this.groupByUntil(a,b,md,c)},_c.groupByUntil=function(a,b,c,d){var e=this;return b||(b=yb),d||(d=Ab),new Rd(function(f){function g(a){return function(b){b.onError(a)}}var h=new Kd(0,d),i=new wc,j=new Dc(i);return i.add(e.subscribe(function(d){var e;try{e=a(d)}catch(k){return h.getValues().forEach(g(k)),void f.onError(k)}var l=!1,m=h.tryGetValue(e);if(m||(m=new Ud,h.set(e,m),l=!0),l){var n=new Td(e,m,j),o=new Td(e,m);try{duration=c(o)}catch(k){return h.getValues().forEach(g(k)),void f.onError(k)}f.onNext(n);var p=new Bc;i.add(p);var q=function(){h.remove(e)&&m.onCompleted(),i.remove(p)};p.setDisposable(duration.take(1).subscribe(wb,function(a){h.getValues().forEach(g(a)),f.onError(a)},q))}var r;try{r=b(d)}catch(k){return h.getValues().forEach(g(k)),void f.onError(k)}m.onNext(r)},function(a){h.getValues().forEach(g(a)),f.onError(a)},function(){h.getValues().forEach(function(a){a.onCompleted()}),f.onCompleted()})),j},e)},_c.select=_c.map=function(a,b){var c=Fb(a)?a:function(){return a},d=this;return new Rd(function(a){var e=0;return d.subscribe(function(f){var g;try{g=c.call(b,f,e++,d)}catch(h){return void a.onError(h)}a.onNext(g)},a.onError.bind(a),a.onCompleted.bind(a))},d)},_c.pluck=function(a){return this.map(function(b){return b[a]})},_c.selectMany=_c.flatMap=function(a,b,c){return Fb(a)&&Fb(b)?this.flatMap(function(c,d){var e=a(c,d);return Db(e)&&(e=gd(e)),(Rb(e)||Qb(e))&&(e=kd(e)),e.map(function(a,e){return b(c,a,d,e)})},c):Fb(a)?H(this,a,c):H(this,function(){return a})},_c.flatMapObserver=_c.selectManyObserver=function(a,b,c,d){var e=this;return new Rd(function(f){var g=0;return e.subscribe(function(b){var c;try{c=a.call(d,b,g++)}catch(e){return void f.onError(e)}Db(c)&&(c=gd(c)),f.onNext(c)},function(a){var c;try{c=b.call(d,a)}catch(e){return void f.onError(e)}Db(c)&&(c=gd(c)),f.onNext(c),f.onCompleted()},function(){var a;try{a=c.call(d)}catch(b){return void f.onError(b)}Db(a)&&(a=gd(a)),f.onNext(a),f.onCompleted()})},e).mergeAll()},_c.selectSwitch=_c.flatMapLatest=_c.switchMap=function(a,b){return this.select(a,b).switchLatest()},_c.skip=function(a){if(0>a)throw new Error(Hb);var b=this;return new Rd(function(c){var d=a;return b.subscribe(function(a){0>=d?c.onNext(a):d--},c.onError.bind(c),c.onCompleted.bind(c))},b)},_c.skipWhile=function(a,b){var c=this;return new Rd(function(d){var e=0,f=!1;return c.subscribe(function(g){if(!f)try{f=!a.call(b,g,e++,c)}catch(h){return void d.onError(h)}f&&d.onNext(g)},d.onError.bind(d),d.onCompleted.bind(d))},c)},_c.take=function(a,b){if(0>a)throw new RangeError(Hb);if(0===a)return id(b);var c=this;return new Rd(function(b){var d=a;return c.subscribe(function(a){d-->0&&(b.onNext(a),0===d&&b.onCompleted())},b.onError.bind(b),b.onCompleted.bind(b))},c)},_c.takeWhile=function(a,b){var c=this;return new Rd(function(d){var e=0,f=!0;return c.subscribe(function(g){if(f){try{f=a.call(b,g,e++,c)}catch(h){return void d.onError(h)}f?d.onNext(g):d.onCompleted()}},d.onError.bind(d),d.onCompleted.bind(d))},c)},_c.where=_c.filter=function(a,b){var c=this;return new Rd(function(d){var e=0;return c.subscribe(function(c){var f;try{f=a.call(b,c,e++,parent)}catch(g){return void d.onError(g)}f&&d.onNext(c)},d.onError.bind(d),d.onCompleted.bind(d))},c)},_c.finalValue=function(){var a=this;return new Rd(function(b){var c,d=!1;return a.subscribe(function(a){d=!0,c=a},b.onError.bind(b),function(){d?(b.onNext(c),b.onCompleted()):b.onError(new Error(Gb))})},a)},_c.aggregate=function(){Tb("aggregate","reduce");var a,b,c;return 2===arguments.length?(a=arguments[0],b=!0,c=arguments[1]):c=arguments[0],b?this.scan(a,c).startWith(a).finalValue():this.scan(c).finalValue()},_c.reduce=function(a){var b,c;return 2===arguments.length&&(c=!0,b=arguments[1]),c?this.scan(b,a).startWith(b).finalValue():this.scan(a).finalValue()},_c.some=function(a,b){var c=this;return a?c.filter(a,b).some():new Rd(function(a){return c.subscribe(function(){a.onNext(!0),a.onCompleted()},a.onError.bind(a),function(){a.onNext(!1),a.onCompleted()})},c)},_c.any=function(){return Tb("any","some"),this.some.apply(this,arguments)},_c.isEmpty=function(){return this.any().map(Eb)},_c.every=function(a,b){return this.filter(function(b){return!a(b)},b).some().map(Eb)},_c.all=function(){return Tb("all","every"),this.every.apply(this,arguments)},_c.contains=function(a,b){function c(a,b){return 0===a&&0===b||a===b||isNaN(a)&&isNaN(b)}var d=this;return new Rd(function(e){var f=0,g=+b||0;return 1/0===Math.abs(g)&&(g=0),0>g?(e.onNext(!1),e.onCompleted(),Ac):d.subscribe(function(b){f++>=g&&c(b,a)&&(e.onNext(!0),e.onCompleted())},e.onError.bind(e),function(){e.onNext(!1),e.onCompleted()})},this)},_c.count=function(a,b){return a?this.where(a,b).count():this.aggregate(0,function(a){return a+1})},_c.indexOf=function(a,b){var c=this;return new Rd(function(d){var e=0,f=+b||0;return 1/0===Math.abs(f)&&(f=0),0>f?(d.onNext(-1),d.onCompleted(),Ac):c.subscribe(function(b){e>=f&&b===a&&(d.onNext(e),d.onCompleted()),e++},d.onError.bind(d),function(){d.onNext(-1),d.onCompleted()})},c)},_c.sum=function(a,b){return a&&Fb(a)?this.map(a,b).sum():this.reduce(function(a,b){return a+b},0)},_c.minBy=function(a,b){return b||(b=Bb),I(this,a,function(a,c){return-1*b(a,c)})},_c.min=function(a){return this.minBy(yb,a).map(function(a){return J(a)})},_c.maxBy=function(a,b){return b||(b=Bb),I(this,a,b)},_c.max=function(a){return this.maxBy(yb,a).map(function(a){return J(a)})},_c.average=function(a,b){return a&&Fb(a)?this.select(a,b).average():this.scan({sum:0,count:0},function(a,b){return{sum:a.sum+b,count:a.count+1}}).finalValue().map(function(a){if(0===a.count)throw new Error("The input sequence was empty");return a.sum/a.count})},_c.sequenceEqual=function(a,b){var c=this;return b||(b=Ab),new Rd(function(d){var e=!1,f=!1,g=[],h=[],i=c.subscribe(function(a){var c,e;if(h.length>0){e=h.shift();try{c=b(e,a)}catch(i){return void d.onError(i)}c||(d.onNext(!1),d.onCompleted())}else f?(d.onNext(!1),d.onCompleted()):g.push(a)},d.onError.bind(d),function(){e=!0,0===g.length&&(h.length>0?(d.onNext(!1),d.onCompleted()):f&&(d.onNext(!0),d.onCompleted()))});(Rb(a)||Qb(a))&&(a=kd(a)),Db(a)&&(a=gd(a));var j=a.subscribe(function(a){var c;if(g.length>0){var f=g.shift();try{c=b(f,a)}catch(i){return void d.onError(i)}c||(d.onNext(!1),d.onCompleted())}else e?(d.onNext(!1),d.onCompleted()):h.push(a)},d.onError.bind(d),function(){f=!0,0===h.length&&(g.length>0?(d.onNext(!1),d.onCompleted()):e&&(d.onNext(!0),d.onCompleted()))});return new wc(i,j)},c)},_c.elementAt=function(a){return K(this,a,!1)},_c.elementAtOrDefault=function(a,b){return K(this,a,!0,b)},_c.single=function(a,b){return a&&Fb(a)?this.where(a,b).single():L(this,!1)},_c.singleOrDefault=function(a,b,c){return a&&Fb(a)?this.where(a,c).singleOrDefault(null,b):L(this,!0,b)},_c.first=function(a,b){return a?this.where(a,b).first():M(this,!1)},_c.firstOrDefault=function(a,b){return a?this.where(a).firstOrDefault(null,b):M(this,!0,b)},_c.last=function(a,b){return a?this.where(a,b).last():N(this,!1)},_c.lastOrDefault=function(a,b,c){return a?this.where(a,c).lastOrDefault(null,b):N(this,!0,b)},_c.find=function(a,b){return O(this,a,b,!1)},_c.findIndex=function(a,b){return O(this,a,b,!0)},_c.toSet=function(){if("undefined"==typeof qb.Set)throw new TypeError;var a=this;return new Rd(function(b){var c=new qb.Set;return a.subscribe(c.add.bind(c),b.onError.bind(b),function(){b.onNext(c),b.onCompleted()})},a)},_c.toMap=function(a,b){if("undefined"==typeof qb.Map)throw new TypeError;var c=this;return new Rd(function(d){var e=new qb.Map;return c.subscribe(function(c){var f;try{f=a(c)}catch(g){return void d.onError(g)}var h=c;if(b)try{h=b(c)}catch(g){return void d.onError(g)}e.set(f,h)},d.onError.bind(d),function(){d.onNext(e),d.onCompleted()})},c)};var ud="function",vd="throw",wd=vb.spawn=function(a){var b=U(a);return function(c){function d(a,b){Pc.schedule(c.bind(f,a,b))}function e(a,b){var c;if(arguments.length>2&&(b=oc.call(arguments,1)),a)try{c=g[vd](a)}catch(h){return d(h)}if(!a)try{c=g.next(b)}catch(h){return d(h)}if(c.done)return d(null,c.value);if(c.value=P(c.value,f),typeof c.value!==ud)e(new TypeError("Rx.spawn only supports a function, Promise, Observable, Object or Array."));else{var i=!1;try{c.value.call(f,function(){i||(i=!0,e.apply(f,arguments))})}catch(h){Pc.schedule(function(){i||(i=!0,e.call(f,h))})}}}var f=this,g=a;if(b){var h=oc.call(arguments),i=h.length,j=i&&typeof h[i-1]===ud;c=j?h.pop():W,g=a.apply(this,h)}else c=c||W;e()}};vb.denodify=function(a){return function(){var b,c,d,e=oc.call(arguments);return e.push(function(){b=arguments,d&&!c&&(c=!0,cb.apply(this,b))}),a.apply(this,e),function(a){d=a,b&&!c&&(c=!0,a.apply(this,b))}}},fd.start=function(a,b,c){return xd(a,b,c)()};var xd=fd.toAsync=function(a,b,c){return xb(c)||(c=Pc),function(){var d=arguments,e=new Vd;return c.schedule(function(){var c;try{c=a.apply(b,d)}catch(f){return void e.onError(f)}e.onNext(c),e.onCompleted()}),e.asObservable()}};fd.fromCallback=function(a,b,c){return function(){var d=oc.call(arguments,0);return new Rd(function(e){function f(){var a=arguments;if(c){try{a=c(a)}catch(b){return void e.onError(b)}e.onNext(a)}else a.length<=1?e.onNext.apply(e,a):e.onNext(a);e.onCompleted()}d.push(f),a.apply(b,d)}).publishLast().refCount()}},fd.fromNodeCallback=function(a,b,c){return function(){var d=oc.call(arguments,0);return new Rd(function(e){function f(a){if(a)return void e.onError(a);var b=oc.call(arguments,1);if(c){try{b=c(b)}catch(d){return void e.onError(d)}e.onNext(b)}else b.length<=1?e.onNext.apply(e,b):e.onNext(b);e.onCompleted()}d.push(f),a.apply(b,d)}).publishLast().refCount()}},vb.config.useNativeEvents=!1;var yd=qb.angular&&angular.element?angular.element:qb.jQuery?qb.jQuery:qb.Zepto?qb.Zepto:null,zd=!!qb.Ember&&"function"==typeof qb.Ember.addListener,Ad=!!qb.Backbone&&!!qb.Backbone.Marionette;fd.fromEvent=function(a,b,c){if(a.addListener)return Bd(function(c){a.addListener(b,c)},function(c){a.removeListener(b,c)},c);if(!vb.config.useNativeEvents){if(Ad)return Bd(function(c){a.on(b,c)},function(c){a.off(b,c)},c);if(zd)return Bd(function(c){Ember.addListener(a,b,c)},function(c){Ember.removeListener(a,b,c)},c);if(yd){var d=yd(a);return Bd(function(a){d.on(b,a)},function(a){d.off(b,a)},c)}}return new Rd(function(d){return Z(a,b,function(a){var b=a;if(c)try{b=c(arguments)}catch(e){return void d.onError(e)}d.onNext(b)})}).publish().refCount()};var Bd=fd.fromEventPattern=function(a,b,c){return new Rd(function(d){function e(a){var b=a;if(c)try{b=c(arguments)}catch(e){return void d.onError(e)}d.onNext(b)}var f=a(e);return zc(function(){b&&b(e,f)})}).publish().refCount()};fd.startAsync=function(a){var b;try{b=a()}catch(c){return od(c)}return gd(b)};var Cd=function(a){function b(a){var b=this.source.publish(),c=b.subscribe(a),d=Ac,e=this.pauser.distinctUntilChanged().subscribe(function(a){a?d=b.connect():(d.dispose(),d=Ac)});return new wc(c,d,e)}function c(c,d){this.source=c,this.controller=new Ud,this.pauser=d&&d.subscribe?this.controller.merge(d):this.controller,a.call(this,b)}return pc(c,a),c.prototype.pause=function(){this.controller.onNext(!1)},c.prototype.resume=function(){this.controller.onNext(!0)},c}(fd);_c.pausable=function(a){return new Cd(this,a)};var Dd=function(b){function c(b){var c,d=[],e=$(this.source,this.pauser.distinctUntilChanged().startWith(!1),function(a,b){return{data:a,shouldFire:b}}).subscribe(function(e){if(c!==a&&e.shouldFire!=c){if(c=e.shouldFire,e.shouldFire)for(;d.length>0;)b.onNext(d.shift())}else c=e.shouldFire,e.shouldFire?b.onNext(e.data):d.push(e.data)},function(a){for(;d.length>0;)b.onNext(d.shift());b.onError(a)},function(){for(;d.length>0;)b.onNext(d.shift());b.onCompleted()});return e}function d(a,d){this.source=a,this.controller=new Ud,this.pauser=d&&d.subscribe?this.controller.merge(d):this.controller,b.call(this,c)}return pc(d,b),d.prototype.pause=function(){this.controller.onNext(!1)},d.prototype.resume=function(){this.controller.onNext(!0)},d}(fd);_c.pausableBuffered=function(a){return new Dd(this,a)},_c.controlled=function(a){return null==a&&(a=!0),new Ed(this,a)};var Ed=function(a){function b(a){return this.source.subscribe(a)}function c(c,d){a.call(this,b),this.subject=new Fd(d),this.source=c.multicast(this.subject).refCount()}return pc(c,a),c.prototype.request=function(a){return null==a&&(a=-1),this.subject.request(a)},c}(fd),Fd=vb.ControlledSubject=function(a){function c(a){return this.subject.subscribe(a)}function d(b){null==b&&(b=!0),a.call(this,c),this.subject=new Ud,this.enableQueue=b,this.queue=b?[]:null,this.requestedCount=0,this.requestedDisposable=Ac,this.error=null,this.hasFailed=!1,this.hasCompleted=!1,this.controlledDisposable=Ac}return pc(d,a),qc(d.prototype,Zc,{onCompleted:function(){b.call(this),this.hasCompleted=!0,this.enableQueue&&0!==this.queue.length||this.subject.onCompleted()},onError:function(a){b.call(this),this.hasFailed=!0,this.error=a,this.enableQueue&&0!==this.queue.length||this.subject.onError(a)},onNext:function(a){b.call(this);var c=!1;0===this.requestedCount?this.enableQueue&&this.queue.push(a):(-1!==this.requestedCount&&0===this.requestedCount--&&this.disposeCurrentRequest(),c=!0),c&&this.subject.onNext(a)},_processRequest:function(a){if(this.enableQueue){for(;this.queue.length>=a&&a>0;)this.subject.onNext(this.queue.shift()),a--;return 0!==this.queue.length?{numberOfItems:a,returnValue:!0}:{numberOfItems:a,returnValue:!1}}return this.hasFailed?(this.subject.onError(this.error),this.controlledDisposable.dispose(),this.controlledDisposable=Ac):this.hasCompleted&&(this.subject.onCompleted(),this.controlledDisposable.dispose(),this.controlledDisposable=Ac),{numberOfItems:a,returnValue:!1}},request:function(a){b.call(this),this.disposeCurrentRequest();var c=this,d=this._processRequest(a);return a=d.numberOfItems,d.returnValue?Ac:(this.requestedCount=a,this.requestedDisposable=zc(function(){c.requestedCount=0}),this.requestedDisposable)},disposeCurrentRequest:function(){this.requestedDisposable.dispose(),this.requestedDisposable=Ac},dispose:function(){this.isDisposed=!0,this.error=null,this.subject.dispose(),this.requestedDisposable.dispose()}}),d}(fd);_c.multicast=function(a,b){var c=this;return"function"==typeof a?new Rd(function(d){var e=c.multicast(a());return new wc(b(e).subscribe(d),e.connect())
|
2
|
+
(function(a){function b(){if(this.isDisposed)throw new Error(Ib)}function c(a,b){if(Jb&&b.stack&&"object"==typeof a&&null!==a&&a.stack&&-1===a.stack.indexOf(Nb)){for(var c=[],e=b;e;e=e.source)e.stack&&c.unshift(e.stack);c.unshift(a.stack);var f=c.join("\n"+Nb+"\n");a.stack=d(f)}}function d(a){for(var b=a.split("\n"),c=[],d=0,g=b.length;g>d;d++){var h=b[d];e(h)||f(h)||!h||c.push(h)}return c.join("\n")}function e(a){var b=h(a);if(!b)return!1;var c=b[0],d=b[1];return c===Lb&&d>=Mb&&Xd>=d}function f(a){return-1!==a.indexOf("(module.js:")||-1!==a.indexOf("(node.js:")}function g(){if(Jb)try{throw new Error}catch(a){var b=a.stack.split("\n"),c=b[0].indexOf("@")>0?b[1]:b[2],d=h(c);if(!d)return;return Lb=d[0],d[1]}}function h(a){var b=/at .+ \((.+):(\d+):(?:\d+)\)$/.exec(a);if(b)return[b[1],Number(b[2])];var c=/at ([^ ]+):(\d+):(?:\d+)$/.exec(a);if(c)return[c[1],Number(c[2])];var d=/.*@(.+):(\d+)$/.exec(a);return d?[d[1],Number(d[2])]:void 0}function i(a){var b=typeof a;return a&&("function"==b||"object"==b)||!1}function j(a){var b=[];if(!i(a))return b;lc.nonEnumArgs&&a.length&&mc(a)&&(a=oc.call(a));var c=lc.enumPrototypes&&"function"==typeof a,d=lc.enumErrorProps&&(a===fc||a instanceof Error);for(var e in a)c&&"prototype"==e||d&&("message"==e||"name"==e)||b.push(e);if(lc.nonEnumShadows&&a!==gc){var f=a.constructor,g=-1,h=jc.length;if(a===(f&&f.prototype))var j=a===hc?bc:a===fc?Yb:cc.call(a),k=kc[j];for(;++g<h;)e=jc[g],k&&k[e]||!dc.call(a,e)||b.push(e)}return b}function k(a,b,c){for(var d=-1,e=c(a),f=e.length;++d<f;){var g=e[d];if(b(a[g],g,a)===!1)break}return a}function l(a,b){return k(a,b,j)}function m(a){return"function"!=typeof a.toString&&"string"==typeof(a+"")}function n(a,b,c,d){if(a===b)return 0!==a||1/a==1/b;var e=typeof a,f=typeof b;if(a===a&&(null==a||null==b||"function"!=e&&"object"!=e&&"function"!=f&&"object"!=f))return!1;var g=cc.call(a),h=cc.call(b);if(g==Ub&&(g=_b),h==Ub&&(h=_b),g!=h)return!1;switch(g){case Wb:case Xb:return+a==+b;case $b:return a!=+a?b!=+b:0==a?1/a==1/b:a==+b;case ac:case bc:return a==String(b)}var i=g==Vb;if(!i){if(g!=_b||!lc.nodeClass&&(m(a)||m(b)))return!1;var j=!lc.argsObject&&mc(a)?Object:a.constructor,k=!lc.argsObject&&mc(b)?Object:b.constructor;if(!(j==k||dc.call(a,"constructor")&&dc.call(b,"constructor")||Fb(j)&&j instanceof j&&Fb(k)&&k instanceof k||!("constructor"in a&&"constructor"in b)))return!1}c||(c=[]),d||(d=[]);for(var o=c.length;o--;)if(c[o]==a)return d[o]==b;var p=0,q=!0;if(c.push(a),d.push(b),i){if(o=a.length,p=b.length,q=p==o)for(;p--;){var r=b[p];if(!(q=n(a[p],r,c,d)))break}}else l(b,function(b,e,f){return dc.call(f,e)?(p++,q=dc.call(a,e)&&n(a[e],b,c,d)):void 0}),q&&l(a,function(a,b,c){return dc.call(c,b)?q=--p>-1:void 0});return c.pop(),d.pop(),q}function o(a,b){return 1===a.length&&Array.isArray(a[b])?a[b]:oc.call(a)}function p(a,b){for(var c=new Array(a),d=0;a>d;d++)c[d]=b();return c}function q(a,b){this.id=a,this.value=b}function r(a,b){this.scheduler=a,this.disposable=b,this.isDisposed=!1}function t(){this._s=s}function u(){this._s=s,this._l=s.length,this._i=0}function v(a){this._a=a}function w(a){this._a=a,this._l=A(a),this._i=0}function x(a){return"number"==typeof a&&qb.isFinite(a)}function y(b){var c,d=b[Ob];if(!d&&"string"==typeof b)return c=new t(b),c[Ob]();if(!d&&b.length!==a)return c=new v(b),c[Ob]();if(!d)throw new TypeError("Object is not iterable");return b[Ob]()}function z(a){var b=+a;return 0===b?b:isNaN(b)?b:0>b?-1:1}function A(a){var b=+a.length;return isNaN(b)?0:0!==b&&x(b)?(b=z(b)*Math.floor(Math.abs(b)),0>=b?0:b>jd?jd:b):b}function B(a,b){return xb(a)||(a=Kc),new Rd(function(c){var d=0,e=b.length;return a.scheduleRecursive(function(a){e>d?(c.onNext(b[d++]),a()):c.onCompleted()})})}function C(a,b){return new Rd(function(c){var d=new Bc,e=new Cc;return e.setDisposable(d),d.setDisposable(a.subscribe(c.onNext.bind(c),function(a){var d,f;try{f=b(a)}catch(g){return void c.onError(g)}Db(f)&&(f=gd(f)),d=new Bc,e.setDisposable(d),d.setDisposable(f.subscribe(c))},c.onCompleted.bind(c))),e},a)}function D(a,b){var c=this;return new Rd(function(d){var e=0,f=a.length;return c.subscribe(function(c){if(f>e){var g,h=a[e++];try{g=b(c,h)}catch(i){return void d.onError(i)}d.onNext(g)}else d.onCompleted()},d.onError.bind(d),d.onCompleted.bind(d))},c)}function E(a,b,c){return a.map(function(d,e){var f=b.call(c,d,e,a);return Db(f)&&(f=gd(f)),(Rb(f)||Qb(f))&&(f=kd(f)),f}).concatAll()}function F(a,b,c){for(var d=0,e=a.length;e>d;d++)if(c(a[d],b))return d;return-1}function G(a){this.comparer=a,this.set=[]}function H(a,b,c){return a.map(function(d,e){var f=b.call(c,d,e,a);return Db(f)&&(f=gd(f)),(Rb(f)||Qb(f))&&(f=kd(f)),f}).mergeAll()}function I(a,b,c){return new Rd(function(d){var e=!1,f=null,g=[];return a.subscribe(function(a){var h,i;try{i=b(a)}catch(j){return void d.onError(j)}if(h=0,e)try{h=c(i,f)}catch(k){return void d.onError(k)}else e=!0,f=i;h>0&&(f=i,g=[]),h>=0&&g.push(a)},d.onError.bind(d),function(){d.onNext(g),d.onCompleted()})},a)}function J(a){if(0===a.length)throw new Error(Gb);return a[0]}function K(a,b,c,d){if(0>b)throw new Error(Hb);return new Rd(function(e){var f=b;return a.subscribe(function(a){0===f--&&(e.onNext(a),e.onCompleted())},e.onError.bind(e),function(){c?(e.onNext(d),e.onCompleted()):e.onError(new Error(Hb))})},a)}function L(a,b,c){return new Rd(function(d){var e=c,f=!1;return a.subscribe(function(a){f?d.onError(new Error("Sequence contains more than one element")):(e=a,f=!0)},d.onError.bind(d),function(){f||b?(d.onNext(e),d.onCompleted()):d.onError(new Error(Gb))})},a)}function M(a,b,c){return new Rd(function(d){return a.subscribe(function(a){d.onNext(a),d.onCompleted()},d.onError.bind(d),function(){b?(d.onNext(c),d.onCompleted()):d.onError(new Error(Gb))})},a)}function N(a,b,c){return new Rd(function(d){var e=c,f=!1;return a.subscribe(function(a){e=a,f=!0},d.onError.bind(d),function(){f||b?(d.onNext(e),d.onCompleted()):d.onError(new Error(Gb))})},a)}function O(b,c,d,e){return new Rd(function(f){var g=0;return b.subscribe(function(a){var h;try{h=c.call(d,a,g,b)}catch(i){return void f.onError(i)}h?(f.onNext(e?g:a),f.onCompleted()):g++},f.onError.bind(f),function(){f.onNext(e?-1:a),f.onCompleted()})},b)}function P(a,b){return Array.isArray(a)?Q.call(b,a):U(a)?wd(a.call(b)):V(a)?wd(a):T(a)?R(a):Db(a)?S(a):typeof a===ud?a:i(a)||Array.isArray(a)?Q.call(b,a):a}function Q(a){var b=this;return function(c){function d(a,d){if(!e)try{if(a=P(a,b),typeof a!==ud)return h[d]=a,--g||c(null,h);a.call(b,function(a,b){if(!e){if(a)return e=!0,c(a);h[d]=b,--g||c(null,h)}})}catch(f){e=!0,c(f)}}var e,f=Object.keys(a),g=f.length,h=new a.constructor;if(!g)return void Pc.schedule(function(){c(null,h)});for(var i=0,j=f.length;j>i;i++)d(a[f[i]],f[i])}}function R(a){return function(b){var c,d=!1;a.subscribe(function(a){c=a,d=!0},b,function(){d&&b(null,c)})}}function S(a){return function(b){a.then(function(a){b(null,a)},b)}}function T(a){return a&&typeof a.subscribe===ud}function U(a){return a&&a.constructor&&"GeneratorFunction"===a.constructor.name}function V(a){return a&&typeof a.next===ud&&typeof a[vd]===ud}function i(a){return a&&a.constructor===Object}function W(a){a&&Pc.schedule(function(){throw a})}function X(a){var b=function(){this.cancelBubble=!0},c=function(){if(this.bubbledKeyCode=this.keyCode,this.ctrlKey)try{this.keyCode=0}catch(a){}this.defaultPrevented=!0,this.returnValue=!1,this.modified=!0};if(a||(a=qb.event),!a.target)switch(a.target=a.target||a.srcElement,"mouseover"==a.type&&(a.relatedTarget=a.fromElement),"mouseout"==a.type&&(a.relatedTarget=a.toElement),a.stopPropagation||(a.stopPropagation=b,a.preventDefault=c),a.type){case"keypress":var d="charCode"in a?a.charCode:a.keyCode;10==d?(d=0,a.keyCode=13):13==d||27==d?d=0:3==d&&(d=99),a.charCode=d,a.keyChar=a.charCode?String.fromCharCode(a.charCode):""}return a}function Y(a,b,c){if(a.addEventListener)return a.addEventListener(b,c,!1),zc(function(){a.removeEventListener(b,c,!1)});if(a.attachEvent){var d=function(a){c(X(a))};return a.attachEvent("on"+b,d),zc(function(){a.detachEvent("on"+b,d)})}return a["on"+b]=c,zc(function(){a["on"+b]=null})}function Z(a,b,c){var d=new wc;if("[object NodeList]"===Object.prototype.toString.call(a))for(var e=0,f=a.length;f>e;e++)d.add(Z(a.item(e),b,c));else a&&d.add(Y(a,b,c));return d}function $(a,b,c){return new Rd(function(d){function e(a,b){j[b]=a;var e;if(g[b]=!0,h||(h=g.every(yb))){if(f)return void d.onError(f);try{e=c.apply(null,j)}catch(k){return void d.onError(k)}d.onNext(e)}i&&j[1]&&d.onCompleted()}var f,g=[!1,!1],h=!1,i=!1,j=new Array(2);return new wc(a.subscribe(function(a){e(a,0)},function(a){j[1]?d.onError(a):f=a},function(){i=!0,j[1]&&d.onCompleted()}),b.subscribe(function(a){e(a,1)},d.onError.bind(d),function(){i=!0,e(!0,1)}))},a)}function _(a,b){return a.groupJoin(this,b,id,function(a,b){return b})}function ab(a){var b=this;return new Rd(function(c){var d=new Ud,e=new wc,f=new Dc(e);return c.onNext(rc(d,f)),e.add(b.subscribe(function(a){d.onNext(a)},function(a){d.onError(a),c.onError(a)},function(){d.onCompleted(),c.onCompleted()})),Db(a)&&(a=gd(a)),e.add(a.subscribe(function(){d.onCompleted(),d=new Ud,c.onNext(rc(d,f))},function(a){d.onError(a),c.onError(a)},function(){d.onCompleted(),c.onCompleted()})),f},b)}function bb(a){var b=this;return new Rd(function(c){function d(){var b;try{b=a()}catch(f){return void c.onError(f)}Db(b)&&(b=gd(b));var i=new Bc;e.setDisposable(i),i.setDisposable(b.take(1).subscribe(wb,function(a){h.onError(a),c.onError(a)},function(){h.onCompleted(),h=new Ud,c.onNext(rc(h,g)),d()}))}var e=new Cc,f=new wc(e),g=new Dc(f),h=new Ud;return c.onNext(rc(h,g)),f.add(b.subscribe(function(a){h.onNext(a)},function(a){h.onError(a),c.onError(a)},function(){h.onCompleted(),c.onCompleted()})),d(),g},b)}function db(b,c){return new Wc(function(){return new Vc(function(){return b()?{done:!1,value:c}:{done:!0,value:a}})})}function eb(a){this.patterns=a}function fb(a,b){this.expression=a,this.selector=b}function gb(a,b,c){var d=a.get(b);if(!d){var e=new Od(b,c);return a.set(b,e),e}return d}function hb(a,b,c){this.joinObserverArray=a,this.onNext=b,this.onCompleted=c,this.joinObservers=new Nd;for(var d=0,e=this.joinObserverArray.length;e>d;d++){var f=this.joinObserverArray[d];this.joinObservers.set(f,f)}}function ib(a,b){return new Rd(function(c){return b.scheduleWithAbsolute(a,function(){c.onNext(0),c.onCompleted()})})}function jb(a,b,c){return new Rd(function(d){var e=0,f=a,g=Gc(b);return c.scheduleRecursiveWithAbsolute(f,function(a){if(g>0){var b=c.now();f+=g,b>=f&&(f=b+g)}d.onNext(e++),a(f)})})}function kb(a,b){return new Rd(function(c){return b.scheduleWithRelative(Gc(a),function(){c.onNext(0),c.onCompleted()})})}function lb(a,b,c){return a===b?new Rd(function(a){return c.schedulePeriodicWithState(0,b,function(b){return a.onNext(b),b+1})}):hd(function(){return jb(c.now()+a,b,c)})}function mb(a,b,c){return new Rd(function(d){var e,f=!1,g=new Cc,h=null,i=[],j=!1;return e=a.materialize().timestamp(c).subscribe(function(a){var e,k;"E"===a.value.kind?(i=[],i.push(a),h=a.value.exception,k=!j):(i.push({value:a.value,timestamp:a.timestamp+b}),k=!f,f=!0),k&&(null!==h?d.onError(h):(e=new Bc,g.setDisposable(e),e.setDisposable(c.scheduleRecursiveWithRelative(b,function(a){var b,e,g,k;if(null===h){j=!0;do g=null,i.length>0&&i[0].timestamp-c.now()<=0&&(g=i.shift().value),null!==g&&g.accept(d);while(null!==g);k=!1,e=0,i.length>0?(k=!0,e=Math.max(0,i[0].timestamp-c.now())):f=!1,b=h,j=!1,null!==b?d.onError(b):k&&a(e)}}))))}),new wc(e,g)},a)}function nb(a,b,c){return hd(function(){return mb(a,b-c.now(),c)})}function ob(a,b){return new Rd(function(c){function d(){g&&(g=!1,c.onNext(f)),e&&c.onCompleted()}var e,f,g;return new wc(a.subscribe(function(a){g=!0,f=a},c.onError.bind(c),function(){e=!0}),b.subscribe(d,c.onError.bind(c),d))},a)}var pb={"boolean":!1,"function":!0,object:!0,number:!1,string:!1,undefined:!1},qb=pb[typeof window]&&window||this,rb=pb[typeof exports]&&exports&&!exports.nodeType&&exports,sb=pb[typeof module]&&module&&!module.nodeType&&module,tb=sb&&sb.exports===rb&&rb,ub=pb[typeof global]&&global;!ub||ub.global!==ub&&ub.window!==ub||(qb=ub);var vb={internals:{},config:{Promise:qb.Promise},helpers:{}},wb=vb.helpers.noop=function(){},xb=(vb.helpers.notDefined=function(a){return"undefined"==typeof a},vb.helpers.isScheduler=function(a){return a instanceof vb.Scheduler}),yb=vb.helpers.identity=function(a){return a},zb=(vb.helpers.pluck=function(a){return function(b){return b[a]}},vb.helpers.just=function(a){return function(){return a}},vb.helpers.defaultNow=function(){return Date.now?Date.now:function(){return+new Date}}()),Ab=vb.helpers.defaultComparer=function(a,b){return nc(a,b)},Bb=vb.helpers.defaultSubComparer=function(a,b){return a>b?1:b>a?-1:0},Cb=(vb.helpers.defaultKeySerializer=function(a){return a.toString()},vb.helpers.defaultError=function(a){throw a}),Db=vb.helpers.isPromise=function(a){return!!a&&"function"==typeof a.then},Eb=(vb.helpers.asArray=function(){return Array.prototype.slice.call(arguments)},vb.helpers.not=function(a){return!a}),Fb=vb.helpers.isFunction=function(){var a=function(a){return"function"==typeof a||!1};return a(/x/)&&(a=function(a){return"function"==typeof a&&"[object Function]"==cc.call(a)}),a}(),Gb="Sequence contains no elements.",Hb="Argument out of range",Ib="Object has been disposed";vb.config.longStackSupport=!1;var Jb=!1;try{throw new Error}catch(Kb){Jb=!!Kb.stack}var Lb,Mb=g(),Nb="From previous event:",Ob="function"==typeof Symbol&&Symbol.iterator||"_es6shim_iterator_";qb.Set&&"function"==typeof(new qb.Set)["@@iterator"]&&(Ob="@@iterator");var Pb=vb.doneEnumerator={done:!0,value:a},Qb=vb.helpers.isIterable=function(b){return b[Ob]!==a},Rb=vb.helpers.isArrayLike=function(b){return b&&b.length!==a};vb.helpers.iterator=Ob;var Sb,Tb=vb.helpers.deprecate=function(){},Ub="[object Arguments]",Vb="[object Array]",Wb="[object Boolean]",Xb="[object Date]",Yb="[object Error]",Zb="[object Function]",$b="[object Number]",_b="[object Object]",ac="[object RegExp]",bc="[object String]",cc=Object.prototype.toString,dc=Object.prototype.hasOwnProperty,ec=cc.call(arguments)==Ub,fc=Error.prototype,gc=Object.prototype,hc=String.prototype,ic=gc.propertyIsEnumerable;ic||(ic=gc.propertyIsEnumerable=function(a){for(var b in this)if(b===a)return!0;return!1});try{Sb=!(cc.call(document)==_b&&!({toString:0}+""))}catch(Kb){Sb=!0}var jc=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"],kc={};kc[Vb]=kc[Xb]=kc[$b]={constructor:!0,toLocaleString:!0,toString:!0,valueOf:!0},kc[Wb]=kc[bc]={constructor:!0,toString:!0,valueOf:!0},kc[Yb]=kc[Zb]=kc[ac]={constructor:!0,toString:!0},kc[_b]={constructor:!0};var lc={};!function(){var a=function(){this.x=1},b=[];a.prototype={valueOf:1,y:1};for(var c in new a)b.push(c);for(c in arguments);lc.enumErrorProps=ic.call(fc,"message")||ic.call(fc,"name"),lc.enumPrototypes=ic.call(a,"prototype"),lc.nonEnumArgs=0!=c,lc.nonEnumShadows=!/valueOf/.test(b)}(1);var mc=function(a){return a&&"object"==typeof a?cc.call(a)==Ub:!1};ec||(mc=function(a){return a&&"object"==typeof a?dc.call(a,"callee"):!1});var nc=vb.internals.isEqual=function(a,b){return n(a,b,[],[])},oc=Array.prototype.slice,pc=({}.hasOwnProperty,this.inherits=vb.internals.inherits=function(a,b){function c(){this.constructor=a}c.prototype=b.prototype,a.prototype=new c}),qc=vb.internals.addProperties=function(a){for(var b=oc.call(arguments,1),c=0,d=b.length;d>c;c++){var e=b[c];for(var f in e)a[f]=e[f]}},rc=vb.internals.addRef=function(a,b){return new Rd(function(c){return new wc(b.getDisposable(),a.subscribe(c))})};Function.prototype.bind||(Function.prototype.bind=function(a){var b=this,c=oc.call(arguments,1),d=function(){function e(){}if(this instanceof d){e.prototype=b.prototype;var f=new e,g=b.apply(f,c.concat(oc.call(arguments)));return Object(g)===g?g:f}return b.apply(a,c.concat(oc.call(arguments)))};return d}),Array.prototype.forEach||(Array.prototype.forEach=function(a,b){var c,d;if(null==this)throw new TypeError(" this is null or not defined");var e=Object(this),f=e.length>>>0;if("function"!=typeof a)throw new TypeError(a+" is not a function");for(arguments.length>1&&(c=b),d=0;f>d;){var g;d in e&&(g=e[d],a.call(c,g,d,e)),d++}});var sc=Object("a"),tc="a"!=sc[0]||!(0 in sc);Array.prototype.every||(Array.prototype.every=function(a){var b=Object(this),c=tc&&{}.toString.call(this)==bc?this.split(""):b,d=c.length>>>0,e=arguments[1];if({}.toString.call(a)!=Zb)throw new TypeError(a+" is not a function");for(var f=0;d>f;f++)if(f in c&&!a.call(e,c[f],f,b))return!1;return!0}),Array.prototype.map||(Array.prototype.map=function(a){var b=Object(this),c=tc&&{}.toString.call(this)==bc?this.split(""):b,d=c.length>>>0,e=Array(d),f=arguments[1];if({}.toString.call(a)!=Zb)throw new TypeError(a+" is not a function");for(var g=0;d>g;g++)g in c&&(e[g]=a.call(f,c[g],g,b));return e}),Array.prototype.filter||(Array.prototype.filter=function(a){for(var b,c=[],d=new Object(this),e=0,f=d.length>>>0;f>e;e++)b=d[e],e in d&&a.call(arguments[1],b,e,d)&&c.push(b);return c}),Array.isArray||(Array.isArray=function(a){return{}.toString.call(a)==Vb}),Array.prototype.indexOf||(Array.prototype.indexOf=function(a){var b=Object(this),c=b.length>>>0;if(0===c)return-1;var d=0;if(arguments.length>1&&(d=Number(arguments[1]),d!==d?d=0:0!==d&&1/0!=d&&d!==-1/0&&(d=(d>0||-1)*Math.floor(Math.abs(d)))),d>=c)return-1;for(var e=d>=0?d:Math.max(c-Math.abs(d),0);c>e;e++)if(e in b&&b[e]===a)return e;return-1}),q.prototype.compareTo=function(a){var b=this.value.compareTo(a.value);return 0===b&&(b=this.id-a.id),b};var uc=vb.internals.PriorityQueue=function(a){this.items=new Array(a),this.length=0},vc=uc.prototype;vc.isHigherPriority=function(a,b){return this.items[a].compareTo(this.items[b])<0},vc.percolate=function(a){if(!(a>=this.length||0>a)){var b=a-1>>1;if(!(0>b||b===a)&&this.isHigherPriority(a,b)){var c=this.items[a];this.items[a]=this.items[b],this.items[b]=c,this.percolate(b)}}},vc.heapify=function(a){if(+a||(a=0),!(a>=this.length||0>a)){var b=2*a+1,c=2*a+2,d=a;if(b<this.length&&this.isHigherPriority(b,d)&&(d=b),c<this.length&&this.isHigherPriority(c,d)&&(d=c),d!==a){var e=this.items[a];this.items[a]=this.items[d],this.items[d]=e,this.heapify(d)}}},vc.peek=function(){return this.items[0].value},vc.removeAt=function(a){this.items[a]=this.items[--this.length],delete this.items[this.length],this.heapify()},vc.dequeue=function(){var a=this.peek();return this.removeAt(0),a},vc.enqueue=function(a){var b=this.length++;this.items[b]=new q(uc.count++,a),this.percolate(b)},vc.remove=function(a){for(var b=0;b<this.length;b++)if(this.items[b].value===a)return this.removeAt(b),!0;return!1},uc.count=0;var wc=vb.CompositeDisposable=function(){this.disposables=o(arguments,0),this.isDisposed=!1,this.length=this.disposables.length},xc=wc.prototype;xc.add=function(a){this.isDisposed?a.dispose():(this.disposables.push(a),this.length++)},xc.remove=function(a){var b=!1;if(!this.isDisposed){var c=this.disposables.indexOf(a);-1!==c&&(b=!0,this.disposables.splice(c,1),this.length--,a.dispose())}return b},xc.dispose=function(){if(!this.isDisposed){this.isDisposed=!0;var a=this.disposables.slice(0);this.disposables=[],this.length=0;for(var b=0,c=a.length;c>b;b++)a[b].dispose()}},xc.toArray=function(){return this.disposables.slice(0)};var yc=vb.Disposable=function(a){this.isDisposed=!1,this.action=a||wb};yc.prototype.dispose=function(){this.isDisposed||(this.action(),this.isDisposed=!0)};var zc=yc.create=function(a){return new yc(a)},Ac=yc.empty={dispose:wb},Bc=vb.SingleAssignmentDisposable=function(){function a(){this.isDisposed=!1,this.current=null}var b=a.prototype;return b.getDisposable=function(){return this.current},b.setDisposable=function(a){var b,c=this.isDisposed;c||(b=this.current,this.current=a),b&&b.dispose(),c&&a&&a.dispose()},b.dispose=function(){var a;this.isDisposed||(this.isDisposed=!0,a=this.current,this.current=null),a&&a.dispose()},a}(),Cc=vb.SerialDisposable=Bc,Dc=vb.RefCountDisposable=function(){function a(a){this.disposable=a,this.disposable.count++,this.isInnerDisposed=!1}function b(a){this.underlyingDisposable=a,this.isDisposed=!1,this.isPrimaryDisposed=!1,this.count=0}return a.prototype.dispose=function(){this.disposable.isDisposed||this.isInnerDisposed||(this.isInnerDisposed=!0,this.disposable.count--,0===this.disposable.count&&this.disposable.isPrimaryDisposed&&(this.disposable.isDisposed=!0,this.disposable.underlyingDisposable.dispose()))},b.prototype.dispose=function(){this.isDisposed||this.isPrimaryDisposed||(this.isPrimaryDisposed=!0,0===this.count&&(this.isDisposed=!0,this.underlyingDisposable.dispose()))},b.prototype.getDisposable=function(){return this.isDisposed?Ac:new a(this)},b}();r.prototype.dispose=function(){var a=this;this.scheduler.schedule(function(){a.isDisposed||(a.isDisposed=!0,a.disposable.dispose())})};var Ec=vb.internals.ScheduledItem=function(a,b,c,d,e){this.scheduler=a,this.state=b,this.action=c,this.dueTime=d,this.comparer=e||Bb,this.disposable=new Bc};Ec.prototype.invoke=function(){this.disposable.setDisposable(this.invokeCore())},Ec.prototype.compareTo=function(a){return this.comparer(this.dueTime,a.dueTime)},Ec.prototype.isCancelled=function(){return this.disposable.isDisposed},Ec.prototype.invokeCore=function(){return this.action(this.scheduler,this.state)};var Fc=vb.Scheduler=function(){function a(a,b,c,d){this.now=a,this._schedule=b,this._scheduleRelative=c,this._scheduleAbsolute=d}function b(a,b){return b(),Ac}var c=a.prototype;return c.schedule=function(a){return this._schedule(a,b)},c.scheduleWithState=function(a,b){return this._schedule(a,b)},c.scheduleWithRelative=function(a,c){return this._scheduleRelative(c,a,b)},c.scheduleWithRelativeAndState=function(a,b,c){return this._scheduleRelative(a,b,c)},c.scheduleWithAbsolute=function(a,c){return this._scheduleAbsolute(c,a,b)},c.scheduleWithAbsoluteAndState=function(a,b,c){return this._scheduleAbsolute(a,b,c)},a.now=zb,a.normalize=function(a){return 0>a&&(a=0),a},a}(),Gc=Fc.normalize;!function(a){function b(a,b){var c=b.first,d=b.second,e=new wc,f=function(b){d(b,function(b){var c=!1,d=!1,g=a.scheduleWithState(b,function(a,b){return c?e.remove(g):d=!0,f(b),Ac});d||(e.add(g),c=!0)})};return f(c),e}function c(a,b,c){var d=b.first,e=b.second,f=new wc,g=function(b){e(b,function(b,d){var e=!1,h=!1,i=a[c].call(a,b,d,function(a,b){return e?f.remove(i):h=!0,g(b),Ac});h||(f.add(i),e=!0)})};return g(d),f}function d(a,b){a(function(c){b(a,c)})}a.scheduleRecursive=function(a){return this.scheduleRecursiveWithState(a,function(a,b){a(function(){b(a)})})},a.scheduleRecursiveWithState=function(a,c){return this.scheduleWithState({first:a,second:c},b)},a.scheduleRecursiveWithRelative=function(a,b){return this.scheduleRecursiveWithRelativeAndState(b,a,d)},a.scheduleRecursiveWithRelativeAndState=function(a,b,d){return this._scheduleRelative({first:a,second:d},b,function(a,b){return c(a,b,"scheduleWithRelativeAndState")})},a.scheduleRecursiveWithAbsolute=function(a,b){return this.scheduleRecursiveWithAbsoluteAndState(b,a,d)},a.scheduleRecursiveWithAbsoluteAndState=function(a,b,d){return this._scheduleAbsolute({first:a,second:d},b,function(a,b){return c(a,b,"scheduleWithAbsoluteAndState")})}}(Fc.prototype),function(){Fc.prototype.schedulePeriodic=function(a,b){return this.schedulePeriodicWithState(null,a,b)},Fc.prototype.schedulePeriodicWithState=function(a,b,c){if("undefined"==typeof qb.setInterval)throw new Error("Periodic scheduling not supported.");var d=a,e=qb.setInterval(function(){d=c(d)},b);return zc(function(){qb.clearInterval(e)})}}(Fc.prototype),function(a){a.catchError=a["catch"]=function(a){return new Qc(this,a)}}(Fc.prototype);var Hc,Ic=vb.internals.SchedulePeriodicRecursive=function(){function a(a,b){b(0,this._period);try{this._state=this._action(this._state)}catch(c){throw this._cancel.dispose(),c}}function b(a,b,c,d){this._scheduler=a,this._state=b,this._period=c,this._action=d}return b.prototype.start=function(){var b=new Bc;return this._cancel=b,b.setDisposable(this._scheduler.scheduleRecursiveWithRelativeAndState(0,this._period,a.bind(this))),b},b}(),Jc=Fc.immediate=function(){function a(a,b){return b(this,a)}function b(a,b,c){for(var d=Gc(b);d-this.now()>0;);return c(this,a)}function c(a,b,c){return this.scheduleWithRelativeAndState(a,b-this.now(),c)}return new Fc(zb,a,b,c)}(),Kc=Fc.currentThread=function(){function a(a){for(var b;a.length>0;)if(b=a.dequeue(),!b.isCancelled()){for(;b.dueTime-Fc.now()>0;);b.isCancelled()||b.invoke()}}function b(a,b){return this.scheduleWithRelativeAndState(a,0,b)}function c(b,c,d){var f=this.now()+Fc.normalize(c),g=new Ec(this,b,d,f);if(e)e.enqueue(g);else{e=new uc(4),e.enqueue(g);try{a(e)}catch(h){throw h}finally{e=null}}return g.disposable}function d(a,b,c){return this.scheduleWithRelativeAndState(a,b-this.now(),c)}var e,f=new Fc(zb,b,c,d);return f.scheduleRequired=function(){return!e},f.ensureTrampoline=function(a){e?a():this.schedule(a)},f}(),Lc=wb,Mc=function(){var a,b=wb;if("WScript"in this)a=function(a,b){WScript.Sleep(b),a()};else{if(!qb.setTimeout)throw new Error("No concurrency detected!");a=qb.setTimeout,b=qb.clearTimeout}return{setTimeout:a,clearTimeout:b}}(),Nc=Mc.setTimeout,Oc=Mc.clearTimeout;!function(){function a(){if(!qb.postMessage||qb.importScripts)return!1;var a=!1,b=qb.onmessage;return qb.onmessage=function(){a=!0},qb.postMessage("","*"),qb.onmessage=b,a}var b=RegExp("^"+String(cc).replace(/[.*+?^${}()|[\]\\]/g,"\\$&").replace(/toString| for [^\]]+/g,".*?")+"$"),c="function"==typeof(c=ub&&tb&&ub.setImmediate)&&!b.test(c)&&c,d="function"==typeof(d=ub&&tb&&ub.clearImmediate)&&!b.test(d)&&d;if("function"==typeof c)Hc=c,Lc=d;else if("undefined"!=typeof process&&"[object process]"==={}.toString.call(process))Hc=process.nextTick;else if(a()){var e="ms.rx.schedule"+Math.random(),f={},g=0,h=function(a){if("string"==typeof a.data&&a.data.substring(0,e.length)===e){var b=a.data.substring(e.length),c=f[b];c(),delete f[b]}};qb.addEventListener?qb.addEventListener("message",h,!1):qb.attachEvent("onmessage",h,!1),Hc=function(a){var b=g++;f[b]=a,qb.postMessage(e+b,"*")}}else if(qb.MessageChannel){var i=new qb.MessageChannel,j={},k=0;i.port1.onmessage=function(a){var b=a.data,c=j[b];c(),delete j[b]},Hc=function(a){var b=k++;j[b]=a,i.port2.postMessage(b)}}else"document"in qb&&"onreadystatechange"in qb.document.createElement("script")?Hc=function(a){var b=qb.document.createElement("script");b.onreadystatechange=function(){a(),b.onreadystatechange=null,b.parentNode.removeChild(b),b=null},qb.document.documentElement.appendChild(b)}:(Hc=function(a){return Nc(a,0)},Lc=Oc)}();var Pc=Fc.timeout=function(){function a(a,b){var c=this,d=new Bc,e=Hc(function(){d.isDisposed||d.setDisposable(b(c,a))});return new wc(d,zc(function(){Lc(e)}))}function b(a,b,c){var d=this,e=Fc.normalize(b);if(0===e)return d.scheduleWithState(a,c);var f=new Bc,g=Nc(function(){f.isDisposed||f.setDisposable(c(d,a))},e);return new wc(f,zc(function(){Oc(g)}))}function c(a,b,c){return this.scheduleWithRelativeAndState(a,b-this.now(),c)}return new Fc(zb,a,b,c)}(),Qc=function(a){function b(a,b){return this._scheduler.scheduleWithState(a,this._wrap(b))}function c(a,b,c){return this._scheduler.scheduleWithRelativeAndState(a,b,this._wrap(c))}function d(a,b,c){return this._scheduler.scheduleWithAbsoluteAndState(a,b,this._wrap(c))}function e(e,f){this._scheduler=e,this._handler=f,this._recursiveOriginal=null,this._recursiveWrapper=null,a.call(this,this._scheduler.now.bind(this._scheduler),b,c,d)}return pc(e,a),e.prototype._clone=function(a){return new e(a,this._handler)},e.prototype._wrap=function(a){var b=this;return function(c,d){try{return a(b._getRecursiveWrapper(c),d)}catch(e){if(!b._handler(e))throw e;return Ac}}},e.prototype._getRecursiveWrapper=function(a){if(this._recursiveOriginal!==a){this._recursiveOriginal=a;var b=this._clone(a);b._recursiveOriginal=a,b._recursiveWrapper=b,this._recursiveWrapper=b}return this._recursiveWrapper},e.prototype.schedulePeriodicWithState=function(a,b,c){var d=this,e=!1,f=new Bc;return f.setDisposable(this._scheduler.schedulePeriodicWithState(a,b,function(a){if(e)return null;try{return c(a)}catch(b){if(e=!0,!d._handler(b))throw b;return f.dispose(),null}})),f},e}(Fc),Rc=vb.Notification=function(){function a(a,b){this.hasValue=null==b?!1:b,this.kind=a}return a.prototype.accept=function(a,b,c){return a&&"object"==typeof a?this._acceptObservable(a):this._accept(a,b,c)},a.prototype.toObservable=function(a){var b=this;return xb(a)||(a=Jc),new Rd(function(c){return a.schedule(function(){b._acceptObservable(c),"N"===b.kind&&c.onCompleted()})})},a}(),Sc=Rc.createOnNext=function(){function a(a){return a(this.value)}function b(a){return a.onNext(this.value)}function c(){return"OnNext("+this.value+")"}return function(d){var e=new Rc("N",!0);return e.value=d,e._accept=a,e._acceptObservable=b,e.toString=c,e}}(),Tc=Rc.createOnError=function(){function a(a,b){return b(this.exception)}function b(a){return a.onError(this.exception)}function c(){return"OnError("+this.exception+")"}return function(d){var e=new Rc("E");return e.exception=d,e._accept=a,e._acceptObservable=b,e.toString=c,e}}(),Uc=Rc.createOnCompleted=function(){function a(a,b,c){return c()}function b(a){return a.onCompleted()}function c(){return"OnCompleted()"}return function(){var d=new Rc("C");return d._accept=a,d._acceptObservable=b,d.toString=c,d}}(),Vc=vb.internals.Enumerator=function(a){this._next=a};Vc.prototype.next=function(){return this._next()},Vc.prototype[Ob]=function(){return this};var Wc=vb.internals.Enumerable=function(a){this._iterator=a};Wc.prototype[Ob]=function(){return this._iterator()},Wc.prototype.concat=function(){var a=this;return new Rd(function(b){var c;try{c=a[Ob]()}catch(d){return void b.onError(d)}var e,f=new Cc,g=Jc.scheduleRecursive(function(a){var d;if(!e){try{d=c.next()}catch(g){return void b.onError(g)}if(d.done)return void b.onCompleted();var h=d.value;Db(h)&&(h=gd(h));var i=new Bc;f.setDisposable(i),i.setDisposable(h.subscribe(b.onNext.bind(b),b.onError.bind(b),function(){a()}))}});return new wc(f,g,zc(function(){e=!0}))})},Wc.prototype.catchError=function(){var a=this;return new Rd(function(b){var c;try{c=a[Ob]()}catch(d){return void b.onError(d)}var e,f,g=new Cc,h=Jc.scheduleRecursive(function(a){if(!e){var d;try{d=c.next()}catch(h){return void b.onError(h)}if(d.done)return void(f?b.onError(f):b.onCompleted());var i=d.value;Db(i)&&(i=gd(i));var j=new Bc;g.setDisposable(j),j.setDisposable(i.subscribe(b.onNext.bind(b),function(b){f=b,a()},b.onCompleted.bind(b)))}});return new wc(g,h,zc(function(){e=!0}))})};var Xc=Wc.repeat=function(a,b){return null==b&&(b=-1),new Wc(function(){var c=b;return new Vc(function(){return 0===c?Pb:(c>0&&c--,{done:!1,value:a})})})},Yc=Wc.of=function(a,b,c){return b||(b=yb),new Wc(function(){var d=-1;return new Vc(function(){return++d<a.length?{done:!1,value:b.call(c,a[d],d,a)}:Pb})})},Zc=vb.Observer=function(){};Zc.prototype.toNotifier=function(){var a=this;return function(b){return b.accept(a)}},Zc.prototype.asObserver=function(){return new bd(this.onNext.bind(this),this.onError.bind(this),this.onCompleted.bind(this))},Zc.prototype.checked=function(){return new cd(this)};var $c=Zc.create=function(a,b,c){return a||(a=wb),b||(b=Cb),c||(c=wb),new bd(a,b,c)};Zc.fromNotifier=function(a,b){return new bd(function(c){return a.call(b,Sc(c))},function(c){return a.call(b,Tc(c))},function(){return a.call(b,Uc())})},Zc.prototype.notifyOn=function(a){return new ed(a,this)};var _c,ad=vb.internals.AbstractObserver=function(a){function b(){this.isStopped=!1,a.call(this)}return pc(b,a),b.prototype.onNext=function(a){this.isStopped||this.next(a)},b.prototype.onError=function(a){this.isStopped||(this.isStopped=!0,this.error(a))},b.prototype.onCompleted=function(){this.isStopped||(this.isStopped=!0,this.completed())},b.prototype.dispose=function(){this.isStopped=!0},b.prototype.fail=function(a){return this.isStopped?!1:(this.isStopped=!0,this.error(a),!0)
|
3
|
+
},b}(Zc),bd=vb.AnonymousObserver=function(a){function b(b,c,d){a.call(this),this._onNext=b,this._onError=c,this._onCompleted=d}return pc(b,a),b.prototype.next=function(a){this._onNext(a)},b.prototype.error=function(a){this._onError(a)},b.prototype.completed=function(){this._onCompleted()},b}(ad),cd=function(a){function b(b){a.call(this),this._observer=b,this._state=0}pc(b,a);var c=b.prototype;return c.onNext=function(a){this.checkAccess();try{this._observer.onNext(a)}catch(b){throw b}finally{this._state=0}},c.onError=function(a){this.checkAccess();try{this._observer.onError(a)}catch(b){throw b}finally{this._state=2}},c.onCompleted=function(){this.checkAccess();try{this._observer.onCompleted()}catch(a){throw a}finally{this._state=2}},c.checkAccess=function(){if(1===this._state)throw new Error("Re-entrancy detected");if(2===this._state)throw new Error("Observer completed");0===this._state&&(this._state=1)},b}(Zc),dd=vb.internals.ScheduledObserver=function(a){function b(b,c){a.call(this),this.scheduler=b,this.observer=c,this.isAcquired=!1,this.hasFaulted=!1,this.queue=[],this.disposable=new Cc}return pc(b,a),b.prototype.next=function(a){var b=this;this.queue.push(function(){b.observer.onNext(a)})},b.prototype.error=function(a){var b=this;this.queue.push(function(){b.observer.onError(a)})},b.prototype.completed=function(){var a=this;this.queue.push(function(){a.observer.onCompleted()})},b.prototype.ensureActive=function(){var a=!1,b=this;!this.hasFaulted&&this.queue.length>0&&(a=!this.isAcquired,this.isAcquired=!0),a&&this.disposable.setDisposable(this.scheduler.scheduleRecursive(function(a){var c;if(!(b.queue.length>0))return void(b.isAcquired=!1);c=b.queue.shift();try{c()}catch(d){throw b.queue=[],b.hasFaulted=!0,d}a()}))},b.prototype.dispose=function(){a.prototype.dispose.call(this),this.disposable.dispose()},b}(ad),ed=function(a){function b(b,c,d){a.call(this,b,c),this._cancel=d}return pc(b,a),b.prototype.next=function(b){a.prototype.next.call(this,b),this.ensureActive()},b.prototype.error=function(b){a.prototype.error.call(this,b),this.ensureActive()},b.prototype.completed=function(){a.prototype.completed.call(this),this.ensureActive()},b.prototype.dispose=function(){a.prototype.dispose.call(this),this._cancel&&this._cancel.dispose(),this._cancel=null},b}(dd),fd=vb.Observable=function(){function a(a){if(vb.config.longStackSupport&&Jb){try{throw new Error}catch(b){this.stack=b.stack.substring(b.stack.indexOf("\n")+1)}var d=this;this._subscribe=function(b){var e=b.onError.bind(b);return b.onError=function(a){c(a,d),e(a)},a(b)}}else this._subscribe=a}return _c=a.prototype,_c.subscribe=_c.forEach=function(a,b,c){return this._subscribe("object"==typeof a?a:$c(a,b,c))},_c.subscribeOnNext=function(a,b){return this._subscribe($c(2===arguments.length?function(c){a.call(b,c)}:a))},_c.subscribeOnError=function(a,b){return this._subscribe($c(null,2===arguments.length?function(c){a.call(b,c)}:a))},_c.subscribeOnCompleted=function(a,b){return this._subscribe($c(null,null,2===arguments.length?function(){a.call(b)}:a))},a}();_c.observeOn=function(a){var b=this;return new Rd(function(c){return b.subscribe(new ed(a,c))},b)},_c.subscribeOn=function(a){var b=this;return new Rd(function(c){var d=new Bc,e=new Cc;return e.setDisposable(d),d.setDisposable(a.schedule(function(){e.setDisposable(new r(a,b.subscribe(c)))})),e},b)};var gd=fd.fromPromise=function(a){return hd(function(){var b=new vb.AsyncSubject;return a.then(function(a){b.onNext(a),b.onCompleted()},b.onError.bind(b)),b})};_c.toPromise=function(a){if(a||(a=vb.config.Promise),!a)throw new TypeError("Promise type not provided nor in Rx.config.Promise");var b=this;return new a(function(a,c){var d,e=!1;b.subscribe(function(a){d=a,e=!0},c,function(){e&&a(d)})})},_c.toArray=function(){var a=this;return new Rd(function(b){var c=[];return a.subscribe(c.push.bind(c),b.onError.bind(b),function(){b.onNext(c),b.onCompleted()})},a)},fd.create=fd.createWithDisposable=function(a,b){return new Rd(a,b)};var hd=fd.defer=function(a){return new Rd(function(b){var c;try{c=a()}catch(d){return od(d).subscribe(b)}return Db(c)&&(c=gd(c)),c.subscribe(b)})},id=fd.empty=function(a){return xb(a)||(a=Jc),new Rd(function(b){return a.schedule(function(){b.onCompleted()})})},jd=Math.pow(2,53)-1;t.prototype[Ob]=function(){return new u(this._s)},u.prototype[Ob]=function(){return this},u.prototype.next=function(){if(this._i<this._l){var a=this._s.charAt(this._i++);return{done:!1,value:a}}return Pb},v.prototype[Ob]=function(){return new w(this._a)},w.prototype[Ob]=function(){return this},w.prototype.next=function(){if(this._i<this._l){var a=this._a[this._i++];return{done:!1,value:a}}return Pb};var kd=fd.from=function(a,b,c,d){if(null==a)throw new Error("iterable cannot be null.");if(b&&!Fb(b))throw new Error("mapFn when provided must be a function");xb(d)||(d=Kc);var e=Object(a),f=y(e);return new Rd(function(a){var e=0;return d.scheduleRecursive(function(d){var g;try{g=f.next()}catch(h){return void a.onError(h)}if(g.done)return void a.onCompleted();var i=g.value;if(b&&Fb(b))try{i=b.call(c,i,e)}catch(h){return void a.onError(h)}a.onNext(i),e++,d()})})},ld=fd.fromArray=function(a,b){return Tb("fromArray","from"),xb(b)||(b=Kc),new Rd(function(c){var d=0,e=a.length;return b.scheduleRecursive(function(b){e>d?(c.onNext(a[d++]),b()):c.onCompleted()})})};fd.generate=function(a,b,c,d,e){return xb(e)||(e=Kc),new Rd(function(f){var g=!0,h=a;return e.scheduleRecursive(function(a){var e,i;try{g?g=!1:h=c(h),e=b(h),e&&(i=d(h))}catch(j){return void f.onError(j)}e?(f.onNext(i),a()):f.onCompleted()})})},fd.of=function(){return B(null,arguments)},fd.ofWithScheduler=function(a){return B(a,oc.call(arguments,1))};var md=fd.never=function(){return new Rd(function(){return Ac})};fd.range=function(a,b,c){return xb(c)||(c=Kc),new Rd(function(d){return c.scheduleRecursiveWithState(0,function(c,e){b>c?(d.onNext(a+c),e(c+1)):d.onCompleted()})})},fd.repeat=function(a,b,c){return xb(c)||(c=Kc),nd(a,c).repeat(null==b?-1:b)};var nd=fd["return"]=fd.just=function(a,b){return xb(b)||(b=Jc),new Rd(function(c){return b.schedule(function(){c.onNext(a),c.onCompleted()})})};fd.returnValue=function(){return Tb("returnValue","return or just"),nd.apply(null,arguments)};var od=fd["throw"]=fd.throwException=fd.throwError=function(a,b){return xb(b)||(b=Jc),new Rd(function(c){return b.schedule(function(){c.onError(a)})})};fd.using=function(a,b){return new Rd(function(c){var d,e,f=Ac;try{d=a(),d&&(f=d),e=b(d)}catch(g){return new wc(od(g).subscribe(c),f)}return new wc(e.subscribe(c),f)})},_c.amb=function(a){var b=this;return new Rd(function(c){function d(){f||(f=g,j.dispose())}function e(){f||(f=h,i.dispose())}var f,g="L",h="R",i=new Bc,j=new Bc;return Db(a)&&(a=gd(a)),i.setDisposable(b.subscribe(function(a){d(),f===g&&c.onNext(a)},function(a){d(),f===g&&c.onError(a)},function(){d(),f===g&&c.onCompleted()})),j.setDisposable(a.subscribe(function(a){e(),f===h&&c.onNext(a)},function(a){e(),f===h&&c.onError(a)},function(){e(),f===h&&c.onCompleted()})),new wc(i,j)})},fd.amb=function(){function a(a,b){return a.amb(b)}for(var b=md(),c=o(arguments,0),d=0,e=c.length;e>d;d++)b=a(b,c[d]);return b},_c["catch"]=_c.catchError=function(a){return"function"==typeof a?C(this,a):pd([this,a])},_c.catchException=function(a){return Tb("catchException","catch or catchError"),this.catchError(a)};var pd=fd.catchError=fd["catch"]=function(){return Yc(o(arguments,0)).catchError()};fd.catchException=function(){return Tb("catchException","catch or catchError"),pd.apply(null,arguments)},_c.combineLatest=function(){var a=oc.call(arguments);return Array.isArray(a[0])?a[0].unshift(this):a.unshift(this),qd.apply(this,a)};var qd=fd.combineLatest=function(){var a=oc.call(arguments),b=a.pop();return Array.isArray(a[0])&&(a=a[0]),new Rd(function(c){function d(a){var d;if(h[a]=!0,i||(i=h.every(yb))){try{d=b.apply(null,k)}catch(e){return void c.onError(e)}c.onNext(d)}else j.filter(function(b,c){return c!==a}).every(yb)&&c.onCompleted()}function e(a){j[a]=!0,j.every(yb)&&c.onCompleted()}for(var f=function(){return!1},g=a.length,h=p(g,f),i=!1,j=p(g,f),k=new Array(g),l=new Array(g),m=0;g>m;m++)!function(b){var f=a[b],g=new Bc;Db(f)&&(f=gd(f)),g.setDisposable(f.subscribe(function(a){k[b]=a,d(b)},c.onError.bind(c),function(){e(b)})),l[b]=g}(m);return new wc(l)},this)};_c.concat=function(){var a=oc.call(arguments,0);return a.unshift(this),rd.apply(this,a)};var rd=fd.concat=function(){return Yc(o(arguments,0)).concat()};_c.concatAll=function(){return this.merge(1)},_c.concatObservable=function(){return Tb("concatObservable","concatAll"),this.merge(1)},_c.merge=function(a){if("number"!=typeof a)return sd(this,a);var b=this;return new Rd(function(c){function d(a){var b=new Bc;f.add(b),Db(a)&&(a=gd(a)),b.setDisposable(a.subscribe(c.onNext.bind(c),c.onError.bind(c),function(){f.remove(b),h.length>0?d(h.shift()):(e--,g&&0===e&&c.onCompleted())}))}var e=0,f=new wc,g=!1,h=[];return f.add(b.subscribe(function(b){a>e?(e++,d(b)):h.push(b)},c.onError.bind(c),function(){g=!0,0===e&&c.onCompleted()})),f},b)};var sd=fd.merge=function(){var a,b;return arguments[0]?xb(arguments[0])?(a=arguments[0],b=oc.call(arguments,1)):(a=Jc,b=oc.call(arguments,0)):(a=Jc,b=oc.call(arguments,1)),Array.isArray(b[0])&&(b=b[0]),B(a,b).mergeAll()};_c.mergeAll=function(){var a=this;return new Rd(function(b){var c=new wc,d=!1,e=new Bc;return c.add(e),e.setDisposable(a.subscribe(function(a){var e=new Bc;c.add(e),Db(a)&&(a=gd(a)),e.setDisposable(a.subscribe(b.onNext.bind(b),b.onError.bind(b),function(){c.remove(e),d&&1===c.length&&b.onCompleted()}))},b.onError.bind(b),function(){d=!0,1===c.length&&b.onCompleted()})),c},a)},_c.mergeObservable=function(){return Tb("mergeObservable","mergeAll"),this.mergeAll.apply(this,arguments)},_c.onErrorResumeNext=function(a){if(!a)throw new Error("Second observable is required");return td([this,a])};var td=fd.onErrorResumeNext=function(){var a=o(arguments,0);return new Rd(function(b){var c=0,d=new Cc,e=Jc.scheduleRecursive(function(e){var f,g;c<a.length?(f=a[c++],Db(f)&&(f=gd(f)),g=new Bc,d.setDisposable(g),g.setDisposable(f.subscribe(b.onNext.bind(b),e,e))):b.onCompleted()});return new wc(d,e)})};_c.skipUntil=function(a){var b=this;return new Rd(function(c){var d=!1,e=new wc(b.subscribe(function(a){d&&c.onNext(a)},c.onError.bind(c),function(){d&&c.onCompleted()}));Db(a)&&(a=gd(a));var f=new Bc;return e.add(f),f.setDisposable(a.subscribe(function(){d=!0,f.dispose()},c.onError.bind(c),function(){f.dispose()})),e},b)},_c["switch"]=_c.switchLatest=function(){var a=this;return new Rd(function(b){var c=!1,d=new Cc,e=!1,f=0,g=a.subscribe(function(a){var g=new Bc,h=++f;c=!0,d.setDisposable(g),Db(a)&&(a=gd(a)),g.setDisposable(a.subscribe(function(a){f===h&&b.onNext(a)},function(a){f===h&&b.onError(a)},function(){f===h&&(c=!1,e&&b.onCompleted())}))},b.onError.bind(b),function(){e=!0,!c&&b.onCompleted()});return new wc(g,d)},a)},_c.takeUntil=function(a){var b=this;return new Rd(function(c){return Db(a)&&(a=gd(a)),new wc(b.subscribe(c),a.subscribe(c.onCompleted.bind(c),c.onError.bind(c),wb))},b)},_c.zip=function(){if(Array.isArray(arguments[0]))return D.apply(this,arguments);var a=this,b=oc.call(arguments),c=b.pop();return b.unshift(a),new Rd(function(d){function e(b){var e,f;if(h.every(function(a){return a.length>0})){try{f=h.map(function(a){return a.shift()}),e=c.apply(a,f)}catch(g){return void d.onError(g)}d.onNext(e)}else i.filter(function(a,c){return c!==b}).every(yb)&&d.onCompleted()}function f(a){i[a]=!0,i.every(function(a){return a})&&d.onCompleted()}for(var g=b.length,h=p(g,function(){return[]}),i=p(g,function(){return!1}),j=new Array(g),k=0;g>k;k++)!function(a){var c=b[a],g=new Bc;Db(c)&&(c=gd(c)),g.setDisposable(c.subscribe(function(b){h[a].push(b),e(a)},d.onError.bind(d),function(){f(a)})),j[a]=g}(k);return new wc(j)},a)},fd.zip=function(){var a=oc.call(arguments,0),b=a.shift();return b.zip.apply(b,a)},fd.zipArray=function(){var a=o(arguments,0);return new Rd(function(b){function c(a){if(f.every(function(a){return a.length>0})){var c=f.map(function(a){return a.shift()});b.onNext(c)}else if(g.filter(function(b,c){return c!==a}).every(yb))return void b.onCompleted()}function d(a){return g[a]=!0,g.every(yb)?void b.onCompleted():void 0}for(var e=a.length,f=p(e,function(){return[]}),g=p(e,function(){return!1}),h=new Array(e),i=0;e>i;i++)!function(e){h[e]=new Bc,h[e].setDisposable(a[e].subscribe(function(a){f[e].push(a),c(e)},b.onError.bind(b),function(){d(e)}))}(i);var j=new wc(h);return j.add(zc(function(){for(var a=0,b=f.length;b>a;a++)f[a]=[]})),j})},_c.asObservable=function(){return new Rd(this.subscribe.bind(this),this)},_c.bufferWithCount=function(a,b){return"number"!=typeof b&&(b=a),this.windowWithCount(a,b).selectMany(function(a){return a.toArray()}).where(function(a){return a.length>0})},_c.dematerialize=function(){var a=this;return new Rd(function(b){return a.subscribe(function(a){return a.accept(b)},b.onError.bind(b),b.onCompleted.bind(b))},this)},_c.distinctUntilChanged=function(a,b){var c=this;return a||(a=yb),b||(b=Ab),new Rd(function(d){var e,f=!1;return c.subscribe(function(c){var g,h=!1;try{g=a(c)}catch(i){return void d.onError(i)}if(f)try{h=b(e,g)}catch(i){return void d.onError(i)}f&&h||(f=!0,e=g,d.onNext(c))},d.onError.bind(d),d.onCompleted.bind(d))},this)},_c["do"]=_c.tap=function(a,b,c){var d,e=this;return"function"==typeof a?d=a:(d=a.onNext.bind(a),b=a.onError.bind(a),c=a.onCompleted.bind(a)),new Rd(function(a){return e.subscribe(function(b){try{d(b)}catch(c){a.onError(c)}a.onNext(b)},function(c){if(b)try{b(c)}catch(d){a.onError(d)}a.onError(c)},function(){if(c)try{c()}catch(b){a.onError(b)}a.onCompleted()})},this)},_c.doAction=function(){return Tb("doAction","do or tap"),this.tap.apply(this,arguments)},_c.doOnNext=_c.tapOnNext=function(a,b){return this.tap(2===arguments.length?function(c){a.call(b,c)}:a)},_c.doOnError=_c.tapOnError=function(a,b){return this.tap(wb,2===arguments.length?function(c){a.call(b,c)}:a)},_c.doOnCompleted=_c.tapOnCompleted=function(a,b){return this.tap(wb,null,2===arguments.length?function(){a.call(b)}:a)},_c["finally"]=_c.ensure=function(a){var b=this;return new Rd(function(c){var d;try{d=b.subscribe(c)}catch(e){throw a(),e}return zc(function(){try{d.dispose()}catch(b){throw b}finally{a()}})},this)},_c.finallyAction=function(a){return Tb("finallyAction","finally or ensure"),this.ensure(a)},_c.ignoreElements=function(){var a=this;return new Rd(function(b){return a.subscribe(wb,b.onError.bind(b),b.onCompleted.bind(b))},a)},_c.materialize=function(){var a=this;return new Rd(function(b){return a.subscribe(function(a){b.onNext(Sc(a))},function(a){b.onNext(Tc(a)),b.onCompleted()},function(){b.onNext(Uc()),b.onCompleted()})},a)},_c.repeat=function(a){return Xc(this,a).concat()},_c.retry=function(a){return Xc(this,a).catchError()},_c.scan=function(){var a,b,c=!1,d=this;return 2===arguments.length?(c=!0,a=arguments[0],b=arguments[1]):b=arguments[0],new Rd(function(e){var f,g,h;return d.subscribe(function(d){!h&&(h=!0);try{f?g=b(g,d):(g=c?b(a,d):d,f=!0)}catch(i){return void e.onError(i)}e.onNext(g)},e.onError.bind(e),function(){!h&&c&&e.onNext(a),e.onCompleted()})},d)},_c.skipLast=function(a){var b=this;return new Rd(function(c){var d=[];return b.subscribe(function(b){d.push(b),d.length>a&&c.onNext(d.shift())},c.onError.bind(c),c.onCompleted.bind(c))},b)},_c.startWith=function(){var a,b,c=0;return arguments.length&&xb(arguments[0])?(b=arguments[0],c=1):b=Jc,a=oc.call(arguments,c),Yc([ld(a,b),this]).concat()},_c.takeLast=function(a){var b=this;return new Rd(function(c){var d=[];return b.subscribe(function(b){d.push(b),d.length>a&&d.shift()},c.onError.bind(c),function(){for(;d.length>0;)c.onNext(d.shift());c.onCompleted()})},b)},_c.takeLastBuffer=function(a){var b=this;return new Rd(function(c){var d=[];return b.subscribe(function(b){d.push(b),d.length>a&&d.shift()},c.onError.bind(c),function(){c.onNext(d),c.onCompleted()})},b)},_c.windowWithCount=function(a,b){var c=this;if(+a||(a=0),1/0===Math.abs(a)&&(a=0),0>=a)throw new Error(Hb);if(null==b&&(b=a),+b||(b=0),1/0===Math.abs(b)&&(b=0),0>=b)throw new Error(Hb);return new Rd(function(d){function e(){var a=new Ud;i.push(a),d.onNext(rc(a,g))}var f=new Bc,g=new Dc(f),h=0,i=[];return e(),f.setDisposable(c.subscribe(function(c){for(var d=0,f=i.length;f>d;d++)i[d].onNext(c);var g=h-a+1;g>=0&&g%b===0&&i.shift().onCompleted(),++h%b===0&&e()},function(a){for(;i.length>0;)i.shift().onError(a);d.onError(a)},function(){for(;i.length>0;)i.shift().onCompleted();d.onCompleted()})),g},c)},_c.selectConcat=_c.concatMap=function(a,b,c){return Fb(a)&&Fb(b)?this.concatMap(function(c,d){var e=a(c,d);return Db(e)&&(e=gd(e)),(Rb(e)||Qb(e))&&(e=kd(e)),e.map(function(a,e){return b(c,a,d,e)})}):Fb(a)?E(this,a,c):E(this,function(){return a})},_c.concatMapObserver=_c.selectConcatObserver=function(a,b,c,d){var e=this;return new Rd(function(f){var g=0;return e.subscribe(function(b){var c;try{c=a.call(d,b,g++)}catch(e){return void f.onError(e)}Db(c)&&(c=gd(c)),f.onNext(c)},function(a){var c;try{c=b.call(d,a)}catch(e){return void f.onError(e)}Db(c)&&(c=gd(c)),f.onNext(c),f.onCompleted()},function(){var a;try{a=c.call(d)}catch(b){return void f.onError(b)}Db(a)&&(a=gd(a)),f.onNext(a),f.onCompleted()})},this).concatAll()},_c.defaultIfEmpty=function(b){var c=this;return b===a&&(b=null),new Rd(function(a){var d=!1;return c.subscribe(function(b){d=!0,a.onNext(b)},a.onError.bind(a),function(){!d&&a.onNext(b),a.onCompleted()})},this)},G.prototype.push=function(a){var b=-1===F(this.set,a,this.comparer);return b&&this.set.push(a),b},_c.distinct=function(a,b){var c=this;return b||(b=Ab),new Rd(function(d){var e=new G(b);return c.subscribe(function(b){var c=b;if(a)try{c=a(b)}catch(f){return void d.onError(f)}e.push(c)&&d.onNext(b)},d.onError.bind(d),d.onCompleted.bind(d))},this)},_c.groupBy=function(a,b,c){return this.groupByUntil(a,b,md,c)},_c.groupByUntil=function(a,b,c,d){var e=this;return b||(b=yb),d||(d=Ab),new Rd(function(f){function g(a){return function(b){b.onError(a)}}var h=new Kd(0,d),i=new wc,j=new Dc(i);return i.add(e.subscribe(function(d){var e;try{e=a(d)}catch(k){return h.getValues().forEach(g(k)),void f.onError(k)}var l=!1,m=h.tryGetValue(e);if(m||(m=new Ud,h.set(e,m),l=!0),l){var n=new Td(e,m,j),o=new Td(e,m);try{duration=c(o)}catch(k){return h.getValues().forEach(g(k)),void f.onError(k)}f.onNext(n);var p=new Bc;i.add(p);var q=function(){h.remove(e)&&m.onCompleted(),i.remove(p)};p.setDisposable(duration.take(1).subscribe(wb,function(a){h.getValues().forEach(g(a)),f.onError(a)},q))}var r;try{r=b(d)}catch(k){return h.getValues().forEach(g(k)),void f.onError(k)}m.onNext(r)},function(a){h.getValues().forEach(g(a)),f.onError(a)},function(){h.getValues().forEach(function(a){a.onCompleted()}),f.onCompleted()})),j},e)},_c.select=_c.map=function(a,b){var c=Fb(a)?a:function(){return a},d=this;return new Rd(function(a){var e=0;return d.subscribe(function(f){var g;try{g=c.call(b,f,e++,d)}catch(h){return void a.onError(h)}a.onNext(g)},a.onError.bind(a),a.onCompleted.bind(a))},d)},_c.pluck=function(a){return this.map(function(b){return b[a]})},_c.selectMany=_c.flatMap=function(a,b,c){return Fb(a)&&Fb(b)?this.flatMap(function(c,d){var e=a(c,d);return Db(e)&&(e=gd(e)),(Rb(e)||Qb(e))&&(e=kd(e)),e.map(function(a,e){return b(c,a,d,e)})},c):Fb(a)?H(this,a,c):H(this,function(){return a})},_c.flatMapObserver=_c.selectManyObserver=function(a,b,c,d){var e=this;return new Rd(function(f){var g=0;return e.subscribe(function(b){var c;try{c=a.call(d,b,g++)}catch(e){return void f.onError(e)}Db(c)&&(c=gd(c)),f.onNext(c)},function(a){var c;try{c=b.call(d,a)}catch(e){return void f.onError(e)}Db(c)&&(c=gd(c)),f.onNext(c),f.onCompleted()},function(){var a;try{a=c.call(d)}catch(b){return void f.onError(b)}Db(a)&&(a=gd(a)),f.onNext(a),f.onCompleted()})},e).mergeAll()},_c.selectSwitch=_c.flatMapLatest=_c.switchMap=function(a,b){return this.select(a,b).switchLatest()},_c.skip=function(a){if(0>a)throw new Error(Hb);var b=this;return new Rd(function(c){var d=a;return b.subscribe(function(a){0>=d?c.onNext(a):d--},c.onError.bind(c),c.onCompleted.bind(c))},b)},_c.skipWhile=function(a,b){var c=this;return new Rd(function(d){var e=0,f=!1;return c.subscribe(function(g){if(!f)try{f=!a.call(b,g,e++,c)}catch(h){return void d.onError(h)}f&&d.onNext(g)},d.onError.bind(d),d.onCompleted.bind(d))},c)},_c.take=function(a,b){if(0>a)throw new RangeError(Hb);if(0===a)return id(b);var c=this;return new Rd(function(b){var d=a;return c.subscribe(function(a){d-->0&&(b.onNext(a),0===d&&b.onCompleted())},b.onError.bind(b),b.onCompleted.bind(b))},c)},_c.takeWhile=function(a,b){var c=this;return new Rd(function(d){var e=0,f=!0;return c.subscribe(function(g){if(f){try{f=a.call(b,g,e++,c)}catch(h){return void d.onError(h)}f?d.onNext(g):d.onCompleted()}},d.onError.bind(d),d.onCompleted.bind(d))},c)},_c.where=_c.filter=function(a,b){var c=this;return new Rd(function(d){var e=0;return c.subscribe(function(f){var g;try{g=a.call(b,f,e++,c)}catch(h){return void d.onError(h)}g&&d.onNext(f)},d.onError.bind(d),d.onCompleted.bind(d))},c)},_c.finalValue=function(){var a=this;return new Rd(function(b){var c,d=!1;return a.subscribe(function(a){d=!0,c=a},b.onError.bind(b),function(){d?(b.onNext(c),b.onCompleted()):b.onError(new Error(Gb))})},a)},_c.aggregate=function(){Tb("aggregate","reduce");var a,b,c;return 2===arguments.length?(a=arguments[0],b=!0,c=arguments[1]):c=arguments[0],b?this.scan(a,c).startWith(a).finalValue():this.scan(c).finalValue()},_c.reduce=function(a){var b,c;return 2===arguments.length&&(c=!0,b=arguments[1]),c?this.scan(b,a).startWith(b).finalValue():this.scan(a).finalValue()},_c.some=function(a,b){var c=this;return a?c.filter(a,b).some():new Rd(function(a){return c.subscribe(function(){a.onNext(!0),a.onCompleted()},a.onError.bind(a),function(){a.onNext(!1),a.onCompleted()})},c)},_c.any=function(){return Tb("any","some"),this.some.apply(this,arguments)},_c.isEmpty=function(){return this.any().map(Eb)},_c.every=function(a,b){return this.filter(function(b){return!a(b)},b).some().map(Eb)},_c.all=function(){return Tb("all","every"),this.every.apply(this,arguments)},_c.contains=function(a,b){function c(a,b){return 0===a&&0===b||a===b||isNaN(a)&&isNaN(b)}var d=this;return new Rd(function(e){var f=0,g=+b||0;return 1/0===Math.abs(g)&&(g=0),0>g?(e.onNext(!1),e.onCompleted(),Ac):d.subscribe(function(b){f++>=g&&c(b,a)&&(e.onNext(!0),e.onCompleted())},e.onError.bind(e),function(){e.onNext(!1),e.onCompleted()})},this)},_c.count=function(a,b){return a?this.where(a,b).count():this.aggregate(0,function(a){return a+1})},_c.indexOf=function(a,b){var c=this;return new Rd(function(d){var e=0,f=+b||0;return 1/0===Math.abs(f)&&(f=0),0>f?(d.onNext(-1),d.onCompleted(),Ac):c.subscribe(function(b){e>=f&&b===a&&(d.onNext(e),d.onCompleted()),e++},d.onError.bind(d),function(){d.onNext(-1),d.onCompleted()})},c)},_c.sum=function(a,b){return a&&Fb(a)?this.map(a,b).sum():this.reduce(function(a,b){return a+b},0)},_c.minBy=function(a,b){return b||(b=Bb),I(this,a,function(a,c){return-1*b(a,c)})},_c.min=function(a){return this.minBy(yb,a).map(function(a){return J(a)})},_c.maxBy=function(a,b){return b||(b=Bb),I(this,a,b)},_c.max=function(a){return this.maxBy(yb,a).map(function(a){return J(a)})},_c.average=function(a,b){return a&&Fb(a)?this.select(a,b).average():this.scan({sum:0,count:0},function(a,b){return{sum:a.sum+b,count:a.count+1}}).finalValue().map(function(a){if(0===a.count)throw new Error("The input sequence was empty");return a.sum/a.count})},_c.sequenceEqual=function(a,b){var c=this;return b||(b=Ab),new Rd(function(d){var e=!1,f=!1,g=[],h=[],i=c.subscribe(function(a){var c,e;if(h.length>0){e=h.shift();try{c=b(e,a)}catch(i){return void d.onError(i)}c||(d.onNext(!1),d.onCompleted())}else f?(d.onNext(!1),d.onCompleted()):g.push(a)},d.onError.bind(d),function(){e=!0,0===g.length&&(h.length>0?(d.onNext(!1),d.onCompleted()):f&&(d.onNext(!0),d.onCompleted()))});(Rb(a)||Qb(a))&&(a=kd(a)),Db(a)&&(a=gd(a));var j=a.subscribe(function(a){var c;if(g.length>0){var f=g.shift();try{c=b(f,a)}catch(i){return void d.onError(i)}c||(d.onNext(!1),d.onCompleted())}else e?(d.onNext(!1),d.onCompleted()):h.push(a)},d.onError.bind(d),function(){f=!0,0===h.length&&(g.length>0?(d.onNext(!1),d.onCompleted()):e&&(d.onNext(!0),d.onCompleted()))});return new wc(i,j)},c)},_c.elementAt=function(a){return K(this,a,!1)},_c.elementAtOrDefault=function(a,b){return K(this,a,!0,b)},_c.single=function(a,b){return a&&Fb(a)?this.where(a,b).single():L(this,!1)},_c.singleOrDefault=function(a,b,c){return a&&Fb(a)?this.where(a,c).singleOrDefault(null,b):L(this,!0,b)},_c.first=function(a,b){return a?this.where(a,b).first():M(this,!1)},_c.firstOrDefault=function(a,b){return a?this.where(a).firstOrDefault(null,b):M(this,!0,b)},_c.last=function(a,b){return a?this.where(a,b).last():N(this,!1)},_c.lastOrDefault=function(a,b,c){return a?this.where(a,c).lastOrDefault(null,b):N(this,!0,b)},_c.find=function(a,b){return O(this,a,b,!1)},_c.findIndex=function(a,b){return O(this,a,b,!0)},_c.toSet=function(){if("undefined"==typeof qb.Set)throw new TypeError;var a=this;return new Rd(function(b){var c=new qb.Set;return a.subscribe(c.add.bind(c),b.onError.bind(b),function(){b.onNext(c),b.onCompleted()})},a)},_c.toMap=function(a,b){if("undefined"==typeof qb.Map)throw new TypeError;var c=this;return new Rd(function(d){var e=new qb.Map;return c.subscribe(function(c){var f;try{f=a(c)}catch(g){return void d.onError(g)}var h=c;if(b)try{h=b(c)}catch(g){return void d.onError(g)}e.set(f,h)},d.onError.bind(d),function(){d.onNext(e),d.onCompleted()})},c)};var ud="function",vd="throw",wd=vb.spawn=function(a){var b=U(a);return function(c){function d(a,b){Pc.schedule(c.bind(f,a,b))}function e(a,b){var c;if(arguments.length>2&&(b=oc.call(arguments,1)),a)try{c=g[vd](a)}catch(h){return d(h)}if(!a)try{c=g.next(b)}catch(h){return d(h)}if(c.done)return d(null,c.value);if(c.value=P(c.value,f),typeof c.value!==ud)e(new TypeError("Rx.spawn only supports a function, Promise, Observable, Object or Array."));else{var i=!1;try{c.value.call(f,function(){i||(i=!0,e.apply(f,arguments))})}catch(h){Pc.schedule(function(){i||(i=!0,e.call(f,h))})}}}var f=this,g=a;if(b){var h=oc.call(arguments),i=h.length,j=i&&typeof h[i-1]===ud;c=j?h.pop():W,g=a.apply(this,h)}else c=c||W;e()}};vb.denodify=function(a){return function(){var b,c,d,e=oc.call(arguments);return e.push(function(){b=arguments,d&&!c&&(c=!0,cb.apply(this,b))}),a.apply(this,e),function(a){d=a,b&&!c&&(c=!0,a.apply(this,b))}}},fd.start=function(a,b,c){return xd(a,b,c)()};var xd=fd.toAsync=function(a,b,c){return xb(c)||(c=Pc),function(){var d=arguments,e=new Vd;return c.schedule(function(){var c;try{c=a.apply(b,d)}catch(f){return void e.onError(f)}e.onNext(c),e.onCompleted()}),e.asObservable()}};fd.fromCallback=function(a,b,c){return function(){var d=oc.call(arguments,0);return new Rd(function(e){function f(){var a=arguments;if(c){try{a=c(a)}catch(b){return void e.onError(b)}e.onNext(a)}else a.length<=1?e.onNext.apply(e,a):e.onNext(a);e.onCompleted()}d.push(f),a.apply(b,d)}).publishLast().refCount()}},fd.fromNodeCallback=function(a,b,c){return function(){var d=oc.call(arguments,0);return new Rd(function(e){function f(a){if(a)return void e.onError(a);var b=oc.call(arguments,1);if(c){try{b=c(b)}catch(d){return void e.onError(d)}e.onNext(b)}else b.length<=1?e.onNext.apply(e,b):e.onNext(b);e.onCompleted()}d.push(f),a.apply(b,d)}).publishLast().refCount()}},vb.config.useNativeEvents=!1;var yd=qb.angular&&angular.element?angular.element:qb.jQuery?qb.jQuery:qb.Zepto?qb.Zepto:null,zd=!!qb.Ember&&"function"==typeof qb.Ember.addListener,Ad=!!qb.Backbone&&!!qb.Backbone.Marionette;fd.fromEvent=function(a,b,c){if(a.addListener)return Bd(function(c){a.addListener(b,c)},function(c){a.removeListener(b,c)},c);if(!vb.config.useNativeEvents){if(Ad)return Bd(function(c){a.on(b,c)},function(c){a.off(b,c)},c);if(zd)return Bd(function(c){Ember.addListener(a,b,c)},function(c){Ember.removeListener(a,b,c)},c);if(yd){var d=yd(a);return Bd(function(a){d.on(b,a)},function(a){d.off(b,a)},c)}}return new Rd(function(d){return Z(a,b,function(a){var b=a;if(c)try{b=c(arguments)}catch(e){return void d.onError(e)}d.onNext(b)})}).publish().refCount()};var Bd=fd.fromEventPattern=function(a,b,c){return new Rd(function(d){function e(a){var b=a;if(c)try{b=c(arguments)}catch(e){return void d.onError(e)}d.onNext(b)}var f=a(e);return zc(function(){b&&b(e,f)})}).publish().refCount()};fd.startAsync=function(a){var b;try{b=a()}catch(c){return od(c)}return gd(b)};var Cd=function(a){function b(a){var b=this.source.publish(),c=b.subscribe(a),d=Ac,e=this.pauser.distinctUntilChanged().subscribe(function(a){a?d=b.connect():(d.dispose(),d=Ac)});return new wc(c,d,e)}function c(c,d){this.source=c,this.controller=new Ud,this.pauser=d&&d.subscribe?this.controller.merge(d):this.controller,a.call(this,b,c)}return pc(c,a),c.prototype.pause=function(){this.controller.onNext(!1)},c.prototype.resume=function(){this.controller.onNext(!0)},c}(fd);_c.pausable=function(a){return new Cd(this,a)};var Dd=function(b){function c(b){var c,d=[],e=$(this.source,this.pauser.distinctUntilChanged().startWith(!1),function(a,b){return{data:a,shouldFire:b}}).subscribe(function(e){if(c!==a&&e.shouldFire!=c){if(c=e.shouldFire,e.shouldFire)for(;d.length>0;)b.onNext(d.shift())}else c=e.shouldFire,e.shouldFire?b.onNext(e.data):d.push(e.data)},function(a){for(;d.length>0;)b.onNext(d.shift());b.onError(a)},function(){for(;d.length>0;)b.onNext(d.shift());b.onCompleted()});return e}function d(a,d){this.source=a,this.controller=new Ud,this.pauser=d&&d.subscribe?this.controller.merge(d):this.controller,b.call(this,c,a)}return pc(d,b),d.prototype.pause=function(){this.controller.onNext(!1)},d.prototype.resume=function(){this.controller.onNext(!0)},d}(fd);_c.pausableBuffered=function(a){return new Dd(this,a)};var Ed=function(a){function b(a){return this.source.subscribe(a)}function c(c,d){a.call(this,b,c),this.subject=new Fd(d),this.source=c.multicast(this.subject).refCount()}return pc(c,a),c.prototype.request=function(a){return null==a&&(a=-1),this.subject.request(a)},c}(fd),Fd=function(a){function b(a){return this.subject.subscribe(a)}function c(c){null==c&&(c=!0),a.call(this,b),this.subject=new Ud,this.enableQueue=c,this.queue=c?[]:null,this.requestedCount=0,this.requestedDisposable=Ac,this.error=null,this.hasFailed=!1,this.hasCompleted=!1,this.controlledDisposable=Ac}return pc(c,a),qc(c.prototype,Zc,{onCompleted:function(){this.hasCompleted=!0,(!this.enableQueue||0===this.queue.length)&&this.subject.onCompleted()},onError:function(a){this.hasFailed=!0,this.error=a,(!this.enableQueue||0===this.queue.length)&&this.subject.onError(a)},onNext:function(a){var b=!1;0===this.requestedCount?this.enableQueue&&this.queue.push(a):(-1!==this.requestedCount&&0===this.requestedCount--&&this.disposeCurrentRequest(),b=!0),b&&this.subject.onNext(a)},_processRequest:function(a){if(this.enableQueue){for(;this.queue.length>=a&&a>0;)this.subject.onNext(this.queue.shift()),a--;return 0!==this.queue.length?{numberOfItems:a,returnValue:!0}:{numberOfItems:a,returnValue:!1}}return this.hasFailed?(this.subject.onError(this.error),this.controlledDisposable.dispose(),this.controlledDisposable=Ac):this.hasCompleted&&(this.subject.onCompleted(),this.controlledDisposable.dispose(),this.controlledDisposable=Ac),{numberOfItems:a,returnValue:!1}},request:function(a){this.disposeCurrentRequest();var b=this,c=this._processRequest(a),a=c.numberOfItems;return c.returnValue?Ac:(this.requestedCount=a,this.requestedDisposable=zc(function(){b.requestedCount=0}),this.requestedDisposable)},disposeCurrentRequest:function(){this.requestedDisposable.dispose(),this.requestedDisposable=Ac}}),c}(fd);_c.controlled=function(a){return null==a&&(a=!0),new Ed(this,a)},_c.multicast=function(a,b){var c=this;return"function"==typeof a?new Rd(function(d){var e=c.multicast(a());return new wc(b(e).subscribe(d),e.connect())
|
4
4
|
},c):new Jd(c,a)},_c.publish=function(a){return a&&Fb(a)?this.multicast(function(){return new Ud},a):this.multicast(new Ud)},_c.share=function(){return this.publish().refCount()},_c.publishLast=function(a){return a&&Fb(a)?this.multicast(function(){return new Vd},a):this.multicast(new Vd)},_c.publishValue=function(a,b){return 2===arguments.length?this.multicast(function(){return new Hd(b)},a):this.multicast(new Hd(a))},_c.shareValue=function(a){return this.publishValue(a).refCount()},_c.replay=function(a,b,c,d){return a&&Fb(a)?this.multicast(function(){return new Id(b,c,d)},a):this.multicast(new Id(b,c,d))},_c.shareReplay=function(a,b,c){return this.replay(null,a,b,c).refCount()};var Gd=function(a,b){this.subject=a,this.observer=b};Gd.prototype.dispose=function(){if(!this.subject.isDisposed&&null!==this.observer){var a=this.subject.observers.indexOf(this.observer);this.subject.observers.splice(a,1),this.observer=null}};var Hd=vb.BehaviorSubject=function(a){function c(a){if(b.call(this),!this.isStopped)return this.observers.push(a),a.onNext(this.value),new Gd(this,a);var c=this.exception;return c?a.onError(c):a.onCompleted(),Ac}function d(b){a.call(this,c),this.value=b,this.observers=[],this.isDisposed=!1,this.isStopped=!1,this.exception=null}return pc(d,a),qc(d.prototype,Zc,{hasObservers:function(){return this.observers.length>0},onCompleted:function(){if(b.call(this),!this.isStopped){this.isStopped=!0;for(var a=0,c=this.observers.slice(0),d=c.length;d>a;a++)c[a].onCompleted();this.observers=[]}},onError:function(a){if(b.call(this),!this.isStopped){this.isStopped=!0,this.exception=a;for(var c=0,d=this.observers.slice(0),e=d.length;e>c;c++)d[c].onError(a);this.observers=[]}},onNext:function(a){if(b.call(this),!this.isStopped){this.value=a;for(var c=0,d=this.observers.slice(0),e=d.length;e>c;c++)d[c].onNext(a)}},dispose:function(){this.isDisposed=!0,this.observers=null,this.value=null,this.exception=null}}),d}(fd),Id=vb.ReplaySubject=function(a){function c(a,b){return zc(function(){b.dispose(),!a.isDisposed&&a.observers.splice(a.observers.indexOf(b),1)})}function d(a){var d=new dd(this.scheduler,a),e=c(this,d);b.call(this),this._trim(this.scheduler.now()),this.observers.push(d);for(var f=0,g=this.q.length;g>f;f++)d.onNext(this.q[f].value);return this.hasError?d.onError(this.error):this.isStopped&&d.onCompleted(),d.ensureActive(),e}function e(b,c,e){this.bufferSize=null==b?Number.MAX_VALUE:b,this.windowSize=null==c?Number.MAX_VALUE:c,this.scheduler=e||Kc,this.q=[],this.observers=[],this.isStopped=!1,this.isDisposed=!1,this.hasError=!1,this.error=null,a.call(this,d)}return pc(e,a),qc(e.prototype,Zc,{hasObservers:function(){return this.observers.length>0},_trim:function(a){for(;this.q.length>this.bufferSize;)this.q.shift();for(;this.q.length>0&&a-this.q[0].interval>this.windowSize;)this.q.shift()},onNext:function(a){if(b.call(this),!this.isStopped){var c=this.scheduler.now();this.q.push({interval:c,value:a}),this._trim(c);for(var d=this.observers.slice(0),e=0,f=d.length;f>e;e++){var g=d[e];g.onNext(a),g.ensureActive()}}},onError:function(a){if(b.call(this),!this.isStopped){this.isStopped=!0,this.error=a,this.hasError=!0;var c=this.scheduler.now();this._trim(c);for(var d=this.observers.slice(0),e=0,f=d.length;f>e;e++){var g=d[e];g.onError(a),g.ensureActive()}this.observers=[]}},onCompleted:function(){if(b.call(this),!this.isStopped){this.isStopped=!0;var a=this.scheduler.now();this._trim(a);for(var c=this.observers.slice(0),d=0,e=c.length;e>d;d++){var f=c[d];f.onCompleted(),f.ensureActive()}this.observers=[]}},dispose:function(){this.isDisposed=!0,this.observers=null}}),e}(fd),Jd=vb.ConnectableObservable=function(a){function b(b,c){var d,e=!1,f=b.asObservable();this.connect=function(){return e||(e=!0,d=new wc(f.subscribe(c),zc(function(){e=!1}))),d},a.call(this,c.subscribe.bind(c))}return pc(b,a),b.prototype.refCount=function(){var a,b=0,c=this;return new Rd(function(d){var e=1===++b,f=c.subscribe(d);return e&&(a=c.connect()),function(){f.dispose(),0===--b&&a.dispose()}})},b}(fd),Kd=function(){function b(a){if(0===(1&a))return 2===a;for(var b=Math.sqrt(a),c=3;b>=c;){if(a%c===0)return!1;c+=2}return!0}function c(a){var c,d,e;for(c=0;c<h.length;++c)if(d=h[c],d>=a)return d;for(e=1|a;e<h[h.length-1];){if(b(e))return e;e+=2}return a}function d(a){var b=757602046;if(!a.length)return b;for(var c=0,d=a.length;d>c;c++){var e=a.charCodeAt(c);b=(b<<5)-b+e,b&=b}return b}function e(a){var b=668265261;return a=61^a^a>>>16,a+=a<<3,a^=a>>>4,a*=b,a^=a>>>15}function f(){return{key:null,value:null,next:0,hashCode:0}}function g(a,b){if(0>a)throw new Error("out of range");a>0&&this._initialize(a),this.comparer=b||Ab,this.freeCount=0,this.size=0,this.freeList=-1}var h=[1,3,7,13,31,61,127,251,509,1021,2039,4093,8191,16381,32749,65521,131071,262139,524287,1048573,2097143,4194301,8388593,16777213,33554393,67108859,134217689,268435399,536870909,1073741789,2147483647],i="no such key",j="duplicate key",k=function(){var a=0;return function(b){if(null==b)throw new Error(i);if("string"==typeof b)return d(b);if("number"==typeof b)return e(b);if("boolean"==typeof b)return b===!0?1:0;if(b instanceof Date)return e(b.valueOf());if(b instanceof RegExp)return d(b.toString());if("function"==typeof b.valueOf){var c=b.valueOf();if("number"==typeof c)return e(c);if("string"==typeof b)return d(c)}if(b.hashCode)return b.hashCode();var f=17*a++;return b.hashCode=function(){return f},f}}(),l=g.prototype;return l._initialize=function(a){var b,d=c(a);for(this.buckets=new Array(d),this.entries=new Array(d),b=0;d>b;b++)this.buckets[b]=-1,this.entries[b]=f();this.freeList=-1},l.add=function(a,b){this._insert(a,b,!0)},l._insert=function(a,b,c){this.buckets||this._initialize(0);for(var d,e=2147483647&k(a),f=e%this.buckets.length,g=this.buckets[f];g>=0;g=this.entries[g].next)if(this.entries[g].hashCode===e&&this.comparer(this.entries[g].key,a)){if(c)throw new Error(j);return void(this.entries[g].value=b)}this.freeCount>0?(d=this.freeList,this.freeList=this.entries[d].next,--this.freeCount):(this.size===this.entries.length&&(this._resize(),f=e%this.buckets.length),d=this.size,++this.size),this.entries[d].hashCode=e,this.entries[d].next=this.buckets[f],this.entries[d].key=a,this.entries[d].value=b,this.buckets[f]=d},l._resize=function(){var a=c(2*this.size),b=new Array(a);for(e=0;e<b.length;++e)b[e]=-1;var d=new Array(a);for(e=0;e<this.size;++e)d[e]=this.entries[e];for(var e=this.size;a>e;++e)d[e]=f();for(var g=0;g<this.size;++g){var h=d[g].hashCode%a;d[g].next=b[h],b[h]=g}this.buckets=b,this.entries=d},l.remove=function(a){if(this.buckets)for(var b=2147483647&k(a),c=b%this.buckets.length,d=-1,e=this.buckets[c];e>=0;e=this.entries[e].next){if(this.entries[e].hashCode===b&&this.comparer(this.entries[e].key,a))return 0>d?this.buckets[c]=this.entries[e].next:this.entries[d].next=this.entries[e].next,this.entries[e].hashCode=-1,this.entries[e].next=this.freeList,this.entries[e].key=null,this.entries[e].value=null,this.freeList=e,++this.freeCount,!0;d=e}return!1},l.clear=function(){var a,b;if(!(this.size<=0)){for(a=0,b=this.buckets.length;b>a;++a)this.buckets[a]=-1;for(a=0;a<this.size;++a)this.entries[a]=f();this.freeList=-1,this.size=0}},l._findEntry=function(a){if(this.buckets)for(var b=2147483647&k(a),c=this.buckets[b%this.buckets.length];c>=0;c=this.entries[c].next)if(this.entries[c].hashCode===b&&this.comparer(this.entries[c].key,a))return c;return-1},l.count=function(){return this.size-this.freeCount},l.tryGetValue=function(b){var c=this._findEntry(b);return c>=0?this.entries[c].value:a},l.getValues=function(){var a=0,b=[];if(this.entries)for(var c=0;c<this.size;c++)this.entries[c].hashCode>=0&&(b[a++]=this.entries[c].value);return b},l.get=function(a){var b=this._findEntry(a);if(b>=0)return this.entries[b].value;throw new Error(i)},l.set=function(a,b){this._insert(a,b,!1)},l.containskey=function(a){return this._findEntry(a)>=0},g}();_c.join=function(a,b,c,d){var e=this;return new Rd(function(f){var g=new wc,h=!1,i=!1,j=0,k=0,l=new Kd,m=new Kd;return g.add(e.subscribe(function(a){var c=j++,e=new Bc;l.add(c,a),g.add(e);var i,k=function(){l.remove(c)&&0===l.count()&&h&&f.onCompleted(),g.remove(e)};try{i=b(a)}catch(n){return void f.onError(n)}e.setDisposable(i.take(1).subscribe(wb,f.onError.bind(f),k)),m.getValues().forEach(function(b){var c;try{c=d(a,b)}catch(e){return void f.onError(e)}f.onNext(c)})},f.onError.bind(f),function(){h=!0,(i||0===l.count())&&f.onCompleted()})),g.add(a.subscribe(function(a){var b=k++,e=new Bc;m.add(b,a),g.add(e);var h,j=function(){m.remove(b)&&0===m.count()&&i&&f.onCompleted(),g.remove(e)};try{h=c(a)}catch(n){return void f.onError(n)}e.setDisposable(h.take(1).subscribe(wb,f.onError.bind(f),j)),l.getValues().forEach(function(b){var c;try{c=d(b,a)}catch(e){return void f.onError(e)}f.onNext(c)})},f.onError.bind(f),function(){i=!0,(h||0===m.count())&&f.onCompleted()})),g},e)},_c.groupJoin=function(a,b,c,d){var e=this;return new Rd(function(f){function g(a){return function(b){b.onError(a)}}var h=new wc,i=new Dc(h),j=new Kd,k=new Kd,l=0,m=0;return h.add(e.subscribe(function(a){var c=new Ud,e=l++;j.add(e,c);var m;try{m=d(a,rc(c,i))}catch(n){return j.getValues().forEach(g(n)),void f.onError(n)}f.onNext(m),k.getValues().forEach(function(a){c.onNext(a)});var o=new Bc;h.add(o);var p,q=function(){j.remove(e)&&c.onCompleted(),h.remove(o)};try{p=b(a)}catch(n){return j.getValues().forEach(g(n)),void f.onError(n)}o.setDisposable(p.take(1).subscribe(wb,function(a){j.getValues().forEach(g(a)),f.onError(a)},q))},function(a){j.getValues().forEach(g(a)),f.onError(a)},f.onCompleted.bind(f))),h.add(a.subscribe(function(a){var b=m++;k.add(b,a);var d=new Bc;h.add(d);var e,i=function(){k.remove(b),h.remove(d)};try{e=c(a)}catch(l){return j.getValues().forEach(g(l)),void f.onError(l)}d.setDisposable(e.take(1).subscribe(wb,function(a){j.getValues().forEach(g(a)),f.onError(a)},i)),j.getValues().forEach(function(b){b.onNext(a)})},function(a){j.getValues().forEach(g(a)),f.onError(a)})),i},e)},_c.buffer=function(){return this.window.apply(this,arguments).selectMany(function(a){return a.toArray()})},_c.window=function(a,b){return 1===arguments.length&&"function"!=typeof arguments[0]?ab.call(this,a):"function"==typeof a?bb.call(this,a):_.call(this,a,b)},_c.pairwise=function(){var a=this;return new Rd(function(b){var c,d=!1;return a.subscribe(function(a){d?b.onNext([c,a]):d=!0,c=a},b.onError.bind(b),b.onCompleted.bind(b))},a)},_c.partition=function(a,b){var c=this.publish().refCount();return[c.filter(a,b),c.filter(function(c,d,e){return!a.call(b,c,d,e)})]},_c.letBind=_c.let=function(a){return a(this)},fd["if"]=fd.ifThen=function(a,b,c){return hd(function(){return c||(c=id()),Db(b)&&(b=gd(b)),Db(c)&&(c=gd(c)),"function"==typeof c.now&&(c=id(c)),a()?b:c})},fd["for"]=fd.forIn=function(a,b,c){return Yc(a,b,c).concat()};var Ld=fd["while"]=fd.whileDo=function(a,b){return Db(b)&&(b=gd(b)),db(a,b).concat()};_c.doWhile=function(a){return rd([this,Ld(a,this)])},fd["case"]=fd.switchCase=function(a,b,c){return hd(function(){Db(c)&&(c=gd(c)),c||(c=id()),"function"==typeof c.now&&(c=id(c));var d=b[a()];return Db(d)&&(d=gd(d)),d||c})},_c.expand=function(a,b){xb(b)||(b=Jc);var c=this;return new Rd(function(d){var e=[],f=new Cc,g=new wc(f),h=0,i=!1,j=function(){var c=!1;e.length>0&&(c=!i,i=!0),c&&f.setDisposable(b.scheduleRecursive(function(b){var c;if(!(e.length>0))return void(i=!1);c=e.shift();var f=new Bc;g.add(f),f.setDisposable(c.subscribe(function(b){d.onNext(b);var c=null;try{c=a(b)}catch(f){d.onError(f)}e.push(c),h++,j()},d.onError.bind(d),function(){g.remove(f),h--,0===h&&d.onCompleted()})),b()}))};return e.push(c),h++,j(),g},this)},fd.forkJoin=function(){var a=o(arguments,0);return new Rd(function(b){var c=a.length;if(0===c)return b.onCompleted(),Ac;for(var d=new wc,e=!1,f=new Array(c),g=new Array(c),h=new Array(c),i=0;c>i;i++)!function(i){var j=a[i];Db(j)&&(j=gd(j)),d.add(j.subscribe(function(a){e||(f[i]=!0,h[i]=a)},function(a){e=!0,b.onError(a),d.dispose()},function(){if(!e){if(!f[i])return void b.onCompleted();g[i]=!0;for(var a=0;c>a;a++)if(!g[a])return;e=!0,b.onNext(h),b.onCompleted()}}))}(i);return d})},_c.forkJoin=function(a,b){var c=this;return new Rd(function(d){var e,f,g=!1,h=!1,i=!1,j=!1,k=new Bc,l=new Bc;return Db(a)&&(a=gd(a)),k.setDisposable(c.subscribe(function(a){i=!0,e=a},function(a){l.dispose(),d.onError(a)},function(){if(g=!0,h)if(i)if(j){var a;try{a=b(e,f)}catch(c){return void d.onError(c)}d.onNext(a),d.onCompleted()}else d.onCompleted();else d.onCompleted()})),l.setDisposable(a.subscribe(function(a){j=!0,f=a},function(a){k.dispose(),d.onError(a)},function(){if(h=!0,g)if(i)if(j){var a;try{a=b(e,f)}catch(c){return void d.onError(c)}d.onNext(a),d.onCompleted()}else d.onCompleted();else d.onCompleted()})),new wc(k,l)},c)},_c.manySelect=function(a,b){xb(b)||(b=Jc);var c=this;return hd(function(){var d;return c.map(function(a){var b=new Md(a);return d&&d.onNext(a),d=b,b}).tap(wb,function(a){d&&d.onError(a)},function(){d&&d.onCompleted()}).observeOn(b).map(a)},c)};var Md=function(a){function b(a){var b=this,c=new wc;return c.add(Kc.schedule(function(){a.onNext(b.head),c.add(b.tail.mergeAll().subscribe(a))})),c}function c(c){a.call(this,b),this.head=c,this.tail=new Vd}return pc(c,a),qc(c.prototype,Zc,{onCompleted:function(){this.onNext(fd.empty())},onError:function(a){this.onNext(fd.throwException(a))},onNext:function(a){this.tail.onNext(a),this.tail.onCompleted()}}),c}(fd),Nd=qb.Map||function(){function b(){this._keys=[],this._values=[]}return b.prototype.get=function(b){var c=this._keys.indexOf(b);return-1!==c?this._values[c]:a},b.prototype.set=function(a,b){var c=this._keys.indexOf(a);-1!==c&&(this._values[c]=b),this._values[this._keys.push(a)-1]=b},b.prototype.forEach=function(a,b){for(var c=0,d=this._keys.length;d>c;c++)a.call(b,this._values[c],this._keys[c])},b}();eb.prototype.and=function(a){return new eb(this.patterns.concat(a))},eb.prototype.thenDo=function(a){return new fb(this,a)},fb.prototype.activate=function(a,b,c){for(var d=this,e=[],f=0,g=this.expression.patterns.length;g>f;f++)e.push(gb(a,this.expression.patterns[f],b.onError.bind(b)));var h=new hb(e,function(){var a;try{a=d.selector.apply(d,arguments)}catch(c){return void b.onError(c)}b.onNext(a)},function(){for(var a=0,b=e.length;b>a;a++)e[a].removeActivePlan(h);c(h)});for(f=0,g=e.length;g>f;f++)e[f].addActivePlan(h);return h},hb.prototype.dequeue=function(){this.joinObservers.forEach(function(a){a.queue.shift()})},hb.prototype.match=function(){var a,b,c=!0;for(a=0,b=this.joinObserverArray.length;b>a;a++)if(0===this.joinObserverArray[a].queue.length){c=!1;break}if(c){var d=[],e=!1;for(a=0,b=this.joinObserverArray.length;b>a;a++)d.push(this.joinObserverArray[a].queue[0]),"C"===this.joinObserverArray[a].queue[0].kind&&(e=!0);if(e)this.onCompleted();else{this.dequeue();var f=[];for(a=0,b=d.length;a<d.length;a++)f.push(d[a].value);this.onNext.apply(this,f)}}};var Od=function(a){function b(b,c){a.call(this),this.source=b,this.onError=c,this.queue=[],this.activePlans=[],this.subscription=new Bc,this.isDisposed=!1}pc(b,a);var c=b.prototype;return c.next=function(a){if(!this.isDisposed){if("E"===a.kind)return void this.onError(a.exception);this.queue.push(a);for(var b=this.activePlans.slice(0),c=0,d=b.length;d>c;c++)b[c].match()}},c.error=wb,c.completed=wb,c.addActivePlan=function(a){this.activePlans.push(a)},c.subscribe=function(){this.subscription.setDisposable(this.source.materialize().subscribe(this))},c.removeActivePlan=function(a){this.activePlans.splice(this.activePlans.indexOf(a),1),0===this.activePlans.length&&this.dispose()},c.dispose=function(){a.prototype.dispose.call(this),this.isDisposed||(this.isDisposed=!0,this.subscription.dispose())},b}(ad);_c.and=function(a){return new eb([this,a])},_c.thenDo=function(a){return new eb([this]).thenDo(a)},fd.when=function(){var a=o(arguments,0);return new Rd(function(b){var c=[],d=new Nd,e=$c(b.onNext.bind(b),function(a){d.forEach(function(b){b.onError(a)}),b.onError(a)},b.onCompleted.bind(b));try{for(var f=0,g=a.length;g>f;f++)c.push(a[f].activate(d,e,function(a){var d=c.indexOf(a);c.splice(d,1),0===c.length&&b.onCompleted()}))}catch(h){od(h).subscribe(b)}var i=new wc;return d.forEach(function(a){a.subscribe(),i.add(a)}),i})};var Pd=fd.interval=function(a,b){return lb(a,a,xb(b)?b:Pc)},Qd=fd.timer=function(b,c,d){var e;return xb(d)||(d=Pc),c!==a&&"number"==typeof c?e=c:xb(c)&&(d=c),b instanceof Date&&e===a?ib(b.getTime(),d):b instanceof Date&&e!==a?(e=c,jb(b.getTime(),e,d)):e===a?kb(b,d):lb(b,e,d)};_c.delay=function(a,b){return xb(b)||(b=Pc),a instanceof Date?nb(this,a.getTime(),b):mb(this,a,b)},_c.debounce=_c.throttleWithTimeout=function(a,b){xb(b)||(b=Pc);var c=this;return new Rd(function(d){var e,f=new Cc,g=!1,h=0,i=c.subscribe(function(c){g=!0,e=c,h++;var i=h,j=new Bc;f.setDisposable(j),j.setDisposable(b.scheduleWithRelative(a,function(){g&&h===i&&d.onNext(e),g=!1}))},function(a){f.dispose(),d.onError(a),g=!1,h++},function(){f.dispose(),g&&d.onNext(e),d.onCompleted(),g=!1,h++});return new wc(i,f)},this)},_c.throttle=function(a,b){return Tb("throttle","debounce or throttleWithTimeout"),this.debounce(a,b)},_c.windowWithTime=function(a,b,c){var d,e=this;return null==b&&(d=a),xb(c)||(c=Pc),"number"==typeof b?d=b:xb(b)&&(d=a,c=b),new Rd(function(b){function f(){var a=new Bc,e=!1,g=!1;l.setDisposable(a),j===i?(e=!0,g=!0):i>j?e=!0:g=!0;var n=e?j:i,o=n-m;m=n,e&&(j+=d),g&&(i+=d),a.setDisposable(c.scheduleWithRelative(o,function(){if(g){var a=new Ud;k.push(a),b.onNext(rc(a,h))}e&&k.shift().onCompleted(),f()}))}var g,h,i=d,j=a,k=[],l=new Cc,m=0;return g=new wc(l),h=new Dc(g),k.push(new Ud),b.onNext(rc(k[0],h)),f(),g.add(e.subscribe(function(a){for(var b=0,c=k.length;c>b;b++)k[b].onNext(a)},function(a){for(var c=0,d=k.length;d>c;c++)k[c].onError(a);b.onError(a)},function(){for(var a=0,c=k.length;c>a;a++)k[a].onCompleted();b.onCompleted()})),h},e)},_c.windowWithTimeOrCount=function(a,b,c){var d=this;return xb(c)||(c=Pc),new Rd(function(e){function f(b){var d=new Bc;g.setDisposable(d),d.setDisposable(c.scheduleWithRelative(a,function(){if(b===k){j=0;var a=++k;l.onCompleted(),l=new Ud,e.onNext(rc(l,i)),f(a)}}))}var g=new Cc,h=new wc(g),i=new Dc(h),j=0,k=0,l=new Ud;return e.onNext(rc(l,i)),f(0),h.add(d.subscribe(function(a){var c=0,d=!1;l.onNext(a),++j===b&&(d=!0,j=0,c=++k,l.onCompleted(),l=new Ud,e.onNext(rc(l,i))),d&&f(c)},function(a){l.onError(a),e.onError(a)},function(){l.onCompleted(),e.onCompleted()})),i},d)},_c.bufferWithTime=function(){return this.windowWithTime.apply(this,arguments).selectMany(function(a){return a.toArray()})},_c.bufferWithTimeOrCount=function(a,b,c){return this.windowWithTimeOrCount(a,b,c).selectMany(function(a){return a.toArray()})},_c.timeInterval=function(a){var b=this;return xb(a)||(a=Pc),hd(function(){var c=a.now();return b.map(function(b){var d=a.now(),e=d-c;return c=d,{value:b,interval:e}})})},_c.timestamp=function(a){return xb(a)||(a=Pc),this.map(function(b){return{value:b,timestamp:a.now()}})},_c.sample=_c.throttleLatest=function(a,b){return xb(b)||(b=Pc),"number"==typeof a?ob(this,Pd(a,b)):ob(this,a)},_c.timeout=function(a,b,c){(null==b||"string"==typeof b)&&(b=od(new Error(b||"Timeout"))),xb(c)||(c=Pc);var d=this,e=a instanceof Date?"scheduleWithAbsolute":"scheduleWithRelative";return new Rd(function(f){function g(){var d=h;l.setDisposable(c[e](a,function(){h===d&&(Db(b)&&(b=gd(b)),j.setDisposable(b.subscribe(f)))}))}var h=0,i=new Bc,j=new Cc,k=!1,l=new Cc;return j.setDisposable(i),g(),i.setDisposable(d.subscribe(function(a){k||(h++,f.onNext(a),g())},function(a){k||(h++,f.onError(a))},function(){k||(h++,f.onCompleted())})),new wc(j,l)},d)},fd.generateWithAbsoluteTime=function(a,b,c,d,e,f){return xb(f)||(f=Pc),new Rd(function(g){var h,i,j=!0,k=!1,l=a;return f.scheduleRecursiveWithAbsolute(f.now(),function(a){k&&g.onNext(h);try{j?j=!1:l=c(l),k=b(l),k&&(h=d(l),i=e(l))}catch(f){return void g.onError(f)}k?a(i):g.onCompleted()})})},fd.generateWithRelativeTime=function(a,b,c,d,e,f){return xb(f)||(f=Pc),new Rd(function(g){var h,i,j=!0,k=!1,l=a;return f.scheduleRecursiveWithRelative(0,function(a){k&&g.onNext(h);try{j?j=!1:l=c(l),k=b(l),k&&(h=d(l),i=e(l))}catch(f){return void g.onError(f)}k?a(i):g.onCompleted()})})},_c.delaySubscription=function(a,b){return this.delayWithSelector(Qd(a,xb(b)?b:Pc),id)},_c.delayWithSelector=function(a,b){var c,d,e=this;return"function"==typeof a?d=a:(c=a,d=b),new Rd(function(a){var b=new wc,f=!1,g=function(){f&&0===b.length&&a.onCompleted()},h=new Cc,i=function(){h.setDisposable(e.subscribe(function(c){var e;try{e=d(c)}catch(f){return void a.onError(f)}var h=new Bc;b.add(h),h.setDisposable(e.subscribe(function(){a.onNext(c),b.remove(h),g()},a.onError.bind(a),function(){a.onNext(c),b.remove(h),g()}))},a.onError.bind(a),function(){f=!0,h.dispose(),g()}))};return c?h.setDisposable(c.subscribe(i,a.onError.bind(a),i)):i(),new wc(h,b)},this)},_c.timeoutWithSelector=function(a,b,c){1===arguments.length&&(b=a,a=md()),c||(c=od(new Error("Timeout")));var d=this;return new Rd(function(e){function f(a){function b(){return k===d}var d=k,f=new Bc;i.setDisposable(f),f.setDisposable(a.subscribe(function(){b()&&h.setDisposable(c.subscribe(e)),f.dispose()},function(a){b()&&e.onError(a)},function(){b()&&h.setDisposable(c.subscribe(e))}))}function g(){var a=!l;return a&&k++,a}var h=new Cc,i=new Cc,j=new Bc;h.setDisposable(j);var k=0,l=!1;return f(a),j.setDisposable(d.subscribe(function(a){if(g()){e.onNext(a);var c;try{c=b(a)}catch(d){return void e.onError(d)}f(Db(c)?gd(c):c)}},function(a){g()&&e.onError(a)},function(){g()&&e.onCompleted()})),new wc(h,i)},d)},_c.debounceWithSelector=function(a){var b=this;return new Rd(function(c){var d,e=!1,f=new Cc,g=0,h=b.subscribe(function(b){var h;try{h=a(b)}catch(i){return void c.onError(i)}Db(h)&&(h=gd(h)),e=!0,d=b,g++;var j=g,k=new Bc;f.setDisposable(k),k.setDisposable(h.subscribe(function(){e&&g===j&&c.onNext(d),e=!1,k.dispose()},c.onError.bind(c),function(){e&&g===j&&c.onNext(d),e=!1,k.dispose()}))},function(a){f.dispose(),c.onError(a),e=!1,g++},function(){f.dispose(),e&&c.onNext(d),c.onCompleted(),e=!1,g++});return new wc(h,f)},b)},_c.throttleWithSelector=function(){return Tb("throttleWithSelector","debounceWithSelector"),this.debounceWithSelector.apply(this,arguments)},_c.skipLastWithTime=function(a,b){xb(b)||(b=Pc);var c=this;return new Rd(function(d){var e=[];return c.subscribe(function(c){var f=b.now();for(e.push({interval:f,value:c});e.length>0&&f-e[0].interval>=a;)d.onNext(e.shift().value)},d.onError.bind(d),function(){for(var c=b.now();e.length>0&&c-e[0].interval>=a;)d.onNext(e.shift().value);d.onCompleted()})},c)},_c.takeLastWithTime=function(a,b){var c=this;return xb(b)||(b=Pc),new Rd(function(d){var e=[];return c.subscribe(function(c){var d=b.now();for(e.push({interval:d,value:c});e.length>0&&d-e[0].interval>=a;)e.shift()},d.onError.bind(d),function(){for(var c=b.now();e.length>0;){var f=e.shift();c-f.interval<=a&&d.onNext(f.value)}d.onCompleted()})},c)},_c.takeLastBufferWithTime=function(a,b){var c=this;return xb(b)||(b=Pc),new Rd(function(d){var e=[];return c.subscribe(function(c){var d=b.now();for(e.push({interval:d,value:c});e.length>0&&d-e[0].interval>=a;)e.shift()},d.onError.bind(d),function(){for(var c=b.now(),f=[];e.length>0;){var g=e.shift();c-g.interval<=a&&f.push(g.value)}d.onNext(f),d.onCompleted()})},c)},_c.takeWithTime=function(a,b){var c=this;return xb(b)||(b=Pc),new Rd(function(d){return new wc(b.scheduleWithRelative(a,d.onCompleted.bind(d)),c.subscribe(d))},c)},_c.skipWithTime=function(a,b){var c=this;return xb(b)||(b=Pc),new Rd(function(d){var e=!1;return new wc(b.scheduleWithRelative(a,function(){e=!0}),c.subscribe(function(a){e&&d.onNext(a)},d.onError.bind(d),d.onCompleted.bind(d)))},c)},_c.skipUntilWithTime=function(a,b){xb(b)||(b=Pc);var c=this,d=a instanceof Date?"scheduleWithAbsolute":"scheduleWithRelative";return new Rd(function(e){var f=!1;return new wc(b[d](a,function(){f=!0}),c.subscribe(function(a){f&&e.onNext(a)},e.onError.bind(e),e.onCompleted.bind(e)))},c)},_c.takeUntilWithTime=function(a,b){xb(b)||(b=Pc);var c=this,d=a instanceof Date?"scheduleWithAbsolute":"scheduleWithRelative";return new Rd(function(e){return new wc(b[d](a,e.onCompleted.bind(e)),c.subscribe(e))},c)},_c.throttleFirst=function(a,b){xb(b)||(b=Pc);var c=+a||0;if(0>=c)throw new RangeError("windowDuration cannot be less or equal zero.");var d=this;return new Rd(function(a){var e=0;return d.subscribe(function(d){var f=b.now();(0===e||f-e>=c)&&(e=f,a.onNext(d))},a.onError.bind(a),a.onCompleted.bind(a))},d)},_c.exclusive=function(){var a=this;return new Rd(function(b){var c=!1,d=!1,e=new Bc,f=new wc;return f.add(e),e.setDisposable(a.subscribe(function(a){if(!c){c=!0,Db(a)&&(a=gd(a));var e=new Bc;f.add(e),e.setDisposable(a.subscribe(b.onNext.bind(b),b.onError.bind(b),function(){f.remove(e),c=!1,d&&1===f.length&&b.onCompleted()}))}},b.onError.bind(b),function(){d=!0,c||1!==f.length||b.onCompleted()})),f},this)},_c.exclusiveMap=function(a,b){var c=this;return new Rd(function(d){var e=0,f=!1,g=!0,h=new Bc,i=new wc;return i.add(h),h.setDisposable(c.subscribe(function(c){f||(f=!0,innerSubscription=new Bc,i.add(innerSubscription),Db(c)&&(c=gd(c)),innerSubscription.setDisposable(c.subscribe(function(f){var g;try{g=a.call(b,f,e++,c)}catch(h){return void d.onError(h)}d.onNext(g)},d.onError.bind(d),function(){i.remove(innerSubscription),f=!1,g&&1===i.length&&d.onCompleted()})))},d.onError.bind(d),function(){g=!0,1!==i.length||f||d.onCompleted()})),i},this)},_c.transduce=function(a){function b(a){return{init:function(){return a},step:function(a,b){return a.onNext(b)},result:function(a){return a.onCompleted()}}}var c=this;return new Rd(function(d){var e=a(b(d));return c.subscribe(function(a){try{e.step(d,a)}catch(b){d.onError(b)}},d.onError.bind(d),function(){e.result(d)})},c)},vb.VirtualTimeScheduler=function(a){function b(){throw new Error("Not implemented")}function c(){return this.toDateTimeOffset(this.clock)}function d(a,b){return this.scheduleAbsoluteWithState(a,this.clock,b)}function e(a,b,c){return this.scheduleRelativeWithState(a,this.toRelative(b),c)}function f(a,b,c){return this.scheduleRelativeWithState(a,this.toRelative(b-this.now()),c)}function g(a,b){return b(),Ac}function h(b,g){this.clock=b,this.comparer=g,this.isEnabled=!1,this.queue=new uc(1024),a.call(this,c,d,e,f)}pc(h,a);var i=h.prototype;return i.add=b,i.toDateTimeOffset=b,i.toRelative=b,i.schedulePeriodicWithState=function(a,b,c){var d=new Ic(this,a,b,c);return d.start()},i.scheduleRelativeWithState=function(a,b,c){var d=this.add(this.clock,b);return this.scheduleAbsoluteWithState(a,d,c)},i.scheduleRelative=function(a,b){return this.scheduleRelativeWithState(b,a,g)},i.start=function(){if(!this.isEnabled){this.isEnabled=!0;do{var a=this.getNext();null!==a?(this.comparer(a.dueTime,this.clock)>0&&(this.clock=a.dueTime),a.invoke()):this.isEnabled=!1}while(this.isEnabled)}},i.stop=function(){this.isEnabled=!1},i.advanceTo=function(a){var b=this.comparer(this.clock,a);if(this.comparer(this.clock,a)>0)throw new Error(Hb);if(0!==b&&!this.isEnabled){this.isEnabled=!0;do{var c=this.getNext();null!==c&&this.comparer(c.dueTime,a)<=0?(this.comparer(c.dueTime,this.clock)>0&&(this.clock=c.dueTime),c.invoke()):this.isEnabled=!1}while(this.isEnabled);this.clock=a}},i.advanceBy=function(a){var b=this.add(this.clock,a),c=this.comparer(this.clock,b);if(c>0)throw new Error(Hb);0!==c&&this.advanceTo(b)},i.sleep=function(a){var b=this.add(this.clock,a);if(this.comparer(this.clock,b)>=0)throw new Error(Hb);this.clock=b},i.getNext=function(){for(;this.queue.length>0;){var a=this.queue.peek();if(!a.isCancelled())return a;this.queue.dequeue()}return null},i.scheduleAbsolute=function(a,b){return this.scheduleAbsoluteWithState(b,a,g)},i.scheduleAbsoluteWithState=function(a,b,c){function d(a,b){return e.queue.remove(f),c(a,b)}var e=this,f=new Ec(this,a,d,b,this.comparer);return this.queue.enqueue(f),f.disposable},h}(Fc),vb.HistoricalScheduler=function(a){function b(b,c){var d=null==b?0:b,e=c||Bb;a.call(this,d,e)}pc(b,a);var c=b.prototype;return c.add=function(a,b){return a+b},c.toDateTimeOffset=function(a){return new Date(a).getTime()},c.toRelative=function(a){return a},b}(vb.VirtualTimeScheduler);var Rd=vb.AnonymousObservable=function(a){function b(a){return a&&"function"==typeof a.dispose?a:"function"==typeof a?zc(a):Ac}function c(d,e){function f(a){var c=function(){try{e.setDisposable(b(d(e)))}catch(a){if(!e.fail(a))throw a}},e=new Sd(a);return Kc.scheduleRequired()?Kc.schedule(c):c(),e}return this.source=e,this instanceof c?void a.call(this,f):new c(d)}return pc(c,a),c}(fd),Sd=function(a){function b(b){a.call(this),this.observer=b,this.m=new Bc}pc(b,a);var c=b.prototype;return c.next=function(a){var b=!1;try{this.observer.onNext(a),b=!0}catch(c){throw c}finally{!b&&this.dispose()}},c.error=function(a){try{this.observer.onError(a)}catch(b){throw b}finally{this.dispose()}},c.completed=function(){try{this.observer.onCompleted()}catch(a){throw a}finally{this.dispose()}},c.setDisposable=function(a){this.m.setDisposable(a)},c.getDisposable=function(){return this.m.getDisposable()},c.dispose=function(){a.prototype.dispose.call(this),this.m.dispose()},b}(ad),Td=function(a){function b(a){return this.underlyingObservable.subscribe(a)}function c(c,d,e){a.call(this,b),this.key=c,this.underlyingObservable=e?new Rd(function(a){return new wc(e.getDisposable(),d.subscribe(a))}):d}return pc(c,a),c}(fd),Ud=vb.Subject=function(a){function c(a){return b.call(this),this.isStopped?this.exception?(a.onError(this.exception),Ac):(a.onCompleted(),Ac):(this.observers.push(a),new Gd(this,a))}function d(){a.call(this,c),this.isDisposed=!1,this.isStopped=!1,this.observers=[]}return pc(d,a),qc(d.prototype,Zc,{hasObservers:function(){return this.observers.length>0},onCompleted:function(){if(b.call(this),!this.isStopped){var a=this.observers.slice(0);this.isStopped=!0;for(var c=0,d=a.length;d>c;c++)a[c].onCompleted();this.observers=[]}},onError:function(a){if(b.call(this),!this.isStopped){var c=this.observers.slice(0);this.isStopped=!0,this.exception=a;for(var d=0,e=c.length;e>d;d++)c[d].onError(a);this.observers=[]}},onNext:function(a){if(b.call(this),!this.isStopped)for(var c=this.observers.slice(0),d=0,e=c.length;e>d;d++)c[d].onNext(a)},dispose:function(){this.isDisposed=!0,this.observers=null}}),d.create=function(a,b){return new Wd(a,b)},d}(fd),Vd=vb.AsyncSubject=function(a){function c(a){if(b.call(this),!this.isStopped)return this.observers.push(a),new Gd(this,a);var c=this.exception,d=this.hasValue,e=this.value;return c?a.onError(c):d?(a.onNext(e),a.onCompleted()):a.onCompleted(),Ac}function d(){a.call(this,c),this.isDisposed=!1,this.isStopped=!1,this.value=null,this.hasValue=!1,this.observers=[],this.exception=null}return pc(d,a),qc(d.prototype,Zc,{hasObservers:function(){return b.call(this),this.observers.length>0},onCompleted:function(){var a,c,d;if(b.call(this),!this.isStopped){this.isStopped=!0;var e=this.observers.slice(0),f=this.value,g=this.hasValue;if(g)for(c=0,d=e.length;d>c;c++)a=e[c],a.onNext(f),a.onCompleted();else for(c=0,d=e.length;d>c;c++)e[c].onCompleted();this.observers=[]}},onError:function(a){if(b.call(this),!this.isStopped){var c=this.observers.slice(0);this.isStopped=!0,this.exception=a;for(var d=0,e=c.length;e>d;d++)c[d].onError(a);this.observers=[]}},onNext:function(a){b.call(this),this.isStopped||(this.value=a,this.hasValue=!0)},dispose:function(){this.isDisposed=!0,this.observers=null,this.exception=null,this.value=null}}),d}(fd),Wd=vb.AnonymousSubject=function(a){function b(b,c){this.observer=b,this.observable=c,a.call(this,this.observable.subscribe.bind(this.observable))}return pc(b,a),qc(b.prototype,Zc,{onCompleted:function(){this.observer.onCompleted()},onError:function(a){this.observer.onError(a)},onNext:function(a){this.observer.onNext(a)}}),b}(fd);"function"==typeof define&&"object"==typeof define.amd&&define.amd?(qb.Rx=vb,define(function(){return vb
|
5
5
|
})):rb&&sb?tb?(sb.exports=vb).Rx=vb:rb.Rx=vb:qb.Rx=vb;var Xd=g()}).call(this);
|
6
6
|
//# sourceMappingURL=rx.all.compat.map
|
@@ -122,8 +122,6 @@
|
|
122
122
|
}
|
123
123
|
var fileName = fileNameAndLineNumber[0], lineNumber = fileNameAndLineNumber[1];
|
124
124
|
|
125
|
-
console.log(rFileName, rStartingLine, rEndingLine);
|
126
|
-
|
127
125
|
return fileName === rFileName &&
|
128
126
|
lineNumber >= rStartingLine &&
|
129
127
|
lineNumber <= rEndingLine;
|
@@ -211,6 +209,14 @@
|
|
211
209
|
stringProto = String.prototype,
|
212
210
|
propertyIsEnumerable = objectProto.propertyIsEnumerable;
|
213
211
|
|
212
|
+
// Fix for Tessel
|
213
|
+
if (!propertyIsEnumerable) {
|
214
|
+
propertyIsEnumerable = objectProto.propertyIsEnumerable = function (key) {
|
215
|
+
for (var k in this) { if (k === key) { return true; } }
|
216
|
+
return false;
|
217
|
+
};
|
218
|
+
}
|
219
|
+
|
214
220
|
try {
|
215
221
|
supportNodeClass = !(toString.call(document) == objectClass && !({ 'toString': 0 } + ''));
|
216
222
|
} catch (e) {
|
@@ -2040,16 +2046,18 @@
|
|
2040
2046
|
|
2041
2047
|
var self = this;
|
2042
2048
|
this._subscribe = function (observer) {
|
2049
|
+
var oldOnError = observer.onError.bind(observer);
|
2050
|
+
|
2043
2051
|
observer.onError = function (err) {
|
2044
|
-
makeStackTraceLong(
|
2045
|
-
|
2052
|
+
makeStackTraceLong(err, self);
|
2053
|
+
oldOnError(err);
|
2046
2054
|
};
|
2047
2055
|
|
2048
|
-
subscribe(observer);
|
2056
|
+
return subscribe(observer);
|
2049
2057
|
};
|
2058
|
+
} else {
|
2059
|
+
this._subscribe = subscribe;
|
2050
2060
|
}
|
2051
|
-
|
2052
|
-
this._subscribe = subscribe;
|
2053
2061
|
}
|
2054
2062
|
|
2055
2063
|
observableProto = Observable.prototype;
|
@@ -4248,7 +4256,7 @@
|
|
4248
4256
|
return source.subscribe(function (value) {
|
4249
4257
|
var shouldRun;
|
4250
4258
|
try {
|
4251
|
-
shouldRun = predicate.call(thisArg, value, count++,
|
4259
|
+
shouldRun = predicate.call(thisArg, value, count++, source);
|
4252
4260
|
} catch (e) {
|
4253
4261
|
observer.onError(e);
|
4254
4262
|
return;
|
@@ -5470,9 +5478,9 @@
|
|
5470
5478
|
return observableFromPromise(promise);
|
5471
5479
|
}
|
5472
5480
|
|
5473
|
-
var PausableObservable = (function (
|
5481
|
+
var PausableObservable = (function (__super__) {
|
5474
5482
|
|
5475
|
-
inherits(PausableObservable,
|
5483
|
+
inherits(PausableObservable, __super__);
|
5476
5484
|
|
5477
5485
|
function subscribe(observer) {
|
5478
5486
|
var conn = this.source.publish(),
|
@@ -5501,7 +5509,7 @@
|
|
5501
5509
|
this.pauser = this.controller;
|
5502
5510
|
}
|
5503
5511
|
|
5504
|
-
|
5512
|
+
__super__.call(this, subscribe, source);
|
5505
5513
|
}
|
5506
5514
|
|
5507
5515
|
PausableObservable.prototype.pause = function () {
|
@@ -5585,7 +5593,7 @@
|
|
5585
5593
|
next(true, 1);
|
5586
5594
|
})
|
5587
5595
|
);
|
5588
|
-
});
|
5596
|
+
}, source);
|
5589
5597
|
}
|
5590
5598
|
|
5591
5599
|
var PausableBufferedObservable = (function (__super__) {
|
@@ -5650,7 +5658,7 @@
|
|
5650
5658
|
this.pauser = this.controller;
|
5651
5659
|
}
|
5652
5660
|
|
5653
|
-
__super__.call(this, subscribe);
|
5661
|
+
__super__.call(this, subscribe, source);
|
5654
5662
|
}
|
5655
5663
|
|
5656
5664
|
PausableBufferedObservable.prototype.pause = function () {
|
@@ -5678,6 +5686,122 @@
|
|
5678
5686
|
return new PausableBufferedObservable(this, subject);
|
5679
5687
|
};
|
5680
5688
|
|
5689
|
+
var ControlledObservable = (function (__super__) {
|
5690
|
+
|
5691
|
+
inherits(ControlledObservable, __super__);
|
5692
|
+
|
5693
|
+
function subscribe (observer) {
|
5694
|
+
return this.source.subscribe(observer);
|
5695
|
+
}
|
5696
|
+
|
5697
|
+
function ControlledObservable (source, enableQueue) {
|
5698
|
+
__super__.call(this, subscribe, source);
|
5699
|
+
this.subject = new ControlledSubject(enableQueue);
|
5700
|
+
this.source = source.multicast(this.subject).refCount();
|
5701
|
+
}
|
5702
|
+
|
5703
|
+
ControlledObservable.prototype.request = function (numberOfItems) {
|
5704
|
+
if (numberOfItems == null) { numberOfItems = -1; }
|
5705
|
+
return this.subject.request(numberOfItems);
|
5706
|
+
};
|
5707
|
+
|
5708
|
+
return ControlledObservable;
|
5709
|
+
|
5710
|
+
}(Observable));
|
5711
|
+
|
5712
|
+
var ControlledSubject = (function (__super__) {
|
5713
|
+
|
5714
|
+
function subscribe (observer) {
|
5715
|
+
return this.subject.subscribe(observer);
|
5716
|
+
}
|
5717
|
+
|
5718
|
+
inherits(ControlledSubject, __super__);
|
5719
|
+
|
5720
|
+
function ControlledSubject(enableQueue) {
|
5721
|
+
enableQueue == null && (enableQueue = true);
|
5722
|
+
|
5723
|
+
__super__.call(this, subscribe);
|
5724
|
+
this.subject = new Subject();
|
5725
|
+
this.enableQueue = enableQueue;
|
5726
|
+
this.queue = enableQueue ? [] : null;
|
5727
|
+
this.requestedCount = 0;
|
5728
|
+
this.requestedDisposable = disposableEmpty;
|
5729
|
+
this.error = null;
|
5730
|
+
this.hasFailed = false;
|
5731
|
+
this.hasCompleted = false;
|
5732
|
+
this.controlledDisposable = disposableEmpty;
|
5733
|
+
}
|
5734
|
+
|
5735
|
+
addProperties(ControlledSubject.prototype, Observer, {
|
5736
|
+
onCompleted: function () {
|
5737
|
+
this.hasCompleted = true;
|
5738
|
+
(!this.enableQueue || this.queue.length === 0) && this.subject.onCompleted();
|
5739
|
+
},
|
5740
|
+
onError: function (error) {
|
5741
|
+
this.hasFailed = true;
|
5742
|
+
this.error = error;
|
5743
|
+
(!this.enableQueue || this.queue.length === 0) && this.subject.onError(error);
|
5744
|
+
},
|
5745
|
+
onNext: function (value) {
|
5746
|
+
var hasRequested = false;
|
5747
|
+
|
5748
|
+
if (this.requestedCount === 0) {
|
5749
|
+
this.enableQueue && this.queue.push(value);
|
5750
|
+
} else {
|
5751
|
+
(this.requestedCount !== -1 && this.requestedCount-- === 0) && this.disposeCurrentRequest();
|
5752
|
+
hasRequested = true;
|
5753
|
+
}
|
5754
|
+
hasRequested && this.subject.onNext(value);
|
5755
|
+
},
|
5756
|
+
_processRequest: function (numberOfItems) {
|
5757
|
+
if (this.enableQueue) {
|
5758
|
+
while (this.queue.length >= numberOfItems && numberOfItems > 0) {
|
5759
|
+
this.subject.onNext(this.queue.shift());
|
5760
|
+
numberOfItems--;
|
5761
|
+
}
|
5762
|
+
|
5763
|
+
return this.queue.length !== 0 ?
|
5764
|
+
{ numberOfItems: numberOfItems, returnValue: true } :
|
5765
|
+
{ numberOfItems: numberOfItems, returnValue: false };
|
5766
|
+
}
|
5767
|
+
|
5768
|
+
if (this.hasFailed) {
|
5769
|
+
this.subject.onError(this.error);
|
5770
|
+
this.controlledDisposable.dispose();
|
5771
|
+
this.controlledDisposable = disposableEmpty;
|
5772
|
+
} else if (this.hasCompleted) {
|
5773
|
+
this.subject.onCompleted();
|
5774
|
+
this.controlledDisposable.dispose();
|
5775
|
+
this.controlledDisposable = disposableEmpty;
|
5776
|
+
}
|
5777
|
+
|
5778
|
+
return { numberOfItems: numberOfItems, returnValue: false };
|
5779
|
+
},
|
5780
|
+
request: function (number) {
|
5781
|
+
this.disposeCurrentRequest();
|
5782
|
+
var self = this, r = this._processRequest(number);
|
5783
|
+
|
5784
|
+
var number = r.numberOfItems;
|
5785
|
+
if (!r.returnValue) {
|
5786
|
+
this.requestedCount = number;
|
5787
|
+
this.requestedDisposable = disposableCreate(function () {
|
5788
|
+
self.requestedCount = 0;
|
5789
|
+
});
|
5790
|
+
|
5791
|
+
return this.requestedDisposable
|
5792
|
+
} else {
|
5793
|
+
return disposableEmpty;
|
5794
|
+
}
|
5795
|
+
},
|
5796
|
+
disposeCurrentRequest: function () {
|
5797
|
+
this.requestedDisposable.dispose();
|
5798
|
+
this.requestedDisposable = disposableEmpty;
|
5799
|
+
}
|
5800
|
+
});
|
5801
|
+
|
5802
|
+
return ControlledSubject;
|
5803
|
+
}(Observable));
|
5804
|
+
|
5681
5805
|
/**
|
5682
5806
|
* Attaches a controller to the observable sequence with the ability to queue.
|
5683
5807
|
* @example
|
@@ -5691,155 +5815,159 @@
|
|
5691
5815
|
return new ControlledObservable(this, enableQueue);
|
5692
5816
|
};
|
5693
5817
|
|
5694
|
-
var
|
5695
|
-
|
5696
|
-
inherits(ControlledObservable, _super);
|
5818
|
+
var StopAndWaitObservable = (function (__super__) {
|
5697
5819
|
|
5698
5820
|
function subscribe (observer) {
|
5699
|
-
|
5821
|
+
this.subscription = this.source.subscribe(new StopAndWaitObserver(observer, this, this.subscription));
|
5822
|
+
|
5823
|
+
var self = this;
|
5824
|
+
timeoutScheduler.schedule(function () { self.source.request(1); });
|
5825
|
+
|
5826
|
+
return this.subscription;
|
5700
5827
|
}
|
5701
5828
|
|
5702
|
-
|
5703
|
-
|
5704
|
-
|
5705
|
-
this
|
5829
|
+
inherits(StopAndWaitObservable, __super__);
|
5830
|
+
|
5831
|
+
function StopAndWaitObservable (source) {
|
5832
|
+
__super__.call(this, subscribe, source);
|
5833
|
+
this.source = source;
|
5706
5834
|
}
|
5707
5835
|
|
5708
|
-
|
5709
|
-
if (numberOfItems == null) { numberOfItems = -1; }
|
5710
|
-
return this.subject.request(numberOfItems);
|
5711
|
-
};
|
5836
|
+
var StopAndWaitObserver = (function (__sub__) {
|
5712
5837
|
|
5713
|
-
|
5838
|
+
inherits(StopAndWaitObserver, __sub__);
|
5714
5839
|
|
5715
|
-
|
5840
|
+
function StopAndWaitObserver (observer, observable, cancel) {
|
5841
|
+
__sub__.call(this);
|
5842
|
+
this.observer = observer;
|
5843
|
+
this.observable = observable;
|
5844
|
+
this.cancel = cancel;
|
5845
|
+
}
|
5846
|
+
|
5847
|
+
var stopAndWaitObserverProto = StopAndWaitObserver.prototype;
|
5848
|
+
|
5849
|
+
stopAndWaitObserverProto.completed = function () {
|
5850
|
+
this.observer.onCompleted();
|
5851
|
+
this.dispose();
|
5852
|
+
};
|
5853
|
+
|
5854
|
+
stopAndWaitObserverProto.error = function (error) {
|
5855
|
+
this.observer.onError(error);
|
5856
|
+
this.dispose();
|
5857
|
+
}
|
5858
|
+
|
5859
|
+
stopAndWaitObserverProto.next = function (value) {
|
5860
|
+
this.observer.onNext(value);
|
5716
5861
|
|
5717
|
-
|
5862
|
+
var self = this;
|
5863
|
+
timeoutScheduler.schedule(function () {
|
5864
|
+
self.observable.source.request(1);
|
5865
|
+
});
|
5866
|
+
};
|
5718
5867
|
|
5719
|
-
|
5720
|
-
|
5868
|
+
stopAndWaitObserverProto.dispose = function () {
|
5869
|
+
this.observer = null;
|
5870
|
+
if (this.cancel) {
|
5871
|
+
this.cancel.dispose();
|
5872
|
+
this.cancel = null;
|
5721
5873
|
}
|
5874
|
+
__sub__.prototype.dispose.call(this);
|
5875
|
+
};
|
5722
5876
|
|
5723
|
-
|
5877
|
+
return StopAndWaitObserver;
|
5878
|
+
}(AbstractObserver));
|
5724
5879
|
|
5725
|
-
|
5726
|
-
|
5727
|
-
enableQueue = true;
|
5728
|
-
}
|
5880
|
+
return StopAndWaitObservable;
|
5881
|
+
}(Observable));
|
5729
5882
|
|
5730
|
-
_super.call(this, subscribe);
|
5731
|
-
this.subject = new Subject();
|
5732
|
-
this.enableQueue = enableQueue;
|
5733
|
-
this.queue = enableQueue ? [] : null;
|
5734
|
-
this.requestedCount = 0;
|
5735
|
-
this.requestedDisposable = disposableEmpty;
|
5736
|
-
this.error = null;
|
5737
|
-
this.hasFailed = false;
|
5738
|
-
this.hasCompleted = false;
|
5739
|
-
this.controlledDisposable = disposableEmpty;
|
5740
|
-
}
|
5741
|
-
|
5742
|
-
addProperties(ControlledSubject.prototype, Observer, {
|
5743
|
-
onCompleted: function () {
|
5744
|
-
checkDisposed.call(this);
|
5745
|
-
this.hasCompleted = true;
|
5746
5883
|
|
5747
|
-
|
5748
|
-
|
5749
|
-
|
5750
|
-
|
5751
|
-
|
5752
|
-
|
5753
|
-
|
5754
|
-
this.error = error;
|
5884
|
+
/**
|
5885
|
+
* Attaches a stop and wait observable to the current observable.
|
5886
|
+
* @returns {Observable} A stop and wait observable.
|
5887
|
+
*/
|
5888
|
+
ControlledObservable.prototype.stopAndWait = function () {
|
5889
|
+
return new StopAndWaitObservable(this);
|
5890
|
+
};
|
5755
5891
|
|
5756
|
-
|
5757
|
-
this.subject.onError(error);
|
5758
|
-
}
|
5759
|
-
},
|
5760
|
-
onNext: function (value) {
|
5761
|
-
checkDisposed.call(this);
|
5762
|
-
var hasRequested = false;
|
5892
|
+
var WindowedObservable = (function (__super__) {
|
5763
5893
|
|
5764
|
-
|
5765
|
-
|
5766
|
-
this.queue.push(value);
|
5767
|
-
}
|
5768
|
-
} else {
|
5769
|
-
if (this.requestedCount !== -1) {
|
5770
|
-
if (this.requestedCount-- === 0) {
|
5771
|
-
this.disposeCurrentRequest();
|
5772
|
-
}
|
5773
|
-
}
|
5774
|
-
hasRequested = true;
|
5775
|
-
}
|
5894
|
+
function subscribe (observer) {
|
5895
|
+
this.subscription = this.source.subscribe(new WindowedObserver(observer, this, this.subscription));
|
5776
5896
|
|
5777
|
-
|
5778
|
-
|
5779
|
-
|
5780
|
-
|
5781
|
-
_processRequest: function (numberOfItems) {
|
5782
|
-
if (this.enableQueue) {
|
5783
|
-
//console.log('queue length', this.queue.length);
|
5784
|
-
|
5785
|
-
while (this.queue.length >= numberOfItems && numberOfItems > 0) {
|
5786
|
-
//console.log('number of items', numberOfItems);
|
5787
|
-
this.subject.onNext(this.queue.shift());
|
5788
|
-
numberOfItems--;
|
5789
|
-
}
|
5897
|
+
var self = this;
|
5898
|
+
timeoutScheduler.schedule(function () {
|
5899
|
+
self.source.request(self.windowSize);
|
5900
|
+
});
|
5790
5901
|
|
5791
|
-
|
5792
|
-
|
5793
|
-
} else {
|
5794
|
-
return { numberOfItems: numberOfItems, returnValue: false };
|
5795
|
-
}
|
5796
|
-
}
|
5902
|
+
return this.subscription;
|
5903
|
+
}
|
5797
5904
|
|
5798
|
-
|
5799
|
-
this.subject.onError(this.error);
|
5800
|
-
this.controlledDisposable.dispose();
|
5801
|
-
this.controlledDisposable = disposableEmpty;
|
5802
|
-
} else if (this.hasCompleted) {
|
5803
|
-
this.subject.onCompleted();
|
5804
|
-
this.controlledDisposable.dispose();
|
5805
|
-
this.controlledDisposable = disposableEmpty;
|
5806
|
-
}
|
5905
|
+
inherits(WindowedObservable, __super__);
|
5807
5906
|
|
5808
|
-
|
5809
|
-
|
5810
|
-
|
5811
|
-
|
5812
|
-
|
5813
|
-
var self = this,
|
5814
|
-
r = this._processRequest(number);
|
5815
|
-
|
5816
|
-
number = r.numberOfItems;
|
5817
|
-
if (!r.returnValue) {
|
5818
|
-
this.requestedCount = number;
|
5819
|
-
this.requestedDisposable = disposableCreate(function () {
|
5820
|
-
self.requestedCount = 0;
|
5821
|
-
});
|
5822
|
-
|
5823
|
-
return this.requestedDisposable
|
5824
|
-
} else {
|
5825
|
-
return disposableEmpty;
|
5826
|
-
}
|
5827
|
-
},
|
5828
|
-
disposeCurrentRequest: function () {
|
5829
|
-
this.requestedDisposable.dispose();
|
5830
|
-
this.requestedDisposable = disposableEmpty;
|
5831
|
-
},
|
5907
|
+
function WindowedObservable(source, windowSize) {
|
5908
|
+
__super__.call(this, subscribe, source);
|
5909
|
+
this.source = source;
|
5910
|
+
this.windowSize = windowSize;
|
5911
|
+
}
|
5832
5912
|
|
5833
|
-
|
5834
|
-
this.isDisposed = true;
|
5835
|
-
this.error = null;
|
5836
|
-
this.subject.dispose();
|
5837
|
-
this.requestedDisposable.dispose();
|
5838
|
-
}
|
5839
|
-
});
|
5913
|
+
var WindowedObserver = (function (__sub__) {
|
5840
5914
|
|
5841
|
-
|
5842
|
-
|
5915
|
+
inherits(WindowedObserver, __sub__);
|
5916
|
+
|
5917
|
+
function WindowedObserver(observer, observable, cancel) {
|
5918
|
+
this.observer = observer;
|
5919
|
+
this.observable = observable;
|
5920
|
+
this.cancel = cancel;
|
5921
|
+
this.received = 0;
|
5922
|
+
}
|
5923
|
+
|
5924
|
+
var windowedObserverPrototype = WindowedObserver.prototype;
|
5925
|
+
|
5926
|
+
windowedObserverPrototype.completed = function () {
|
5927
|
+
this.observer.onCompleted();
|
5928
|
+
this.dispose();
|
5929
|
+
};
|
5930
|
+
|
5931
|
+
windowedObserverPrototype.error = function (error) {
|
5932
|
+
this.observer.onError(error);
|
5933
|
+
this.dispose();
|
5934
|
+
};
|
5935
|
+
|
5936
|
+
windowedObserverPrototype.next = function (value) {
|
5937
|
+
this.observer.onNext(value);
|
5938
|
+
|
5939
|
+
this.received = ++this.received % this.observable.windowSize;
|
5940
|
+
if (this.received === 0) {
|
5941
|
+
var self = this;
|
5942
|
+
timeoutScheduler.schedule(function () {
|
5943
|
+
self.observable.source.request(self.observable.windowSize);
|
5944
|
+
});
|
5945
|
+
}
|
5946
|
+
};
|
5947
|
+
|
5948
|
+
windowedObserverPrototype.dispose = function () {
|
5949
|
+
this.observer = null;
|
5950
|
+
if (this.cancel) {
|
5951
|
+
this.cancel.dispose();
|
5952
|
+
this.cancel = null;
|
5953
|
+
}
|
5954
|
+
__sub__.prototype.dispose.call(this);
|
5955
|
+
};
|
5956
|
+
|
5957
|
+
return WindowedObserver;
|
5958
|
+
}(AbstractObserver));
|
5959
|
+
|
5960
|
+
return WindowedObservable;
|
5961
|
+
}(Observable));
|
5962
|
+
|
5963
|
+
/**
|
5964
|
+
* Creates a sliding windowed observable based upon the window size.
|
5965
|
+
* @param {Number} windowSize The number of items in the window
|
5966
|
+
* @returns {Observable} A windowed observable based upon the window size.
|
5967
|
+
*/
|
5968
|
+
ControlledObservable.prototype.windowed = function (windowSize) {
|
5969
|
+
return new WindowedObservable(this, windowSize);
|
5970
|
+
};
|
5843
5971
|
|
5844
5972
|
/**
|
5845
5973
|
* Multicasts the source sequence notifications through an instantiated subject into all uses of the sequence within a selector function. Each
|