@quotemedia.com/streamer 2.36.0 → 2.39.0
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.
- package/README.md +2 -2
- package/examples/enduser-example.html +1 -1
- package/examples/enterprise-token-example.html +1 -1
- package/examples/reconnect-example.html +1 -1
- package/examples/stomp-3rd-party-library-example.html +1 -1
- package/examples/subscription-example.html +1 -1
- package/examples/test_example.html +126 -0
- package/examples/wmid-example.html +1 -1
- package/package.json +1 -1
- package/{qmci-streamer-2.36.0.js → qmci-streamer-2.39.0.js} +641 -156
- package/qmci-streamer-2.39.0.min.js +115 -0
- package/qmci-streamer-2.36.0.min.js +0 -115
|
@@ -284,7 +284,7 @@ var Connection = function () {
|
|
|
284
284
|
|
|
285
285
|
exports["default"] = Connection;
|
|
286
286
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/Connection.js","/lib")
|
|
287
|
-
},{"./EventSupport.js":2,"./logging.js":16,"./streamer-events.js":
|
|
287
|
+
},{"./EventSupport.js":2,"./logging.js":16,"./streamer-events.js":109,"_process":131,"buffer":121,"timers":152}],2:[function(require,module,exports){
|
|
288
288
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
289
289
|
"use strict";
|
|
290
290
|
|
|
@@ -333,7 +333,7 @@ var EventSupport = function () {
|
|
|
333
333
|
|
|
334
334
|
exports["default"] = EventSupport;
|
|
335
335
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/EventSupport.js","/lib")
|
|
336
|
-
},{"_process":
|
|
336
|
+
},{"_process":131,"buffer":121,"timers":152}],3:[function(require,module,exports){
|
|
337
337
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
338
338
|
"use strict";
|
|
339
339
|
|
|
@@ -382,7 +382,7 @@ var FlowControl = function () {
|
|
|
382
382
|
|
|
383
383
|
exports["default"] = FlowControl;
|
|
384
384
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/FlowControl.js","/lib")
|
|
385
|
-
},{"./LongSequence.js":4,"./streamer-api.js":
|
|
385
|
+
},{"./LongSequence.js":4,"./streamer-api.js":108,"_process":131,"buffer":121,"timers":152}],4:[function(require,module,exports){
|
|
386
386
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
387
387
|
"use strict";
|
|
388
388
|
|
|
@@ -415,7 +415,7 @@ LongSequence.MAX_VALUE = Number.MAX_SAFE_INTEGER;
|
|
|
415
415
|
|
|
416
416
|
exports["default"] = LongSequence;
|
|
417
417
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/LongSequence.js","/lib")
|
|
418
|
-
},{"_process":
|
|
418
|
+
},{"_process":131,"buffer":121,"timers":152}],5:[function(require,module,exports){
|
|
419
419
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
420
420
|
"use strict";
|
|
421
421
|
|
|
@@ -481,7 +481,7 @@ var SMessage = function SMessage() {
|
|
|
481
481
|
|
|
482
482
|
exports["default"] = SMessage;
|
|
483
483
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/SMessage.js","/lib")
|
|
484
|
-
},{"./serialization/v1/codec.js":
|
|
484
|
+
},{"./serialization/v1/codec.js":103,"_process":131,"buffer":121,"timers":152}],6:[function(require,module,exports){
|
|
485
485
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
486
486
|
"use strict";
|
|
487
487
|
|
|
@@ -1075,6 +1075,7 @@ var Stream = function () {
|
|
|
1075
1075
|
}
|
|
1076
1076
|
if (opts) {
|
|
1077
1077
|
msg.conflation = opts.conflation;
|
|
1078
|
+
msg.intervalPeriod = opts.intervalPeriod;
|
|
1078
1079
|
}
|
|
1079
1080
|
return msg;
|
|
1080
1081
|
};
|
|
@@ -1809,7 +1810,7 @@ var Stream = function () {
|
|
|
1809
1810
|
|
|
1810
1811
|
exports["default"] = Stream;
|
|
1811
1812
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/Stream.js","/lib")
|
|
1812
|
-
},{"./EventSupport.js":2,"./FlowControl.js":3,"./UShortId.js":9,"./formatting.js":13,"./logging.js":16,"./polyfills.js":18,"./streamer-api.js":
|
|
1813
|
+
},{"./EventSupport.js":2,"./FlowControl.js":3,"./UShortId.js":9,"./formatting.js":13,"./logging.js":16,"./polyfills.js":18,"./streamer-api.js":108,"./streamer-events.js":109,"./streamer-utils.js":110,"./utils.js":115,"_process":131,"buffer":121,"timers":152}],7:[function(require,module,exports){
|
|
1813
1814
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
1814
1815
|
"use strict";
|
|
1815
1816
|
|
|
@@ -1918,7 +1919,7 @@ Object.assign(Streamer, {
|
|
|
1918
1919
|
|
|
1919
1920
|
exports["default"] = Streamer;
|
|
1920
1921
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/Streamer.js","/lib")
|
|
1921
|
-
},{"./StreamingService.js":8,"./atmosphere.js/lib/atmosphere.js":10,"./auth/AuthService.js":11,"./auth/EnduserAuthService.js":12,"./http.js":14,"./logging.js":16,"./polyfills.js":18,"./stomp.js/lib/stomp.js":
|
|
1922
|
+
},{"./StreamingService.js":8,"./atmosphere.js/lib/atmosphere.js":10,"./auth/AuthService.js":11,"./auth/EnduserAuthService.js":12,"./http.js":14,"./logging.js":16,"./polyfills.js":18,"./stomp.js/lib/stomp.js":104,"./stomp/StompStreamingService.js":107,"_process":131,"buffer":121,"timers":152}],8:[function(require,module,exports){
|
|
1922
1923
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
1923
1924
|
"use strict";
|
|
1924
1925
|
|
|
@@ -2021,6 +2022,11 @@ var StreamingService = function () {
|
|
|
2021
2022
|
headers['X-Stream-Conflation'] = _conflation;
|
|
2022
2023
|
}
|
|
2023
2024
|
|
|
2025
|
+
var _intervalPeriod = this.config.intervalPeriod;
|
|
2026
|
+
if (_intervalPeriod != null && _intervalPeriod !== '') {
|
|
2027
|
+
headers['X-Stream-Interval-Period'] = _intervalPeriod;
|
|
2028
|
+
}
|
|
2029
|
+
|
|
2024
2030
|
if (connectionId != null && connectionId !== '') {
|
|
2025
2031
|
headers['X-Stream-Previous-Connection-Id'] = connectionId;
|
|
2026
2032
|
}
|
|
@@ -2131,7 +2137,7 @@ var StreamingService = function () {
|
|
|
2131
2137
|
|
|
2132
2138
|
exports["default"] = StreamingService;
|
|
2133
2139
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/StreamingService.js","/lib")
|
|
2134
|
-
},{"./Connection.js":1,"./Stream.js":6,"./logging.js":16,"./message.js":17,"./polyfills.js":18,"./qitch/encoder/QitchEncoder":
|
|
2140
|
+
},{"./Connection.js":1,"./Stream.js":6,"./logging.js":16,"./message.js":17,"./polyfills.js":18,"./qitch/encoder/QitchEncoder":76,"./serialization/SMessageDecoder.js":99,"./serialization/SMessageEncoder.js":100,"./streamer-api.js":108,"./transmission/JsonTransmitter.js":112,"./transmission/QitchTransmitter.js":113,"./transmission/SMessageTransmitter.js":114,"_process":131,"buffer":121,"timers":152}],9:[function(require,module,exports){
|
|
2135
2141
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
2136
2142
|
"use strict";
|
|
2137
2143
|
|
|
@@ -2165,7 +2171,7 @@ UShortId.MAX_VALUE = 65535; // 2^16-1
|
|
|
2165
2171
|
|
|
2166
2172
|
exports["default"] = UShortId;
|
|
2167
2173
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/UShortId.js","/lib")
|
|
2168
|
-
},{"_process":
|
|
2174
|
+
},{"_process":131,"buffer":121,"timers":152}],10:[function(require,module,exports){
|
|
2169
2175
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
2170
2176
|
"use strict";
|
|
2171
2177
|
|
|
@@ -5680,7 +5686,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
5680
5686
|
});
|
|
5681
5687
|
/* jshint eqnull:true, noarg:true, noempty:true, eqeqeq:true, evil:true, laxbreak:true, undef:true, browser:true, indent:false, maxerr:50 */
|
|
5682
5688
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/atmosphere.js/lib/atmosphere.js","/lib/atmosphere.js/lib")
|
|
5683
|
-
},{"_process":
|
|
5689
|
+
},{"_process":131,"buffer":121,"timers":152}],11:[function(require,module,exports){
|
|
5684
5690
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
5685
5691
|
"use strict";
|
|
5686
5692
|
|
|
@@ -5780,7 +5786,7 @@ function asCredentials(credentials) {
|
|
|
5780
5786
|
}
|
|
5781
5787
|
};
|
|
5782
5788
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/auth/AuthService.js","/lib/auth")
|
|
5783
|
-
},{"./EnduserAuthService.js":12,"_process":
|
|
5789
|
+
},{"./EnduserAuthService.js":12,"_process":131,"array-equal":116,"buffer":121,"timers":152}],12:[function(require,module,exports){
|
|
5784
5790
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
5785
5791
|
"use strict";
|
|
5786
5792
|
|
|
@@ -5856,7 +5862,7 @@ var EnduserAuthService = function () {
|
|
|
5856
5862
|
|
|
5857
5863
|
exports["default"] = EnduserAuthService;
|
|
5858
5864
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/auth/EnduserAuthService.js","/lib/auth")
|
|
5859
|
-
},{"_process":
|
|
5865
|
+
},{"_process":131,"buffer":121,"timers":152}],13:[function(require,module,exports){
|
|
5860
5866
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
5861
5867
|
"use strict";
|
|
5862
5868
|
|
|
@@ -6256,6 +6262,8 @@ fmt.Formatter.prototype._fmtinterval = function (val) {
|
|
|
6256
6262
|
s.append(val.volume);
|
|
6257
6263
|
s.sep();
|
|
6258
6264
|
s.append(val.vwap);
|
|
6265
|
+
s.sep();
|
|
6266
|
+
s.append(val.periodMs);
|
|
6259
6267
|
return s.toString();
|
|
6260
6268
|
};
|
|
6261
6269
|
|
|
@@ -6936,7 +6944,7 @@ fmt.format = function (msg) {
|
|
|
6936
6944
|
|
|
6937
6945
|
module.exports = fmt;
|
|
6938
6946
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/formatting.js","/lib")
|
|
6939
|
-
},{"./streamer-api.js":
|
|
6947
|
+
},{"./streamer-api.js":108,"./streamer-utils.js":110,"_process":131,"buffer":121,"jsbi":128,"timers":152}],14:[function(require,module,exports){
|
|
6940
6948
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
6941
6949
|
"use strict";
|
|
6942
6950
|
|
|
@@ -7018,7 +7026,7 @@ function http(opts) {
|
|
|
7018
7026
|
xhr.send(data);
|
|
7019
7027
|
};
|
|
7020
7028
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/http.js","/lib")
|
|
7021
|
-
},{"_process":
|
|
7029
|
+
},{"_process":131,"buffer":121,"timers":152,"xmlhttprequest":157}],15:[function(require,module,exports){
|
|
7022
7030
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
7023
7031
|
"use strict";
|
|
7024
7032
|
|
|
@@ -7089,7 +7097,7 @@ _Streamer2["default"].subscriptionTypes = _streamerApi.messages.market.Subscript
|
|
|
7089
7097
|
|
|
7090
7098
|
module.exports = _Streamer2["default"];
|
|
7091
7099
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/index.js","/lib")
|
|
7092
|
-
},{"./Streamer.js":7,"./formatting.js":13,"./polyfills":18,"./streamer-api.js":
|
|
7100
|
+
},{"./Streamer.js":7,"./formatting.js":13,"./polyfills":18,"./streamer-api.js":108,"./streamer-utils.js":110,"_process":131,"buffer":121,"json3":129,"timers":152}],16:[function(require,module,exports){
|
|
7093
7101
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
7094
7102
|
"use strict";
|
|
7095
7103
|
|
|
@@ -7149,7 +7157,7 @@ function asLogger(logger) {
|
|
|
7149
7157
|
}
|
|
7150
7158
|
}
|
|
7151
7159
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/logging.js","/lib")
|
|
7152
|
-
},{"_process":
|
|
7160
|
+
},{"_process":131,"buffer":121,"timers":152}],17:[function(require,module,exports){
|
|
7153
7161
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
7154
7162
|
"use strict";
|
|
7155
7163
|
|
|
@@ -7225,7 +7233,7 @@ var lpad = exports.lpad = function lpad(num, len) {
|
|
|
7225
7233
|
return _pad + _numstr;
|
|
7226
7234
|
};
|
|
7227
7235
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/message.js","/lib")
|
|
7228
|
-
},{"_process":
|
|
7236
|
+
},{"_process":131,"buffer":121,"timers":152}],18:[function(require,module,exports){
|
|
7229
7237
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
7230
7238
|
'use strict';
|
|
7231
7239
|
|
|
@@ -7443,7 +7451,7 @@ if (!Array.from) {
|
|
|
7443
7451
|
}();
|
|
7444
7452
|
}
|
|
7445
7453
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/polyfills.js","/lib")
|
|
7446
|
-
},{"_process":
|
|
7454
|
+
},{"_process":131,"buffer":121,"timers":152}],19:[function(require,module,exports){
|
|
7447
7455
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
7448
7456
|
"use strict";
|
|
7449
7457
|
|
|
@@ -7505,7 +7513,7 @@ var BlockHeader = function () {
|
|
|
7505
7513
|
|
|
7506
7514
|
exports["default"] = BlockHeader;
|
|
7507
7515
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/BlockHeader.js","/lib/qitch")
|
|
7508
|
-
},{"./Bytes":20,"./DataOperations":21,"./Qitch":25,"./QitchConstants":26,"_process":
|
|
7516
|
+
},{"./Bytes":20,"./DataOperations":21,"./Qitch":25,"./QitchConstants":26,"_process":131,"buffer":121,"timers":152}],20:[function(require,module,exports){
|
|
7509
7517
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
7510
7518
|
"use strict";
|
|
7511
7519
|
|
|
@@ -7600,7 +7608,7 @@ var Bytes = function () {
|
|
|
7600
7608
|
|
|
7601
7609
|
exports["default"] = Bytes;
|
|
7602
7610
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/Bytes.js","/lib/qitch")
|
|
7603
|
-
},{"_process":
|
|
7611
|
+
},{"_process":131,"buffer":121,"jsbi":128,"timers":152}],21:[function(require,module,exports){
|
|
7604
7612
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
7605
7613
|
"use strict";
|
|
7606
7614
|
|
|
@@ -7751,7 +7759,7 @@ exports.UShort = UShort;
|
|
|
7751
7759
|
exports.UInt = UInt;
|
|
7752
7760
|
exports.ASCIIString = ASCIIString;
|
|
7753
7761
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/DataOperations.js","/lib/qitch")
|
|
7754
|
-
},{"_process":
|
|
7762
|
+
},{"_process":131,"buffer":121,"timers":152}],22:[function(require,module,exports){
|
|
7755
7763
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
7756
7764
|
"use strict";
|
|
7757
7765
|
|
|
@@ -7825,7 +7833,7 @@ var EnumValueTranslator = function () {
|
|
|
7825
7833
|
|
|
7826
7834
|
exports["default"] = EnumValueTranslator;
|
|
7827
7835
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/EnumValueTranslator.js","/lib/qitch")
|
|
7828
|
-
},{"../streamer-api":
|
|
7836
|
+
},{"../streamer-api":108,"_process":131,"buffer":121,"timers":152}],23:[function(require,module,exports){
|
|
7829
7837
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
7830
7838
|
"use strict";
|
|
7831
7839
|
|
|
@@ -7846,7 +7854,7 @@ var LocateCodeInjector = function () {
|
|
|
7846
7854
|
if (message instanceof _streamerApi.messages.market.SymbolInfo) {
|
|
7847
7855
|
this.symbols.set(message.locateCode, message.symbol);
|
|
7848
7856
|
} else if (message instanceof _streamerApi.messages.market.DataMessage) {
|
|
7849
|
-
if (message.locateCode !== null) {
|
|
7857
|
+
if (message.locateCode !== null && !(message instanceof _streamerApi.messages.market.ImbalanceStatus) && !(message instanceof _streamerApi.messages.market.SymbolStatus) && !(message instanceof _streamerApi.messages.market.Alert)) {
|
|
7850
7858
|
message.symbol = this.symbols.get(message.locateCode);
|
|
7851
7859
|
}
|
|
7852
7860
|
}
|
|
@@ -7857,7 +7865,7 @@ var LocateCodeInjector = function () {
|
|
|
7857
7865
|
|
|
7858
7866
|
exports["default"] = LocateCodeInjector;
|
|
7859
7867
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/LocateCodeInjector.js","/lib/qitch")
|
|
7860
|
-
},{"../streamer-api":
|
|
7868
|
+
},{"../streamer-api":108,"_process":131,"buffer":121,"timers":152}],24:[function(require,module,exports){
|
|
7861
7869
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
7862
7870
|
"use strict";
|
|
7863
7871
|
|
|
@@ -7902,7 +7910,7 @@ var MessageHeader = function () {
|
|
|
7902
7910
|
|
|
7903
7911
|
exports["default"] = MessageHeader;
|
|
7904
7912
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/MessageHeader.js","/lib/qitch")
|
|
7905
|
-
},{"./Bytes":20,"./DataOperations":21,"./QitchConstants":26,"_process":
|
|
7913
|
+
},{"./Bytes":20,"./DataOperations":21,"./QitchConstants":26,"_process":131,"buffer":121,"timers":152}],25:[function(require,module,exports){
|
|
7906
7914
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
7907
7915
|
"use strict";
|
|
7908
7916
|
|
|
@@ -8244,6 +8252,42 @@ var Qitch = function () {
|
|
|
8244
8252
|
throw "Invalid destination. Expected: Int8Array";
|
|
8245
8253
|
};
|
|
8246
8254
|
|
|
8255
|
+
/**
|
|
8256
|
+
* Gets String value from source byte array at specified offset.
|
|
8257
|
+
* @param src The source array.
|
|
8258
|
+
* @param offset The offset.
|
|
8259
|
+
* @param maxLength The max length of returning value.
|
|
8260
|
+
* @returns {null|String} Returns null in case if specified offset is too big (offset + maxLength in bytes is bigger than length of source array),
|
|
8261
|
+
* otherwise returns obtained value.
|
|
8262
|
+
* @throws Exception in case if src is not {@link Int8Array}
|
|
8263
|
+
*/
|
|
8264
|
+
|
|
8265
|
+
|
|
8266
|
+
Qitch.asciiString = function asciiString(src, offset, maxLength) {
|
|
8267
|
+
if (src instanceof Int8Array) {
|
|
8268
|
+
return _DataOperations.ASCIIString.get(src, offset, maxLength);
|
|
8269
|
+
}
|
|
8270
|
+
throw "Invalid source. Expected: Int8Array";
|
|
8271
|
+
};
|
|
8272
|
+
|
|
8273
|
+
/**
|
|
8274
|
+
* Puts String value into destination array.
|
|
8275
|
+
* @param dst The destination array.
|
|
8276
|
+
* @param offset The offset.
|
|
8277
|
+
* @param val String value.
|
|
8278
|
+
* @param maxLength The max length of returning value.
|
|
8279
|
+
* @returns {Int8Array} destination array.
|
|
8280
|
+
* @throws Exception in case if dst is not {@link Int8Array}
|
|
8281
|
+
*/
|
|
8282
|
+
|
|
8283
|
+
|
|
8284
|
+
Qitch.putAsciiString = function putAsciiString(dst, offset, val, maxLength) {
|
|
8285
|
+
if (dst instanceof Int8Array) {
|
|
8286
|
+
return _DataOperations.ASCIIString.put(dst, offset, val, maxLength);
|
|
8287
|
+
}
|
|
8288
|
+
throw "Invalid destination. Expected: Int8Array";
|
|
8289
|
+
};
|
|
8290
|
+
|
|
8247
8291
|
/**
|
|
8248
8292
|
* Gets excode value from source byte array at specified offset.
|
|
8249
8293
|
* @param src The source array.
|
|
@@ -8264,6 +8308,23 @@ var Qitch = function () {
|
|
|
8264
8308
|
throw "Invalid source. Expected: Int8Array";
|
|
8265
8309
|
};
|
|
8266
8310
|
|
|
8311
|
+
/**
|
|
8312
|
+
* Puts excode value into destination array.
|
|
8313
|
+
* @param dst The destination array.
|
|
8314
|
+
* @param offset The offset.
|
|
8315
|
+
* @param val excode value.
|
|
8316
|
+
* @returns {Int8Array} destination array.
|
|
8317
|
+
* @throws Exception in case if dst is not {@link Int8Array}
|
|
8318
|
+
*/
|
|
8319
|
+
|
|
8320
|
+
|
|
8321
|
+
Qitch.putExcode = function putExcode(dst, offset, val) {
|
|
8322
|
+
if (dst instanceof Int8Array) {
|
|
8323
|
+
return _DataOperations.ASCIIString.put(dst, offset, val, Constants.EXCODE_LENGTH);
|
|
8324
|
+
}
|
|
8325
|
+
throw "Invalid destination. Expected: Int8Array";
|
|
8326
|
+
};
|
|
8327
|
+
|
|
8267
8328
|
/**
|
|
8268
8329
|
* Gets mmid value from source byte array at specified offset.
|
|
8269
8330
|
* @param src The source array.
|
|
@@ -8704,7 +8765,7 @@ var Qitch = function () {
|
|
|
8704
8765
|
|
|
8705
8766
|
exports["default"] = Qitch;
|
|
8706
8767
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/Qitch.js","/lib/qitch")
|
|
8707
|
-
},{"../streamer-api":
|
|
8768
|
+
},{"../streamer-api":108,"./Bytes":20,"./DataOperations":21,"./EnumValueTranslator":22,"./QitchConstants":26,"_process":131,"bignumber.js":118,"buffer":121,"jsbi":128,"timers":152}],26:[function(require,module,exports){
|
|
8708
8769
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
8709
8770
|
"use strict";
|
|
8710
8771
|
|
|
@@ -8767,7 +8828,7 @@ var BLOCK_HEADER_RESERVED_OFFSET = exports.BLOCK_HEADER_RESERVED_OFFSET = BLOCK_
|
|
|
8767
8828
|
var BLOCK_HEADER_SEQUENCE_OFFSET = exports.BLOCK_HEADER_SEQUENCE_OFFSET = BLOCK_HEADER_RESERVED_OFFSET + BYTE_LENGTH;
|
|
8768
8829
|
var BLOCK_HEADER_LENGTH = exports.BLOCK_HEADER_LENGTH = BLOCK_HEADER_SEQUENCE_OFFSET + INT_LENGTH;
|
|
8769
8830
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/QitchConstants.js","/lib/qitch")
|
|
8770
|
-
},{"_process":
|
|
8831
|
+
},{"_process":131,"buffer":121,"jsbi":128,"timers":152}],27:[function(require,module,exports){
|
|
8771
8832
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
8772
8833
|
"use strict";
|
|
8773
8834
|
|
|
@@ -8790,7 +8851,7 @@ var MAX_ENTITLEMENTS_PER_SUBSCRIPTION_OFFSET = exports.MAX_ENTITLEMENTS_PER_SUBS
|
|
|
8790
8851
|
|
|
8791
8852
|
var LENGTH = exports.LENGTH = MAX_ENTITLEMENTS_PER_SUBSCRIPTION_OFFSET + _QitchConstants.INT_LENGTH;
|
|
8792
8853
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/controlMessageDefinition/ConnectResponseDef.js","/lib/qitch/controlMessageDefinition")
|
|
8793
|
-
},{"../QitchConstants":26,"_process":
|
|
8854
|
+
},{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],28:[function(require,module,exports){
|
|
8794
8855
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
8795
8856
|
"use strict";
|
|
8796
8857
|
|
|
@@ -8806,7 +8867,54 @@ var REASON_OFFSET = exports.REASON_OFFSET = CODE_OFFSET + _QitchConstants.INT_LE
|
|
|
8806
8867
|
|
|
8807
8868
|
var LENGTH = exports.LENGTH = REASON_OFFSET + _QitchConstants.REASON_LENGTH;
|
|
8808
8869
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/controlMessageDefinition/ConnectionCloseDef.js","/lib/qitch/controlMessageDefinition")
|
|
8809
|
-
},{"../QitchConstants":26,"_process":
|
|
8870
|
+
},{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],29:[function(require,module,exports){
|
|
8871
|
+
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
8872
|
+
"use strict";
|
|
8873
|
+
|
|
8874
|
+
exports.__esModule = true;
|
|
8875
|
+
exports.FIXED_LENGTH = exports.EXCODE_OFFSET = exports.CONFLATION_OFFSET = exports.MIMETYPE_OFFSET = exports.ACTION_OFFSET = exports.REQUEST_ID_OFFSET = exports.TYPEID = undefined;
|
|
8876
|
+
|
|
8877
|
+
var _QitchConstants = require("../QitchConstants");
|
|
8878
|
+
|
|
8879
|
+
var TYPEID = exports.TYPEID = 114;
|
|
8880
|
+
var REQUEST_ID_OFFSET = exports.REQUEST_ID_OFFSET = 0;
|
|
8881
|
+
var ACTION_OFFSET = exports.ACTION_OFFSET = REQUEST_ID_OFFSET + _QitchConstants.INT_LENGTH;
|
|
8882
|
+
var MIMETYPE_OFFSET = exports.MIMETYPE_OFFSET = ACTION_OFFSET + _QitchConstants.ACTION_LENGTH;
|
|
8883
|
+
var CONFLATION_OFFSET = exports.CONFLATION_OFFSET = MIMETYPE_OFFSET + _QitchConstants.MIMETYPE_LENGTH;
|
|
8884
|
+
var EXCODE_OFFSET = exports.EXCODE_OFFSET = CONFLATION_OFFSET + _QitchConstants.CONFLATION_LENGTH;
|
|
8885
|
+
var FIXED_LENGTH = exports.FIXED_LENGTH = EXCODE_OFFSET + _QitchConstants.EXCODE_LENGTH;
|
|
8886
|
+
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/controlMessageDefinition/ExchangeSubscribeMessageDef.js","/lib/qitch/controlMessageDefinition")
|
|
8887
|
+
},{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],30:[function(require,module,exports){
|
|
8888
|
+
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
8889
|
+
"use strict";
|
|
8890
|
+
|
|
8891
|
+
exports.__esModule = true;
|
|
8892
|
+
exports.LENGTH = exports.REQUEST_ID_OFFSET = exports.REASON_OFFSET = exports.CODE_OFFSET = exports.TYPEID = undefined;
|
|
8893
|
+
|
|
8894
|
+
var _QitchConstants = require("../QitchConstants");
|
|
8895
|
+
|
|
8896
|
+
var TYPEID = exports.TYPEID = 115;
|
|
8897
|
+
var CODE_OFFSET = exports.CODE_OFFSET = 0;
|
|
8898
|
+
var REASON_OFFSET = exports.REASON_OFFSET = CODE_OFFSET + _QitchConstants.INT_LENGTH;
|
|
8899
|
+
var REQUEST_ID_OFFSET = exports.REQUEST_ID_OFFSET = REASON_OFFSET + _QitchConstants.REASON_LENGTH;
|
|
8900
|
+
var LENGTH = exports.LENGTH = REQUEST_ID_OFFSET + _QitchConstants.INT_LENGTH;
|
|
8901
|
+
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/controlMessageDefinition/ExchangeSubscribeResponseDef.js","/lib/qitch/controlMessageDefinition")
|
|
8902
|
+
},{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],31:[function(require,module,exports){
|
|
8903
|
+
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
8904
|
+
"use strict";
|
|
8905
|
+
|
|
8906
|
+
exports.__esModule = true;
|
|
8907
|
+
exports.LENGTH = exports.REQUEST_ID_OFFSET = exports.REASON_OFFSET = exports.CODE_OFFSET = exports.TYPEID = undefined;
|
|
8908
|
+
|
|
8909
|
+
var _QitchConstants = require("../QitchConstants");
|
|
8910
|
+
|
|
8911
|
+
var TYPEID = exports.TYPEID = 116;
|
|
8912
|
+
var CODE_OFFSET = exports.CODE_OFFSET = 0;
|
|
8913
|
+
var REASON_OFFSET = exports.REASON_OFFSET = CODE_OFFSET + _QitchConstants.INT_LENGTH;
|
|
8914
|
+
var REQUEST_ID_OFFSET = exports.REQUEST_ID_OFFSET = REASON_OFFSET + _QitchConstants.REASON_LENGTH;
|
|
8915
|
+
var LENGTH = exports.LENGTH = REQUEST_ID_OFFSET + _QitchConstants.INT_LENGTH;
|
|
8916
|
+
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/controlMessageDefinition/ExchangeUnsubResponseDef.js","/lib/qitch/controlMessageDefinition")
|
|
8917
|
+
},{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],32:[function(require,module,exports){
|
|
8810
8918
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
8811
8919
|
"use strict";
|
|
8812
8920
|
|
|
@@ -8820,7 +8928,7 @@ var TYPEID = exports.TYPEID = 107;
|
|
|
8820
8928
|
var SEQUENCE_NUMBER_OFFSET = exports.SEQUENCE_NUMBER_OFFSET = 0;
|
|
8821
8929
|
var LENGTH = exports.LENGTH = SEQUENCE_NUMBER_OFFSET + _QitchConstants.INT_LENGTH;
|
|
8822
8930
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/controlMessageDefinition/FlowMessageDef.js","/lib/qitch/controlMessageDefinition")
|
|
8823
|
-
},{"../QitchConstants":26,"_process":
|
|
8931
|
+
},{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],33:[function(require,module,exports){
|
|
8824
8932
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
8825
8933
|
"use strict";
|
|
8826
8934
|
|
|
@@ -8834,7 +8942,7 @@ var TYPEID = exports.TYPEID = 101;
|
|
|
8834
8942
|
var TIMESTAMP_OFFSET = exports.TIMESTAMP_OFFSET = 0;
|
|
8835
8943
|
var LENGTH = exports.LENGTH = TIMESTAMP_OFFSET + _QitchConstants.TIMESTAMP_LENGTH;
|
|
8836
8944
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/controlMessageDefinition/HeartbeatDef.js","/lib/qitch/controlMessageDefinition")
|
|
8837
|
-
},{"../QitchConstants":26,"_process":
|
|
8945
|
+
},{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],34:[function(require,module,exports){
|
|
8838
8946
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
8839
8947
|
"use strict";
|
|
8840
8948
|
|
|
@@ -8849,7 +8957,7 @@ var TIMESTAMP_OFFSET = exports.TIMESTAMP_OFFSET = 0;
|
|
|
8849
8957
|
var REQUEST_ID_OFFSET = exports.REQUEST_ID_OFFSET = TIMESTAMP_OFFSET + _QitchConstants.TIMESTAMP_LENGTH;
|
|
8850
8958
|
var LENGTH = exports.LENGTH = REQUEST_ID_OFFSET + _QitchConstants.INT_LENGTH;
|
|
8851
8959
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/controlMessageDefinition/InitialDataSentDef.js","/lib/qitch/controlMessageDefinition")
|
|
8852
|
-
},{"../QitchConstants":26,"_process":
|
|
8960
|
+
},{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],35:[function(require,module,exports){
|
|
8853
8961
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
8854
8962
|
"use strict";
|
|
8855
8963
|
|
|
@@ -8863,7 +8971,7 @@ var TYPEID = exports.TYPEID = 112;
|
|
|
8863
8971
|
var TIMESTAMP_OFFSET = exports.TIMESTAMP_OFFSET = 0;
|
|
8864
8972
|
var LENGTH = exports.LENGTH = TIMESTAMP_OFFSET + _QitchConstants.TIMESTAMP_LENGTH;
|
|
8865
8973
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/controlMessageDefinition/ResubscribeMessageDef.js","/lib/qitch/controlMessageDefinition")
|
|
8866
|
-
},{"../QitchConstants":26,"_process":
|
|
8974
|
+
},{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],36:[function(require,module,exports){
|
|
8867
8975
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
8868
8976
|
"use strict";
|
|
8869
8977
|
|
|
@@ -8879,7 +8987,7 @@ var MAX_EXCEED_OFFSET = exports.MAX_EXCEED_OFFSET = TIMES_EXCEED_OFFSET + _Qitch
|
|
|
8879
8987
|
|
|
8880
8988
|
var LENGTH = exports.LENGTH = MAX_EXCEED_OFFSET + _QitchConstants.INT_LENGTH;
|
|
8881
8989
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/controlMessageDefinition/SlowConnectionDef.js","/lib/qitch/controlMessageDefinition")
|
|
8882
|
-
},{"../QitchConstants":26,"_process":
|
|
8990
|
+
},{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],37:[function(require,module,exports){
|
|
8883
8991
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
8884
8992
|
"use strict";
|
|
8885
8993
|
|
|
@@ -8893,7 +9001,7 @@ var TYPEID = exports.TYPEID = 108;
|
|
|
8893
9001
|
var REQUEST_ID_OFFSET = exports.REQUEST_ID_OFFSET = 0;
|
|
8894
9002
|
var LENGTH = exports.LENGTH = REQUEST_ID_OFFSET + _QitchConstants.INT_LENGTH;
|
|
8895
9003
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/controlMessageDefinition/StatsMessageDef.js","/lib/qitch/controlMessageDefinition")
|
|
8896
|
-
},{"../QitchConstants":26,"_process":
|
|
9004
|
+
},{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],38:[function(require,module,exports){
|
|
8897
9005
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
8898
9006
|
"use strict";
|
|
8899
9007
|
|
|
@@ -8916,7 +9024,48 @@ var NUMBER_OF_AVAILABLE_CONNECTIONS = exports.NUMBER_OF_AVAILABLE_CONNECTIONS =
|
|
|
8916
9024
|
|
|
8917
9025
|
var LENGTH = exports.LENGTH = NUMBER_OF_AVAILABLE_CONNECTIONS + _QitchConstants.INT_LENGTH;
|
|
8918
9026
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/controlMessageDefinition/StatsResponseDef.js","/lib/qitch/controlMessageDefinition")
|
|
8919
|
-
},{"../QitchConstants":26,"_process":
|
|
9027
|
+
},{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],39:[function(require,module,exports){
|
|
9028
|
+
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
9029
|
+
"use strict";
|
|
9030
|
+
|
|
9031
|
+
exports.__esModule = true;
|
|
9032
|
+
exports.FIXED_LENGTH = exports.MIMETYPE_OFFSET = exports.OPERATION_OFFSET = exports.REQUEST_ID_OFFSET = exports.FIXED_OPERATION_LENGTH = exports.TYPEID = undefined;
|
|
9033
|
+
|
|
9034
|
+
var _QitchConstants = require("../QitchConstants");
|
|
9035
|
+
|
|
9036
|
+
var TYPEID = exports.TYPEID = 117;
|
|
9037
|
+
|
|
9038
|
+
// Will take at most 11 bytes for UNSUBSCRIBE/SUBSCRIBE operation string type
|
|
9039
|
+
var FIXED_OPERATION_LENGTH = exports.FIXED_OPERATION_LENGTH = 11;
|
|
9040
|
+
|
|
9041
|
+
var REQUEST_ID_OFFSET = exports.REQUEST_ID_OFFSET = 0;
|
|
9042
|
+
var OPERATION_OFFSET = exports.OPERATION_OFFSET = REQUEST_ID_OFFSET + _QitchConstants.INT_LENGTH;
|
|
9043
|
+
var MIMETYPE_OFFSET = exports.MIMETYPE_OFFSET = OPERATION_OFFSET + FIXED_OPERATION_LENGTH;
|
|
9044
|
+
|
|
9045
|
+
var FIXED_LENGTH = exports.FIXED_LENGTH = MIMETYPE_OFFSET + _QitchConstants.MIMETYPE_LENGTH;
|
|
9046
|
+
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/controlMessageDefinition/SubUnsubAlertMessageDef.js","/lib/qitch/controlMessageDefinition")
|
|
9047
|
+
},{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],40:[function(require,module,exports){
|
|
9048
|
+
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
9049
|
+
"use strict";
|
|
9050
|
+
|
|
9051
|
+
exports.__esModule = true;
|
|
9052
|
+
exports.LENGTH = exports.OPERATION_OFFSET = exports.REQUEST_ID_OFFSET = exports.REASON_OFFSET = exports.CODE_OFFSET = exports.FIXED_OPERATION_LENGTH = exports.TYPEID = undefined;
|
|
9053
|
+
|
|
9054
|
+
var _QitchConstants = require("../QitchConstants");
|
|
9055
|
+
|
|
9056
|
+
var TYPEID = exports.TYPEID = 118;
|
|
9057
|
+
|
|
9058
|
+
// Will take at most 12 bytes for UNSUBSCRIBED/SUBSCRIBED operation string type
|
|
9059
|
+
var FIXED_OPERATION_LENGTH = exports.FIXED_OPERATION_LENGTH = 12;
|
|
9060
|
+
|
|
9061
|
+
var CODE_OFFSET = exports.CODE_OFFSET = 0;
|
|
9062
|
+
var REASON_OFFSET = exports.REASON_OFFSET = CODE_OFFSET + _QitchConstants.INT_LENGTH;
|
|
9063
|
+
var REQUEST_ID_OFFSET = exports.REQUEST_ID_OFFSET = REASON_OFFSET + _QitchConstants.REASON_LENGTH;
|
|
9064
|
+
var OPERATION_OFFSET = exports.OPERATION_OFFSET = REQUEST_ID_OFFSET + _QitchConstants.INT_LENGTH;
|
|
9065
|
+
|
|
9066
|
+
var LENGTH = exports.LENGTH = OPERATION_OFFSET + FIXED_OPERATION_LENGTH;
|
|
9067
|
+
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/controlMessageDefinition/SubUnsubAlertResponseDef.js","/lib/qitch/controlMessageDefinition")
|
|
9068
|
+
},{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],41:[function(require,module,exports){
|
|
8920
9069
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
8921
9070
|
"use strict";
|
|
8922
9071
|
|
|
@@ -8937,7 +9086,7 @@ var NUMBER_OF_TYPES_OFFSET = exports.NUMBER_OF_TYPES_OFFSET = NUMBER_OF_SYMBOLS_
|
|
|
8937
9086
|
|
|
8938
9087
|
var FIXED_LENGTH = exports.FIXED_LENGTH = NUMBER_OF_TYPES_OFFSET + _QitchConstants.BYTE_LENGTH;
|
|
8939
9088
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/controlMessageDefinition/SubscribeMessageDef.js","/lib/qitch/controlMessageDefinition")
|
|
8940
|
-
},{"../QitchConstants":26,"_process":
|
|
9089
|
+
},{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],42:[function(require,module,exports){
|
|
8941
9090
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
8942
9091
|
"use strict";
|
|
8943
9092
|
|
|
@@ -8957,7 +9106,7 @@ var NUMBER_OF_INVALID_SYMBOLS_OFFSET = exports.NUMBER_OF_INVALID_SYMBOLS_OFFSET
|
|
|
8957
9106
|
|
|
8958
9107
|
var FIXED_LENGTH = exports.FIXED_LENGTH = NUMBER_OF_INVALID_SYMBOLS_OFFSET + _QitchConstants.INT_LENGTH;
|
|
8959
9108
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/controlMessageDefinition/SubscribeResponseDef.js","/lib/qitch/controlMessageDefinition")
|
|
8960
|
-
},{"../QitchConstants":26,"_process":
|
|
9109
|
+
},{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],43:[function(require,module,exports){
|
|
8961
9110
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
8962
9111
|
"use strict";
|
|
8963
9112
|
|
|
@@ -8975,7 +9124,7 @@ var NUMBER_OF_UNSUBSCRIBED_ENTITLEMENTS_OFFSET = exports.NUMBER_OF_UNSUBSCRIBED_
|
|
|
8975
9124
|
|
|
8976
9125
|
var FIXED_LENGTH = exports.FIXED_LENGTH = NUMBER_OF_UNSUBSCRIBED_ENTITLEMENTS_OFFSET + _QitchConstants.INT_LENGTH;
|
|
8977
9126
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/controlMessageDefinition/UnsubscribeResponseDef.js","/lib/qitch/controlMessageDefinition")
|
|
8978
|
-
},{"../QitchConstants":26,"_process":
|
|
9127
|
+
},{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],44:[function(require,module,exports){
|
|
8979
9128
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
8980
9129
|
"use strict";
|
|
8981
9130
|
|
|
@@ -9234,7 +9383,7 @@ var DecodeMessage = function () {
|
|
|
9234
9383
|
|
|
9235
9384
|
exports["default"] = BlockDecoder;
|
|
9236
9385
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/BlockDecoder.js","/lib/qitch/decoder")
|
|
9237
|
-
},{"../BlockHeader":19,"../MessageHeader":24,"../Qitch":25,"../QitchConstants":26,"_process":
|
|
9386
|
+
},{"../BlockHeader":19,"../MessageHeader":24,"../Qitch":25,"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],45:[function(require,module,exports){
|
|
9238
9387
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
9239
9388
|
"use strict";
|
|
9240
9389
|
|
|
@@ -9296,7 +9445,7 @@ var MessageDecoder = function () {
|
|
|
9296
9445
|
|
|
9297
9446
|
exports["default"] = MessageDecoder;
|
|
9298
9447
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/MessageDecoder.js","/lib/qitch/decoder")
|
|
9299
|
-
},{"../MessageHeader":24,"../QitchConstants":26,"_process":
|
|
9448
|
+
},{"../MessageHeader":24,"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],46:[function(require,module,exports){
|
|
9300
9449
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
9301
9450
|
"use strict";
|
|
9302
9451
|
|
|
@@ -9417,6 +9566,22 @@ var _ResubscribeMessageDecoder = require("./controlMessageDecoder/ResubscribeMes
|
|
|
9417
9566
|
|
|
9418
9567
|
var _ResubscribeMessageDecoder2 = _interopRequireDefault(_ResubscribeMessageDecoder);
|
|
9419
9568
|
|
|
9569
|
+
var _ExchangeSubscribeResponseDecoder = require("./controlMessageDecoder/ExchangeSubscribeResponseDecoder");
|
|
9570
|
+
|
|
9571
|
+
var _ExchangeSubscribeResponseDecoder2 = _interopRequireDefault(_ExchangeSubscribeResponseDecoder);
|
|
9572
|
+
|
|
9573
|
+
var _ExchangeUnsubResponseDecoder = require("./controlMessageDecoder/ExchangeUnsubResponseDecoder");
|
|
9574
|
+
|
|
9575
|
+
var _ExchangeUnsubResponseDecoder2 = _interopRequireDefault(_ExchangeUnsubResponseDecoder);
|
|
9576
|
+
|
|
9577
|
+
var _AlertDecoder = require("./dataDecoder/AlertDecoder");
|
|
9578
|
+
|
|
9579
|
+
var _AlertDecoder2 = _interopRequireDefault(_AlertDecoder);
|
|
9580
|
+
|
|
9581
|
+
var _SubUnsubAlertResponseDecoder = require("./controlMessageDecoder/SubUnsubAlertResponseDecoder");
|
|
9582
|
+
|
|
9583
|
+
var _SubUnsubAlertResponseDecoder2 = _interopRequireDefault(_SubUnsubAlertResponseDecoder);
|
|
9584
|
+
|
|
9420
9585
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
9421
9586
|
|
|
9422
9587
|
function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
|
|
@@ -9432,7 +9597,11 @@ var QitchDecoder = function () {
|
|
|
9432
9597
|
function QitchDecoder(bufferSize) {
|
|
9433
9598
|
_classCallCheck(this, QitchDecoder);
|
|
9434
9599
|
|
|
9435
|
-
var decoders = [
|
|
9600
|
+
var decoders = [
|
|
9601
|
+
// Ctr Messages
|
|
9602
|
+
new _HeartbeatDecoder2["default"](), new _SubscribeResponseDecoder2["default"](), new _UnsubscribeResponseDecoder2["default"](), new _ConnectResponseDecoder2["default"](), new _ConnectionCloseDecoder2["default"](), new _StatsResponseDecoder2["default"](), new _SlowConnectionDecoder2["default"](), new _InitialDataSentDecoder2["default"](), new _ResubscribeMessageDecoder2["default"](), new _SubUnsubAlertResponseDecoder2["default"](),
|
|
9603
|
+
// Market Data Messages
|
|
9604
|
+
new _SymbolInfoDecoder2["default"](), new _TradeDecoder2["default"](), new _PricedataDecoder2["default"](), new _SymbolStatusDecoder2["default"](), new _QuoteDecoder2["default"](), new _DerivativeInfoDecoder2["default"](), new _IVGreeksDecoder2["default"](), new _LastSaleDecoder2["default"](), new _LimitUpLimitDownDecoder2["default"](), new _ImbalanceStatusDecoder2["default"](), new _NethousePositionDecoder2["default"](), new _IntervalDecoder2["default"](), new _MMQuoteDecoder2["default"](), new _PurgeBookDecoder2["default"](), new _BookDeleteDecoder2["default"](), new _BookOrderDecoder2["default"](), new _ExchangeSubscribeResponseDecoder2["default"](), new _ExchangeUnsubResponseDecoder2["default"](), new _AlertDecoder2["default"]()];
|
|
9436
9605
|
this.decoder = new _BlockDecoder2["default"](new _MessageDecoder2["default"](decoders), bufferSize);
|
|
9437
9606
|
}
|
|
9438
9607
|
|
|
@@ -9540,7 +9709,7 @@ var MessageBlock = exports.MessageBlock = function (_SMessage2) {
|
|
|
9540
9709
|
|
|
9541
9710
|
exports["default"] = QitchDecoder;
|
|
9542
9711
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/QitchDecoder.js","/lib/qitch/decoder")
|
|
9543
|
-
},{"../../SMessage":5,"../../message.js":17,"./BlockDecoder":
|
|
9712
|
+
},{"../../SMessage":5,"../../message.js":17,"./BlockDecoder":44,"./MessageDecoder":45,"./controlMessageDecoder/ConnectResponseDecoder":47,"./controlMessageDecoder/ConnectionCloseDecoder":48,"./controlMessageDecoder/ExchangeSubscribeResponseDecoder":49,"./controlMessageDecoder/ExchangeUnsubResponseDecoder":50,"./controlMessageDecoder/HeartbeatDecoder":51,"./controlMessageDecoder/InitialDataSentDecoder":52,"./controlMessageDecoder/ResubscribeMessageDecoder":53,"./controlMessageDecoder/SlowConnectionDecoder":54,"./controlMessageDecoder/StatsResponseDecoder":55,"./controlMessageDecoder/SubUnsubAlertResponseDecoder":56,"./controlMessageDecoder/SubscribeResponseDecoder":57,"./controlMessageDecoder/UnsubscribeResponseDecoder":58,"./dataDecoder/AlertDecoder":59,"./dataDecoder/BookDeleteDecoder":60,"./dataDecoder/BookOrderDecoder":61,"./dataDecoder/DerivativeInfoDecoder":62,"./dataDecoder/IVGreeksDecoder":63,"./dataDecoder/ImbalanceStatusDecoder":64,"./dataDecoder/IntervalDecoder":65,"./dataDecoder/LastSaleDecoder":66,"./dataDecoder/LimitUpLimitDownDecoder":67,"./dataDecoder/MMQuoteDecoder":68,"./dataDecoder/NethousePositionDecoder":69,"./dataDecoder/PricedataDecoder":70,"./dataDecoder/PurgeBookDecoder":71,"./dataDecoder/QuoteDecoder":72,"./dataDecoder/SymbolInfoDecoder":73,"./dataDecoder/SymbolStatusDecoder":74,"./dataDecoder/TradeDecoder":75,"_process":131,"buffer":121,"timers":152}],47:[function(require,module,exports){
|
|
9544
9713
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
9545
9714
|
"use strict";
|
|
9546
9715
|
|
|
@@ -9590,7 +9759,7 @@ var ConnectResponseDecoder = function () {
|
|
|
9590
9759
|
|
|
9591
9760
|
exports["default"] = ConnectResponseDecoder;
|
|
9592
9761
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/controlMessageDecoder/ConnectResponseDecoder.js","/lib/qitch/decoder/controlMessageDecoder")
|
|
9593
|
-
},{"../../../streamer-api":
|
|
9762
|
+
},{"../../../streamer-api":108,"../../Qitch":25,"../../controlMessageDefinition/ConnectResponseDef":27,"_process":131,"buffer":121,"timers":152}],48:[function(require,module,exports){
|
|
9594
9763
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
9595
9764
|
"use strict";
|
|
9596
9765
|
|
|
@@ -9633,7 +9802,97 @@ var ConnectionCloseDecoder = function () {
|
|
|
9633
9802
|
|
|
9634
9803
|
exports["default"] = ConnectionCloseDecoder;
|
|
9635
9804
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/controlMessageDecoder/ConnectionCloseDecoder.js","/lib/qitch/decoder/controlMessageDecoder")
|
|
9636
|
-
},{"../../../streamer-api":
|
|
9805
|
+
},{"../../../streamer-api":108,"../../Qitch":25,"../../controlMessageDefinition/ConnectionCloseDef":28,"_process":131,"buffer":121,"timers":152}],49:[function(require,module,exports){
|
|
9806
|
+
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
9807
|
+
"use strict";
|
|
9808
|
+
|
|
9809
|
+
exports.__esModule = true;
|
|
9810
|
+
|
|
9811
|
+
var _ExchangeSubscribeResponseDef = require("../../controlMessageDefinition/ExchangeSubscribeResponseDef");
|
|
9812
|
+
|
|
9813
|
+
var def = _interopRequireWildcard(_ExchangeSubscribeResponseDef);
|
|
9814
|
+
|
|
9815
|
+
var _streamerApi = require("../../../streamer-api");
|
|
9816
|
+
|
|
9817
|
+
var _Qitch = require("../../Qitch");
|
|
9818
|
+
|
|
9819
|
+
var _Qitch2 = _interopRequireDefault(_Qitch);
|
|
9820
|
+
|
|
9821
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
9822
|
+
|
|
9823
|
+
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj["default"] = obj; return newObj; } }
|
|
9824
|
+
|
|
9825
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
9826
|
+
|
|
9827
|
+
var ExchangeSubscribeResponseDecoder = function () {
|
|
9828
|
+
function ExchangeSubscribeResponseDecoder() {
|
|
9829
|
+
_classCallCheck(this, ExchangeSubscribeResponseDecoder);
|
|
9830
|
+
}
|
|
9831
|
+
|
|
9832
|
+
ExchangeSubscribeResponseDecoder.prototype.type = function type() {
|
|
9833
|
+
return def.TYPEID;
|
|
9834
|
+
};
|
|
9835
|
+
|
|
9836
|
+
ExchangeSubscribeResponseDecoder.prototype.decode = function decode(src, offset) {
|
|
9837
|
+
var out = new _streamerApi.messages.control.ExchangeSubscribeResponse();
|
|
9838
|
+
out.code = _Qitch2["default"].int32(src, offset + def.CODE_OFFSET);
|
|
9839
|
+
out.reason = _Qitch2["default"].reason(src, offset + def.REASON_OFFSET);
|
|
9840
|
+
out.requestId = _Qitch2["default"].int32(src, offset + def.REQUEST_ID_OFFSET);
|
|
9841
|
+
|
|
9842
|
+
return out;
|
|
9843
|
+
};
|
|
9844
|
+
|
|
9845
|
+
return ExchangeSubscribeResponseDecoder;
|
|
9846
|
+
}();
|
|
9847
|
+
|
|
9848
|
+
exports["default"] = ExchangeSubscribeResponseDecoder;
|
|
9849
|
+
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/controlMessageDecoder/ExchangeSubscribeResponseDecoder.js","/lib/qitch/decoder/controlMessageDecoder")
|
|
9850
|
+
},{"../../../streamer-api":108,"../../Qitch":25,"../../controlMessageDefinition/ExchangeSubscribeResponseDef":30,"_process":131,"buffer":121,"timers":152}],50:[function(require,module,exports){
|
|
9851
|
+
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
9852
|
+
"use strict";
|
|
9853
|
+
|
|
9854
|
+
exports.__esModule = true;
|
|
9855
|
+
|
|
9856
|
+
var _ExchangeUnsubResponseDef = require("../../controlMessageDefinition/ExchangeUnsubResponseDef");
|
|
9857
|
+
|
|
9858
|
+
var def = _interopRequireWildcard(_ExchangeUnsubResponseDef);
|
|
9859
|
+
|
|
9860
|
+
var _streamerApi = require("../../../streamer-api");
|
|
9861
|
+
|
|
9862
|
+
var _Qitch = require("../../Qitch");
|
|
9863
|
+
|
|
9864
|
+
var _Qitch2 = _interopRequireDefault(_Qitch);
|
|
9865
|
+
|
|
9866
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
9867
|
+
|
|
9868
|
+
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj["default"] = obj; return newObj; } }
|
|
9869
|
+
|
|
9870
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
9871
|
+
|
|
9872
|
+
var ExchangeUnsubResponseDecoder = function () {
|
|
9873
|
+
function ExchangeUnsubResponseDecoder() {
|
|
9874
|
+
_classCallCheck(this, ExchangeUnsubResponseDecoder);
|
|
9875
|
+
}
|
|
9876
|
+
|
|
9877
|
+
ExchangeUnsubResponseDecoder.prototype.type = function type() {
|
|
9878
|
+
return def.TYPEID;
|
|
9879
|
+
};
|
|
9880
|
+
|
|
9881
|
+
ExchangeUnsubResponseDecoder.prototype.decode = function decode(src, offset) {
|
|
9882
|
+
var out = new _streamerApi.messages.control.ExchangeUnsubscribeResponse();
|
|
9883
|
+
out.code = _Qitch2["default"].int32(src, offset + def.CODE_OFFSET);
|
|
9884
|
+
out.reason = _Qitch2["default"].reason(src, offset + def.REASON_OFFSET);
|
|
9885
|
+
out.requestId = _Qitch2["default"].int32(src, offset + def.REQUEST_ID_OFFSET);
|
|
9886
|
+
|
|
9887
|
+
return out;
|
|
9888
|
+
};
|
|
9889
|
+
|
|
9890
|
+
return ExchangeUnsubResponseDecoder;
|
|
9891
|
+
}();
|
|
9892
|
+
|
|
9893
|
+
exports["default"] = ExchangeUnsubResponseDecoder;
|
|
9894
|
+
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/controlMessageDecoder/ExchangeUnsubResponseDecoder.js","/lib/qitch/decoder/controlMessageDecoder")
|
|
9895
|
+
},{"../../../streamer-api":108,"../../Qitch":25,"../../controlMessageDefinition/ExchangeUnsubResponseDef":31,"_process":131,"buffer":121,"timers":152}],51:[function(require,module,exports){
|
|
9637
9896
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
9638
9897
|
"use strict";
|
|
9639
9898
|
|
|
@@ -9675,7 +9934,7 @@ var HeartbeatDecoder = function () {
|
|
|
9675
9934
|
|
|
9676
9935
|
exports["default"] = HeartbeatDecoder;
|
|
9677
9936
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/controlMessageDecoder/HeartbeatDecoder.js","/lib/qitch/decoder/controlMessageDecoder")
|
|
9678
|
-
},{"../../../streamer-api":
|
|
9937
|
+
},{"../../../streamer-api":108,"../../Qitch":25,"../../controlMessageDefinition/HeartbeatDef":33,"_process":131,"buffer":121,"timers":152}],52:[function(require,module,exports){
|
|
9679
9938
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
9680
9939
|
"use strict";
|
|
9681
9940
|
|
|
@@ -9718,7 +9977,7 @@ var InitialDataSentDecoder = function () {
|
|
|
9718
9977
|
|
|
9719
9978
|
exports["default"] = InitialDataSentDecoder;
|
|
9720
9979
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/controlMessageDecoder/InitialDataSentDecoder.js","/lib/qitch/decoder/controlMessageDecoder")
|
|
9721
|
-
},{"../../../streamer-api":
|
|
9980
|
+
},{"../../../streamer-api":108,"../../Qitch":25,"../../controlMessageDefinition/InitialDataSentDef":34,"_process":131,"buffer":121,"timers":152}],53:[function(require,module,exports){
|
|
9722
9981
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
9723
9982
|
"use strict";
|
|
9724
9983
|
|
|
@@ -9760,7 +10019,7 @@ var ResubscribeMessageDecoder = function () {
|
|
|
9760
10019
|
|
|
9761
10020
|
exports["default"] = ResubscribeMessageDecoder;
|
|
9762
10021
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/controlMessageDecoder/ResubscribeMessageDecoder.js","/lib/qitch/decoder/controlMessageDecoder")
|
|
9763
|
-
},{"../../../streamer-api":
|
|
10022
|
+
},{"../../../streamer-api":108,"../../Qitch":25,"../../controlMessageDefinition/ResubscribeMessageDef":35,"_process":131,"buffer":121,"timers":152}],54:[function(require,module,exports){
|
|
9764
10023
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
9765
10024
|
"use strict";
|
|
9766
10025
|
|
|
@@ -9803,7 +10062,7 @@ var SlowConnectionDecoder = function () {
|
|
|
9803
10062
|
|
|
9804
10063
|
exports["default"] = SlowConnectionDecoder;
|
|
9805
10064
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/controlMessageDecoder/SlowConnectionDecoder.js","/lib/qitch/decoder/controlMessageDecoder")
|
|
9806
|
-
},{"../../../streamer-api":
|
|
10065
|
+
},{"../../../streamer-api":108,"../../Qitch":25,"../../controlMessageDefinition/SlowConnectionDef":36,"_process":131,"buffer":121,"timers":152}],55:[function(require,module,exports){
|
|
9807
10066
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
9808
10067
|
"use strict";
|
|
9809
10068
|
|
|
@@ -9853,7 +10112,52 @@ var StatsResponseDecoder = function () {
|
|
|
9853
10112
|
|
|
9854
10113
|
exports["default"] = StatsResponseDecoder;
|
|
9855
10114
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/controlMessageDecoder/StatsResponseDecoder.js","/lib/qitch/decoder/controlMessageDecoder")
|
|
9856
|
-
},{"../../../streamer-api":
|
|
10115
|
+
},{"../../../streamer-api":108,"../../Qitch":25,"../../controlMessageDefinition/StatsResponseDef":38,"_process":131,"buffer":121,"timers":152}],56:[function(require,module,exports){
|
|
10116
|
+
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
10117
|
+
"use strict";
|
|
10118
|
+
|
|
10119
|
+
exports.__esModule = true;
|
|
10120
|
+
|
|
10121
|
+
var _SubUnsubAlertResponseDef = require("../../controlMessageDefinition/SubUnsubAlertResponseDef");
|
|
10122
|
+
|
|
10123
|
+
var def = _interopRequireWildcard(_SubUnsubAlertResponseDef);
|
|
10124
|
+
|
|
10125
|
+
var _streamerApi = require("../../../streamer-api");
|
|
10126
|
+
|
|
10127
|
+
var _Qitch = require("../../Qitch");
|
|
10128
|
+
|
|
10129
|
+
var _Qitch2 = _interopRequireDefault(_Qitch);
|
|
10130
|
+
|
|
10131
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
10132
|
+
|
|
10133
|
+
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj["default"] = obj; return newObj; } }
|
|
10134
|
+
|
|
10135
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
10136
|
+
|
|
10137
|
+
var SubUnsubAlertResponseDecoder = function () {
|
|
10138
|
+
function SubUnsubAlertResponseDecoder() {
|
|
10139
|
+
_classCallCheck(this, SubUnsubAlertResponseDecoder);
|
|
10140
|
+
}
|
|
10141
|
+
|
|
10142
|
+
SubUnsubAlertResponseDecoder.prototype.type = function type() {
|
|
10143
|
+
return def.TYPEID;
|
|
10144
|
+
};
|
|
10145
|
+
|
|
10146
|
+
SubUnsubAlertResponseDecoder.prototype.decode = function decode(src, offset) {
|
|
10147
|
+
var out = new _streamerApi.messages.control.AlertSubUnsubResponse();
|
|
10148
|
+
out.code = _Qitch2["default"].int32(src, offset + def.CODE_OFFSET);
|
|
10149
|
+
out.reason = _Qitch2["default"].reason(src, offset + def.REASON_OFFSET);
|
|
10150
|
+
out.requestId = _Qitch2["default"].int32(src, offset + def.REQUEST_ID_OFFSET);
|
|
10151
|
+
out.operation = _Qitch2["default"].asciiString(src, offset + def.OPERATION_OFFSET, def.FIXED_OPERATION_LENGTH);
|
|
10152
|
+
return out;
|
|
10153
|
+
};
|
|
10154
|
+
|
|
10155
|
+
return SubUnsubAlertResponseDecoder;
|
|
10156
|
+
}();
|
|
10157
|
+
|
|
10158
|
+
exports["default"] = SubUnsubAlertResponseDecoder;
|
|
10159
|
+
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/controlMessageDecoder/SubUnsubAlertResponseDecoder.js","/lib/qitch/decoder/controlMessageDecoder")
|
|
10160
|
+
},{"../../../streamer-api":108,"../../Qitch":25,"../../controlMessageDefinition/SubUnsubAlertResponseDef":40,"_process":131,"buffer":121,"timers":152}],57:[function(require,module,exports){
|
|
9857
10161
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
9858
10162
|
"use strict";
|
|
9859
10163
|
|
|
@@ -9924,7 +10228,7 @@ var SubscribeResponseDecoder = function () {
|
|
|
9924
10228
|
|
|
9925
10229
|
exports["default"] = SubscribeResponseDecoder;
|
|
9926
10230
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/controlMessageDecoder/SubscribeResponseDecoder.js","/lib/qitch/decoder/controlMessageDecoder")
|
|
9927
|
-
},{"../../../streamer-api":
|
|
10231
|
+
},{"../../../streamer-api":108,"../../Qitch":25,"../../QitchConstants":26,"../../controlMessageDefinition/SubscribeResponseDef":42,"_process":131,"buffer":121,"timers":152}],58:[function(require,module,exports){
|
|
9928
10232
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
9929
10233
|
"use strict";
|
|
9930
10234
|
|
|
@@ -9982,7 +10286,53 @@ var UnsubscribeResponseDecoder = function () {
|
|
|
9982
10286
|
|
|
9983
10287
|
exports["default"] = UnsubscribeResponseDecoder;
|
|
9984
10288
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/controlMessageDecoder/UnsubscribeResponseDecoder.js","/lib/qitch/decoder/controlMessageDecoder")
|
|
9985
|
-
},{"../../../streamer-api":
|
|
10289
|
+
},{"../../../streamer-api":108,"../../Qitch":25,"../../QitchConstants":26,"../../controlMessageDefinition/UnsubscribeResponseDef":43,"_process":131,"buffer":121,"timers":152}],59:[function(require,module,exports){
|
|
10290
|
+
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
10291
|
+
"use strict";
|
|
10292
|
+
|
|
10293
|
+
exports.__esModule = true;
|
|
10294
|
+
|
|
10295
|
+
var _AlertDef = require("../../marketDataDefinition/AlertDef");
|
|
10296
|
+
|
|
10297
|
+
var def = _interopRequireWildcard(_AlertDef);
|
|
10298
|
+
|
|
10299
|
+
var _streamerApi = require("../../../streamer-api");
|
|
10300
|
+
|
|
10301
|
+
var _Qitch = require("../../Qitch");
|
|
10302
|
+
|
|
10303
|
+
var _Qitch2 = _interopRequireDefault(_Qitch);
|
|
10304
|
+
|
|
10305
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
10306
|
+
|
|
10307
|
+
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj["default"] = obj; return newObj; } }
|
|
10308
|
+
|
|
10309
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
10310
|
+
|
|
10311
|
+
var AlertDecoder = function () {
|
|
10312
|
+
function AlertDecoder() {
|
|
10313
|
+
_classCallCheck(this, AlertDecoder);
|
|
10314
|
+
}
|
|
10315
|
+
|
|
10316
|
+
AlertDecoder.prototype.type = function type() {
|
|
10317
|
+
return def.TYPEID;
|
|
10318
|
+
};
|
|
10319
|
+
|
|
10320
|
+
AlertDecoder.prototype.decode = function decode(src, offset) {
|
|
10321
|
+
var out = new _streamerApi.messages.market.Alert();
|
|
10322
|
+
out.symbol = _Qitch2["default"].symbol(src, offset + def.SYMBOL_OFFSET);
|
|
10323
|
+
out.timestamp = _Qitch2["default"].timestamp(src, offset + def.TIMESTAMP_OFFSET);
|
|
10324
|
+
out.instrumentType = _Qitch2["default"].instrumenttype(src, offset + def.INSTRUMENTTYPE_OFFSET);
|
|
10325
|
+
out.alertId = _Qitch2["default"].int64(src, offset + def.ALERT_ID_OFFSET);
|
|
10326
|
+
out.triggerValue = _Qitch2["default"].dec8double(src, offset + def.TRIGGER_VALUE_OFFSET);
|
|
10327
|
+
return out;
|
|
10328
|
+
};
|
|
10329
|
+
|
|
10330
|
+
return AlertDecoder;
|
|
10331
|
+
}();
|
|
10332
|
+
|
|
10333
|
+
exports["default"] = AlertDecoder;
|
|
10334
|
+
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/dataDecoder/AlertDecoder.js","/lib/qitch/decoder/dataDecoder")
|
|
10335
|
+
},{"../../../streamer-api":108,"../../Qitch":25,"../../marketDataDefinition/AlertDef":82,"_process":131,"buffer":121,"timers":152}],60:[function(require,module,exports){
|
|
9986
10336
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
9987
10337
|
"use strict";
|
|
9988
10338
|
|
|
@@ -10026,7 +10376,7 @@ var BookDeleteDecoder = function () {
|
|
|
10026
10376
|
|
|
10027
10377
|
exports["default"] = BookDeleteDecoder;
|
|
10028
10378
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/dataDecoder/BookDeleteDecoder.js","/lib/qitch/decoder/dataDecoder")
|
|
10029
|
-
},{"../../../streamer-api":
|
|
10379
|
+
},{"../../../streamer-api":108,"../../Qitch":25,"../../marketDataDefinition/BookDeleteDef":83,"_process":131,"buffer":121,"timers":152}],61:[function(require,module,exports){
|
|
10030
10380
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
10031
10381
|
"use strict";
|
|
10032
10382
|
|
|
@@ -10081,7 +10431,7 @@ var BookOrderDecoder = function () {
|
|
|
10081
10431
|
|
|
10082
10432
|
exports["default"] = BookOrderDecoder;
|
|
10083
10433
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/dataDecoder/BookOrderDecoder.js","/lib/qitch/decoder/dataDecoder")
|
|
10084
|
-
},{"../../../streamer-api":
|
|
10434
|
+
},{"../../../streamer-api":108,"../../Qitch":25,"../../marketDataDefinition/BookOrderDef":84,"_process":131,"buffer":121,"timers":152}],62:[function(require,module,exports){
|
|
10085
10435
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
10086
10436
|
"use strict";
|
|
10087
10437
|
|
|
@@ -10130,7 +10480,7 @@ var DerivativeInfoDecoder = function () {
|
|
|
10130
10480
|
|
|
10131
10481
|
exports["default"] = DerivativeInfoDecoder;
|
|
10132
10482
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/dataDecoder/DerivativeInfoDecoder.js","/lib/qitch/decoder/dataDecoder")
|
|
10133
|
-
},{"../../../streamer-api":
|
|
10483
|
+
},{"../../../streamer-api":108,"../../Qitch":25,"../../marketDataDefinition/DerivativeInfoDef":85,"_process":131,"buffer":121,"timers":152}],63:[function(require,module,exports){
|
|
10134
10484
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
10135
10485
|
"use strict";
|
|
10136
10486
|
|
|
@@ -10188,7 +10538,7 @@ var IVGreeksDecoder = function () {
|
|
|
10188
10538
|
|
|
10189
10539
|
exports["default"] = IVGreeksDecoder;
|
|
10190
10540
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/dataDecoder/IVGreeksDecoder.js","/lib/qitch/decoder/dataDecoder")
|
|
10191
|
-
},{"../../../streamer-api":
|
|
10541
|
+
},{"../../../streamer-api":108,"../../Qitch":25,"../../marketDataDefinition/IVGreeksDef":86,"_process":131,"buffer":121,"timers":152}],64:[function(require,module,exports){
|
|
10192
10542
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
10193
10543
|
"use strict";
|
|
10194
10544
|
|
|
@@ -10231,6 +10581,7 @@ var ImbalanceStatusDecoder = function () {
|
|
|
10231
10581
|
out.nearIndicativePrice = _Qitch2["default"].dec8double(src, offset + def.NEARINDICATIVEPRICE_OFFSET);
|
|
10232
10582
|
out.farIndicativePrice = _Qitch2["default"].dec8double(src, offset + def.FARINDICATIVEPRICE_OFFSET);
|
|
10233
10583
|
out.priceVariation = _Qitch2["default"].dec8double(src, offset + def.PRICEVARIATION_OFFSET);
|
|
10584
|
+
out.symbol = _Qitch2["default"].symbol(src, offset + def.SYMBOL_OFFSET);
|
|
10234
10585
|
return out;
|
|
10235
10586
|
};
|
|
10236
10587
|
|
|
@@ -10239,7 +10590,7 @@ var ImbalanceStatusDecoder = function () {
|
|
|
10239
10590
|
|
|
10240
10591
|
exports["default"] = ImbalanceStatusDecoder;
|
|
10241
10592
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/dataDecoder/ImbalanceStatusDecoder.js","/lib/qitch/decoder/dataDecoder")
|
|
10242
|
-
},{"../../../streamer-api":
|
|
10593
|
+
},{"../../../streamer-api":108,"../../Qitch":25,"../../marketDataDefinition/ImbalanceStatusDef":87,"_process":131,"buffer":121,"timers":152}],65:[function(require,module,exports){
|
|
10243
10594
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
10244
10595
|
"use strict";
|
|
10245
10596
|
|
|
@@ -10292,6 +10643,7 @@ var IntervalDecoder = function () {
|
|
|
10292
10643
|
out.lastTime = _Qitch2["default"].timestamp(src, offset + def.LASTTIME_OFFSET);
|
|
10293
10644
|
out.tradeValue = _Qitch2["default"].int64(src, offset + def.TRADEVALUE_OFFSET);
|
|
10294
10645
|
out.vwap = this._vwap(out);
|
|
10646
|
+
out.periodMs = _Qitch2["default"].int32(src, offset + def.PERIODMS_OFFSET);
|
|
10295
10647
|
return out;
|
|
10296
10648
|
};
|
|
10297
10649
|
|
|
@@ -10307,7 +10659,7 @@ var IntervalDecoder = function () {
|
|
|
10307
10659
|
|
|
10308
10660
|
exports["default"] = IntervalDecoder;
|
|
10309
10661
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/dataDecoder/IntervalDecoder.js","/lib/qitch/decoder/dataDecoder")
|
|
10310
|
-
},{"../../../streamer-api":
|
|
10662
|
+
},{"../../../streamer-api":108,"../../Qitch":25,"../../marketDataDefinition/IntervalDef":88,"_process":131,"bignumber.js":118,"buffer":121,"jsbi":128,"timers":152}],66:[function(require,module,exports){
|
|
10311
10663
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
10312
10664
|
"use strict";
|
|
10313
10665
|
|
|
@@ -10371,7 +10723,7 @@ var LastSaleDecoder = function () {
|
|
|
10371
10723
|
|
|
10372
10724
|
exports["default"] = LastSaleDecoder;
|
|
10373
10725
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/dataDecoder/LastSaleDecoder.js","/lib/qitch/decoder/dataDecoder")
|
|
10374
|
-
},{"../../../streamer-api":
|
|
10726
|
+
},{"../../../streamer-api":108,"../../Qitch":25,"../../marketDataDefinition/LastSaleDef":89,"_process":131,"buffer":121,"timers":152}],67:[function(require,module,exports){
|
|
10375
10727
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
10376
10728
|
"use strict";
|
|
10377
10729
|
|
|
@@ -10421,7 +10773,7 @@ var LimitUpLimitDownDecoder = function () {
|
|
|
10421
10773
|
|
|
10422
10774
|
exports["default"] = LimitUpLimitDownDecoder;
|
|
10423
10775
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/dataDecoder/LimitUpLimitDownDecoder.js","/lib/qitch/decoder/dataDecoder")
|
|
10424
|
-
},{"../../../streamer-api":
|
|
10776
|
+
},{"../../../streamer-api":108,"../../Qitch":25,"../../marketDataDefinition/LimitUpLimitDownDef":90,"_process":131,"buffer":121,"timers":152}],68:[function(require,module,exports){
|
|
10425
10777
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
10426
10778
|
"use strict";
|
|
10427
10779
|
|
|
@@ -10473,7 +10825,7 @@ var MMQuoteDecoder = function () {
|
|
|
10473
10825
|
|
|
10474
10826
|
exports["default"] = MMQuoteDecoder;
|
|
10475
10827
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/dataDecoder/MMQuoteDecoder.js","/lib/qitch/decoder/dataDecoder")
|
|
10476
|
-
},{"../../../streamer-api":
|
|
10828
|
+
},{"../../../streamer-api":108,"../../Qitch":25,"../../marketDataDefinition/MMQuoteDef":91,"_process":131,"buffer":121,"timers":152}],69:[function(require,module,exports){
|
|
10477
10829
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
10478
10830
|
"use strict";
|
|
10479
10831
|
|
|
@@ -10529,7 +10881,7 @@ var NethousePositionDecoder = function () {
|
|
|
10529
10881
|
|
|
10530
10882
|
exports["default"] = NethousePositionDecoder;
|
|
10531
10883
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/dataDecoder/NethousePositionDecoder.js","/lib/qitch/decoder/dataDecoder")
|
|
10532
|
-
},{"../../../streamer-api":
|
|
10884
|
+
},{"../../../streamer-api":108,"../../Qitch":25,"../../marketDataDefinition/NethousePositionDef":92,"_process":131,"buffer":121,"timers":152}],70:[function(require,module,exports){
|
|
10533
10885
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
10534
10886
|
"use strict";
|
|
10535
10887
|
|
|
@@ -10638,7 +10990,7 @@ var PricedataDecoder = function () {
|
|
|
10638
10990
|
|
|
10639
10991
|
exports["default"] = PricedataDecoder;
|
|
10640
10992
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/dataDecoder/PricedataDecoder.js","/lib/qitch/decoder/dataDecoder")
|
|
10641
|
-
},{"../../../streamer-api.js":
|
|
10993
|
+
},{"../../../streamer-api.js":108,"../../Qitch":25,"../../marketDataDefinition/PricedataDef":93,"_process":131,"buffer":121,"timers":152}],71:[function(require,module,exports){
|
|
10642
10994
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
10643
10995
|
"use strict";
|
|
10644
10996
|
|
|
@@ -10680,7 +11032,7 @@ var PurgeBookDecoder = function () {
|
|
|
10680
11032
|
|
|
10681
11033
|
exports["default"] = PurgeBookDecoder;
|
|
10682
11034
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/dataDecoder/PurgeBookDecoder.js","/lib/qitch/decoder/dataDecoder")
|
|
10683
|
-
},{"../../../streamer-api":
|
|
11035
|
+
},{"../../../streamer-api":108,"../../Qitch":25,"../../marketDataDefinition/PurgeBookDef":94,"_process":131,"buffer":121,"timers":152}],72:[function(require,module,exports){
|
|
10684
11036
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
10685
11037
|
"use strict";
|
|
10686
11038
|
|
|
@@ -10733,7 +11085,7 @@ var QuoteDecoder = function () {
|
|
|
10733
11085
|
|
|
10734
11086
|
exports["default"] = QuoteDecoder;
|
|
10735
11087
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/dataDecoder/QuoteDecoder.js","/lib/qitch/decoder/dataDecoder")
|
|
10736
|
-
},{"../../../streamer-api":
|
|
11088
|
+
},{"../../../streamer-api":108,"../../Qitch":25,"../../marketDataDefinition/QuoteDef":95,"_process":131,"buffer":121,"timers":152}],73:[function(require,module,exports){
|
|
10737
11089
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
10738
11090
|
"use strict";
|
|
10739
11091
|
|
|
@@ -10786,7 +11138,7 @@ var SymbolInfoDecoder = function () {
|
|
|
10786
11138
|
|
|
10787
11139
|
exports["default"] = SymbolInfoDecoder;
|
|
10788
11140
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/dataDecoder/SymbolInfoDecoder.js","/lib/qitch/decoder/dataDecoder")
|
|
10789
|
-
},{"../../../streamer-api.js":
|
|
11141
|
+
},{"../../../streamer-api.js":108,"../../Qitch":25,"../../marketDataDefinition/SymbolInfoDef":96,"_process":131,"buffer":121,"timers":152}],74:[function(require,module,exports){
|
|
10790
11142
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
10791
11143
|
"use strict";
|
|
10792
11144
|
|
|
@@ -10823,10 +11175,11 @@ var SymbolStatusDecoder = function () {
|
|
|
10823
11175
|
out.haltStatus = _Qitch2["default"].sbyte(src, offset + def.HALTSTATUS_OFFSET);
|
|
10824
11176
|
out.haltIndicator = _Qitch2["default"].sbyte(src, offset + def.HALTINDICATOR_OFFSET);
|
|
10825
11177
|
out.regSHOStatus = _Qitch2["default"].asciichar(src, offset + def.REGSHOSTATUS_OFFSET);
|
|
10826
|
-
out.
|
|
11178
|
+
out.closingCalculatedPrice = _Qitch2["default"].dec8double(src, offset + def.CLOSINGPRICE_OFFSET);
|
|
10827
11179
|
out.effectiveTime = _Qitch2["default"].timestamp(src, offset + def.EFFECTIVETIME_OFFSET);
|
|
10828
11180
|
out.openingTime = _Qitch2["default"].timestamp(src, offset + def.OPENINGTIME_OFFSET);
|
|
10829
11181
|
out.note = _Qitch2["default"].note(src, offset + def.NOTE_OFFSET);
|
|
11182
|
+
out.symbol = _Qitch2["default"].symbol(src, offset + def.SYMBOL_OFFSET);
|
|
10830
11183
|
return out;
|
|
10831
11184
|
};
|
|
10832
11185
|
|
|
@@ -10835,7 +11188,7 @@ var SymbolStatusDecoder = function () {
|
|
|
10835
11188
|
|
|
10836
11189
|
exports["default"] = SymbolStatusDecoder;
|
|
10837
11190
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/dataDecoder/SymbolStatusDecoder.js","/lib/qitch/decoder/dataDecoder")
|
|
10838
|
-
},{"../../../streamer-api":
|
|
11191
|
+
},{"../../../streamer-api":108,"../../Qitch":25,"../../marketDataDefinition/SymbolStatusDef":97,"_process":131,"buffer":121,"timers":152}],75:[function(require,module,exports){
|
|
10839
11192
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
10840
11193
|
"use strict";
|
|
10841
11194
|
|
|
@@ -10891,7 +11244,7 @@ var TradeDecoder = function () {
|
|
|
10891
11244
|
|
|
10892
11245
|
exports["default"] = TradeDecoder;
|
|
10893
11246
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/dataDecoder/TradeDecoder.js","/lib/qitch/decoder/dataDecoder")
|
|
10894
|
-
},{"../../../streamer-api.js":
|
|
11247
|
+
},{"../../../streamer-api.js":108,"../../Qitch":25,"../../marketDataDefinition/TradeDef":98,"_process":131,"buffer":121,"timers":152}],76:[function(require,module,exports){
|
|
10895
11248
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
10896
11249
|
"use strict";
|
|
10897
11250
|
|
|
@@ -10927,6 +11280,14 @@ var _FlowMessageEncoder = require("./controlMessageEncoder/FlowMessageEncoder");
|
|
|
10927
11280
|
|
|
10928
11281
|
var _FlowMessageEncoder2 = _interopRequireDefault(_FlowMessageEncoder);
|
|
10929
11282
|
|
|
11283
|
+
var _ExchangeSubscribeMessageEncoder = require("./controlMessageEncoder/ExchangeSubscribeMessageEncoder");
|
|
11284
|
+
|
|
11285
|
+
var _ExchangeSubscribeMessageEncoder2 = _interopRequireDefault(_ExchangeSubscribeMessageEncoder);
|
|
11286
|
+
|
|
11287
|
+
var _SubUnsubAlertMessageEncoder = require("./controlMessageEncoder/SubUnsubAlertMessageEncoder");
|
|
11288
|
+
|
|
11289
|
+
var _SubUnsubAlertMessageEncoder2 = _interopRequireDefault(_SubUnsubAlertMessageEncoder);
|
|
11290
|
+
|
|
10930
11291
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
10931
11292
|
|
|
10932
11293
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
@@ -10978,6 +11339,8 @@ var MessageEncoder = function () {
|
|
|
10978
11339
|
this[_streamerApi.messages.MessageTypeNames.ctrl.STATS] = new _StatsMessageEncoder2["default"]();
|
|
10979
11340
|
this[_streamerApi.messages.MessageTypeNames.ctrl.FLOW] = new _FlowMessageEncoder2["default"]();
|
|
10980
11341
|
this[_streamerApi.messages.MessageTypeNames.ctrl.SUBSCRIBE] = new _SubscribeMessageEncoder2["default"]();
|
|
11342
|
+
this[_streamerApi.messages.MessageTypeNames.ctrl.EXCHANGE_SUBSCRIBE] = new _ExchangeSubscribeMessageEncoder2["default"]();
|
|
11343
|
+
this[_streamerApi.messages.MessageTypeNames.ctrl.ALERTS_SUBUNSUB] = new _SubUnsubAlertMessageEncoder2["default"]();
|
|
10981
11344
|
}
|
|
10982
11345
|
|
|
10983
11346
|
MessageEncoder.prototype.length = function length(message) {
|
|
@@ -11003,7 +11366,54 @@ var MessageEncoder = function () {
|
|
|
11003
11366
|
|
|
11004
11367
|
exports["default"] = QitchEncoder;
|
|
11005
11368
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/encoder/QitchEncoder.js","/lib/qitch/encoder")
|
|
11006
|
-
},{"../../SMessage":5,"../../streamer-api":
|
|
11369
|
+
},{"../../SMessage":5,"../../streamer-api":108,"../../streamer-utils":110,"../BlockHeader":19,"../MessageHeader":24,"../QitchConstants":26,"./controlMessageEncoder/ExchangeSubscribeMessageEncoder":77,"./controlMessageEncoder/FlowMessageEncoder":78,"./controlMessageEncoder/StatsMessageEncoder":79,"./controlMessageEncoder/SubUnsubAlertMessageEncoder":80,"./controlMessageEncoder/SubscribeMessageEncoder":81,"_process":131,"buffer":121,"timers":152}],77:[function(require,module,exports){
|
|
11370
|
+
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
11371
|
+
"use strict";
|
|
11372
|
+
|
|
11373
|
+
exports.__esModule = true;
|
|
11374
|
+
|
|
11375
|
+
var _ExchangeSubscribeMessageDef = require("../../controlMessageDefinition/ExchangeSubscribeMessageDef");
|
|
11376
|
+
|
|
11377
|
+
var def = _interopRequireWildcard(_ExchangeSubscribeMessageDef);
|
|
11378
|
+
|
|
11379
|
+
var _Qitch = require("../../Qitch");
|
|
11380
|
+
|
|
11381
|
+
var _Qitch2 = _interopRequireDefault(_Qitch);
|
|
11382
|
+
|
|
11383
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
11384
|
+
|
|
11385
|
+
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj["default"] = obj; return newObj; } }
|
|
11386
|
+
|
|
11387
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
11388
|
+
|
|
11389
|
+
var ExchangeSubscribeMessageEncoder = function () {
|
|
11390
|
+
function ExchangeSubscribeMessageEncoder() {
|
|
11391
|
+
_classCallCheck(this, ExchangeSubscribeMessageEncoder);
|
|
11392
|
+
}
|
|
11393
|
+
|
|
11394
|
+
ExchangeSubscribeMessageEncoder.prototype.type = function type() {
|
|
11395
|
+
return def.TYPEID;
|
|
11396
|
+
};
|
|
11397
|
+
|
|
11398
|
+
ExchangeSubscribeMessageEncoder.prototype.length = function length(message) {
|
|
11399
|
+
return def.FIXED_LENGTH;
|
|
11400
|
+
};
|
|
11401
|
+
|
|
11402
|
+
ExchangeSubscribeMessageEncoder.prototype.encode = function encode(dst, offset, message) {
|
|
11403
|
+
_Qitch2["default"].putInt32(dst, offset + def.REQUEST_ID_OFFSET, message.id);
|
|
11404
|
+
_Qitch2["default"].putAction(dst, offset + def.ACTION_OFFSET, message.action);
|
|
11405
|
+
_Qitch2["default"].putMimetype(dst, offset + def.MIMETYPE_OFFSET, message.mimetype);
|
|
11406
|
+
_Qitch2["default"].putConflation(dst, offset + def.CONFLATION_OFFSET, message.conflation);
|
|
11407
|
+
_Qitch2["default"].putExcode(dst, offset + def.EXCODE_OFFSET, message.exchange);
|
|
11408
|
+
return dst;
|
|
11409
|
+
};
|
|
11410
|
+
|
|
11411
|
+
return ExchangeSubscribeMessageEncoder;
|
|
11412
|
+
}();
|
|
11413
|
+
|
|
11414
|
+
exports["default"] = ExchangeSubscribeMessageEncoder;
|
|
11415
|
+
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/encoder/controlMessageEncoder/ExchangeSubscribeMessageEncoder.js","/lib/qitch/encoder/controlMessageEncoder")
|
|
11416
|
+
},{"../../Qitch":25,"../../controlMessageDefinition/ExchangeSubscribeMessageDef":29,"_process":131,"buffer":121,"timers":152}],78:[function(require,module,exports){
|
|
11007
11417
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
11008
11418
|
"use strict";
|
|
11009
11419
|
|
|
@@ -11046,7 +11456,7 @@ var FlowMessageEncoder = function () {
|
|
|
11046
11456
|
|
|
11047
11457
|
exports["default"] = FlowMessageEncoder;
|
|
11048
11458
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/encoder/controlMessageEncoder/FlowMessageEncoder.js","/lib/qitch/encoder/controlMessageEncoder")
|
|
11049
|
-
},{"../../Qitch":25,"../../controlMessageDefinition/FlowMessageDef":
|
|
11459
|
+
},{"../../Qitch":25,"../../controlMessageDefinition/FlowMessageDef":32,"_process":131,"buffer":121,"timers":152}],79:[function(require,module,exports){
|
|
11050
11460
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
11051
11461
|
"use strict";
|
|
11052
11462
|
|
|
@@ -11089,7 +11499,52 @@ var StatsMessageEncoder = function () {
|
|
|
11089
11499
|
|
|
11090
11500
|
exports["default"] = StatsMessageEncoder;
|
|
11091
11501
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/encoder/controlMessageEncoder/StatsMessageEncoder.js","/lib/qitch/encoder/controlMessageEncoder")
|
|
11092
|
-
},{"../../Qitch":25,"../../controlMessageDefinition/StatsMessageDef":
|
|
11502
|
+
},{"../../Qitch":25,"../../controlMessageDefinition/StatsMessageDef":37,"_process":131,"buffer":121,"timers":152}],80:[function(require,module,exports){
|
|
11503
|
+
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
11504
|
+
"use strict";
|
|
11505
|
+
|
|
11506
|
+
exports.__esModule = true;
|
|
11507
|
+
|
|
11508
|
+
var _SubUnsubAlertMessageDef = require("../../controlMessageDefinition/SubUnsubAlertMessageDef");
|
|
11509
|
+
|
|
11510
|
+
var def = _interopRequireWildcard(_SubUnsubAlertMessageDef);
|
|
11511
|
+
|
|
11512
|
+
var _Qitch = require("../../Qitch");
|
|
11513
|
+
|
|
11514
|
+
var _Qitch2 = _interopRequireDefault(_Qitch);
|
|
11515
|
+
|
|
11516
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
11517
|
+
|
|
11518
|
+
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj["default"] = obj; return newObj; } }
|
|
11519
|
+
|
|
11520
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
11521
|
+
|
|
11522
|
+
var SubUnsubAlertMessageEncoder = function () {
|
|
11523
|
+
function SubUnsubAlertMessageEncoder() {
|
|
11524
|
+
_classCallCheck(this, SubUnsubAlertMessageEncoder);
|
|
11525
|
+
}
|
|
11526
|
+
|
|
11527
|
+
SubUnsubAlertMessageEncoder.prototype.type = function type() {
|
|
11528
|
+
return def.TYPEID;
|
|
11529
|
+
};
|
|
11530
|
+
|
|
11531
|
+
SubUnsubAlertMessageEncoder.prototype.length = function length(message) {
|
|
11532
|
+
return def.FIXED_LENGTH;
|
|
11533
|
+
};
|
|
11534
|
+
|
|
11535
|
+
SubUnsubAlertMessageEncoder.prototype.encode = function encode(dst, offset, message) {
|
|
11536
|
+
_Qitch2["default"].putInt32(dst, offset + def.REQUEST_ID_OFFSET, message.id);
|
|
11537
|
+
_Qitch2["default"].putAsciiString(dst, offset + def.OPERATION_OFFSET, message.operation, def.FIXED_OPERATION_LENGTH);
|
|
11538
|
+
_Qitch2["default"].putMimetype(dst, offset + def.MIMETYPE_OFFSET, message.mimetype);
|
|
11539
|
+
return dst;
|
|
11540
|
+
};
|
|
11541
|
+
|
|
11542
|
+
return SubUnsubAlertMessageEncoder;
|
|
11543
|
+
}();
|
|
11544
|
+
|
|
11545
|
+
exports["default"] = SubUnsubAlertMessageEncoder;
|
|
11546
|
+
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/encoder/controlMessageEncoder/SubUnsubAlertMessageEncoder.js","/lib/qitch/encoder/controlMessageEncoder")
|
|
11547
|
+
},{"../../Qitch":25,"../../controlMessageDefinition/SubUnsubAlertMessageDef":39,"_process":131,"buffer":121,"timers":152}],81:[function(require,module,exports){
|
|
11093
11548
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
11094
11549
|
"use strict";
|
|
11095
11550
|
|
|
@@ -11158,7 +11613,25 @@ var SubscribeMessageEncoder = function () {
|
|
|
11158
11613
|
|
|
11159
11614
|
exports["default"] = SubscribeMessageEncoder;
|
|
11160
11615
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/encoder/controlMessageEncoder/SubscribeMessageEncoder.js","/lib/qitch/encoder/controlMessageEncoder")
|
|
11161
|
-
},{"../../Qitch":25,"../../QitchConstants":26,"../../controlMessageDefinition/SubscribeMessageDef":
|
|
11616
|
+
},{"../../Qitch":25,"../../QitchConstants":26,"../../controlMessageDefinition/SubscribeMessageDef":41,"_process":131,"buffer":121,"timers":152}],82:[function(require,module,exports){
|
|
11617
|
+
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
11618
|
+
"use strict";
|
|
11619
|
+
|
|
11620
|
+
exports.__esModule = true;
|
|
11621
|
+
exports.LENGTH = exports.TRIGGER_VALUE_OFFSET = exports.ALERT_ID_OFFSET = exports.INSTRUMENTTYPE_OFFSET = exports.TIMESTAMP_OFFSET = exports.SYMBOL_OFFSET = exports.TYPEID = undefined;
|
|
11622
|
+
|
|
11623
|
+
var _QitchConstants = require("../QitchConstants");
|
|
11624
|
+
|
|
11625
|
+
var TYPEID = exports.TYPEID = 17;
|
|
11626
|
+
|
|
11627
|
+
var SYMBOL_OFFSET = exports.SYMBOL_OFFSET = 0;
|
|
11628
|
+
var TIMESTAMP_OFFSET = exports.TIMESTAMP_OFFSET = SYMBOL_OFFSET + _QitchConstants.SYMBOL_LENGTH;
|
|
11629
|
+
var INSTRUMENTTYPE_OFFSET = exports.INSTRUMENTTYPE_OFFSET = TIMESTAMP_OFFSET + _QitchConstants.TIMESTAMP_LENGTH;
|
|
11630
|
+
var ALERT_ID_OFFSET = exports.ALERT_ID_OFFSET = INSTRUMENTTYPE_OFFSET + _QitchConstants.INSTRUMENTTYPE_LENGTH;
|
|
11631
|
+
var TRIGGER_VALUE_OFFSET = exports.TRIGGER_VALUE_OFFSET = ALERT_ID_OFFSET + _QitchConstants.LONG_LENGTH;
|
|
11632
|
+
var LENGTH = exports.LENGTH = TRIGGER_VALUE_OFFSET + _QitchConstants.DOUBLE_LENGTH;
|
|
11633
|
+
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/marketDataDefinition/AlertDef.js","/lib/qitch/marketDataDefinition")
|
|
11634
|
+
},{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],83:[function(require,module,exports){
|
|
11162
11635
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
11163
11636
|
"use strict";
|
|
11164
11637
|
|
|
@@ -11174,7 +11647,7 @@ var SYMBOL_OFFSET = exports.SYMBOL_OFFSET = TIMESTAMP_OFFSET + _QitchConstants.T
|
|
|
11174
11647
|
var ORDER_REFERENCE_OFFSET = exports.ORDER_REFERENCE_OFFSET = SYMBOL_OFFSET + _QitchConstants.LOCATECODE_LENGTH;
|
|
11175
11648
|
var LENGTH = exports.LENGTH = ORDER_REFERENCE_OFFSET + _QitchConstants.ORDER_REFERENCE_LENGTH;
|
|
11176
11649
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/marketDataDefinition/BookDeleteDef.js","/lib/qitch/marketDataDefinition")
|
|
11177
|
-
},{"../QitchConstants":26,"_process":
|
|
11650
|
+
},{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],84:[function(require,module,exports){
|
|
11178
11651
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
11179
11652
|
"use strict";
|
|
11180
11653
|
|
|
@@ -11295,7 +11768,7 @@ BookOrderFlags.prototype.PRICE_MUSTBEFILLED_MASK = 0x40000000;
|
|
|
11295
11768
|
BookOrderFlags.prototype.FUTURESETTLEMENT_MASK = 0x0800;
|
|
11296
11769
|
BookOrderFlags.prototype.NEXTDAYSETTLEMENT_MASK = 0x1000;
|
|
11297
11770
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/marketDataDefinition/BookOrderDef.js","/lib/qitch/marketDataDefinition")
|
|
11298
|
-
},{"../QitchConstants":26,"_process":
|
|
11771
|
+
},{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],85:[function(require,module,exports){
|
|
11299
11772
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
11300
11773
|
"use strict";
|
|
11301
11774
|
|
|
@@ -11316,7 +11789,7 @@ var CALLPUTINDICATOR_OFFSET = exports.CALLPUTINDICATOR_OFFSET = CONTRACTSIZE_OFF
|
|
|
11316
11789
|
var MINTICKSIZE_OFFSET = exports.MINTICKSIZE_OFFSET = CALLPUTINDICATOR_OFFSET + _QitchConstants.ASCIICHAR_LENGTH;
|
|
11317
11790
|
var LENGTH = exports.LENGTH = MINTICKSIZE_OFFSET + _QitchConstants.DOUBLE_LENGTH;
|
|
11318
11791
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/marketDataDefinition/DerivativeInfoDef.js","/lib/qitch/marketDataDefinition")
|
|
11319
|
-
},{"../QitchConstants":26,"_process":
|
|
11792
|
+
},{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],86:[function(require,module,exports){
|
|
11320
11793
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
11321
11794
|
"use strict";
|
|
11322
11795
|
|
|
@@ -11347,12 +11820,12 @@ var MARK_CHANGE_PERCENT_OFFSET = exports.MARK_CHANGE_PERCENT_OFFSET = MARK_CHANG
|
|
|
11347
11820
|
|
|
11348
11821
|
var LENGTH = exports.LENGTH = MARK_CHANGE_PERCENT_OFFSET + _QitchConstants.DOUBLE_LENGTH;
|
|
11349
11822
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/marketDataDefinition/IVGreeksDef.js","/lib/qitch/marketDataDefinition")
|
|
11350
|
-
},{"../QitchConstants":26,"_process":
|
|
11823
|
+
},{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],87:[function(require,module,exports){
|
|
11351
11824
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
11352
11825
|
"use strict";
|
|
11353
11826
|
|
|
11354
11827
|
exports.__esModule = true;
|
|
11355
|
-
exports.LENGTH = exports.PRICEVARIATION_OFFSET = exports.FARINDICATIVEPRICE_OFFSET = exports.NEARINDICATIVEPRICE_OFFSET = exports.PAIREDVOLUME_OFFSET = exports.ORDERSIDE_OFFSET = exports.SIZE_OFFSET = exports.REFERENCEPRICE_OFFSET = exports.TIMESTAMP_OFFSET = exports.IMBALANCE_TYPE_OFFSET = exports.LOCATECODE_OFFSET = exports.TYPEID = undefined;
|
|
11828
|
+
exports.LENGTH = exports.SYMBOL_OFFSET = exports.PRICEVARIATION_OFFSET = exports.FARINDICATIVEPRICE_OFFSET = exports.NEARINDICATIVEPRICE_OFFSET = exports.PAIREDVOLUME_OFFSET = exports.ORDERSIDE_OFFSET = exports.SIZE_OFFSET = exports.REFERENCEPRICE_OFFSET = exports.TIMESTAMP_OFFSET = exports.IMBALANCE_TYPE_OFFSET = exports.LOCATECODE_OFFSET = exports.TYPEID = undefined;
|
|
11356
11829
|
|
|
11357
11830
|
var _QitchConstants = require("../QitchConstants");
|
|
11358
11831
|
|
|
@@ -11368,14 +11841,15 @@ var PAIREDVOLUME_OFFSET = exports.PAIREDVOLUME_OFFSET = ORDERSIDE_OFFSET + _Qitc
|
|
|
11368
11841
|
var NEARINDICATIVEPRICE_OFFSET = exports.NEARINDICATIVEPRICE_OFFSET = PAIREDVOLUME_OFFSET + _QitchConstants.INT_LENGTH;
|
|
11369
11842
|
var FARINDICATIVEPRICE_OFFSET = exports.FARINDICATIVEPRICE_OFFSET = NEARINDICATIVEPRICE_OFFSET + _QitchConstants.DOUBLE_LENGTH;
|
|
11370
11843
|
var PRICEVARIATION_OFFSET = exports.PRICEVARIATION_OFFSET = FARINDICATIVEPRICE_OFFSET + _QitchConstants.DOUBLE_LENGTH;
|
|
11371
|
-
var
|
|
11844
|
+
var SYMBOL_OFFSET = exports.SYMBOL_OFFSET = PRICEVARIATION_OFFSET + _QitchConstants.DOUBLE_LENGTH;
|
|
11845
|
+
var LENGTH = exports.LENGTH = SYMBOL_OFFSET + _QitchConstants.SYMBOL_LENGTH;
|
|
11372
11846
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/marketDataDefinition/ImbalanceStatusDef.js","/lib/qitch/marketDataDefinition")
|
|
11373
|
-
},{"../QitchConstants":26,"_process":
|
|
11847
|
+
},{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],88:[function(require,module,exports){
|
|
11374
11848
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
11375
11849
|
"use strict";
|
|
11376
11850
|
|
|
11377
11851
|
exports.__esModule = true;
|
|
11378
|
-
exports.LENGTH = exports.LONGDECIMALVOLUME_OFFSET = exports.TRADEVALUE_OFFSET = exports.LASTTIME_OFFSET = exports.OPENTIME_OFFSET = exports.STARTTIME_OFFSET = exports.VOLUME_OFFSET = exports.LAST_OFFSET = exports.HIGH_OFFSET = exports.LOW_OFFSET = exports.OPEN_OFFSET = exports.SYMBOL_OFFSET = exports.TIMESTAMP_OFFSET = exports.TYPEID = undefined;
|
|
11852
|
+
exports.LENGTH = exports.PERIODMS_OFFSET = exports.LONGDECIMALVOLUME_OFFSET = exports.TRADEVALUE_OFFSET = exports.LASTTIME_OFFSET = exports.OPENTIME_OFFSET = exports.STARTTIME_OFFSET = exports.VOLUME_OFFSET = exports.LAST_OFFSET = exports.HIGH_OFFSET = exports.LOW_OFFSET = exports.OPEN_OFFSET = exports.SYMBOL_OFFSET = exports.TIMESTAMP_OFFSET = exports.TYPEID = undefined;
|
|
11379
11853
|
|
|
11380
11854
|
var _QitchConstants = require("../QitchConstants");
|
|
11381
11855
|
|
|
@@ -11393,9 +11867,10 @@ var OPENTIME_OFFSET = exports.OPENTIME_OFFSET = STARTTIME_OFFSET + _QitchConstan
|
|
|
11393
11867
|
var LASTTIME_OFFSET = exports.LASTTIME_OFFSET = OPENTIME_OFFSET + _QitchConstants.TIMESTAMP_LENGTH;
|
|
11394
11868
|
var TRADEVALUE_OFFSET = exports.TRADEVALUE_OFFSET = LASTTIME_OFFSET + _QitchConstants.TIMESTAMP_LENGTH;
|
|
11395
11869
|
var LONGDECIMALVOLUME_OFFSET = exports.LONGDECIMALVOLUME_OFFSET = TRADEVALUE_OFFSET + _QitchConstants.LONG_LENGTH;
|
|
11396
|
-
var
|
|
11870
|
+
var PERIODMS_OFFSET = exports.PERIODMS_OFFSET = LONGDECIMALVOLUME_OFFSET + _QitchConstants.DOUBLE_LENGTH;
|
|
11871
|
+
var LENGTH = exports.LENGTH = PERIODMS_OFFSET + _QitchConstants.INT_LENGTH;
|
|
11397
11872
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/marketDataDefinition/IntervalDef.js","/lib/qitch/marketDataDefinition")
|
|
11398
|
-
},{"../QitchConstants":26,"_process":
|
|
11873
|
+
},{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],89:[function(require,module,exports){
|
|
11399
11874
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
11400
11875
|
"use strict";
|
|
11401
11876
|
|
|
@@ -11415,7 +11890,7 @@ var TICK_OFFSET = exports.TICK_OFFSET = ACCUMULATEDVOLUME_OFFSET + _QitchConstan
|
|
|
11415
11890
|
var LASTTRADE_EXCODE_OFFSET = exports.LASTTRADE_EXCODE_OFFSET = TICK_OFFSET + _QitchConstants.TICK_LENGTH;
|
|
11416
11891
|
var LENGTH = exports.LENGTH = LASTTRADE_EXCODE_OFFSET + _QitchConstants.EXCODE_LENGTH;
|
|
11417
11892
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/marketDataDefinition/LastSaleDef.js","/lib/qitch/marketDataDefinition")
|
|
11418
|
-
},{"../QitchConstants":26,"_process":
|
|
11893
|
+
},{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],90:[function(require,module,exports){
|
|
11419
11894
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
11420
11895
|
"use strict";
|
|
11421
11896
|
|
|
@@ -11455,7 +11930,7 @@ var LimitUpLimitDownFlags = exports.LimitUpLimitDownFlags = function () {
|
|
|
11455
11930
|
LimitUpLimitDownFlags.prototype.BID_NOT_EXECUTABLE = 0x1;
|
|
11456
11931
|
LimitUpLimitDownFlags.prototype.ASK_NOT_EXECUTABLE = 0x2;
|
|
11457
11932
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/marketDataDefinition/LimitUpLimitDownDef.js","/lib/qitch/marketDataDefinition")
|
|
11458
|
-
},{"../QitchConstants":26,"_process":
|
|
11933
|
+
},{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],91:[function(require,module,exports){
|
|
11459
11934
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
11460
11935
|
"use strict";
|
|
11461
11936
|
|
|
@@ -11481,7 +11956,7 @@ var DECIMALBIDSIZE_OFFSET = exports.DECIMALBIDSIZE_OFFSET = SHARESPERSIZEUNIT_OF
|
|
|
11481
11956
|
var DECIMALASKSIZE_OFFSET = exports.DECIMALASKSIZE_OFFSET = DECIMALBIDSIZE_OFFSET + _QitchConstants.DOUBLE_LENGTH;
|
|
11482
11957
|
var LENGTH = exports.LENGTH = DECIMALASKSIZE_OFFSET + _QitchConstants.DOUBLE_LENGTH;
|
|
11483
11958
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/marketDataDefinition/MMQuoteDef.js","/lib/qitch/marketDataDefinition")
|
|
11484
|
-
},{"../QitchConstants":26,"_process":
|
|
11959
|
+
},{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],92:[function(require,module,exports){
|
|
11485
11960
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
11486
11961
|
"use strict";
|
|
11487
11962
|
|
|
@@ -11509,7 +11984,7 @@ var BUYBLOCKTRANSACTIONS_OFFSET = exports.BUYBLOCKTRANSACTIONS_OFFSET = SELLTRAN
|
|
|
11509
11984
|
var SELLBLOCKTRANSACTIONS_OFFSET = exports.SELLBLOCKTRANSACTIONS_OFFSET = BUYBLOCKTRANSACTIONS_OFFSET + _QitchConstants.INT_LENGTH;
|
|
11510
11985
|
var LENGTH = exports.LENGTH = SELLBLOCKTRANSACTIONS_OFFSET + _QitchConstants.INT_LENGTH;
|
|
11511
11986
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/marketDataDefinition/NethousePositionDef.js","/lib/qitch/marketDataDefinition")
|
|
11512
|
-
},{"../QitchConstants":26,"_process":
|
|
11987
|
+
},{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],93:[function(require,module,exports){
|
|
11513
11988
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
11514
11989
|
"use strict";
|
|
11515
11990
|
|
|
@@ -11577,7 +12052,7 @@ var PricedataFlags = exports.PricedataFlags = function () {
|
|
|
11577
12052
|
PricedataFlags.prototype.ANNUALHIGH_MASK = 0x01;
|
|
11578
12053
|
PricedataFlags.prototype.ANNUALLOW_MASK = 0x02;
|
|
11579
12054
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/marketDataDefinition/PricedataDef.js","/lib/qitch/marketDataDefinition")
|
|
11580
|
-
},{"../QitchConstants":26,"_process":
|
|
12055
|
+
},{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],94:[function(require,module,exports){
|
|
11581
12056
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
11582
12057
|
"use strict";
|
|
11583
12058
|
|
|
@@ -11591,7 +12066,7 @@ var TYPEID = exports.TYPEID = 6;
|
|
|
11591
12066
|
var SYMBOL_OFFSET = exports.SYMBOL_OFFSET = 0;
|
|
11592
12067
|
var LENGTH = exports.LENGTH = SYMBOL_OFFSET + _QitchConstants.LOCATECODE_LENGTH;
|
|
11593
12068
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/marketDataDefinition/PurgeBookDef.js","/lib/qitch/marketDataDefinition")
|
|
11594
|
-
},{"../QitchConstants":26,"_process":
|
|
12069
|
+
},{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],95:[function(require,module,exports){
|
|
11595
12070
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
11596
12071
|
"use strict";
|
|
11597
12072
|
|
|
@@ -11618,7 +12093,7 @@ var DECIMALASKSIZE_OFFSET = exports.DECIMALASKSIZE_OFFSET = SHARESPERSIZEUNIT_OF
|
|
|
11618
12093
|
var DECIMALBIDSIZE_OFFSET = exports.DECIMALBIDSIZE_OFFSET = DECIMALASKSIZE_OFFSET + _QitchConstants.DOUBLE_LENGTH;
|
|
11619
12094
|
var LENGTH = exports.LENGTH = DECIMALBIDSIZE_OFFSET + _QitchConstants.DOUBLE_LENGTH;
|
|
11620
12095
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/marketDataDefinition/QuoteDef.js","/lib/qitch/marketDataDefinition")
|
|
11621
|
-
},{"../QitchConstants":26,"_process":
|
|
12096
|
+
},{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],96:[function(require,module,exports){
|
|
11622
12097
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
11623
12098
|
"use strict";
|
|
11624
12099
|
|
|
@@ -11642,12 +12117,12 @@ var CAVEATEMPTOR_OFFSET = exports.CAVEATEMPTOR_OFFSET = PQE_OFFSET + _QitchConst
|
|
|
11642
12117
|
var BOARDLOTSIZE_OFFSET = exports.BOARDLOTSIZE_OFFSET = CAVEATEMPTOR_OFFSET + _QitchConstants.BYTE_LENGTH;
|
|
11643
12118
|
var LENGTH = exports.LENGTH = BOARDLOTSIZE_OFFSET + _QitchConstants.INT_LENGTH;
|
|
11644
12119
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/marketDataDefinition/SymbolInfoDef.js","/lib/qitch/marketDataDefinition")
|
|
11645
|
-
},{"../QitchConstants":26,"_process":
|
|
12120
|
+
},{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],97:[function(require,module,exports){
|
|
11646
12121
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
11647
12122
|
"use strict";
|
|
11648
12123
|
|
|
11649
12124
|
exports.__esModule = true;
|
|
11650
|
-
exports.LENGTH = exports.NOTE_OFFSET = exports.OPENINGTIME_OFFSET = exports.EFFECTIVETIME_OFFSET = exports.CLOSINGPRICE_OFFSET = exports.REGSHOSTATUS_OFFSET = exports.HALTINDICATOR_OFFSET = exports.HALTSTATUS_OFFSET = exports.LOCATE_CODE_OFFSET = exports.TYPEID = undefined;
|
|
12125
|
+
exports.LENGTH = exports.SYMBOL_OFFSET = exports.NOTE_OFFSET = exports.OPENINGTIME_OFFSET = exports.EFFECTIVETIME_OFFSET = exports.CLOSINGPRICE_OFFSET = exports.REGSHOSTATUS_OFFSET = exports.HALTINDICATOR_OFFSET = exports.HALTSTATUS_OFFSET = exports.LOCATE_CODE_OFFSET = exports.TYPEID = undefined;
|
|
11651
12126
|
|
|
11652
12127
|
var _QitchConstants = require("../QitchConstants");
|
|
11653
12128
|
|
|
@@ -11661,10 +12136,11 @@ var CLOSINGPRICE_OFFSET = exports.CLOSINGPRICE_OFFSET = REGSHOSTATUS_OFFSET + _Q
|
|
|
11661
12136
|
var EFFECTIVETIME_OFFSET = exports.EFFECTIVETIME_OFFSET = CLOSINGPRICE_OFFSET + _QitchConstants.DOUBLE_LENGTH;
|
|
11662
12137
|
var OPENINGTIME_OFFSET = exports.OPENINGTIME_OFFSET = EFFECTIVETIME_OFFSET + _QitchConstants.TIMESTAMP_LENGTH;
|
|
11663
12138
|
var NOTE_OFFSET = exports.NOTE_OFFSET = OPENINGTIME_OFFSET + _QitchConstants.TIMESTAMP_LENGTH;
|
|
12139
|
+
var SYMBOL_OFFSET = exports.SYMBOL_OFFSET = NOTE_OFFSET + _QitchConstants.NOTE_LENGTH;
|
|
11664
12140
|
|
|
11665
|
-
var LENGTH = exports.LENGTH =
|
|
12141
|
+
var LENGTH = exports.LENGTH = SYMBOL_OFFSET + _QitchConstants.SYMBOL_LENGTH;
|
|
11666
12142
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/marketDataDefinition/SymbolStatusDef.js","/lib/qitch/marketDataDefinition")
|
|
11667
|
-
},{"../QitchConstants":26,"_process":
|
|
12143
|
+
},{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],98:[function(require,module,exports){
|
|
11668
12144
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
11669
12145
|
"use strict";
|
|
11670
12146
|
|
|
@@ -11799,7 +12275,7 @@ TradeFlags.prototype.TRADETHROUGHEXEMPT = 0x00000200;
|
|
|
11799
12275
|
TradeFlags.prototype.CORRECTION_MASK = 0x08000000;
|
|
11800
12276
|
TradeFlags.prototype.OUTOFSEQUENCE_MASK = 0x00000400;
|
|
11801
12277
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/marketDataDefinition/TradeDef.js","/lib/qitch/marketDataDefinition")
|
|
11802
|
-
},{"../QitchConstants":26,"_process":
|
|
12278
|
+
},{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],99:[function(require,module,exports){
|
|
11803
12279
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
11804
12280
|
"use strict";
|
|
11805
12281
|
|
|
@@ -11849,7 +12325,7 @@ var SMessageDecoder = function () {
|
|
|
11849
12325
|
|
|
11850
12326
|
exports["default"] = SMessageDecoder;
|
|
11851
12327
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/serialization/SMessageDecoder.js","/lib/serialization")
|
|
11852
|
-
},{"./v1/SMessageDecoder_1.js":
|
|
12328
|
+
},{"./v1/SMessageDecoder_1.js":101,"_process":131,"buffer":121,"timers":152}],100:[function(require,module,exports){
|
|
11853
12329
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
11854
12330
|
"use strict";
|
|
11855
12331
|
|
|
@@ -11896,7 +12372,7 @@ var SMessageEncoder = function () {
|
|
|
11896
12372
|
|
|
11897
12373
|
exports["default"] = SMessageEncoder;
|
|
11898
12374
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/serialization/SMessageEncoder.js","/lib/serialization")
|
|
11899
|
-
},{"./v1/SMessageEncoder_1.js":
|
|
12375
|
+
},{"./v1/SMessageEncoder_1.js":102,"_process":131,"buffer":121,"timers":152}],101:[function(require,module,exports){
|
|
11900
12376
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
11901
12377
|
"use strict";
|
|
11902
12378
|
|
|
@@ -11950,7 +12426,7 @@ var SMessageDecoder_1 = function () {
|
|
|
11950
12426
|
|
|
11951
12427
|
exports["default"] = SMessageDecoder_1;
|
|
11952
12428
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/serialization/v1/SMessageDecoder_1.js","/lib/serialization/v1")
|
|
11953
|
-
},{"../../SMessage.js":5,"./codec.js":
|
|
12429
|
+
},{"../../SMessage.js":5,"./codec.js":103,"_process":131,"buffer":121,"timers":152}],102:[function(require,module,exports){
|
|
11954
12430
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
11955
12431
|
"use strict";
|
|
11956
12432
|
|
|
@@ -12000,7 +12476,7 @@ var SMessageEncoder_1 = function () {
|
|
|
12000
12476
|
|
|
12001
12477
|
exports["default"] = SMessageEncoder_1;
|
|
12002
12478
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/serialization/v1/SMessageEncoder_1.js","/lib/serialization/v1")
|
|
12003
|
-
},{"../../message.js":17,"./codec.js":
|
|
12479
|
+
},{"../../message.js":17,"./codec.js":103,"_process":131,"buffer":121,"timers":152}],103:[function(require,module,exports){
|
|
12004
12480
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
12005
12481
|
"use strict";
|
|
12006
12482
|
|
|
@@ -12045,7 +12521,7 @@ exports["default"] = new function () {
|
|
|
12045
12521
|
this.HEADER_LENGTH_CHAR = this.PAYLOADLENGTH_OFFSET + this.UINT_LENGTH_CHAR;
|
|
12046
12522
|
}();
|
|
12047
12523
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/serialization/v1/codec.js","/lib/serialization/v1")
|
|
12048
|
-
},{"_process":
|
|
12524
|
+
},{"_process":131,"buffer":121,"timers":152}],104:[function(require,module,exports){
|
|
12049
12525
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
12050
12526
|
'use strict';
|
|
12051
12527
|
|
|
@@ -12538,7 +13014,7 @@ exports["default"] = new function () {
|
|
|
12538
13014
|
}
|
|
12539
13015
|
}).call(undefined);
|
|
12540
13016
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/stomp.js/lib/stomp.js","/lib/stomp.js/lib")
|
|
12541
|
-
},{"_process":
|
|
13017
|
+
},{"_process":131,"buffer":121,"timers":152}],105:[function(require,module,exports){
|
|
12542
13018
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
12543
13019
|
"use strict";
|
|
12544
13020
|
|
|
@@ -12768,7 +13244,7 @@ var StompConnection = function () {
|
|
|
12768
13244
|
|
|
12769
13245
|
exports["default"] = StompConnection;
|
|
12770
13246
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/stomp/StompConnection.js","/lib/stomp")
|
|
12771
|
-
},{"../EventSupport.js":2,"../http.js":14,"../logging.js":16,"../streamer-events.js":
|
|
13247
|
+
},{"../EventSupport.js":2,"../http.js":14,"../logging.js":16,"../streamer-events.js":109,"_process":131,"buffer":121,"timers":152}],106:[function(require,module,exports){
|
|
12772
13248
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
12773
13249
|
"use strict";
|
|
12774
13250
|
|
|
@@ -14090,7 +14566,7 @@ var StompStream = function () {
|
|
|
14090
14566
|
|
|
14091
14567
|
exports["default"] = StompStream;
|
|
14092
14568
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/stomp/StompStream.js","/lib/stomp")
|
|
14093
|
-
},{"../EventSupport.js":2,"../UShortId.js":9,"../formatting.js":13,"../logging.js":16,"../polyfills.js":18,"../streamer-api.js":
|
|
14569
|
+
},{"../EventSupport.js":2,"../UShortId.js":9,"../formatting.js":13,"../logging.js":16,"../polyfills.js":18,"../streamer-api.js":108,"../streamer-events.js":109,"../streamer-utils.js":110,"../utils.js":115,"_process":131,"buffer":121,"timers":152}],107:[function(require,module,exports){
|
|
14094
14570
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
14095
14571
|
"use strict";
|
|
14096
14572
|
|
|
@@ -14312,7 +14788,7 @@ var StompStreamingService = function () {
|
|
|
14312
14788
|
|
|
14313
14789
|
exports["default"] = StompStreamingService;
|
|
14314
14790
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/stomp/StompStreamingService.js","/lib/stomp")
|
|
14315
|
-
},{"../logging.js":16,"../message.js":17,"../polyfills.js":18,"../streamer-api.js":
|
|
14791
|
+
},{"../logging.js":16,"../message.js":17,"../polyfills.js":18,"../streamer-api.js":108,"../transmission/JsonStompTransmitter.js":111,"./StompConnection.js":105,"./StompStream.js":106,"_process":131,"buffer":121,"timers":152}],108:[function(require,module,exports){
|
|
14316
14792
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
14317
14793
|
"use strict";
|
|
14318
14794
|
|
|
@@ -14325,7 +14801,7 @@ exports.__esModule = true;
|
|
|
14325
14801
|
*/
|
|
14326
14802
|
|
|
14327
14803
|
var LIBRARY_NAME = exports.LIBRARY_NAME = "JavaScript";
|
|
14328
|
-
var VERSION = exports.VERSION = "2.
|
|
14804
|
+
var VERSION = exports.VERSION = "2.39.0";
|
|
14329
14805
|
|
|
14330
14806
|
/**
|
|
14331
14807
|
* Streamer message api namespace.
|
|
@@ -14709,6 +15185,15 @@ messages.control.ExchangeSubscribeResponse = function () {
|
|
|
14709
15185
|
|
|
14710
15186
|
messages.control.ExchangeSubscribeResponse.prototype = new messages.control.BaseResponse();
|
|
14711
15187
|
|
|
15188
|
+
/**
|
|
15189
|
+
* Creates an Alert un-subscribe response message.
|
|
15190
|
+
* @constructor
|
|
15191
|
+
*/
|
|
15192
|
+
messages.control.AlertSubUnsubResponse = function () {
|
|
15193
|
+
this.init(messages.MessageTypeNames.ctrl.ALERTS_SUBUNSUB_RESPONSE);
|
|
15194
|
+
};
|
|
15195
|
+
messages.control.AlertSubUnsubResponse.prototype = new messages.control.BaseResponse();
|
|
15196
|
+
|
|
14712
15197
|
/**
|
|
14713
15198
|
* Creates Trade notification subscribe response message.
|
|
14714
15199
|
* @constructor
|
|
@@ -15464,7 +15949,7 @@ messages.market.OrderChangeType = {
|
|
|
15464
15949
|
'E': "EXECUTE"
|
|
15465
15950
|
};
|
|
15466
15951
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/streamer-api.js","/lib")
|
|
15467
|
-
},{"_process":
|
|
15952
|
+
},{"_process":131,"buffer":121,"timers":152}],109:[function(require,module,exports){
|
|
15468
15953
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
15469
15954
|
"use strict";
|
|
15470
15955
|
|
|
@@ -15518,7 +16003,7 @@ var close = exports.close = function close(moreArgs) {
|
|
|
15518
16003
|
return event("close", moreArgs);
|
|
15519
16004
|
};
|
|
15520
16005
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/streamer-events.js","/lib")
|
|
15521
|
-
},{"./polyfills":18,"_process":
|
|
16006
|
+
},{"./polyfills":18,"_process":131,"buffer":121,"timers":152}],110:[function(require,module,exports){
|
|
15522
16007
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
15523
16008
|
'use strict';
|
|
15524
16009
|
|
|
@@ -15643,7 +16128,7 @@ var getMessageName = exports.getMessageName = function () {
|
|
|
15643
16128
|
};
|
|
15644
16129
|
}();
|
|
15645
16130
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/streamer-utils.js","/lib")
|
|
15646
|
-
},{"./streamer-api.js":
|
|
16131
|
+
},{"./streamer-api.js":108,"_process":131,"buffer":121,"timers":152}],111:[function(require,module,exports){
|
|
15647
16132
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
15648
16133
|
"use strict";
|
|
15649
16134
|
|
|
@@ -15693,7 +16178,7 @@ var JsonStompTransmitter = function () {
|
|
|
15693
16178
|
|
|
15694
16179
|
exports["default"] = JsonStompTransmitter;
|
|
15695
16180
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/transmission/JsonStompTransmitter.js","/lib/transmission")
|
|
15696
|
-
},{"../EventSupport.js":2,"_process":
|
|
16181
|
+
},{"../EventSupport.js":2,"_process":131,"buffer":121,"timers":152}],112:[function(require,module,exports){
|
|
15697
16182
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
15698
16183
|
"use strict";
|
|
15699
16184
|
|
|
@@ -15752,7 +16237,7 @@ var JsonTransmitter = function () {
|
|
|
15752
16237
|
|
|
15753
16238
|
exports["default"] = JsonTransmitter;
|
|
15754
16239
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/transmission/JsonTransmitter.js","/lib/transmission")
|
|
15755
|
-
},{"../EventSupport.js":2,"../message.js":17,"_process":
|
|
16240
|
+
},{"../EventSupport.js":2,"../message.js":17,"_process":131,"buffer":121,"timers":152}],113:[function(require,module,exports){
|
|
15756
16241
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
15757
16242
|
"use strict";
|
|
15758
16243
|
|
|
@@ -15876,7 +16361,7 @@ QitchTransmitter.prototype.DEFAULT_BUFFERSIZE = 4096;
|
|
|
15876
16361
|
|
|
15877
16362
|
exports["default"] = QitchTransmitter;
|
|
15878
16363
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/transmission/QitchTransmitter.js","/lib/transmission")
|
|
15879
|
-
},{"../EventSupport.js":2,"../SMessage":5,"../UShortId.js":9,"../message.js":17,"../qitch/LocateCodeInjector":23,"../qitch/decoder/QitchDecoder":
|
|
16364
|
+
},{"../EventSupport.js":2,"../SMessage":5,"../UShortId.js":9,"../message.js":17,"../qitch/LocateCodeInjector":23,"../qitch/decoder/QitchDecoder":46,"../qitch/encoder/QitchEncoder":76,"../utils":115,"_process":131,"buffer":121,"timers":152}],114:[function(require,module,exports){
|
|
15880
16365
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
15881
16366
|
"use strict";
|
|
15882
16367
|
|
|
@@ -15966,7 +16451,7 @@ var SMessageTransmitter = function () {
|
|
|
15966
16451
|
|
|
15967
16452
|
exports["default"] = SMessageTransmitter;
|
|
15968
16453
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/transmission/SMessageTransmitter.js","/lib/transmission")
|
|
15969
|
-
},{"../EventSupport.js":2,"../SMessage.js":5,"../UShortId.js":9,"../formatting.js":13,"../message.js":17,"_process":
|
|
16454
|
+
},{"../EventSupport.js":2,"../SMessage.js":5,"../UShortId.js":9,"../formatting.js":13,"../message.js":17,"_process":131,"buffer":121,"timers":152}],115:[function(require,module,exports){
|
|
15970
16455
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
15971
16456
|
"use strict";
|
|
15972
16457
|
|
|
@@ -16017,7 +16502,7 @@ var asciiStringToArrayBuffer = exports.asciiStringToArrayBuffer = function ascii
|
|
|
16017
16502
|
return buf;
|
|
16018
16503
|
};
|
|
16019
16504
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/utils.js","/lib")
|
|
16020
|
-
},{"_process":
|
|
16505
|
+
},{"_process":131,"buffer":121,"timers":152}],116:[function(require,module,exports){
|
|
16021
16506
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
16022
16507
|
|
|
16023
16508
|
module.exports = function equal(arr1, arr2) {
|
|
@@ -16030,7 +16515,7 @@ module.exports = function equal(arr1, arr2) {
|
|
|
16030
16515
|
}
|
|
16031
16516
|
|
|
16032
16517
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/array-equal/index.js","/node_modules/array-equal")
|
|
16033
|
-
},{"_process":
|
|
16518
|
+
},{"_process":131,"buffer":121,"timers":152}],117:[function(require,module,exports){
|
|
16034
16519
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
16035
16520
|
'use strict'
|
|
16036
16521
|
|
|
@@ -16185,7 +16670,7 @@ function fromByteArray (uint8) {
|
|
|
16185
16670
|
}
|
|
16186
16671
|
|
|
16187
16672
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/base64-js/index.js","/node_modules/base64-js")
|
|
16188
|
-
},{"_process":
|
|
16673
|
+
},{"_process":131,"buffer":121,"timers":152}],118:[function(require,module,exports){
|
|
16189
16674
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
16190
16675
|
;(function (globalObject) {
|
|
16191
16676
|
'use strict';
|
|
@@ -19091,15 +19576,15 @@ function fromByteArray (uint8) {
|
|
|
19091
19576
|
})(this);
|
|
19092
19577
|
|
|
19093
19578
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/bignumber.js/bignumber.js","/node_modules/bignumber.js")
|
|
19094
|
-
},{"_process":
|
|
19579
|
+
},{"_process":131,"buffer":121,"timers":152}],119:[function(require,module,exports){
|
|
19095
19580
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
19096
19581
|
|
|
19097
19582
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/browser-resolve/empty.js","/node_modules/browser-resolve")
|
|
19098
|
-
},{"_process":
|
|
19583
|
+
},{"_process":131,"buffer":121,"timers":152}],120:[function(require,module,exports){
|
|
19099
19584
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
19100
19585
|
|
|
19101
19586
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/browserify/lib/_empty.js","/node_modules/browserify/lib")
|
|
19102
|
-
},{"_process":
|
|
19587
|
+
},{"_process":131,"buffer":121,"timers":152}],121:[function(require,module,exports){
|
|
19103
19588
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
19104
19589
|
/*!
|
|
19105
19590
|
* The buffer module from node.js, for the browser.
|
|
@@ -20839,7 +21324,7 @@ function numberIsNaN (obj) {
|
|
|
20839
21324
|
}
|
|
20840
21325
|
|
|
20841
21326
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/buffer/index.js","/node_modules/buffer")
|
|
20842
|
-
},{"_process":
|
|
21327
|
+
},{"_process":131,"base64-js":117,"buffer":121,"ieee754":126,"timers":152}],122:[function(require,module,exports){
|
|
20843
21328
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
20844
21329
|
module.exports = {
|
|
20845
21330
|
"100": "Continue",
|
|
@@ -20907,7 +21392,7 @@ module.exports = {
|
|
|
20907
21392
|
}
|
|
20908
21393
|
|
|
20909
21394
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/builtin-status-codes/browser.js","/node_modules/builtin-status-codes")
|
|
20910
|
-
},{"_process":
|
|
21395
|
+
},{"_process":131,"buffer":121,"timers":152}],123:[function(require,module,exports){
|
|
20911
21396
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
20912
21397
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
20913
21398
|
//
|
|
@@ -21018,7 +21503,7 @@ function objectToString(o) {
|
|
|
21018
21503
|
}
|
|
21019
21504
|
|
|
21020
21505
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/core-util-is/lib/util.js","/node_modules/core-util-is/lib")
|
|
21021
|
-
},{"_process":
|
|
21506
|
+
},{"_process":131,"buffer":121,"timers":152}],124:[function(require,module,exports){
|
|
21022
21507
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
21023
21508
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
21024
21509
|
//
|
|
@@ -21545,7 +22030,7 @@ function functionBindPolyfill(context) {
|
|
|
21545
22030
|
}
|
|
21546
22031
|
|
|
21547
22032
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/events/events.js","/node_modules/events")
|
|
21548
|
-
},{"_process":
|
|
22033
|
+
},{"_process":131,"buffer":121,"timers":152}],125:[function(require,module,exports){
|
|
21549
22034
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
21550
22035
|
var http = require('http')
|
|
21551
22036
|
var url = require('url')
|
|
@@ -21580,7 +22065,7 @@ function validateParams (params) {
|
|
|
21580
22065
|
}
|
|
21581
22066
|
|
|
21582
22067
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/https-browserify/index.js","/node_modules/https-browserify")
|
|
21583
|
-
},{"_process":
|
|
22068
|
+
},{"_process":131,"buffer":121,"http":137,"timers":152,"url":154}],126:[function(require,module,exports){
|
|
21584
22069
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
21585
22070
|
exports.read = function (buffer, offset, isLE, mLen, nBytes) {
|
|
21586
22071
|
var e, m
|
|
@@ -21668,7 +22153,7 @@ exports.write = function (buffer, value, offset, isLE, mLen, nBytes) {
|
|
|
21668
22153
|
}
|
|
21669
22154
|
|
|
21670
22155
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/ieee754/index.js","/node_modules/ieee754")
|
|
21671
|
-
},{"_process":
|
|
22156
|
+
},{"_process":131,"buffer":121,"timers":152}],127:[function(require,module,exports){
|
|
21672
22157
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
21673
22158
|
if (typeof Object.create === 'function') {
|
|
21674
22159
|
// implementation from standard node.js 'util' module
|
|
@@ -21695,12 +22180,12 @@ if (typeof Object.create === 'function') {
|
|
|
21695
22180
|
}
|
|
21696
22181
|
|
|
21697
22182
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/inherits/inherits_browser.js","/node_modules/inherits")
|
|
21698
|
-
},{"_process":
|
|
22183
|
+
},{"_process":131,"buffer":121,"timers":152}],128:[function(require,module,exports){
|
|
21699
22184
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
21700
22185
|
(function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e=e||self,e.JSBI=t())})(this,function(){'use strict';function e(t){return e="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},e(t)}function t(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){for(var _,n=0;n<t.length;n++)_=t[n],_.enumerable=_.enumerable||!1,_.configurable=!0,"value"in _&&(_.writable=!0),Object.defineProperty(e,_.key,_)}function _(e,t,_){return t&&i(e.prototype,t),_&&i(e,_),e}function n(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&l(e,t)}function g(e){return g=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},g(e)}function l(e,t){return l=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},l(e,t)}function o(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(t){return!1}}function a(){return a=o()?Reflect.construct:function(e,t,i){var _=[null];_.push.apply(_,t);var n=Function.bind.apply(e,_),g=new n;return i&&l(g,i.prototype),g},a.apply(null,arguments)}function s(e){return-1!==Function.toString.call(e).indexOf("[native code]")}function u(e){var t="function"==typeof Map?new Map:void 0;return u=function(e){function i(){return a(e,arguments,g(this).constructor)}if(null===e||!s(e))return e;if("function"!=typeof e)throw new TypeError("Super expression must either be null or a function");if("undefined"!=typeof t){if(t.has(e))return t.get(e);t.set(e,i)}return i.prototype=Object.create(e.prototype,{constructor:{value:i,enumerable:!1,writable:!0,configurable:!0}}),l(i,e)},u(e)}function r(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function d(e,t){return t&&("object"==typeof t||"function"==typeof t)?t:r(e)}var h=function(i){var o=Math.abs,a=Math.max,s=Math.imul,u=Math.clz32;function l(e,i){var _;if(t(this,l),e>l.__kMaxLength)throw new RangeError("Maximum BigInt size exceeded");return _=d(this,g(l).call(this,e)),_.sign=i,_}return n(l,i),_(l,[{key:"toDebugString",value:function(){var e=["BigInt["],t=!0,i=!1,_=void 0;try{for(var n,g,l=this[Symbol.iterator]();!(t=(n=l.next()).done);t=!0)g=n.value,e.push((g?(g>>>0).toString(16):g)+", ")}catch(e){i=!0,_=e}finally{try{t||null==l["return"]||l["return"]()}finally{if(i)throw _}}return e.push("]"),e.join("")}},{key:"toString",value:function(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:10;if(2>e||36<e)throw new RangeError("toString() radix argument must be between 2 and 36");return 0===this.length?"0":0==(e&e-1)?l.__toStringBasePowerOfTwo(this,e):l.__toStringGeneric(this,e,!1)}},{key:"__copy",value:function(){for(var e=new l(this.length,this.sign),t=0;t<this.length;t++)e[t]=this[t];return e}},{key:"__trim",value:function(){for(var e=this.length,t=this[e-1];0===t;)e--,t=this[e-1],this.pop();return 0===e&&(this.sign=!1),this}},{key:"__initializeDigits",value:function(){for(var e=0;e<this.length;e++)this[e]=0}},{key:"__clzmsd",value:function(){return u(this[this.length-1])}},{key:"__inplaceMultiplyAdd",value:function(e,t,_){_>this.length&&(_=this.length);for(var n=65535&e,g=e>>>16,l=0,o=65535&t,a=t>>>16,u=0;u<_;u++){var r=this.__digit(u),d=65535&r,h=r>>>16,b=s(d,n),m=s(d,g),c=s(h,n),v=s(h,g),y=o+(65535&b),f=a+l+(y>>>16)+(b>>>16)+(65535&m)+(65535&c);o=(m>>>16)+(c>>>16)+(65535&v)+(f>>>16),l=o>>>16,o&=65535,a=v>>>16;this.__setDigit(u,65535&y|f<<16)}if(0!==l||0!==o||0!==a)throw new Error("implementation bug")}},{key:"__inplaceAdd",value:function(e,t,_){for(var n,g=0,l=0;l<_;l++)n=this.__halfDigit(t+l)+e.__halfDigit(l)+g,g=n>>>16,this.__setHalfDigit(t+l,n);return g}},{key:"__inplaceSub",value:function(e,t,_){var n=0;if(1&t){t>>=1;for(var g=this.__digit(t),l=65535&g,o=0;o<_-1>>>1;o++){var a=e.__digit(o),s=(g>>>16)-(65535&a)-n;n=1&s>>>16,this.__setDigit(t+o,s<<16|65535&l),g=this.__digit(t+o+1),l=(65535&g)-(a>>>16)-n,n=1&l>>>16}var u=e.__digit(o),r=(g>>>16)-(65535&u)-n;n=1&r>>>16,this.__setDigit(t+o,r<<16|65535&l);if(t+o+1>=this.length)throw new RangeError("out of bounds");0==(1&_)&&(g=this.__digit(t+o+1),l=(65535&g)-(u>>>16)-n,n=1&l>>>16,this.__setDigit(t+e.length,4294901760&g|65535&l))}else{t>>=1;for(var d=0;d<e.length-1;d++){var h=this.__digit(t+d),b=e.__digit(d),m=(65535&h)-(65535&b)-n;n=1&m>>>16;var c=(h>>>16)-(b>>>16)-n;n=1&c>>>16,this.__setDigit(t+d,c<<16|65535&m)}var v=this.__digit(t+d),y=e.__digit(d),f=(65535&v)-(65535&y)-n;n=1&f>>>16;var k=0;0==(1&_)&&(k=(v>>>16)-(y>>>16)-n,n=1&k>>>16),this.__setDigit(t+d,k<<16|65535&f)}return n}},{key:"__inplaceRightShift",value:function(e){if(0!==e){for(var t,_=this.__digit(0)>>>e,n=this.length-1,g=0;g<n;g++)t=this.__digit(g+1),this.__setDigit(g,t<<32-e|_),_=t>>>e;this.__setDigit(n,_)}}},{key:"__digit",value:function(e){return this[e]}},{key:"__unsignedDigit",value:function(e){return this[e]>>>0}},{key:"__setDigit",value:function(e,t){this[e]=0|t}},{key:"__setDigitGrow",value:function(e,t){this[e]=0|t}},{key:"__halfDigitLength",value:function(){var e=this.length;return 65535>=this.__unsignedDigit(e-1)?2*e-1:2*e}},{key:"__halfDigit",value:function(e){return 65535&this[e>>>1]>>>((1&e)<<4)}},{key:"__setHalfDigit",value:function(e,t){var i=e>>>1,_=this.__digit(i),n=1&e?65535&_|t<<16:4294901760&_|65535&t;this.__setDigit(i,n)}}],[{key:"BigInt",value:function(t){var i=Math.floor,_=Number.isFinite;if("number"==typeof t){if(0===t)return l.__zero();if((0|t)===t)return 0>t?l.__oneDigit(-t,!0):l.__oneDigit(t,!1);if(!_(t)||i(t)!==t)throw new RangeError("The number "+t+" cannot be converted to BigInt because it is not an integer");return l.__fromDouble(t)}if("string"==typeof t){var n=l.__fromString(t);if(null===n)throw new SyntaxError("Cannot convert "+t+" to a BigInt");return n}if("boolean"==typeof t)return!0===t?l.__oneDigit(1,!1):l.__zero();if("object"===e(t)){if(t.constructor===l)return t;var g=l.__toPrimitive(t);return l.BigInt(g)}throw new TypeError("Cannot convert "+t+" to a BigInt")}},{key:"toNumber",value:function(e){var t=e.length;if(0===t)return 0;if(1===t){var i=e.__unsignedDigit(0);return e.sign?-i:i}var _=e.__digit(t-1),n=u(_),g=32*t-n;if(1024<g)return e.sign?-Infinity:1/0;var o=g-1,a=_,s=t-1,r=n+1,d=32===r?0:a<<r;d>>>=12;var h=r-12,b=12<=r?0:a<<20+r,m=20+r;0<h&&0<s&&(s--,a=e.__digit(s),d|=a>>>32-h,b=a<<h,m=h),0<m&&0<s&&(s--,a=e.__digit(s),b|=a>>>32-m,m-=32);var c=l.__decideRounding(e,m,s,a);if((1===c||0===c&&1==(1&b))&&(b=b+1>>>0,0===b&&(d++,0!=d>>>20&&(d=0,o++,1023<o))))return e.sign?-Infinity:1/0;var v=e.sign?-2147483648:0;return o=o+1023<<20,l.__kBitConversionInts[1]=v|o|d,l.__kBitConversionInts[0]=b,l.__kBitConversionDouble[0]}},{key:"unaryMinus",value:function(e){if(0===e.length)return e;var t=e.__copy();return t.sign=!e.sign,t}},{key:"bitwiseNot",value:function(e){return e.sign?l.__absoluteSubOne(e).__trim():l.__absoluteAddOne(e,!0)}},{key:"exponentiate",value:function(e,t){if(t.sign)throw new RangeError("Exponent must be positive");if(0===t.length)return l.__oneDigit(1,!1);if(0===e.length)return e;if(1===e.length&&1===e.__digit(0))return e.sign&&0==(1&t.__digit(0))?l.unaryMinus(e):e;if(1<t.length)throw new RangeError("BigInt too big");var i=t.__unsignedDigit(0);if(1===i)return e;if(i>=l.__kMaxLengthBits)throw new RangeError("BigInt too big");if(1===e.length&&2===e.__digit(0)){var _=1+(i>>>5),n=e.sign&&0!=(1&i),g=new l(_,n);g.__initializeDigits();var o=1<<(31&i);return g.__setDigit(_-1,o),g}var a=null,s=e;for(0!=(1&i)&&(a=e),i>>=1;0!==i;i>>=1)s=l.multiply(s,s),0!=(1&i)&&(null===a?a=s:a=l.multiply(a,s));return a}},{key:"multiply",value:function(e,t){if(0===e.length)return e;if(0===t.length)return t;var _=e.length+t.length;32<=e.__clzmsd()+t.__clzmsd()&&_--;var n=new l(_,e.sign!==t.sign);n.__initializeDigits();for(var g=0;g<e.length;g++)l.__multiplyAccumulate(t,e.__digit(g),n,g);return n.__trim()}},{key:"divide",value:function(e,t){if(0===t.length)throw new RangeError("Division by zero");if(0>l.__absoluteCompare(e,t))return l.__zero();var i,_=e.sign!==t.sign,n=t.__unsignedDigit(0);if(1===t.length&&65535>=n){if(1===n)return _===e.sign?e:l.unaryMinus(e);i=l.__absoluteDivSmall(e,n,null)}else i=l.__absoluteDivLarge(e,t,!0,!1);return i.sign=_,i.__trim()}},{key:"remainder",value:function e(t,i){if(0===i.length)throw new RangeError("Division by zero");if(0>l.__absoluteCompare(t,i))return t;var _=i.__unsignedDigit(0);if(1===i.length&&65535>=_){if(1===_)return l.__zero();var n=l.__absoluteModSmall(t,_);return 0===n?l.__zero():l.__oneDigit(n,t.sign)}var e=l.__absoluteDivLarge(t,i,!1,!0);return e.sign=t.sign,e.__trim()}},{key:"add",value:function(e,t){var i=e.sign;return i===t.sign?l.__absoluteAdd(e,t,i):0<=l.__absoluteCompare(e,t)?l.__absoluteSub(e,t,i):l.__absoluteSub(t,e,!i)}},{key:"subtract",value:function(e,t){var i=e.sign;return i===t.sign?0<=l.__absoluteCompare(e,t)?l.__absoluteSub(e,t,i):l.__absoluteSub(t,e,!i):l.__absoluteAdd(e,t,i)}},{key:"leftShift",value:function(e,t){return 0===t.length||0===e.length?e:t.sign?l.__rightShiftByAbsolute(e,t):l.__leftShiftByAbsolute(e,t)}},{key:"signedRightShift",value:function(e,t){return 0===t.length||0===e.length?e:t.sign?l.__leftShiftByAbsolute(e,t):l.__rightShiftByAbsolute(e,t)}},{key:"unsignedRightShift",value:function(){throw new TypeError("BigInts have no unsigned right shift; use >> instead")}},{key:"lessThan",value:function(e,t){return 0>l.__compareToBigInt(e,t)}},{key:"lessThanOrEqual",value:function(e,t){return 0>=l.__compareToBigInt(e,t)}},{key:"greaterThan",value:function(e,t){return 0<l.__compareToBigInt(e,t)}},{key:"greaterThanOrEqual",value:function(e,t){return 0<=l.__compareToBigInt(e,t)}},{key:"equal",value:function(e,t){if(e.sign!==t.sign)return!1;if(e.length!==t.length)return!1;for(var _=0;_<e.length;_++)if(e.__digit(_)!==t.__digit(_))return!1;return!0}},{key:"notEqual",value:function(e,t){return!l.equal(e,t)}},{key:"bitwiseAnd",value:function(e,t){if(!e.sign&&!t.sign)return l.__absoluteAnd(e,t).__trim();if(e.sign&&t.sign){var i=a(e.length,t.length)+1,_=l.__absoluteSubOne(e,i),n=l.__absoluteSubOne(t);return _=l.__absoluteOr(_,n,_),l.__absoluteAddOne(_,!0,_).__trim()}if(e.sign){var g=[t,e];e=g[0],t=g[1]}return l.__absoluteAndNot(e,l.__absoluteSubOne(t)).__trim()}},{key:"bitwiseXor",value:function(e,t){if(!e.sign&&!t.sign)return l.__absoluteXor(e,t).__trim();if(e.sign&&t.sign){var i=a(e.length,t.length),_=l.__absoluteSubOne(e,i),n=l.__absoluteSubOne(t);return l.__absoluteXor(_,n,_).__trim()}var g=a(e.length,t.length)+1;if(e.sign){var o=[t,e];e=o[0],t=o[1]}var s=l.__absoluteSubOne(t,g);return s=l.__absoluteXor(s,e,s),l.__absoluteAddOne(s,!0,s).__trim()}},{key:"bitwiseOr",value:function(e,t){var i=a(e.length,t.length);if(!e.sign&&!t.sign)return l.__absoluteOr(e,t).__trim();if(e.sign&&t.sign){var _=l.__absoluteSubOne(e,i),n=l.__absoluteSubOne(t);return _=l.__absoluteAnd(_,n,_),l.__absoluteAddOne(_,!0,_).__trim()}if(e.sign){var g=[t,e];e=g[0],t=g[1]}var o=l.__absoluteSubOne(t,i);return o=l.__absoluteAndNot(o,e,o),l.__absoluteAddOne(o,!0,o).__trim()}},{key:"asIntN",value:function(e,t){if(0===t.length)return t;if(0===e)return l.__zero();if(e>=l.__kMaxLengthBits)return t;var _=e+31>>>5;if(t.length<_)return t;var n=t.__unsignedDigit(_-1),g=1<<(31&e-1);if(t.length===_&&n<g)return t;if(!((n&g)===g))return l.__truncateToNBits(e,t);if(!t.sign)return l.__truncateAndSubFromPowerOfTwo(e,t,!0);if(0==(n&g-1)){for(var o=_-2;0<=o;o--)if(0!==t.__digit(o))return l.__truncateAndSubFromPowerOfTwo(e,t,!1);return t.length===_&&n===g?t:l.__truncateToNBits(e,t)}return l.__truncateAndSubFromPowerOfTwo(e,t,!1)}},{key:"asUintN",value:function(e,t){if(0===t.length)return t;if(0===e)return l.__zero();if(t.sign){if(e>l.__kMaxLengthBits)throw new RangeError("BigInt too big");return l.__truncateAndSubFromPowerOfTwo(e,t,!1)}if(e>=l.__kMaxLengthBits)return t;var i=e+31>>>5;if(t.length<i)return t;var _=31&e;if(t.length==i){if(0==_)return t;var n=t.__digit(i-1);if(0==n>>>_)return t}return l.__truncateToNBits(e,t)}},{key:"ADD",value:function(e,t){if(e=l.__toPrimitive(e),t=l.__toPrimitive(t),"string"==typeof e)return"string"!=typeof t&&(t=t.toString()),e+t;if("string"==typeof t)return e.toString()+t;if(e=l.__toNumeric(e),t=l.__toNumeric(t),l.__isBigInt(e)&&l.__isBigInt(t))return l.add(e,t);if("number"==typeof e&&"number"==typeof t)return e+t;throw new TypeError("Cannot mix BigInt and other types, use explicit conversions")}},{key:"LT",value:function(e,t){return l.__compare(e,t,0)}},{key:"LE",value:function(e,t){return l.__compare(e,t,1)}},{key:"GT",value:function(e,t){return l.__compare(e,t,2)}},{key:"GE",value:function(e,t){return l.__compare(e,t,3)}},{key:"EQ",value:function(t,i){for(;;){if(l.__isBigInt(t))return l.__isBigInt(i)?l.equal(t,i):l.EQ(i,t);if("number"==typeof t){if(l.__isBigInt(i))return l.__equalToNumber(i,t);if("object"!==e(i))return t==i;i=l.__toPrimitive(i)}else if("string"==typeof t){if(l.__isBigInt(i))return t=l.__fromString(t),null!==t&&l.equal(t,i);if("object"!==e(i))return t==i;i=l.__toPrimitive(i)}else if("boolean"==typeof t){if(l.__isBigInt(i))return l.__equalToNumber(i,+t);if("object"!==e(i))return t==i;i=l.__toPrimitive(i)}else if("symbol"===e(t)){if(l.__isBigInt(i))return!1;if("object"!==e(i))return t==i;i=l.__toPrimitive(i)}else if("object"===e(t)){if("object"===e(i)&&i.constructor!==l)return t==i;t=l.__toPrimitive(t)}else return t==i}}},{key:"NE",value:function(e,t){return!l.EQ(e,t)}},{key:"__zero",value:function(){return new l(0,!1)}},{key:"__oneDigit",value:function(e,t){var i=new l(1,t);return i.__setDigit(0,e),i}},{key:"__decideRounding",value:function(e,t,i,_){if(0<t)return-1;var n;if(0>t)n=-t-1;else{if(0===i)return-1;i--,_=e.__digit(i),n=31}var g=1<<n;if(0==(_&g))return-1;if(g-=1,0!=(_&g))return 1;for(;0<i;)if(i--,0!==e.__digit(i))return 1;return 0}},{key:"__fromDouble",value:function(e){l.__kBitConversionDouble[0]=e;var t,i=2047&l.__kBitConversionInts[1]>>>20,_=i-1023,n=(_>>>5)+1,g=new l(n,0>e),o=1048575&l.__kBitConversionInts[1]|1048576,a=l.__kBitConversionInts[0],s=20,u=31&_,r=0;if(u<s){var d=s-u;r=d+32,t=o>>>d,o=o<<32-d|a>>>d,a<<=32-d}else if(u===s)r=32,t=o,o=a;else{var h=u-s;r=32-h,t=o<<h|a>>>32-h,o=a<<h}g.__setDigit(n-1,t);for(var b=n-2;0<=b;b--)0<r?(r-=32,t=o,o=a):t=0,g.__setDigit(b,t);return g.__trim()}},{key:"__isWhitespace",value:function(e){return!!(13>=e&&9<=e)||(159>=e?32==e:131071>=e?160==e||5760==e:196607>=e?(e&=131071,10>=e||40==e||41==e||47==e||95==e||4096==e):65279==e)}},{key:"__fromString",value:function(e){var t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:0,i=0,_=e.length,n=0;if(n===_)return l.__zero();for(var g=e.charCodeAt(n);l.__isWhitespace(g);){if(++n===_)return l.__zero();g=e.charCodeAt(n)}if(43===g){if(++n===_)return null;g=e.charCodeAt(n),i=1}else if(45===g){if(++n===_)return null;g=e.charCodeAt(n),i=-1}if(0===t){if(t=10,48===g){if(++n===_)return l.__zero();if(g=e.charCodeAt(n),88===g||120===g){if(t=16,++n===_)return null;g=e.charCodeAt(n)}else if(79===g||111===g){if(t=8,++n===_)return null;g=e.charCodeAt(n)}else if(66===g||98===g){if(t=2,++n===_)return null;g=e.charCodeAt(n)}}}else if(16===t&&48===g){if(++n===_)return l.__zero();if(g=e.charCodeAt(n),88===g||120===g){if(++n===_)return null;g=e.charCodeAt(n)}}for(;48===g;){if(++n===_)return l.__zero();g=e.charCodeAt(n)}var o=_-n,a=l.__kMaxBitsPerChar[t],s=l.__kBitsPerCharTableMultiplier-1;if(o>1073741824/a)return null;var u=a*o+s>>>l.__kBitsPerCharTableShift,r=new l(u+31>>>5,!1),h=10>t?t:10,b=10<t?t-10:0;if(0==(t&t-1)){a>>=l.__kBitsPerCharTableShift;var c=[],v=[],y=!1;do{for(var f,k=0,D=0;;){if(f=void 0,g-48>>>0<h)f=g-48;else if((32|g)-97>>>0<b)f=(32|g)-87;else{y=!0;break}if(D+=a,k=k<<a|f,++n===_){y=!0;break}if(g=e.charCodeAt(n),32<D+a)break}c.push(k),v.push(D)}while(!y);l.__fillFromParts(r,c,v)}else{r.__initializeDigits();var p=!1,B=0;do{for(var S,C=0,A=1;;){if(S=void 0,g-48>>>0<h)S=g-48;else if((32|g)-97>>>0<b)S=(32|g)-87;else{p=!0;break}var T=A*t;if(4294967295<T)break;if(A=T,C=C*t+S,B++,++n===_){p=!0;break}g=e.charCodeAt(n)}s=32*l.__kBitsPerCharTableMultiplier-1;var m=a*B+s>>>l.__kBitsPerCharTableShift+5;r.__inplaceMultiplyAdd(A,C,m)}while(!p)}for(;n!==_;){if(!l.__isWhitespace(g))return null;g=e.charCodeAt(n++)}return 0!==i&&10!==t?null:(r.sign=-1===i,r.__trim())}},{key:"__fillFromParts",value:function(e,t,_){for(var n=0,g=0,l=0,o=t.length-1;0<=o;o--){var a=t[o],s=_[o];g|=a<<l,l+=s,32===l?(e.__setDigit(n++,g),l=0,g=0):32<l&&(e.__setDigit(n++,g),l-=32,g=a>>>s-l)}if(0!==g){if(n>=e.length)throw new Error("implementation bug");e.__setDigit(n++,g)}for(;n<e.length;n++)e.__setDigit(n,0)}},{key:"__toStringBasePowerOfTwo",value:function(e,t){var _=e.length,n=t-1;n=(85&n>>>1)+(85&n),n=(51&n>>>2)+(51&n),n=(15&n>>>4)+(15&n);var g=n,o=t-1,a=e.__digit(_-1),s=u(a),r=0|(32*_-s+g-1)/g;if(e.sign&&r++,268435456<r)throw new Error("string too long");for(var d=Array(r),h=r-1,b=0,m=0,c=0;c<_-1;c++){var v=e.__digit(c),y=(b|v<<m)&o;d[h--]=l.__kConversionChars[y];var f=g-m;for(b=v>>>f,m=32-f;m>=g;)d[h--]=l.__kConversionChars[b&o],b>>>=g,m-=g}var k=(b|a<<m)&o;for(d[h--]=l.__kConversionChars[k],b=a>>>g-m;0!==b;)d[h--]=l.__kConversionChars[b&o],b>>>=g;if(e.sign&&(d[h--]="-"),-1!==h)throw new Error("implementation bug");return d.join("")}},{key:"__toStringGeneric",value:function(e,t,_){var n=e.length;if(0===n)return"";if(1===n){var g=e.__unsignedDigit(0).toString(t);return!1===_&&e.sign&&(g="-"+g),g}var o=32*n-u(e.__digit(n-1)),a=l.__kMaxBitsPerChar[t],s=a-1,r=o*l.__kBitsPerCharTableMultiplier;r+=s-1,r=0|r/s;var d,h,b=r+1>>1,m=l.exponentiate(l.__oneDigit(t,!1),l.__oneDigit(b,!1)),c=m.__unsignedDigit(0);if(1===m.length&&65535>=c){d=new l(e.length,!1),d.__initializeDigits();for(var v,y=0,f=2*e.length-1;0<=f;f--)v=y<<16|e.__halfDigit(f),d.__setHalfDigit(f,0|v/c),y=0|v%c;h=y.toString(t)}else{var k=l.__absoluteDivLarge(e,m,!0,!0);d=k.quotient;var D=k.remainder.__trim();h=l.__toStringGeneric(D,t,!0)}d.__trim();for(var p=l.__toStringGeneric(d,t,!0);h.length<b;)h="0"+h;return!1===_&&e.sign&&(p="-"+p),p+h}},{key:"__unequalSign",value:function(e){return e?-1:1}},{key:"__absoluteGreater",value:function(e){return e?-1:1}},{key:"__absoluteLess",value:function(e){return e?1:-1}},{key:"__compareToBigInt",value:function(e,t){var i=e.sign;if(i!==t.sign)return l.__unequalSign(i);var _=l.__absoluteCompare(e,t);return 0<_?l.__absoluteGreater(i):0>_?l.__absoluteLess(i):0}},{key:"__compareToNumber",value:function(e,t){if(!0|t){var i=e.sign,_=0>t;if(i!==_)return l.__unequalSign(i);if(0===e.length){if(_)throw new Error("implementation bug");return 0===t?0:-1}if(1<e.length)return l.__absoluteGreater(i);var n=o(t),g=e.__unsignedDigit(0);return g>n?l.__absoluteGreater(i):g<n?l.__absoluteLess(i):0}return l.__compareToDouble(e,t)}},{key:"__compareToDouble",value:function(e,t){if(t!==t)return t;if(t===1/0)return-1;if(t===-Infinity)return 1;var i=e.sign;if(i!==0>t)return l.__unequalSign(i);if(0===t)throw new Error("implementation bug: should be handled elsewhere");if(0===e.length)return-1;l.__kBitConversionDouble[0]=t;var _=2047&l.__kBitConversionInts[1]>>>20;if(2047==_)throw new Error("implementation bug: handled elsewhere");var n=_-1023;if(0>n)return l.__absoluteGreater(i);var g=e.length,o=e.__digit(g-1),a=u(o),s=32*g-a,r=n+1;if(s<r)return l.__absoluteLess(i);if(s>r)return l.__absoluteGreater(i);var d=1048576|1048575&l.__kBitConversionInts[1],h=l.__kBitConversionInts[0],b=20,m=31-a;if(m!==(s-1)%31)throw new Error("implementation bug");var c,v=0;if(m<b){var y=b-m;v=y+32,c=d>>>y,d=d<<32-y|h>>>y,h<<=32-y}else if(m===b)v=32,c=d,d=h;else{var f=m-b;v=32-f,c=d<<f|h>>>32-f,d=h<<f}if(o>>>=0,c>>>=0,o>c)return l.__absoluteGreater(i);if(o<c)return l.__absoluteLess(i);for(var k=g-2;0<=k;k--){0<v?(v-=32,c=d>>>0,d=h,h=0):c=0;var D=e.__unsignedDigit(k);if(D>c)return l.__absoluteGreater(i);if(D<c)return l.__absoluteLess(i)}if(0!==d||0!==h){if(0===v)throw new Error("implementation bug");return l.__absoluteLess(i)}return 0}},{key:"__equalToNumber",value:function(e,t){return t|0===t?0===t?0===e.length:1===e.length&&e.sign===0>t&&e.__unsignedDigit(0)===o(t):0===l.__compareToDouble(e,t)}},{key:"__comparisonResultToBool",value:function(e,t){switch(t){case 0:return 0>e;case 1:return 0>=e;case 2:return 0<e;case 3:return 0<=e;}throw new Error("unreachable")}},{key:"__compare",value:function(e,t,i){if(e=l.__toPrimitive(e),t=l.__toPrimitive(t),"string"==typeof e&&"string"==typeof t)switch(i){case 0:return e<t;case 1:return e<=t;case 2:return e>t;case 3:return e>=t;}if(l.__isBigInt(e)&&"string"==typeof t)return t=l.__fromString(t),null!==t&&l.__comparisonResultToBool(l.__compareToBigInt(e,t),i);if("string"==typeof e&&l.__isBigInt(t))return e=l.__fromString(e),null!==e&&l.__comparisonResultToBool(l.__compareToBigInt(e,t),i);if(e=l.__toNumeric(e),t=l.__toNumeric(t),l.__isBigInt(e)){if(l.__isBigInt(t))return l.__comparisonResultToBool(l.__compareToBigInt(e,t),i);if("number"!=typeof t)throw new Error("implementation bug");return l.__comparisonResultToBool(l.__compareToNumber(e,t),i)}if("number"!=typeof e)throw new Error("implementation bug");if(l.__isBigInt(t))return l.__comparisonResultToBool(l.__compareToNumber(t,e),2^i);if("number"!=typeof t)throw new Error("implementation bug");return 0===i?e<t:1===i?e<=t:2===i?e>t:3===i?e>=t:void 0}},{key:"__absoluteAdd",value:function(e,t,_){if(e.length<t.length)return l.__absoluteAdd(t,e,_);if(0===e.length)return e;if(0===t.length)return e.sign===_?e:l.unaryMinus(e);var n=e.length;(0===e.__clzmsd()||t.length===e.length&&0===t.__clzmsd())&&n++;for(var g=new l(n,_),o=0,a=0;a<t.length;a++){var s=t.__digit(a),u=e.__digit(a),r=(65535&u)+(65535&s)+o,d=(u>>>16)+(s>>>16)+(r>>>16);o=d>>>16,g.__setDigit(a,65535&r|d<<16)}for(;a<e.length;a++){var h=e.__digit(a),b=(65535&h)+o,m=(h>>>16)+(b>>>16);o=m>>>16,g.__setDigit(a,65535&b|m<<16)}return a<g.length&&g.__setDigit(a,o),g.__trim()}},{key:"__absoluteSub",value:function(e,t,_){if(0===e.length)return e;if(0===t.length)return e.sign===_?e:l.unaryMinus(e);for(var n=new l(e.length,_),g=0,o=0;o<t.length;o++){var a=e.__digit(o),s=t.__digit(o),u=(65535&a)-(65535&s)-g;g=1&u>>>16;var r=(a>>>16)-(s>>>16)-g;g=1&r>>>16,n.__setDigit(o,65535&u|r<<16)}for(;o<e.length;o++){var d=e.__digit(o),h=(65535&d)-g;g=1&h>>>16;var b=(d>>>16)-g;g=1&b>>>16,n.__setDigit(o,65535&h|b<<16)}return n.__trim()}},{key:"__absoluteAddOne",value:function(e,t){var _=2<arguments.length&&void 0!==arguments[2]?arguments[2]:null,n=e.length;null===_?_=new l(n,t):_.sign=t;for(var g=!0,o=0;o<n;o++){var a=e.__digit(o),s=-1===a;g&&(a=0|a+1),g=s,_.__setDigit(o,a)}return g&&_.__setDigitGrow(n,1),_}},{key:"__absoluteSubOne",value:function(e,t){var _=e.length;t=t||_;for(var n=new l(t,!1),g=!0,o=0;o<_;o++){var a=e.__digit(o),s=0===a;g&&(a=0|a-1),g=s,n.__setDigit(o,a)}for(var u=_;u<t;u++)n.__setDigit(u,0);return n}},{key:"__absoluteAnd",value:function(e,t){var _=2<arguments.length&&void 0!==arguments[2]?arguments[2]:null,n=e.length,g=t.length,o=g;if(n<g){o=n;var a=e,s=n;e=t,n=g,t=a,g=s}var u=o;null===_?_=new l(u,!1):u=_.length;for(var r=0;r<o;r++)_.__setDigit(r,e.__digit(r)&t.__digit(r));for(;r<u;r++)_.__setDigit(r,0);return _}},{key:"__absoluteAndNot",value:function(e,t){var _=2<arguments.length&&void 0!==arguments[2]?arguments[2]:null,n=e.length,g=t.length,o=g;n<g&&(o=n);var a=n;null===_?_=new l(a,!1):a=_.length;for(var s=0;s<o;s++)_.__setDigit(s,e.__digit(s)&~t.__digit(s));for(;s<n;s++)_.__setDigit(s,e.__digit(s));for(;s<a;s++)_.__setDigit(s,0);return _}},{key:"__absoluteOr",value:function(e,t){var _=2<arguments.length&&void 0!==arguments[2]?arguments[2]:null,n=e.length,g=t.length,o=g;if(n<g){o=n;var a=e,s=n;e=t,n=g,t=a,g=s}var u=n;null===_?_=new l(u,!1):u=_.length;for(var r=0;r<o;r++)_.__setDigit(r,e.__digit(r)|t.__digit(r));for(;r<n;r++)_.__setDigit(r,e.__digit(r));for(;r<u;r++)_.__setDigit(r,0);return _}},{key:"__absoluteXor",value:function(e,t){var _=2<arguments.length&&void 0!==arguments[2]?arguments[2]:null,n=e.length,g=t.length,o=g;if(n<g){o=n;var a=e,s=n;e=t,n=g,t=a,g=s}var u=n;null===_?_=new l(u,!1):u=_.length;for(var r=0;r<o;r++)_.__setDigit(r,e.__digit(r)^t.__digit(r));for(;r<n;r++)_.__setDigit(r,e.__digit(r));for(;r<u;r++)_.__setDigit(r,0);return _}},{key:"__absoluteCompare",value:function(e,t){var _=e.length-t.length;if(0!=_)return _;for(var n=e.length-1;0<=n&&e.__digit(n)===t.__digit(n);)n--;return 0>n?0:e.__unsignedDigit(n)>t.__unsignedDigit(n)?1:-1}},{key:"__multiplyAccumulate",value:function(e,t,_,n){if(0!==t){for(var g=65535&t,l=t>>>16,o=0,a=0,u=0,r=0;r<e.length;r++,n++){var d=_.__digit(n),h=65535&d,b=d>>>16,m=e.__digit(r),c=65535&m,v=m>>>16,y=s(c,g),f=s(c,l),k=s(v,g),D=s(v,l);h+=a+(65535&y),b+=u+o+(h>>>16)+(y>>>16)+(65535&f)+(65535&k),o=b>>>16,a=(f>>>16)+(k>>>16)+(65535&D)+o,o=a>>>16,a&=65535,u=D>>>16,d=65535&h|b<<16,_.__setDigit(n,d)}for(;0!==o||0!==a||0!==u;n++){var p=_.__digit(n),B=(65535&p)+a,S=(p>>>16)+(B>>>16)+u+o;a=0,u=0,o=S>>>16,p=65535&B|S<<16,_.__setDigit(n,p)}}}},{key:"__internalMultiplyAdd",value:function(e,t,_,g,l){for(var o=_,a=0,u=0;u<g;u++){var r=e.__digit(u),d=s(65535&r,t),h=(65535&d)+a+o;o=h>>>16;var b=s(r>>>16,t),m=(65535&b)+(d>>>16)+o;o=m>>>16,a=b>>>16,l.__setDigit(u,m<<16|65535&h)}if(l.length>g)for(l.__setDigit(g++,o+a);g<l.length;)l.__setDigit(g++,0);else if(0!==o+a)throw new Error("implementation bug")}},{key:"__absoluteDivSmall",value:function(e,t,_){null===_&&(_=new l(e.length,!1));for(var n=0,g=2*e.length-1;0<=g;g-=2){var o=(n<<16|e.__halfDigit(g))>>>0,a=0|o/t;n=0|o%t,o=(n<<16|e.__halfDigit(g-1))>>>0;var s=0|o/t;n=0|o%t,_.__setDigit(g>>>1,a<<16|s)}return _}},{key:"__absoluteModSmall",value:function(e,t){for(var _,n=0,g=2*e.length-1;0<=g;g--)_=(n<<16|e.__halfDigit(g))>>>0,n=0|_%t;return n}},{key:"__absoluteDivLarge",value:function(e,t,i,_){var g=t.__halfDigitLength(),n=t.length,o=e.__halfDigitLength()-g,a=null;i&&(a=new l(o+2>>>1,!1),a.__initializeDigits());var r=new l(g+2>>>1,!1);r.__initializeDigits();var d=l.__clz16(t.__halfDigit(g-1));0<d&&(t=l.__specialLeftShift(t,d,0));for(var h=l.__specialLeftShift(e,d,1),u=t.__halfDigit(g-1),b=0,m=o;0<=m;m--){var v=65535,y=h.__halfDigit(m+g);if(y!==u){var f=(y<<16|h.__halfDigit(m+g-1))>>>0;v=0|f/u;for(var k=0|f%u,D=t.__halfDigit(g-2),p=h.__halfDigit(m+g-2);s(v,D)>>>0>(k<<16|p)>>>0&&(v--,k+=u,!(65535<k)););}l.__internalMultiplyAdd(t,v,0,n,r);var B=h.__inplaceSub(r,m,g+1);0!==B&&(B=h.__inplaceAdd(t,m,g),h.__setHalfDigit(m+g,h.__halfDigit(m+g)+B),v--),i&&(1&m?b=v<<16:a.__setDigit(m>>>1,b|v))}return _?(h.__inplaceRightShift(d),i?{quotient:a,remainder:h}:h):i?a:void 0}},{key:"__clz16",value:function(e){return u(e)-16}},{key:"__specialLeftShift",value:function(e,t,_){var g=e.length,n=new l(g+_,!1);if(0===t){for(var o=0;o<g;o++)n.__setDigit(o,e.__digit(o));return 0<_&&n.__setDigit(g,0),n}for(var a,s=0,u=0;u<g;u++)a=e.__digit(u),n.__setDigit(u,a<<t|s),s=a>>>32-t;return 0<_&&n.__setDigit(g,s),n}},{key:"__leftShiftByAbsolute",value:function(e,t){var _=l.__toShiftAmount(t);if(0>_)throw new RangeError("BigInt too big");var n=_>>>5,g=31&_,o=e.length,a=0!==g&&0!=e.__digit(o-1)>>>32-g,s=o+n+(a?1:0),u=new l(s,e.sign);if(0===g){for(var r=0;r<n;r++)u.__setDigit(r,0);for(;r<s;r++)u.__setDigit(r,e.__digit(r-n))}else{for(var h=0,b=0;b<n;b++)u.__setDigit(b,0);for(var m,c=0;c<o;c++)m=e.__digit(c),u.__setDigit(c+n,m<<g|h),h=m>>>32-g;if(a)u.__setDigit(o+n,h);else if(0!==h)throw new Error("implementation bug")}return u.__trim()}},{key:"__rightShiftByAbsolute",value:function(e,t){var _=e.length,n=e.sign,g=l.__toShiftAmount(t);if(0>g)return l.__rightShiftByMaximum(n);var o=g>>>5,a=31&g,s=_-o;if(0>=s)return l.__rightShiftByMaximum(n);var u=!1;if(n){if(0!=(e.__digit(o)&(1<<a)-1))u=!0;else for(var r=0;r<o;r++)if(0!==e.__digit(r)){u=!0;break}}if(u&&0===a){var h=e.__digit(_-1);0==~h&&s++}var b=new l(s,n);if(0===a)for(var m=o;m<_;m++)b.__setDigit(m-o,e.__digit(m));else{for(var c,v=e.__digit(o)>>>a,y=_-o-1,f=0;f<y;f++)c=e.__digit(f+o+1),b.__setDigit(f,c<<32-a|v),v=c>>>a;b.__setDigit(y,v)}return u&&(b=l.__absoluteAddOne(b,!0,b)),b.__trim()}},{key:"__rightShiftByMaximum",value:function(e){return e?l.__oneDigit(1,!0):l.__zero()}},{key:"__toShiftAmount",value:function(e){if(1<e.length)return-1;var t=e.__unsignedDigit(0);return t>l.__kMaxLengthBits?-1:t}},{key:"__toPrimitive",value:function(t){var i=1<arguments.length&&void 0!==arguments[1]?arguments[1]:"default";if("object"!==e(t))return t;if(t.constructor===l)return t;var _=t[Symbol.toPrimitive];if(_){var n=_(i);if("object"!==e(n))return n;throw new TypeError("Cannot convert object to primitive value")}var g=t.valueOf;if(g){var o=g.call(t);if("object"!==e(o))return o}var a=t.toString;if(a){var s=a.call(t);if("object"!==e(s))return s}throw new TypeError("Cannot convert object to primitive value")}},{key:"__toNumeric",value:function(e){return l.__isBigInt(e)?e:+e}},{key:"__isBigInt",value:function(t){return"object"===e(t)&&t.constructor===l}},{key:"__truncateToNBits",value:function(e,t){for(var _=e+31>>>5,n=new l(_,t.sign),g=_-1,o=0;o<g;o++)n.__setDigit(o,t.__digit(o));var a=t.__digit(g);if(0!=(31&e)){var s=32-(31&e);a=a<<s>>>s}return n.__setDigit(g,a),n.__trim()}},{key:"__truncateAndSubFromPowerOfTwo",value:function(e,t,_){for(var n=Math.min,g=e+31>>>5,o=new l(g,_),a=0,s=g-1,u=0,r=n(s,t.length);a<r;a++){var d=t.__digit(a),h=0-(65535&d)-u;u=1&h>>>16;var b=0-(d>>>16)-u;u=1&b>>>16,o.__setDigit(a,65535&h|b<<16)}for(;a<s;a++)o.__setDigit(a,0|-u);var m,c=s<t.length?t.__digit(s):0,v=31&e;if(0===v){var y=0-(65535&c)-u;u=1&y>>>16;var f=0-(c>>>16)-u;m=65535&y|f<<16}else{var k=32-v;c=c<<k>>>k;var D=1<<32-k,p=(65535&D)-(65535&c)-u;u=1&p>>>16;var B=(D>>>16)-(c>>>16)-u;m=65535&p|B<<16,m&=D-1}return o.__setDigit(s,m),o.__trim()}},{key:"__digitPow",value:function(e,t){for(var i=1;0<t;)1&t&&(i*=e),t>>>=1,e*=e;return i}}]),l}(u(Array));return h.__kMaxLength=33554432,h.__kMaxLengthBits=h.__kMaxLength<<5,h.__kMaxBitsPerChar=[0,0,32,51,64,75,83,90,96,102,107,111,115,119,122,126,128,131,134,136,139,141,143,145,147,149,151,153,154,156,158,159,160,162,163,165,166],h.__kBitsPerCharTableShift=5,h.__kBitsPerCharTableMultiplier=1<<h.__kBitsPerCharTableShift,h.__kConversionChars=["0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z"],h.__kBitConversionBuffer=new ArrayBuffer(8),h.__kBitConversionDouble=new Float64Array(h.__kBitConversionBuffer),h.__kBitConversionInts=new Int32Array(h.__kBitConversionBuffer),h});
|
|
21701
22186
|
|
|
21702
22187
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/jsbi/dist/jsbi-umd.js","/node_modules/jsbi/dist")
|
|
21703
|
-
},{"_process":
|
|
22188
|
+
},{"_process":131,"buffer":121,"timers":152}],129:[function(require,module,exports){
|
|
21704
22189
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
21705
22190
|
/*! JSON v3.3.2 | http://bestiejs.github.io/json3 | Copyright 2012-2014, Kit Cambridge | http://kit.mit-license.org */
|
|
21706
22191
|
;(function () {
|
|
@@ -22606,7 +23091,7 @@ if (typeof Object.create === 'function') {
|
|
|
22606
23091
|
}).call(this);
|
|
22607
23092
|
|
|
22608
23093
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/json3/lib/json3.js","/node_modules/json3/lib")
|
|
22609
|
-
},{"_process":
|
|
23094
|
+
},{"_process":131,"buffer":121,"timers":152}],130:[function(require,module,exports){
|
|
22610
23095
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
22611
23096
|
'use strict';
|
|
22612
23097
|
|
|
@@ -22654,7 +23139,7 @@ function nextTick(fn, arg1, arg2, arg3) {
|
|
|
22654
23139
|
|
|
22655
23140
|
|
|
22656
23141
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/process-nextick-args/index.js","/node_modules/process-nextick-args")
|
|
22657
|
-
},{"_process":
|
|
23142
|
+
},{"_process":131,"buffer":121,"timers":152}],131:[function(require,module,exports){
|
|
22658
23143
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
22659
23144
|
// shim for using process in browser
|
|
22660
23145
|
var process = module.exports = {};
|
|
@@ -22842,7 +23327,7 @@ process.chdir = function (dir) {
|
|
|
22842
23327
|
process.umask = function() { return 0; };
|
|
22843
23328
|
|
|
22844
23329
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/process/browser.js","/node_modules/process")
|
|
22845
|
-
},{"_process":
|
|
23330
|
+
},{"_process":131,"buffer":121,"timers":152}],132:[function(require,module,exports){
|
|
22846
23331
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
22847
23332
|
/*! https://mths.be/punycode v1.4.1 by @mathias */
|
|
22848
23333
|
;(function(root) {
|
|
@@ -23379,7 +23864,7 @@ process.umask = function() { return 0; };
|
|
|
23379
23864
|
}(this));
|
|
23380
23865
|
|
|
23381
23866
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/punycode/punycode.js","/node_modules/punycode")
|
|
23382
|
-
},{"_process":
|
|
23867
|
+
},{"_process":131,"buffer":121,"timers":152}],133:[function(require,module,exports){
|
|
23383
23868
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
23384
23869
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
23385
23870
|
//
|
|
@@ -23467,7 +23952,7 @@ var isArray = Array.isArray || function (xs) {
|
|
|
23467
23952
|
};
|
|
23468
23953
|
|
|
23469
23954
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/querystring-es3/decode.js","/node_modules/querystring-es3")
|
|
23470
|
-
},{"_process":
|
|
23955
|
+
},{"_process":131,"buffer":121,"timers":152}],134:[function(require,module,exports){
|
|
23471
23956
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
23472
23957
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
23473
23958
|
//
|
|
@@ -23556,7 +24041,7 @@ var objectKeys = Object.keys || function (obj) {
|
|
|
23556
24041
|
};
|
|
23557
24042
|
|
|
23558
24043
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/querystring-es3/encode.js","/node_modules/querystring-es3")
|
|
23559
|
-
},{"_process":
|
|
24044
|
+
},{"_process":131,"buffer":121,"timers":152}],135:[function(require,module,exports){
|
|
23560
24045
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
23561
24046
|
'use strict';
|
|
23562
24047
|
|
|
@@ -23564,7 +24049,7 @@ exports.decode = exports.parse = require('./decode');
|
|
|
23564
24049
|
exports.encode = exports.stringify = require('./encode');
|
|
23565
24050
|
|
|
23566
24051
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/querystring-es3/index.js","/node_modules/querystring-es3")
|
|
23567
|
-
},{"./decode":
|
|
24052
|
+
},{"./decode":133,"./encode":134,"_process":131,"buffer":121,"timers":152}],136:[function(require,module,exports){
|
|
23568
24053
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
23569
24054
|
/* eslint-disable node/no-deprecated-api */
|
|
23570
24055
|
var buffer = require('buffer')
|
|
@@ -23630,7 +24115,7 @@ SafeBuffer.allocUnsafeSlow = function (size) {
|
|
|
23630
24115
|
}
|
|
23631
24116
|
|
|
23632
24117
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/safe-buffer/index.js","/node_modules/safe-buffer")
|
|
23633
|
-
},{"_process":
|
|
24118
|
+
},{"_process":131,"buffer":121,"timers":152}],137:[function(require,module,exports){
|
|
23634
24119
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
23635
24120
|
var ClientRequest = require('./lib/request')
|
|
23636
24121
|
var response = require('./lib/response')
|
|
@@ -23718,7 +24203,7 @@ http.METHODS = [
|
|
|
23718
24203
|
'UNSUBSCRIBE'
|
|
23719
24204
|
]
|
|
23720
24205
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/stream-http/index.js","/node_modules/stream-http")
|
|
23721
|
-
},{"./lib/request":
|
|
24206
|
+
},{"./lib/request":139,"./lib/response":140,"_process":131,"buffer":121,"builtin-status-codes":122,"timers":152,"url":154,"xtend":158}],138:[function(require,module,exports){
|
|
23722
24207
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
23723
24208
|
exports.fetch = isFunction(global.fetch) && isFunction(global.ReadableStream)
|
|
23724
24209
|
|
|
@@ -23795,7 +24280,7 @@ function isFunction (value) {
|
|
|
23795
24280
|
xhr = null // Help gc
|
|
23796
24281
|
|
|
23797
24282
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/stream-http/lib/capability.js","/node_modules/stream-http/lib")
|
|
23798
|
-
},{"_process":
|
|
24283
|
+
},{"_process":131,"buffer":121,"timers":152}],139:[function(require,module,exports){
|
|
23799
24284
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
23800
24285
|
var capability = require('./capability')
|
|
23801
24286
|
var inherits = require('inherits')
|
|
@@ -24126,7 +24611,7 @@ var unsafeHeaders = [
|
|
|
24126
24611
|
]
|
|
24127
24612
|
|
|
24128
24613
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/stream-http/lib/request.js","/node_modules/stream-http/lib")
|
|
24129
|
-
},{"./capability":
|
|
24614
|
+
},{"./capability":138,"./response":140,"_process":131,"buffer":121,"inherits":127,"readable-stream":150,"timers":152,"to-arraybuffer":153}],140:[function(require,module,exports){
|
|
24130
24615
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
24131
24616
|
var capability = require('./capability')
|
|
24132
24617
|
var inherits = require('inherits')
|
|
@@ -24354,7 +24839,7 @@ IncomingMessage.prototype._onXHRProgress = function () {
|
|
|
24354
24839
|
}
|
|
24355
24840
|
|
|
24356
24841
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/stream-http/lib/response.js","/node_modules/stream-http/lib")
|
|
24357
|
-
},{"./capability":
|
|
24842
|
+
},{"./capability":138,"_process":131,"buffer":121,"inherits":127,"readable-stream":150,"timers":152}],141:[function(require,module,exports){
|
|
24358
24843
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
24359
24844
|
var toString = {}.toString;
|
|
24360
24845
|
|
|
@@ -24363,7 +24848,7 @@ module.exports = Array.isArray || function (arr) {
|
|
|
24363
24848
|
};
|
|
24364
24849
|
|
|
24365
24850
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/stream-http/node_modules/isarray/index.js","/node_modules/stream-http/node_modules/isarray")
|
|
24366
|
-
},{"_process":
|
|
24851
|
+
},{"_process":131,"buffer":121,"timers":152}],142:[function(require,module,exports){
|
|
24367
24852
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
24368
24853
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
24369
24854
|
//
|
|
@@ -24497,7 +24982,7 @@ Duplex.prototype._destroy = function (err, cb) {
|
|
|
24497
24982
|
pna.nextTick(cb, err);
|
|
24498
24983
|
};
|
|
24499
24984
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/stream-http/node_modules/readable-stream/lib/_stream_duplex.js","/node_modules/stream-http/node_modules/readable-stream/lib")
|
|
24500
|
-
},{"./_stream_readable":
|
|
24985
|
+
},{"./_stream_readable":144,"./_stream_writable":146,"_process":131,"buffer":121,"core-util-is":123,"inherits":127,"process-nextick-args":130,"timers":152}],143:[function(require,module,exports){
|
|
24501
24986
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
24502
24987
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
24503
24988
|
//
|
|
@@ -24547,7 +25032,7 @@ PassThrough.prototype._transform = function (chunk, encoding, cb) {
|
|
|
24547
25032
|
cb(null, chunk);
|
|
24548
25033
|
};
|
|
24549
25034
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/stream-http/node_modules/readable-stream/lib/_stream_passthrough.js","/node_modules/stream-http/node_modules/readable-stream/lib")
|
|
24550
|
-
},{"./_stream_transform":
|
|
25035
|
+
},{"./_stream_transform":145,"_process":131,"buffer":121,"core-util-is":123,"inherits":127,"timers":152}],144:[function(require,module,exports){
|
|
24551
25036
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
24552
25037
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
24553
25038
|
//
|
|
@@ -25569,7 +26054,7 @@ function indexOf(xs, x) {
|
|
|
25569
26054
|
return -1;
|
|
25570
26055
|
}
|
|
25571
26056
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/stream-http/node_modules/readable-stream/lib/_stream_readable.js","/node_modules/stream-http/node_modules/readable-stream/lib")
|
|
25572
|
-
},{"./_stream_duplex":
|
|
26057
|
+
},{"./_stream_duplex":142,"./internal/streams/BufferList":147,"./internal/streams/destroy":148,"./internal/streams/stream":149,"_process":131,"buffer":121,"core-util-is":123,"events":124,"inherits":127,"isarray":141,"process-nextick-args":130,"safe-buffer":136,"string_decoder/":151,"timers":152,"util":119}],145:[function(require,module,exports){
|
|
25573
26058
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
25574
26059
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
25575
26060
|
//
|
|
@@ -25786,7 +26271,7 @@ function done(stream, er, data) {
|
|
|
25786
26271
|
return stream.push(null);
|
|
25787
26272
|
}
|
|
25788
26273
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/stream-http/node_modules/readable-stream/lib/_stream_transform.js","/node_modules/stream-http/node_modules/readable-stream/lib")
|
|
25789
|
-
},{"./_stream_duplex":
|
|
26274
|
+
},{"./_stream_duplex":142,"_process":131,"buffer":121,"core-util-is":123,"inherits":127,"timers":152}],146:[function(require,module,exports){
|
|
25790
26275
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
25791
26276
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
25792
26277
|
//
|
|
@@ -26476,7 +26961,7 @@ Writable.prototype._destroy = function (err, cb) {
|
|
|
26476
26961
|
cb(err);
|
|
26477
26962
|
};
|
|
26478
26963
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/stream-http/node_modules/readable-stream/lib/_stream_writable.js","/node_modules/stream-http/node_modules/readable-stream/lib")
|
|
26479
|
-
},{"./_stream_duplex":
|
|
26964
|
+
},{"./_stream_duplex":142,"./internal/streams/destroy":148,"./internal/streams/stream":149,"_process":131,"buffer":121,"core-util-is":123,"inherits":127,"process-nextick-args":130,"safe-buffer":136,"timers":152,"util-deprecate":156}],147:[function(require,module,exports){
|
|
26480
26965
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
26481
26966
|
'use strict';
|
|
26482
26967
|
|
|
@@ -26558,7 +27043,7 @@ if (util && util.inspect && util.inspect.custom) {
|
|
|
26558
27043
|
};
|
|
26559
27044
|
}
|
|
26560
27045
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/stream-http/node_modules/readable-stream/lib/internal/streams/BufferList.js","/node_modules/stream-http/node_modules/readable-stream/lib/internal/streams")
|
|
26561
|
-
},{"_process":
|
|
27046
|
+
},{"_process":131,"buffer":121,"safe-buffer":136,"timers":152,"util":119}],148:[function(require,module,exports){
|
|
26562
27047
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
26563
27048
|
'use strict';
|
|
26564
27049
|
|
|
@@ -26635,12 +27120,12 @@ module.exports = {
|
|
|
26635
27120
|
undestroy: undestroy
|
|
26636
27121
|
};
|
|
26637
27122
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/stream-http/node_modules/readable-stream/lib/internal/streams/destroy.js","/node_modules/stream-http/node_modules/readable-stream/lib/internal/streams")
|
|
26638
|
-
},{"_process":
|
|
27123
|
+
},{"_process":131,"buffer":121,"process-nextick-args":130,"timers":152}],149:[function(require,module,exports){
|
|
26639
27124
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
26640
27125
|
module.exports = require('events').EventEmitter;
|
|
26641
27126
|
|
|
26642
27127
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/stream-http/node_modules/readable-stream/lib/internal/streams/stream-browser.js","/node_modules/stream-http/node_modules/readable-stream/lib/internal/streams")
|
|
26643
|
-
},{"_process":
|
|
27128
|
+
},{"_process":131,"buffer":121,"events":124,"timers":152}],150:[function(require,module,exports){
|
|
26644
27129
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
26645
27130
|
exports = module.exports = require('./lib/_stream_readable.js');
|
|
26646
27131
|
exports.Stream = exports;
|
|
@@ -26651,7 +27136,7 @@ exports.Transform = require('./lib/_stream_transform.js');
|
|
|
26651
27136
|
exports.PassThrough = require('./lib/_stream_passthrough.js');
|
|
26652
27137
|
|
|
26653
27138
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/stream-http/node_modules/readable-stream/readable-browser.js","/node_modules/stream-http/node_modules/readable-stream")
|
|
26654
|
-
},{"./lib/_stream_duplex.js":
|
|
27139
|
+
},{"./lib/_stream_duplex.js":142,"./lib/_stream_passthrough.js":143,"./lib/_stream_readable.js":144,"./lib/_stream_transform.js":145,"./lib/_stream_writable.js":146,"_process":131,"buffer":121,"timers":152}],151:[function(require,module,exports){
|
|
26655
27140
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
26656
27141
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
26657
27142
|
//
|
|
@@ -26950,7 +27435,7 @@ function simpleEnd(buf) {
|
|
|
26950
27435
|
return buf && buf.length ? this.write(buf) : '';
|
|
26951
27436
|
}
|
|
26952
27437
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/stream-http/node_modules/string_decoder/lib/string_decoder.js","/node_modules/stream-http/node_modules/string_decoder/lib")
|
|
26953
|
-
},{"_process":
|
|
27438
|
+
},{"_process":131,"buffer":121,"safe-buffer":136,"timers":152}],152:[function(require,module,exports){
|
|
26954
27439
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
26955
27440
|
var nextTick = require('process/browser.js').nextTick;
|
|
26956
27441
|
var apply = Function.prototype.apply;
|
|
@@ -27029,7 +27514,7 @@ exports.clearImmediate = typeof clearImmediate === "function" ? clearImmediate :
|
|
|
27029
27514
|
delete immediateIds[id];
|
|
27030
27515
|
};
|
|
27031
27516
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/timers-browserify/main.js","/node_modules/timers-browserify")
|
|
27032
|
-
},{"_process":
|
|
27517
|
+
},{"_process":131,"buffer":121,"process/browser.js":131,"timers":152}],153:[function(require,module,exports){
|
|
27033
27518
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
27034
27519
|
var Buffer = require('buffer').Buffer
|
|
27035
27520
|
|
|
@@ -27060,7 +27545,7 @@ module.exports = function (buf) {
|
|
|
27060
27545
|
}
|
|
27061
27546
|
|
|
27062
27547
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/to-arraybuffer/index.js","/node_modules/to-arraybuffer")
|
|
27063
|
-
},{"_process":
|
|
27548
|
+
},{"_process":131,"buffer":121,"timers":152}],154:[function(require,module,exports){
|
|
27064
27549
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
27065
27550
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
27066
27551
|
//
|
|
@@ -27796,7 +28281,7 @@ Url.prototype.parseHost = function() {
|
|
|
27796
28281
|
};
|
|
27797
28282
|
|
|
27798
28283
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/url/url.js","/node_modules/url")
|
|
27799
|
-
},{"./util":
|
|
28284
|
+
},{"./util":155,"_process":131,"buffer":121,"punycode":132,"querystring":135,"timers":152}],155:[function(require,module,exports){
|
|
27800
28285
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
27801
28286
|
'use strict';
|
|
27802
28287
|
|
|
@@ -27816,7 +28301,7 @@ module.exports = {
|
|
|
27816
28301
|
};
|
|
27817
28302
|
|
|
27818
28303
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/url/util.js","/node_modules/url")
|
|
27819
|
-
},{"_process":
|
|
28304
|
+
},{"_process":131,"buffer":121,"timers":152}],156:[function(require,module,exports){
|
|
27820
28305
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
27821
28306
|
|
|
27822
28307
|
/**
|
|
@@ -27887,7 +28372,7 @@ function config (name) {
|
|
|
27887
28372
|
}
|
|
27888
28373
|
|
|
27889
28374
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/util-deprecate/browser.js","/node_modules/util-deprecate")
|
|
27890
|
-
},{"_process":
|
|
28375
|
+
},{"_process":131,"buffer":121,"timers":152}],157:[function(require,module,exports){
|
|
27891
28376
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
27892
28377
|
/**
|
|
27893
28378
|
* Wrapper for built-in http.js to emulate the browser XMLHttpRequest object.
|
|
@@ -28511,7 +28996,7 @@ exports.XMLHttpRequest = function() {
|
|
|
28511
28996
|
};
|
|
28512
28997
|
|
|
28513
28998
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/xmlhttprequest/lib/XMLHttpRequest.js","/node_modules/xmlhttprequest/lib")
|
|
28514
|
-
},{"_process":
|
|
28999
|
+
},{"_process":131,"buffer":121,"child_process":120,"fs":120,"http":137,"https":125,"timers":152,"url":154}],158:[function(require,module,exports){
|
|
28515
29000
|
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
|
|
28516
29001
|
module.exports = extend
|
|
28517
29002
|
|
|
@@ -28534,5 +29019,5 @@ function extend() {
|
|
|
28534
29019
|
}
|
|
28535
29020
|
|
|
28536
29021
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/xtend/immutable.js","/node_modules/xtend")
|
|
28537
|
-
},{"_process":
|
|
29022
|
+
},{"_process":131,"buffer":121,"timers":152}]},{},[15])(15)
|
|
28538
29023
|
});
|