Socket
Socket
Sign inDemoInstall

ramda-adjunct

Package Overview
Dependencies
Maintainers
1
Versions
87
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ramda-adjunct - npm Package Compare versions

Comparing version 0.5.1 to 0.6.0

src/internal/polyfills/Number.isNaN.js

21

CHANGELOG.md

@@ -0,1 +1,21 @@

<a name="0.6.0"></a>
# [0.6.0](https://github.com/char0n/ramda-adjunct/compare/v0.5.1...v0.6.0) (2017-03-16)
### Features
* add isDate ([5fbd348](https://github.com/char0n/ramda-adjunct/commit/5fbd348))
* add isNaN ([3111de3](https://github.com/char0n/ramda-adjunct/commit/3111de3))
* add isNotDate ([4ffa958](https://github.com/char0n/ramda-adjunct/commit/4ffa958))
* add isNotNaN ([fdc83c1](https://github.com/char0n/ramda-adjunct/commit/fdc83c1))
* add isNotNumber ([a3a0758](https://github.com/char0n/ramda-adjunct/commit/a3a0758))
* as isNumber ([d76d5fd](https://github.com/char0n/ramda-adjunct/commit/d76d5fd))
<a name="0.5.1"></a>
## [0.5.1](https://github.com/char0n/ramda-adjunct/compare/v0.5.0...v0.5.1) (2017-03-06)
<a name="0.5.0"></a>

@@ -20,2 +40,3 @@ # [0.5.0](https://github.com/char0n/ramda-adjunct/compare/v0.4.0...v0.5.0) (2017-03-06)

* add isNotObjectLike ([9233e00](https://github.com/char0n/ramda-adjunct/commit/9233e00))
* add isNotPlainObject ([1d39f44](https://github.com/char0n/ramda-adjunct/commit/1d39f44))
* add isObject ([9f6e64a](https://github.com/char0n/ramda-adjunct/commit/9f6e64a))

@@ -22,0 +43,0 @@ * add isObjectLike ([52b1917](https://github.com/char0n/ramda-adjunct/commit/52b1917))

377

dist/RA.node.js

@@ -76,3 +76,3 @@ (function webpackUniversalModuleDefinition(root, factory) {

/******/ // Load entry module and return exports
/******/ return __webpack_require__(__webpack_require__.s = 32);
/******/ return __webpack_require__(__webpack_require__.s = 40);
/******/ })

@@ -96,3 +96,3 @@ /************************************************************************/

var _isFunction = __webpack_require__(29);
var _isFunction = __webpack_require__(36);

@@ -275,2 +275,32 @@ var isGeneratorFunction = __webpack_require__(4);

var _isNumber = __webpack_require__(37);
/**
* Checks if value is a `Number` primitive or object
*
* @func isNumber
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.6.0|v0.6.0}
* @category Type
* @sig * -> Boolean
* @param {*} val The value to test
* @return {Boolean}
* @see {@link RA.isNotNumber|isNotNumber}
* @example
*
* RA.isNumber(5); // => true
* RA.isNumber(Number.MAX_VALUE); // => true
* RA.isNumber(-Infinity); // => true
* RA.isNumber('5'); // => false
*/
module.exports = _isNumber;
/***/ }),
/* 7 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var _require = __webpack_require__(0),

@@ -280,3 +310,3 @@ both = _require.both;

var isNotNull = __webpack_require__(2);
var isOfTypeObject = __webpack_require__(13);
var isOfTypeObject = __webpack_require__(16);

@@ -308,3 +338,3 @@ /* eslint-disable max-len */

/***/ }),
/* 7 */
/* 8 */
/***/ (function(module, exports, __webpack_require__) {

@@ -315,3 +345,3 @@

var _isArray = __webpack_require__(28);
var _isArray = __webpack_require__(35);

@@ -339,3 +369,3 @@ /**

/***/ }),
/* 8 */
/* 9 */
/***/ (function(module, exports, __webpack_require__) {

@@ -370,3 +400,3 @@

/***/ }),
/* 9 */
/* 10 */
/***/ (function(module, exports, __webpack_require__) {

@@ -378,2 +408,79 @@

var _require = __webpack_require__(0),
is = _require.is;
/**
* Checks if value is `Date` object
*
* @func isDate
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.6.0|v0.6.0}
* @category Type
* @sig * -> Boolean
* @param {*} val The value to test
* @return {Boolean}
* @see {@link RA.isNotDate|isNotDate}
* @example
*
* RA.isDate(new Date()); //=> true
* RA.isDate('1997-07-16T19:20+01:00'); //=> false
*/
module.exports = is(Date);
/***/ }),
/* 11 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var _require = __webpack_require__(0),
or = _require.or;
var polyfill = __webpack_require__(34);
/**
* Checks whether the passed value is `NaN` and its type is `Number`.
* It is a more robust version of the original, global isNaN().
*
*
* @func isNaN
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.6.0|v0.6.0}
* @category Type
* @sig * -> Boolean
* @param {*} val The value to test
* @return {Boolean}
* @see {@link RA.isNotNaN|isNotNaN}
* @example
*
* RA.isNaN(NaN); // => true
* RA.isNaN(Number.NaN); // => true
* RA.isNaN(0 / 0); // => true
*
* // e.g. these would have been true with global isNaN().
* RA.isNaN('NaN'); // => false
* RA.isNaN(undefined); // => false
* RA.isNaN({}); // => false
* RA.isNaN('blabla'); // => false
*
* RA.isNaN(true); // => false
* RA.isNaN(null); // => false
* RA.isNaN(37); // => false
* RA.isNaN('37'); // => false
* RA.isNaN('37.37'); // => false
* RA.isNaN(''); // => false
* RA.isNaN(' '); // => false
*/
module.exports = or(Number.isNaN, polyfill);
/***/ }),
/* 12 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var _require = __webpack_require__(0),
both = _require.both,

@@ -384,3 +491,3 @@ anyPass = _require.anyPass;

var isFunction = __webpack_require__(1);
var isOfTypeObject = __webpack_require__(13);
var isOfTypeObject = __webpack_require__(16);

@@ -412,3 +519,3 @@ /* eslint-disable max-len */

/***/ }),
/* 10 */
/* 13 */
/***/ (function(module, exports, __webpack_require__) {

@@ -419,3 +526,3 @@

var _isObject = __webpack_require__(30);
var _isObject = __webpack_require__(38);

@@ -430,3 +537,3 @@ var _require = __webpack_require__(0),

var isNull = __webpack_require__(5);
var isObjectLike = __webpack_require__(6);
var isObjectLike = __webpack_require__(7);
var isFunction = __webpack_require__(1);

@@ -480,3 +587,3 @@

/***/ }),
/* 11 */
/* 14 */
/***/ (function(module, exports, __webpack_require__) {

@@ -487,3 +594,3 @@

var _isString = __webpack_require__(31);
var _isString = __webpack_require__(39);

@@ -510,3 +617,3 @@ /**

/***/ }),
/* 12 */
/* 15 */
/***/ (function(module, exports, __webpack_require__) {

@@ -542,3 +649,3 @@

/***/ }),
/* 13 */
/* 16 */
/***/ (function(module, exports, __webpack_require__) {

@@ -556,3 +663,3 @@

/***/ }),
/* 14 */
/* 17 */
/***/ (function(module, exports, __webpack_require__) {

@@ -593,3 +700,3 @@

/***/ }),
/* 15 */
/* 18 */
/***/ (function(module, exports, __webpack_require__) {

@@ -603,3 +710,3 @@

var isArray = __webpack_require__(7);
var isArray = __webpack_require__(8);

@@ -627,3 +734,3 @@ /**

/***/ }),
/* 16 */
/* 19 */
/***/ (function(module, exports, __webpack_require__) {

@@ -661,3 +768,3 @@

/***/ }),
/* 17 */
/* 20 */
/***/ (function(module, exports, __webpack_require__) {

@@ -697,3 +804,3 @@

/***/ }),
/* 18 */
/* 21 */
/***/ (function(module, exports, __webpack_require__) {

@@ -707,3 +814,3 @@

var isBoolean = __webpack_require__(8);
var isBoolean = __webpack_require__(9);

@@ -731,3 +838,3 @@ /**

/***/ }),
/* 19 */
/* 22 */
/***/ (function(module, exports, __webpack_require__) {

@@ -739,2 +846,33 @@

var _require = __webpack_require__(0),
complement = _require.complement;
var isDate = __webpack_require__(10);
/**
* Checks if value is complement of `Date` object
*
* @func isNotDate
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.6.0|v0.6.0}
* @category Type
* @sig * -> Boolean
* @param {*} val The value to test
* @return {Boolean}
* @see {@link RA.isDate|isDate}
* @example
*
* RA.isNotDate(new Date()); //=> false
* RA.isNotDate('1997-07-16T19:20+01:00'); //=> true
*/
module.exports = complement(isDate);
/***/ }),
/* 23 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var _require = __webpack_require__(0),
complement = _require.complement,

@@ -768,3 +906,3 @@ isEmpty = _require.isEmpty;

/***/ }),
/* 20 */
/* 24 */
/***/ (function(module, exports, __webpack_require__) {

@@ -806,3 +944,3 @@

/***/ }),
/* 21 */
/* 25 */
/***/ (function(module, exports, __webpack_require__) {

@@ -842,3 +980,3 @@

/***/ }),
/* 22 */
/* 26 */
/***/ (function(module, exports, __webpack_require__) {

@@ -850,2 +988,47 @@

var _require = __webpack_require__(0),
complement = _require.complement;
var isNaN = __webpack_require__(11);
/**
* Checks whether the passed value is complement of `NaN` and its type is not `Number`.
*
* @func isNotNaN
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.6.0|v0.6.0}
* @category Type
* @sig * -> Boolean
* @param {*} val The value to test
* @return {Boolean}
* @see {@link RA.isNaN|isNaN}
* @example
*
* RA.isNotNaN(NaN); // => false
* RA.isNotNaN(Number.NaN); // => false
* RA.isNotNaN(0 / 0); // => false
*
* RA.isNotNaN('NaN'); // => true
* RA.isNotNaN(undefined); // => true
* RA.isNotNaN({}); // => true
* RA.isNotNaN('blabla'); // => true
*
* RA.isNotNaN(true); // => true
* RA.isNotNaN(null); // => true
* RA.isNotNaN(37); // => true
* RA.isNotNaN('37'); // => true
* RA.isNotNaN('37.37'); // => true
* RA.isNotNaN(''); // => true
* RA.isNotNaN(' '); // => true
*/
module.exports = complement(isNaN);
/***/ }),
/* 27 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var _require = __webpack_require__(0),
isNil = _require.isNil,

@@ -877,3 +1060,3 @@ complement = _require.complement;

/***/ }),
/* 23 */
/* 28 */
/***/ (function(module, exports, __webpack_require__) {

@@ -887,4 +1070,37 @@

var isObject = __webpack_require__(9);
var isNumber = __webpack_require__(6);
/**
* Checks if value is a complement of `Number` primitive or object
*
* @func isNotNumber
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.6.0|v0.6.0}
* @category Type
* @sig * -> Boolean
* @param {*} val The value to test
* @return {Boolean}
* @see {@link RA.isNumber|isNumber}
* @example
*
* RA.isNotNumber(5); // => false
* RA.isNotNumber(Number.MAX_VALUE); // => false
* RA.isNotNumber(-Infinity); // => false
* RA.isNotNumber('5'); // => true
*/
module.exports = complement(isNumber);
/***/ }),
/* 29 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var _require = __webpack_require__(0),
complement = _require.complement;
var isObject = __webpack_require__(12);
/* eslint-disable max-len */

@@ -915,3 +1131,3 @@ /**

/***/ }),
/* 24 */
/* 30 */
/***/ (function(module, exports, __webpack_require__) {

@@ -925,3 +1141,3 @@

var isObjectLike = __webpack_require__(6);
var isObjectLike = __webpack_require__(7);

@@ -953,3 +1169,3 @@ /* eslint-disable max-len */

/***/ }),
/* 25 */
/* 31 */
/***/ (function(module, exports, __webpack_require__) {

@@ -963,3 +1179,3 @@

var isPlainObject = __webpack_require__(10);
var isPlainObject = __webpack_require__(13);

@@ -997,3 +1213,3 @@ /* eslint-disable max-len */

/***/ }),
/* 26 */
/* 32 */
/***/ (function(module, exports, __webpack_require__) {

@@ -1007,3 +1223,3 @@

var iString = __webpack_require__(11);
var iString = __webpack_require__(14);

@@ -1030,3 +1246,3 @@ /**

/***/ }),
/* 27 */
/* 33 */
/***/ (function(module, exports, __webpack_require__) {

@@ -1040,3 +1256,3 @@

var isUndefined = __webpack_require__(12);
var isUndefined = __webpack_require__(15);

@@ -1063,3 +1279,17 @@ /**

/***/ }),
/* 28 */
/* 34 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var _require = __webpack_require__(0),
both = _require.both;
var isNumber = __webpack_require__(6);
module.exports = both(isNumber, isNaN);
/***/ }),
/* 35 */
/***/ (function(module, exports) {

@@ -1087,3 +1317,3 @@

/***/ }),
/* 29 */
/* 36 */
/***/ (function(module, exports) {

@@ -1097,5 +1327,14 @@

/***/ }),
/* 30 */
/* 37 */
/***/ (function(module, exports) {
module.exports = function _isNumber(x) {
return Object.prototype.toString.call(x) === '[object Number]';
};
/***/ }),
/* 38 */
/***/ (function(module, exports) {
module.exports = function _isObject(x) {

@@ -1107,3 +1346,3 @@ return Object.prototype.toString.call(x) === '[object Object]';

/***/ }),
/* 31 */
/* 39 */
/***/ (function(module, exports) {

@@ -1117,3 +1356,3 @@

/***/ }),
/* 32 */
/* 40 */
/***/ (function(module, exports, __webpack_require__) {

@@ -1124,28 +1363,34 @@

var isNotUndefined = __webpack_require__(27);
var isUndefined = __webpack_require__(12);
var isNotUndefined = __webpack_require__(33);
var isUndefined = __webpack_require__(15);
var isNull = __webpack_require__(5);
var isNotNull = __webpack_require__(2);
var isNotNil = __webpack_require__(22);
var isArray = __webpack_require__(7);
var isNotArray = __webpack_require__(15);
var isBoolean = __webpack_require__(8);
var isNotBoolean = __webpack_require__(18);
var isNotEmpty = __webpack_require__(19);
var isNilOrEmpty = __webpack_require__(14);
var isString = __webpack_require__(11);
var isNotString = __webpack_require__(26);
var isNotArrayLike = __webpack_require__(16);
var isNotNil = __webpack_require__(27);
var isArray = __webpack_require__(8);
var isNotArray = __webpack_require__(18);
var isBoolean = __webpack_require__(9);
var isNotBoolean = __webpack_require__(21);
var isNotEmpty = __webpack_require__(23);
var isNilOrEmpty = __webpack_require__(17);
var isString = __webpack_require__(14);
var isNotString = __webpack_require__(32);
var isNotArrayLike = __webpack_require__(19);
var isGeneratorFunction = __webpack_require__(4);
var isNotGeneratorFunction = __webpack_require__(21);
var isNotGeneratorFunction = __webpack_require__(25);
var isAsyncFunction = __webpack_require__(3);
var isNotAsyncFunction = __webpack_require__(17);
var isNotAsyncFunction = __webpack_require__(20);
var isFunction = __webpack_require__(1);
var isNotFunction = __webpack_require__(20);
var isObject = __webpack_require__(9);
var isNotObject = __webpack_require__(23);
var isObjectLike = __webpack_require__(6);
var isNotObjectLike = __webpack_require__(24);
var isPlainObject = __webpack_require__(10);
var isNotPlainObject = __webpack_require__(25);
var isNotFunction = __webpack_require__(24);
var isObject = __webpack_require__(12);
var isNotObject = __webpack_require__(29);
var isObjectLike = __webpack_require__(7);
var isNotObjectLike = __webpack_require__(30);
var isPlainObject = __webpack_require__(13);
var isNotPlainObject = __webpack_require__(31);
var isDate = __webpack_require__(10);
var isNotDate = __webpack_require__(22);
var isNumber = __webpack_require__(6);
var isNotNumber = __webpack_require__(28);
var isNaN = __webpack_require__(11);
var isNotNaN = __webpack_require__(26);

@@ -1181,3 +1426,9 @@ /**

isPlainObject: isPlainObject,
isNotPlainObject: isNotPlainObject
isNotPlainObject: isNotPlainObject,
isDate: isDate,
isNotDate: isNotDate,
isNumber: isNumber,
isNotNumber: isNotNumber,
isNaN: isNaN,
isNotNaN: isNotNaN
};

@@ -1184,0 +1435,0 @@

2

dist/RA.node.min.js

@@ -1,1 +0,1 @@

!function(t,n){"object"==typeof exports&&"object"==typeof module?module.exports=n(require("ramda")):"function"==typeof define&&define.amd?define(["ramda"],n):"object"==typeof exports?exports.RA=n(require("ramda")):t.RA=n(t.ramda)}(this,function(t){return function(t){function n(o){if(e[o])return e[o].exports;var r=e[o]={i:o,l:!1,exports:{}};return t[o].call(r.exports,r,r.exports,n),r.l=!0,r.exports}var e={};return n.m=t,n.c=e,n.i=function(t){return t},n.d=function(t,e,o){n.o(t,e)||Object.defineProperty(t,e,{configurable:!1,enumerable:!0,get:o})},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,n){return Object.prototype.hasOwnProperty.call(t,n)},n.p="",n(n.s=32)}([function(n,e){n.exports=t},function(t,n,e){"use strict";var o=e(0),r=o.anyPass,i=e(29),c=e(4),s=e(3);t.exports=r([i,c,s])},function(t,n,e){"use strict";var o=e(0),r=o.complement,i=e(5);t.exports=r(i)},function(t,n,e){"use strict";t.exports=function(t){return"[object AsyncFunction]"===Object.prototype.toString.call(t)}},function(t,n,e){"use strict";var o=e(0),r=o.or,i=e(2),c=null;try{c=new Function("return function* () {}")().constructor}catch(t){}t.exports=function(t){var n="[object AsyncFunction]"===Object.prototype.toString.call(t),e=i(c)&&t instanceof c;return r(n,e)}},function(t,n,e){"use strict";var o=e(0),r=o.equals;t.exports=r(null)},function(t,n,e){"use strict";var o=e(0),r=o.both,i=e(2),c=e(13);t.exports=r(i,c)},function(t,n,e){"use strict";var o=e(28);t.exports=o},function(t,n,e){"use strict";var o=e(0),r=o.is;t.exports=r(Boolean)},function(t,n,e){"use strict";var o=e(0),r=o.both,i=o.anyPass,c=e(2),s=e(1),u=e(13);t.exports=r(c,i([u,s]))},function(t,n,e){"use strict";var o=e(30),r=e(0),i=r.pipe,c=r.both,s=r.equals,u=r.toString,p=r.pathSatisfies,a=e(5),f=e(6),l=e(1),m=i(u,s(u(Object))),y=p(c(l,m),["constructor"]);t.exports=function(t){if(!f(t)||!o(t))return!1;var n=Object.getPrototypeOf(t);return!!a(n)||y(n)}},function(t,n,e){"use strict";var o=e(31);t.exports=o},function(t,n,e){"use strict";var o=e(0),r=o.equals;t.exports=r(void 0)},function(t,n,e){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};t.exports=function(t){return"object"===("undefined"==typeof t?"undefined":o(t))}},function(t,n,e){"use strict";var o=e(0),r=o.anyPass,i=o.isEmpty,c=o.isNil;t.exports=r([c,i])},function(t,n,e){"use strict";var o=e(0),r=o.complement,i=e(7);t.exports=r(i)},function(t,n,e){"use strict";var o=e(0),r=o.complement,i=o.isArrayLike;t.exports=r(i)},function(t,n,e){"use strict";var o=e(0),r=o.complement,i=e(3);t.exports=r(i)},function(t,n,e){"use strict";var o=e(0),r=o.complement,i=e(8);t.exports=r(i)},function(t,n,e){"use strict";var o=e(0),r=o.complement,i=o.isEmpty;t.exports=r(i)},function(t,n,e){"use strict";var o=e(0),r=o.complement,i=e(1);t.exports=r(i)},function(t,n,e){"use strict";var o=e(0),r=o.complement,i=e(4);t.exports=r(i)},function(t,n,e){"use strict";var o=e(0),r=o.isNil,i=o.complement;t.exports=i(r)},function(t,n,e){"use strict";var o=e(0),r=o.complement,i=e(9);t.exports=r(i)},function(t,n,e){"use strict";var o=e(0),r=o.complement,i=e(6);t.exports=r(i)},function(t,n,e){"use strict";var o=e(0),r=o.complement,i=e(10);t.exports=r(i)},function(t,n,e){"use strict";var o=e(0),r=o.complement,i=e(11);t.exports=r(i)},function(t,n,e){"use strict";var o=e(0),r=o.complement,i=e(12);t.exports=r(i)},function(t,n){t.exports=Array.isArray||function(t){return null!=t&&t.length>=0&&"[object Array]"===Object.prototype.toString.call(t)}},function(t,n){t.exports=function(t){return"[object Function]"===Object.prototype.toString.call(t)}},function(t,n){t.exports=function(t){return"[object Object]"===Object.prototype.toString.call(t)}},function(t,n){t.exports=function(t){return"[object String]"===Object.prototype.toString.call(t)}},function(t,n,e){"use strict";var o=e(27),r=e(12),i=e(5),c=e(2),s=e(22),u=e(7),p=e(15),a=e(8),f=e(18),l=e(19),m=e(14),y=e(11),x=e(26),b=e(16),v=e(4),j=e(21),d=e(3),N=e(17),O=e(1),S=e(20),g=e(9),A=e(23),F=e(6),h=e(24),P=e(10),q=e(25);t.exports={isNotUndefined:o,isUndefined:r,isNull:i,isNotNull:c,isNotNil:s,isArray:u,isNotArray:p,isBoolean:a,isNotBoolean:f,isNotEmpty:l,isNilOrEmpty:m,isString:y,isNotString:x,isNotArrayLike:b,isGeneratorFunction:v,isNotGeneratorFunction:j,isAsyncFunction:d,isNotAsyncFunction:N,isFunction:O,isNotFunction:S,isObject:g,isNotObject:A,isObjectLike:F,isNotObjectLike:h,isPlainObject:P,isNotPlainObject:q}}])});
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e(require("ramda")):"function"==typeof define&&define.amd?define(["ramda"],e):"object"==typeof exports?exports.RA=e(require("ramda")):t.RA=e(t.ramda)}(this,function(t){return function(t){function e(n){if(o[n])return o[n].exports;var r=o[n]={i:n,l:!1,exports:{}};return t[n].call(r.exports,r,r.exports,e),r.l=!0,r.exports}var o={};return e.m=t,e.c=o,e.i=function(t){return t},e.d=function(t,o,n){e.o(t,o)||Object.defineProperty(t,o,{configurable:!1,enumerable:!0,get:n})},e.n=function(t){var o=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(o,"a",o),o},e.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},e.p="",e(e.s=40)}([function(e,o){e.exports=t},function(t,e,o){"use strict";var n=o(0),r=n.anyPass,i=o(36),s=o(4),c=o(3);t.exports=r([i,s,c])},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(5);t.exports=r(i)},function(t,e,o){"use strict";t.exports=function(t){return"[object AsyncFunction]"===Object.prototype.toString.call(t)}},function(t,e,o){"use strict";var n=o(0),r=n.or,i=o(2),s=null;try{s=new Function("return function* () {}")().constructor}catch(t){}t.exports=function(t){var e="[object AsyncFunction]"===Object.prototype.toString.call(t),o=i(s)&&t instanceof s;return r(e,o)}},function(t,e,o){"use strict";var n=o(0),r=n.equals;t.exports=r(null)},function(t,e,o){"use strict";var n=o(37);t.exports=n},function(t,e,o){"use strict";var n=o(0),r=n.both,i=o(2),s=o(16);t.exports=r(i,s)},function(t,e,o){"use strict";var n=o(35);t.exports=n},function(t,e,o){"use strict";var n=o(0),r=n.is;t.exports=r(Boolean)},function(t,e,o){"use strict";var n=o(0),r=n.is;t.exports=r(Date)},function(t,e,o){"use strict";var n=o(0),r=n.or,i=o(34);t.exports=r(Number.isNaN,i)},function(t,e,o){"use strict";var n=o(0),r=n.both,i=n.anyPass,s=o(2),c=o(1),u=o(16);t.exports=r(s,i([u,c]))},function(t,e,o){"use strict";var n=o(38),r=o(0),i=r.pipe,s=r.both,c=r.equals,u=r.toString,p=r.pathSatisfies,a=o(5),f=o(7),l=o(1),m=i(u,c(u(Object))),x=p(s(l,m),["constructor"]);t.exports=function(t){if(!f(t)||!n(t))return!1;var e=Object.getPrototypeOf(t);return!!a(e)||x(e)}},function(t,e,o){"use strict";var n=o(39);t.exports=n},function(t,e,o){"use strict";var n=o(0),r=n.equals;t.exports=r(void 0)},function(t,e,o){"use strict";var n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};t.exports=function(t){return"object"===("undefined"==typeof t?"undefined":n(t))}},function(t,e,o){"use strict";var n=o(0),r=n.anyPass,i=n.isEmpty,s=n.isNil;t.exports=r([s,i])},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(8);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=n.isArrayLike;t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(3);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(9);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(10);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=n.isEmpty;t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(1);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(4);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(11);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.isNil,i=n.complement;t.exports=i(r)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(6);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(12);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(7);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(13);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(14);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(15);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.both,i=o(6);t.exports=r(i,isNaN)},function(t,e){t.exports=Array.isArray||function(t){return null!=t&&t.length>=0&&"[object Array]"===Object.prototype.toString.call(t)}},function(t,e){t.exports=function(t){return"[object Function]"===Object.prototype.toString.call(t)}},function(t,e){t.exports=function(t){return"[object Number]"===Object.prototype.toString.call(t)}},function(t,e){t.exports=function(t){return"[object Object]"===Object.prototype.toString.call(t)}},function(t,e){t.exports=function(t){return"[object String]"===Object.prototype.toString.call(t)}},function(t,e,o){"use strict";var n=o(33),r=o(15),i=o(5),s=o(2),c=o(27),u=o(8),p=o(18),a=o(9),f=o(21),l=o(23),m=o(17),x=o(14),y=o(32),b=o(19),v=o(4),N=o(25),j=o(3),d=o(20),O=o(1),S=o(24),g=o(12),A=o(29),F=o(7),h=o(30),P=o(13),q=o(31),k=o(10),E=o(22),L=o(6),B=o(28),D=o(11),w=o(26);t.exports={isNotUndefined:n,isUndefined:r,isNull:i,isNotNull:s,isNotNil:c,isArray:u,isNotArray:p,isBoolean:a,isNotBoolean:f,isNotEmpty:l,isNilOrEmpty:m,isString:x,isNotString:y,isNotArrayLike:b,isGeneratorFunction:v,isNotGeneratorFunction:N,isAsyncFunction:j,isNotAsyncFunction:d,isFunction:O,isNotFunction:S,isObject:g,isNotObject:A,isObjectLike:F,isNotObjectLike:h,isPlainObject:P,isNotPlainObject:q,isDate:k,isNotDate:E,isNumber:L,isNotNumber:B,isNaN:D,isNotNaN:w}}])});

@@ -76,3 +76,3 @@ (function webpackUniversalModuleDefinition(root, factory) {

/******/ // Load entry module and return exports
/******/ return __webpack_require__(__webpack_require__.s = 32);
/******/ return __webpack_require__(__webpack_require__.s = 40);
/******/ })

@@ -96,3 +96,3 @@ /************************************************************************/

var _isFunction = __webpack_require__(29);
var _isFunction = __webpack_require__(36);

@@ -275,2 +275,32 @@ var isGeneratorFunction = __webpack_require__(4);

var _isNumber = __webpack_require__(37);
/**
* Checks if value is a `Number` primitive or object
*
* @func isNumber
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.6.0|v0.6.0}
* @category Type
* @sig * -> Boolean
* @param {*} val The value to test
* @return {Boolean}
* @see {@link RA.isNotNumber|isNotNumber}
* @example
*
* RA.isNumber(5); // => true
* RA.isNumber(Number.MAX_VALUE); // => true
* RA.isNumber(-Infinity); // => true
* RA.isNumber('5'); // => false
*/
module.exports = _isNumber;
/***/ }),
/* 7 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var _require = __webpack_require__(0),

@@ -280,3 +310,3 @@ both = _require.both;

var isNotNull = __webpack_require__(2);
var isOfTypeObject = __webpack_require__(13);
var isOfTypeObject = __webpack_require__(16);

@@ -308,3 +338,3 @@ /* eslint-disable max-len */

/***/ }),
/* 7 */
/* 8 */
/***/ (function(module, exports, __webpack_require__) {

@@ -315,3 +345,3 @@

var _isArray = __webpack_require__(28);
var _isArray = __webpack_require__(35);

@@ -339,3 +369,3 @@ /**

/***/ }),
/* 8 */
/* 9 */
/***/ (function(module, exports, __webpack_require__) {

@@ -370,3 +400,3 @@

/***/ }),
/* 9 */
/* 10 */
/***/ (function(module, exports, __webpack_require__) {

@@ -378,2 +408,79 @@

var _require = __webpack_require__(0),
is = _require.is;
/**
* Checks if value is `Date` object
*
* @func isDate
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.6.0|v0.6.0}
* @category Type
* @sig * -> Boolean
* @param {*} val The value to test
* @return {Boolean}
* @see {@link RA.isNotDate|isNotDate}
* @example
*
* RA.isDate(new Date()); //=> true
* RA.isDate('1997-07-16T19:20+01:00'); //=> false
*/
module.exports = is(Date);
/***/ }),
/* 11 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var _require = __webpack_require__(0),
or = _require.or;
var polyfill = __webpack_require__(34);
/**
* Checks whether the passed value is `NaN` and its type is `Number`.
* It is a more robust version of the original, global isNaN().
*
*
* @func isNaN
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.6.0|v0.6.0}
* @category Type
* @sig * -> Boolean
* @param {*} val The value to test
* @return {Boolean}
* @see {@link RA.isNotNaN|isNotNaN}
* @example
*
* RA.isNaN(NaN); // => true
* RA.isNaN(Number.NaN); // => true
* RA.isNaN(0 / 0); // => true
*
* // e.g. these would have been true with global isNaN().
* RA.isNaN('NaN'); // => false
* RA.isNaN(undefined); // => false
* RA.isNaN({}); // => false
* RA.isNaN('blabla'); // => false
*
* RA.isNaN(true); // => false
* RA.isNaN(null); // => false
* RA.isNaN(37); // => false
* RA.isNaN('37'); // => false
* RA.isNaN('37.37'); // => false
* RA.isNaN(''); // => false
* RA.isNaN(' '); // => false
*/
module.exports = or(Number.isNaN, polyfill);
/***/ }),
/* 12 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var _require = __webpack_require__(0),
both = _require.both,

@@ -384,3 +491,3 @@ anyPass = _require.anyPass;

var isFunction = __webpack_require__(1);
var isOfTypeObject = __webpack_require__(13);
var isOfTypeObject = __webpack_require__(16);

@@ -412,3 +519,3 @@ /* eslint-disable max-len */

/***/ }),
/* 10 */
/* 13 */
/***/ (function(module, exports, __webpack_require__) {

@@ -419,3 +526,3 @@

var _isObject = __webpack_require__(30);
var _isObject = __webpack_require__(38);

@@ -430,3 +537,3 @@ var _require = __webpack_require__(0),

var isNull = __webpack_require__(5);
var isObjectLike = __webpack_require__(6);
var isObjectLike = __webpack_require__(7);
var isFunction = __webpack_require__(1);

@@ -480,3 +587,3 @@

/***/ }),
/* 11 */
/* 14 */
/***/ (function(module, exports, __webpack_require__) {

@@ -487,3 +594,3 @@

var _isString = __webpack_require__(31);
var _isString = __webpack_require__(39);

@@ -510,3 +617,3 @@ /**

/***/ }),
/* 12 */
/* 15 */
/***/ (function(module, exports, __webpack_require__) {

@@ -542,3 +649,3 @@

/***/ }),
/* 13 */
/* 16 */
/***/ (function(module, exports, __webpack_require__) {

@@ -556,3 +663,3 @@

/***/ }),
/* 14 */
/* 17 */
/***/ (function(module, exports, __webpack_require__) {

@@ -593,3 +700,3 @@

/***/ }),
/* 15 */
/* 18 */
/***/ (function(module, exports, __webpack_require__) {

@@ -603,3 +710,3 @@

var isArray = __webpack_require__(7);
var isArray = __webpack_require__(8);

@@ -627,3 +734,3 @@ /**

/***/ }),
/* 16 */
/* 19 */
/***/ (function(module, exports, __webpack_require__) {

@@ -661,3 +768,3 @@

/***/ }),
/* 17 */
/* 20 */
/***/ (function(module, exports, __webpack_require__) {

@@ -697,3 +804,3 @@

/***/ }),
/* 18 */
/* 21 */
/***/ (function(module, exports, __webpack_require__) {

@@ -707,3 +814,3 @@

var isBoolean = __webpack_require__(8);
var isBoolean = __webpack_require__(9);

@@ -731,3 +838,3 @@ /**

/***/ }),
/* 19 */
/* 22 */
/***/ (function(module, exports, __webpack_require__) {

@@ -739,2 +846,33 @@

var _require = __webpack_require__(0),
complement = _require.complement;
var isDate = __webpack_require__(10);
/**
* Checks if value is complement of `Date` object
*
* @func isNotDate
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.6.0|v0.6.0}
* @category Type
* @sig * -> Boolean
* @param {*} val The value to test
* @return {Boolean}
* @see {@link RA.isDate|isDate}
* @example
*
* RA.isNotDate(new Date()); //=> false
* RA.isNotDate('1997-07-16T19:20+01:00'); //=> true
*/
module.exports = complement(isDate);
/***/ }),
/* 23 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var _require = __webpack_require__(0),
complement = _require.complement,

@@ -768,3 +906,3 @@ isEmpty = _require.isEmpty;

/***/ }),
/* 20 */
/* 24 */
/***/ (function(module, exports, __webpack_require__) {

@@ -806,3 +944,3 @@

/***/ }),
/* 21 */
/* 25 */
/***/ (function(module, exports, __webpack_require__) {

@@ -842,3 +980,3 @@

/***/ }),
/* 22 */
/* 26 */
/***/ (function(module, exports, __webpack_require__) {

@@ -850,2 +988,47 @@

var _require = __webpack_require__(0),
complement = _require.complement;
var isNaN = __webpack_require__(11);
/**
* Checks whether the passed value is complement of `NaN` and its type is not `Number`.
*
* @func isNotNaN
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.6.0|v0.6.0}
* @category Type
* @sig * -> Boolean
* @param {*} val The value to test
* @return {Boolean}
* @see {@link RA.isNaN|isNaN}
* @example
*
* RA.isNotNaN(NaN); // => false
* RA.isNotNaN(Number.NaN); // => false
* RA.isNotNaN(0 / 0); // => false
*
* RA.isNotNaN('NaN'); // => true
* RA.isNotNaN(undefined); // => true
* RA.isNotNaN({}); // => true
* RA.isNotNaN('blabla'); // => true
*
* RA.isNotNaN(true); // => true
* RA.isNotNaN(null); // => true
* RA.isNotNaN(37); // => true
* RA.isNotNaN('37'); // => true
* RA.isNotNaN('37.37'); // => true
* RA.isNotNaN(''); // => true
* RA.isNotNaN(' '); // => true
*/
module.exports = complement(isNaN);
/***/ }),
/* 27 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var _require = __webpack_require__(0),
isNil = _require.isNil,

@@ -877,3 +1060,3 @@ complement = _require.complement;

/***/ }),
/* 23 */
/* 28 */
/***/ (function(module, exports, __webpack_require__) {

@@ -887,4 +1070,37 @@

var isObject = __webpack_require__(9);
var isNumber = __webpack_require__(6);
/**
* Checks if value is a complement of `Number` primitive or object
*
* @func isNotNumber
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.6.0|v0.6.0}
* @category Type
* @sig * -> Boolean
* @param {*} val The value to test
* @return {Boolean}
* @see {@link RA.isNumber|isNumber}
* @example
*
* RA.isNotNumber(5); // => false
* RA.isNotNumber(Number.MAX_VALUE); // => false
* RA.isNotNumber(-Infinity); // => false
* RA.isNotNumber('5'); // => true
*/
module.exports = complement(isNumber);
/***/ }),
/* 29 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var _require = __webpack_require__(0),
complement = _require.complement;
var isObject = __webpack_require__(12);
/* eslint-disable max-len */

@@ -915,3 +1131,3 @@ /**

/***/ }),
/* 24 */
/* 30 */
/***/ (function(module, exports, __webpack_require__) {

@@ -925,3 +1141,3 @@

var isObjectLike = __webpack_require__(6);
var isObjectLike = __webpack_require__(7);

@@ -953,3 +1169,3 @@ /* eslint-disable max-len */

/***/ }),
/* 25 */
/* 31 */
/***/ (function(module, exports, __webpack_require__) {

@@ -963,3 +1179,3 @@

var isPlainObject = __webpack_require__(10);
var isPlainObject = __webpack_require__(13);

@@ -997,3 +1213,3 @@ /* eslint-disable max-len */

/***/ }),
/* 26 */
/* 32 */
/***/ (function(module, exports, __webpack_require__) {

@@ -1007,3 +1223,3 @@

var iString = __webpack_require__(11);
var iString = __webpack_require__(14);

@@ -1030,3 +1246,3 @@ /**

/***/ }),
/* 27 */
/* 33 */
/***/ (function(module, exports, __webpack_require__) {

@@ -1040,3 +1256,3 @@

var isUndefined = __webpack_require__(12);
var isUndefined = __webpack_require__(15);

@@ -1063,3 +1279,17 @@ /**

/***/ }),
/* 28 */
/* 34 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var _require = __webpack_require__(0),
both = _require.both;
var isNumber = __webpack_require__(6);
module.exports = both(isNumber, isNaN);
/***/ }),
/* 35 */
/***/ (function(module, exports) {

@@ -1087,3 +1317,3 @@

/***/ }),
/* 29 */
/* 36 */
/***/ (function(module, exports) {

@@ -1097,5 +1327,14 @@

/***/ }),
/* 30 */
/* 37 */
/***/ (function(module, exports) {
module.exports = function _isNumber(x) {
return Object.prototype.toString.call(x) === '[object Number]';
};
/***/ }),
/* 38 */
/***/ (function(module, exports) {
module.exports = function _isObject(x) {

@@ -1107,3 +1346,3 @@ return Object.prototype.toString.call(x) === '[object Object]';

/***/ }),
/* 31 */
/* 39 */
/***/ (function(module, exports) {

@@ -1117,3 +1356,3 @@

/***/ }),
/* 32 */
/* 40 */
/***/ (function(module, exports, __webpack_require__) {

@@ -1124,28 +1363,34 @@

var isNotUndefined = __webpack_require__(27);
var isUndefined = __webpack_require__(12);
var isNotUndefined = __webpack_require__(33);
var isUndefined = __webpack_require__(15);
var isNull = __webpack_require__(5);
var isNotNull = __webpack_require__(2);
var isNotNil = __webpack_require__(22);
var isArray = __webpack_require__(7);
var isNotArray = __webpack_require__(15);
var isBoolean = __webpack_require__(8);
var isNotBoolean = __webpack_require__(18);
var isNotEmpty = __webpack_require__(19);
var isNilOrEmpty = __webpack_require__(14);
var isString = __webpack_require__(11);
var isNotString = __webpack_require__(26);
var isNotArrayLike = __webpack_require__(16);
var isNotNil = __webpack_require__(27);
var isArray = __webpack_require__(8);
var isNotArray = __webpack_require__(18);
var isBoolean = __webpack_require__(9);
var isNotBoolean = __webpack_require__(21);
var isNotEmpty = __webpack_require__(23);
var isNilOrEmpty = __webpack_require__(17);
var isString = __webpack_require__(14);
var isNotString = __webpack_require__(32);
var isNotArrayLike = __webpack_require__(19);
var isGeneratorFunction = __webpack_require__(4);
var isNotGeneratorFunction = __webpack_require__(21);
var isNotGeneratorFunction = __webpack_require__(25);
var isAsyncFunction = __webpack_require__(3);
var isNotAsyncFunction = __webpack_require__(17);
var isNotAsyncFunction = __webpack_require__(20);
var isFunction = __webpack_require__(1);
var isNotFunction = __webpack_require__(20);
var isObject = __webpack_require__(9);
var isNotObject = __webpack_require__(23);
var isObjectLike = __webpack_require__(6);
var isNotObjectLike = __webpack_require__(24);
var isPlainObject = __webpack_require__(10);
var isNotPlainObject = __webpack_require__(25);
var isNotFunction = __webpack_require__(24);
var isObject = __webpack_require__(12);
var isNotObject = __webpack_require__(29);
var isObjectLike = __webpack_require__(7);
var isNotObjectLike = __webpack_require__(30);
var isPlainObject = __webpack_require__(13);
var isNotPlainObject = __webpack_require__(31);
var isDate = __webpack_require__(10);
var isNotDate = __webpack_require__(22);
var isNumber = __webpack_require__(6);
var isNotNumber = __webpack_require__(28);
var isNaN = __webpack_require__(11);
var isNotNaN = __webpack_require__(26);

@@ -1181,3 +1426,9 @@ /**

isPlainObject: isPlainObject,
isNotPlainObject: isNotPlainObject
isNotPlainObject: isNotPlainObject,
isDate: isDate,
isNotDate: isNotDate,
isNumber: isNumber,
isNotNumber: isNotNumber,
isNaN: isNaN,
isNotNaN: isNotNaN
};

@@ -1184,0 +1435,0 @@

@@ -1,1 +0,1 @@

!function(t,n){"object"==typeof exports&&"object"==typeof module?module.exports=n(require("R")):"function"==typeof define&&define.amd?define(["R"],n):"object"==typeof exports?exports.RA=n(require("R")):t.RA=n(t.R)}(this,function(t){return function(t){function n(o){if(e[o])return e[o].exports;var r=e[o]={i:o,l:!1,exports:{}};return t[o].call(r.exports,r,r.exports,n),r.l=!0,r.exports}var e={};return n.m=t,n.c=e,n.i=function(t){return t},n.d=function(t,e,o){n.o(t,e)||Object.defineProperty(t,e,{configurable:!1,enumerable:!0,get:o})},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,n){return Object.prototype.hasOwnProperty.call(t,n)},n.p="",n(n.s=32)}([function(n,e){n.exports=t},function(t,n,e){"use strict";var o=e(0),r=o.anyPass,i=e(29),c=e(4),s=e(3);t.exports=r([i,c,s])},function(t,n,e){"use strict";var o=e(0),r=o.complement,i=e(5);t.exports=r(i)},function(t,n,e){"use strict";t.exports=function(t){return"[object AsyncFunction]"===Object.prototype.toString.call(t)}},function(t,n,e){"use strict";var o=e(0),r=o.or,i=e(2),c=null;try{c=new Function("return function* () {}")().constructor}catch(t){}t.exports=function(t){var n="[object AsyncFunction]"===Object.prototype.toString.call(t),e=i(c)&&t instanceof c;return r(n,e)}},function(t,n,e){"use strict";var o=e(0),r=o.equals;t.exports=r(null)},function(t,n,e){"use strict";var o=e(0),r=o.both,i=e(2),c=e(13);t.exports=r(i,c)},function(t,n,e){"use strict";var o=e(28);t.exports=o},function(t,n,e){"use strict";var o=e(0),r=o.is;t.exports=r(Boolean)},function(t,n,e){"use strict";var o=e(0),r=o.both,i=o.anyPass,c=e(2),s=e(1),u=e(13);t.exports=r(c,i([u,s]))},function(t,n,e){"use strict";var o=e(30),r=e(0),i=r.pipe,c=r.both,s=r.equals,u=r.toString,p=r.pathSatisfies,f=e(5),a=e(6),l=e(1),y=i(u,s(u(Object))),m=p(c(l,y),["constructor"]);t.exports=function(t){if(!a(t)||!o(t))return!1;var n=Object.getPrototypeOf(t);return!!f(n)||m(n)}},function(t,n,e){"use strict";var o=e(31);t.exports=o},function(t,n,e){"use strict";var o=e(0),r=o.equals;t.exports=r(void 0)},function(t,n,e){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};t.exports=function(t){return"object"===("undefined"==typeof t?"undefined":o(t))}},function(t,n,e){"use strict";var o=e(0),r=o.anyPass,i=o.isEmpty,c=o.isNil;t.exports=r([c,i])},function(t,n,e){"use strict";var o=e(0),r=o.complement,i=e(7);t.exports=r(i)},function(t,n,e){"use strict";var o=e(0),r=o.complement,i=o.isArrayLike;t.exports=r(i)},function(t,n,e){"use strict";var o=e(0),r=o.complement,i=e(3);t.exports=r(i)},function(t,n,e){"use strict";var o=e(0),r=o.complement,i=e(8);t.exports=r(i)},function(t,n,e){"use strict";var o=e(0),r=o.complement,i=o.isEmpty;t.exports=r(i)},function(t,n,e){"use strict";var o=e(0),r=o.complement,i=e(1);t.exports=r(i)},function(t,n,e){"use strict";var o=e(0),r=o.complement,i=e(4);t.exports=r(i)},function(t,n,e){"use strict";var o=e(0),r=o.isNil,i=o.complement;t.exports=i(r)},function(t,n,e){"use strict";var o=e(0),r=o.complement,i=e(9);t.exports=r(i)},function(t,n,e){"use strict";var o=e(0),r=o.complement,i=e(6);t.exports=r(i)},function(t,n,e){"use strict";var o=e(0),r=o.complement,i=e(10);t.exports=r(i)},function(t,n,e){"use strict";var o=e(0),r=o.complement,i=e(11);t.exports=r(i)},function(t,n,e){"use strict";var o=e(0),r=o.complement,i=e(12);t.exports=r(i)},function(t,n){t.exports=Array.isArray||function(t){return null!=t&&t.length>=0&&"[object Array]"===Object.prototype.toString.call(t)}},function(t,n){t.exports=function(t){return"[object Function]"===Object.prototype.toString.call(t)}},function(t,n){t.exports=function(t){return"[object Object]"===Object.prototype.toString.call(t)}},function(t,n){t.exports=function(t){return"[object String]"===Object.prototype.toString.call(t)}},function(t,n,e){"use strict";var o=e(27),r=e(12),i=e(5),c=e(2),s=e(22),u=e(7),p=e(15),f=e(8),a=e(18),l=e(19),y=e(14),m=e(11),x=e(26),b=e(16),v=e(4),j=e(21),d=e(3),N=e(17),O=e(1),S=e(20),g=e(9),A=e(23),F=e(6),h=e(24),P=e(10),R=e(25);t.exports={isNotUndefined:o,isUndefined:r,isNull:i,isNotNull:c,isNotNil:s,isArray:u,isNotArray:p,isBoolean:f,isNotBoolean:a,isNotEmpty:l,isNilOrEmpty:y,isString:m,isNotString:x,isNotArrayLike:b,isGeneratorFunction:v,isNotGeneratorFunction:j,isAsyncFunction:d,isNotAsyncFunction:N,isFunction:O,isNotFunction:S,isObject:g,isNotObject:A,isObjectLike:F,isNotObjectLike:h,isPlainObject:P,isNotPlainObject:R}}])});
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e(require("R")):"function"==typeof define&&define.amd?define(["R"],e):"object"==typeof exports?exports.RA=e(require("R")):t.RA=e(t.R)}(this,function(t){return function(t){function e(n){if(o[n])return o[n].exports;var r=o[n]={i:n,l:!1,exports:{}};return t[n].call(r.exports,r,r.exports,e),r.l=!0,r.exports}var o={};return e.m=t,e.c=o,e.i=function(t){return t},e.d=function(t,o,n){e.o(t,o)||Object.defineProperty(t,o,{configurable:!1,enumerable:!0,get:n})},e.n=function(t){var o=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(o,"a",o),o},e.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},e.p="",e(e.s=40)}([function(e,o){e.exports=t},function(t,e,o){"use strict";var n=o(0),r=n.anyPass,i=o(36),s=o(4),c=o(3);t.exports=r([i,s,c])},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(5);t.exports=r(i)},function(t,e,o){"use strict";t.exports=function(t){return"[object AsyncFunction]"===Object.prototype.toString.call(t)}},function(t,e,o){"use strict";var n=o(0),r=n.or,i=o(2),s=null;try{s=new Function("return function* () {}")().constructor}catch(t){}t.exports=function(t){var e="[object AsyncFunction]"===Object.prototype.toString.call(t),o=i(s)&&t instanceof s;return r(e,o)}},function(t,e,o){"use strict";var n=o(0),r=n.equals;t.exports=r(null)},function(t,e,o){"use strict";var n=o(37);t.exports=n},function(t,e,o){"use strict";var n=o(0),r=n.both,i=o(2),s=o(16);t.exports=r(i,s)},function(t,e,o){"use strict";var n=o(35);t.exports=n},function(t,e,o){"use strict";var n=o(0),r=n.is;t.exports=r(Boolean)},function(t,e,o){"use strict";var n=o(0),r=n.is;t.exports=r(Date)},function(t,e,o){"use strict";var n=o(0),r=n.or,i=o(34);t.exports=r(Number.isNaN,i)},function(t,e,o){"use strict";var n=o(0),r=n.both,i=n.anyPass,s=o(2),c=o(1),u=o(16);t.exports=r(s,i([u,c]))},function(t,e,o){"use strict";var n=o(38),r=o(0),i=r.pipe,s=r.both,c=r.equals,u=r.toString,p=r.pathSatisfies,f=o(5),a=o(7),l=o(1),m=i(u,c(u(Object))),x=p(s(l,m),["constructor"]);t.exports=function(t){if(!a(t)||!n(t))return!1;var e=Object.getPrototypeOf(t);return!!f(e)||x(e)}},function(t,e,o){"use strict";var n=o(39);t.exports=n},function(t,e,o){"use strict";var n=o(0),r=n.equals;t.exports=r(void 0)},function(t,e,o){"use strict";var n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};t.exports=function(t){return"object"===("undefined"==typeof t?"undefined":n(t))}},function(t,e,o){"use strict";var n=o(0),r=n.anyPass,i=n.isEmpty,s=n.isNil;t.exports=r([s,i])},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(8);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=n.isArrayLike;t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(3);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(9);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(10);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=n.isEmpty;t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(1);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(4);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(11);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.isNil,i=n.complement;t.exports=i(r)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(6);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(12);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(7);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(13);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(14);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(15);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.both,i=o(6);t.exports=r(i,isNaN)},function(t,e){t.exports=Array.isArray||function(t){return null!=t&&t.length>=0&&"[object Array]"===Object.prototype.toString.call(t)}},function(t,e){t.exports=function(t){return"[object Function]"===Object.prototype.toString.call(t)}},function(t,e){t.exports=function(t){return"[object Number]"===Object.prototype.toString.call(t)}},function(t,e){t.exports=function(t){return"[object Object]"===Object.prototype.toString.call(t)}},function(t,e){t.exports=function(t){return"[object String]"===Object.prototype.toString.call(t)}},function(t,e,o){"use strict";var n=o(33),r=o(15),i=o(5),s=o(2),c=o(27),u=o(8),p=o(18),f=o(9),a=o(21),l=o(23),m=o(17),x=o(14),y=o(32),b=o(19),v=o(4),N=o(25),j=o(3),O=o(20),d=o(1),S=o(24),g=o(12),A=o(29),F=o(7),h=o(30),P=o(13),R=o(31),q=o(10),k=o(22),E=o(6),L=o(28),B=o(11),D=o(26);t.exports={isNotUndefined:n,isUndefined:r,isNull:i,isNotNull:s,isNotNil:c,isArray:u,isNotArray:p,isBoolean:f,isNotBoolean:a,isNotEmpty:l,isNilOrEmpty:m,isString:x,isNotString:y,isNotArrayLike:b,isGeneratorFunction:v,isNotGeneratorFunction:N,isAsyncFunction:j,isNotAsyncFunction:O,isFunction:d,isNotFunction:S,isObject:g,isNotObject:A,isObjectLike:F,isNotObjectLike:h,isPlainObject:P,isNotPlainObject:R,isDate:q,isNotDate:k,isNumber:E,isNotNumber:L,isNaN:B,isNotNaN:D}}])});

@@ -1,2 +0,2 @@

!function(t,n){"object"==typeof exports&&"object"==typeof module?module.exports=n():"function"==typeof define&&define.amd?define([],n):"object"==typeof exports?exports.RA=n():t.RA=n()}(this,function(){return function(t){function n(e){if(r[e])return r[e].exports;var o=r[e]={i:e,l:!1,exports:{}};return t[e].call(o.exports,o,o.exports,n),o.l=!0,o.exports}var r={};return n.m=t,n.c=r,n.i=function(t){return t},n.d=function(t,r,e){n.o(t,r)||Object.defineProperty(t,r,{configurable:!1,enumerable:!0,get:e})},n.n=function(t){var r=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(r,"a",r),r},n.o=function(t,n){return Object.prototype.hasOwnProperty.call(t,n)},n.p="",n(n.s=336)}([function(t,n,r){var e=r(1),o=r(37);t.exports=function(t){return function n(r,u){switch(arguments.length){case 0:return n;case 1:return o(r)?n:e(function(n){return t(r,n)});default:return o(r)&&o(u)?n:o(r)?e(function(n){return t(n,u)}):o(u)?e(function(n){return t(r,n)}):t(r,u)}}}},function(t,n,r){var e=r(37);t.exports=function(t){return function n(r){return 0===arguments.length||e(r)?n:t.apply(this,arguments)}}},function(t,n,r){var e=r(1),o=r(0),u=r(37);t.exports=function(t){return function n(r,i,c){switch(arguments.length){case 0:return n;case 1:return u(r)?n:o(function(n,e){return t(r,n,e)});case 2:return u(r)&&u(i)?n:u(r)?o(function(n,r){return t(n,i,r)}):u(i)?o(function(n,e){return t(r,n,e)}):e(function(n){return t(r,i,n)});default:return u(r)&&u(i)&&u(c)?n:u(r)&&u(i)?o(function(n,r){return t(n,r,c)}):u(r)&&u(c)?o(function(n,r){return t(n,i,r)}):u(i)&&u(c)?o(function(n,e){return t(r,n,e)}):u(r)?e(function(n){return t(n,i,c)}):u(i)?e(function(n){return t(r,n,c)}):u(c)?e(function(n){return t(r,i,n)}):t(r,i,c)}}}},function(t,n,r){t.exports={F:r(142),T:r(143),__:r(144),add:r(32),addIndex:r(145),adjust:r(72),all:r(146),allPass:r(147),always:r(19),and:r(73),any:r(74),anyPass:r(148),ap:r(49),aperture:r(149),append:r(150),apply:r(75),applySpec:r(151),ascend:r(152),assoc:r(33),assocPath:r(76),binary:r(153),bind:r(77),both:r(154),call:r(155),chain:r(50),clamp:r(156),clone:r(157),comparator:r(158),complement:r(159),compose:r(51),composeK:r(78),composeP:r(160),concat:r(52),cond:r(161),construct:r(162),constructN:r(79),contains:r(163),converge:r(80),countBy:r(164),curry:r(34),curryN:r(6),dec:r(165),descend:r(166),defaultTo:r(81),difference:r(82),differenceWith:r(83),dissoc:r(84),dissocPath:r(167),divide:r(168),drop:r(85),dropLast:r(169),dropLastWhile:r(170),dropRepeats:r(171),dropRepeatsWith:r(86),dropWhile:r(172),either:r(173),empty:r(87),eqBy:r(174),eqProps:r(175),equals:r(11),evolve:r(176),filter:r(53),find:r(177),findIndex:r(178),findLast:r(179),findLastIndex:r(180),flatten:r(181),flip:r(35),forEach:r(182),forEachObjIndexed:r(183),fromPairs:r(184),groupBy:r(185),groupWith:r(186),gt:r(187),gte:r(188),has:r(189),hasIn:r(190),head:r(191),identical:r(88),identity:r(54),ifElse:r(192),inc:r(193),indexBy:r(194),indexOf:r(195),init:r(196),insert:r(197),insertAll:r(198),intersection:r(233),intersectionWith:r(234),intersperse:r(235),into:r(236),invert:r(237),invertObj:r(238),invoker:r(24),is:r(102),isArrayLike:r(25),isEmpty:r(239),isNil:r(240),join:r(241),juxt:r(103),keys:r(13),keysIn:r(242),last:r(104),lastIndexOf:r(243),length:r(105),lens:r(39),lensIndex:r(244),lensPath:r(245),lensProp:r(246),lift:r(40),liftN:r(106),lt:r(247),lte:r(248),map:r(8),mapAccum:r(249),mapAccumRight:r(250),mapObjIndexed:r(251),match:r(252),mathMod:r(253),max:r(20),maxBy:r(254),mean:r(107),median:r(255),memoize:r(256),merge:r(257),mergeAll:r(258),mergeWith:r(259),mergeWithKey:r(108),min:r(260),minBy:r(261),modulo:r(262),multiply:r(109),nAry:r(41),negate:r(263),none:r(264),not:r(110),nth:r(26),nthArg:r(265),objOf:r(111),of:r(266),omit:r(267),once:r(268),or:r(112),over:r(113),pair:r(269),partial:r(270),partialRight:r(271),partition:r(272),path:r(27),pathEq:r(273),pathOr:r(274),pathSatisfies:r(275),pick:r(276),pickAll:r(114),pickBy:r(277),pipe:r(115),pipeK:r(278),pipeP:r(116),pluck:r(28),prepend:r(117),product:r(279),project:r(280),prop:r(60),propEq:r(281),propIs:r(282),propOr:r(283),propSatisfies:r(284),props:r(285),range:r(286),reduce:r(14),reduceBy:r(42),reduceRight:r(118),reduceWhile:r(287),reduced:r(288),reject:r(43),remove:r(289),repeat:r(290),replace:r(291),reverse:r(44),scan:r(292),sequence:r(119),set:r(293),slice:r(18),sort:r(294),sortBy:r(295),sortWith:r(296),split:r(297),splitAt:r(298),splitEvery:r(299),splitWhen:r(300),subtract:r(301),sum:r(120),symmetricDifference:r(302),symmetricDifferenceWith:r(303),tail:r(61),take:r(121),takeLast:r(304),takeLastWhile:r(305),takeWhile:r(306),tap:r(307),test:r(308),times:r(122),toLower:r(309),toPairs:r(310),toPairsIn:r(311),toString:r(29),toUpper:r(312),transduce:r(313),transpose:r(314),traverse:r(315),trim:r(316),tryCatch:r(317),type:r(62),unapply:r(318),unary:r(319),uncurryN:r(320),unfold:r(321),union:r(322),unionWith:r(323),uniq:r(63),uniqBy:r(123),uniqWith:r(64),unless:r(324),unnest:r(325),until:r(326),update:r(124),useWith:r(125),values:r(126),valuesIn:r(327),view:r(328),when:r(329),where:r(127),whereEq:r(330),without:r(331),xprod:r(332),zip:r(333),zipObj:r(334),zipWith:r(335)}},function(t,n,r){var e=r(15),o=r(59);t.exports=function(t,n,r){return function(){if(0===arguments.length)return r();var u=Array.prototype.slice.call(arguments,0),i=u.pop();if(!e(i)){for(var c=0;c<t.length;){if("function"==typeof i[t[c]])return i[t[c]].apply(i,u);c+=1}if(o(i)){var s=n.apply(null,u);return s(i)}}return r.apply(this,arguments)}}},function(t,n){t.exports={init:function(){return this.xf["@@transducer/init"]()},result:function(t){return this.xf["@@transducer/result"](t)}}},function(t,n,r){var e=r(12),o=r(1),u=r(0),i=r(36);t.exports=u(function(t,n){return 1===t?o(n):e(t,i(t,[],n))})},function(t,n){t.exports=function(t,n){return Object.prototype.hasOwnProperty.call(n,t)}},function(t,n,r){var e=r(0),o=r(4),u=r(38),i=r(9),c=r(229),s=r(6),f=r(13);t.exports=e(o(["map"],c,function(t,n){switch(Object.prototype.toString.call(n)){case"[object Function]":return s(n.length,function(){return t.call(this,n.apply(this,arguments))});case"[object Object]":return i(function(r,e){return r[e]=t(n[e]),r},{},f(n));default:return u(t,n)}}))},function(t,n,r){var e=r(101),o=r(77),u=r(25);t.exports=function(){function t(t,n,r){for(var e=0,o=r.length;e<o;){if(n=t["@@transducer/step"](n,r[e]),n&&n["@@transducer/reduced"]){n=n["@@transducer/value"];break}e+=1}return t["@@transducer/result"](n)}function n(t,n,r){for(var e=r.next();!e.done;){if(n=t["@@transducer/step"](n,e.value),n&&n["@@transducer/reduced"]){n=n["@@transducer/value"];break}e=r.next()}return t["@@transducer/result"](n)}function r(t,n,r){return t["@@transducer/result"](r.reduce(o(t["@@transducer/step"],t),n))}var i="undefined"!=typeof Symbol?Symbol.iterator:"@@iterator";return function(o,c,s){if("function"==typeof o&&(o=e(o)),u(s))return t(o,c,s);if("function"==typeof s.reduce)return r(o,c,s);if(null!=s[i])return n(o,c,s[i]());if("function"==typeof s.next)return n(o,c,s);throw new TypeError("reduce: list must be array or iterable")}}()},function(t,n){t.exports=function(t,n){t=t||[],n=n||[];var r,e=t.length,o=n.length,u=[];for(r=0;r<e;)u[u.length]=t[r],r+=1;for(r=0;r<o;)u[u.length]=n[r],r+=1;return u}},function(t,n,r){var e=r(0),o=r(204);t.exports=e(function(t,n){return o(t,n,[],[])})},function(t,n){t.exports=function(t,n){switch(t){case 0:return function(){return n.apply(this,arguments)};case 1:return function(t){return n.apply(this,arguments)};case 2:return function(t,r){return n.apply(this,arguments)};case 3:return function(t,r,e){return n.apply(this,arguments)};case 4:return function(t,r,e,o){return n.apply(this,arguments)};case 5:return function(t,r,e,o,u){return n.apply(this,arguments)};case 6:return function(t,r,e,o,u,i){return n.apply(this,arguments)};case 7:return function(t,r,e,o,u,i,c){return n.apply(this,arguments)};case 8:return function(t,r,e,o,u,i,c,s){return n.apply(this,arguments)};case 9:return function(t,r,e,o,u,i,c,s,f){return n.apply(this,arguments)};case 10:return function(t,r,e,o,u,i,c,s,f,a){return n.apply(this,arguments)};default:throw new Error("First argument to _arity must be a non-negative integer no greater than ten")}}},function(t,n,r){var e=r(1),o=r(7),u=r(95);t.exports=function(){var t=!{toString:null}.propertyIsEnumerable("toString"),n=["constructor","valueOf","isPrototypeOf","toString","propertyIsEnumerable","hasOwnProperty","toLocaleString"],r=function(){"use strict";return arguments.propertyIsEnumerable("length")}(),i=function(t,n){for(var r=0;r<t.length;){if(t[r]===n)return!0;r+=1}return!1};return e("function"!=typeof Object.keys||r?function(e){if(Object(e)!==e)return[];var c,s,f=[],a=r&&u(e);for(c in e)!o(c,e)||a&&"length"===c||(f[f.length]=c);if(t)for(s=n.length-1;s>=0;)c=n[s],o(c,e)&&!i(f,c)&&(f[f.length]=c),s-=1;return f}:function(t){return Object(t)!==t?[]:Object.keys(t)})}()},function(t,n,r){var e=r(2),o=r(9);t.exports=e(o)},function(t,n){t.exports=Array.isArray||function(t){return null!=t&&t.length>=0&&"[object Array]"===Object.prototype.toString.call(t)}},function(t,n){t.exports=function(t){return t&&t["@@transducer/reduced"]?t:{"@@transducer/value":t,"@@transducer/reduced":!0}}},function(t,n,r){var e=r(94);t.exports=function(t,n){return e(n,t,0)>=0}},function(t,n,r){var e=r(21),o=r(2);t.exports=o(e("slice",function(t,n,r){return Array.prototype.slice.call(r,t,n)}))},function(t,n,r){var e=r(1);t.exports=e(function(t){return function(){return t}})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return n>t?n:t})},function(t,n,r){var e=r(15);t.exports=function(t,n){return function(){var r=arguments.length;if(0===r)return n();var o=arguments[r-1];return e(o)||"function"!=typeof o[t]?n.apply(this,arguments):o[t].apply(o,Array.prototype.slice.call(arguments,0,r-1))}}},function(t,n){t.exports=function(t){return"[object Function]"===Object.prototype.toString.call(t)}},function(t,n){t.exports=function(t){return"[object String]"===Object.prototype.toString.call(t)}},function(t,n,r){var e=r(0),o=r(22),u=r(6),i=r(29);t.exports=e(function(t,n){return u(t+1,function(){var r=arguments[t];if(null!=r&&o(r[n]))return r[n].apply(r,Array.prototype.slice.call(arguments,0,t));throw new TypeError(i(r)+' does not have a method named "'+n+'"')})})},function(t,n,r){var e=r(1),o=r(15),u=r(23);t.exports=e(function(t){return!!o(t)||!!t&&("object"==typeof t&&(!u(t)&&(1===t.nodeType?!!t.length:0===t.length||t.length>0&&(t.hasOwnProperty(0)&&t.hasOwnProperty(t.length-1)))))})},function(t,n,r){var e=r(0),o=r(23);t.exports=e(function(t,n){var r=t<0?n.length+t:t;return o(n)?n.charAt(r):n[r]})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=n,e=0;e<t.length;){if(null==r)return;r=r[t[e]],e+=1}return r})},function(t,n,r){var e=r(0),o=r(8),u=r(60);t.exports=e(function(t,n){return o(u(t),n)})},function(t,n,r){var e=r(1),o=r(216);t.exports=e(function(t){return o(t,[])})},function(t,n,r){"use strict";var e=r(3),o=e.anyPass,u=r(22),i=r(46),c=r(45);t.exports=o([u,i,c])},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(47);t.exports=o(u)},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return Number(t)+Number(n)})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){var e={};for(var o in r)e[o]=r[o];return e[t]=n,e})},function(t,n,r){var e=r(1),o=r(6);t.exports=e(function(t){return o(t.length,t)})},function(t,n,r){var e=r(1),o=r(34);t.exports=e(function(t){return o(function(n,r){var e=Array.prototype.slice.call(arguments,0);return e[0]=r,e[1]=n,t.apply(this,e)})})},function(t,n,r){var e=r(12),o=r(37);t.exports=function t(n,r,u){return function(){for(var i=[],c=0,s=n,f=0;f<r.length||c<arguments.length;){var a;f<r.length&&(!o(r[f])||c>=arguments.length)?a=r[f]:(a=arguments[c],c+=1),i[f]=a,o(a)||(s-=1),f+=1}return s<=0?u.apply(this,i):e(s,t(n,i,u))}}},function(t,n){t.exports=function(t){return null!=t&&"object"==typeof t&&t["@@functional/placeholder"]===!0}},function(t,n){t.exports=function(t,n){for(var r=0,e=n.length,o=Array(e);r<e;)o[r]=t(n[r]),r+=1;return o}},function(t,n,r){var e=r(0),o=r(8);t.exports=e(function(t,n){return function(r){return function(e){return o(function(t){return n(t,e)},r(t(e)))}}})},function(t,n,r){var e=r(1),o=r(106);t.exports=e(function(t){return o(t.length,t)})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){switch(t){case 0:return function(){return n.call(this)};case 1:return function(t){return n.call(this,t)};case 2:return function(t,r){return n.call(this,t,r)};case 3:return function(t,r,e){return n.call(this,t,r,e)};case 4:return function(t,r,e,o){return n.call(this,t,r,e,o)};case 5:return function(t,r,e,o,u){return n.call(this,t,r,e,o,u)};case 6:return function(t,r,e,o,u,i){return n.call(this,t,r,e,o,u,i)};case 7:return function(t,r,e,o,u,i,c){return n.call(this,t,r,e,o,u,i,c)};case 8:return function(t,r,e,o,u,i,c,s){return n.call(this,t,r,e,o,u,i,c,s)};case 9:return function(t,r,e,o,u,i,c,s,f){return n.call(this,t,r,e,o,u,i,c,s,f)};case 10:return function(t,r,e,o,u,i,c,s,f,a){return n.call(this,t,r,e,o,u,i,c,s,f,a)};default:throw new Error("First argument to nAry must be a non-negative integer no greater than ten")}})},function(t,n,r){var e=r(36),o=r(4),u=r(7),i=r(9),c=r(230);t.exports=e(4,[],o([],c,function(t,n,r,e){return i(function(e,o){var i=r(o);return e[i]=t(u(i,e)?e[i]:n,o),e},{},e)}))},function(t,n,r){var e=r(91),o=r(0),u=r(53);t.exports=o(function(t,n){return u(e(t),n)})},function(t,n,r){var e=r(1),o=r(23);t.exports=e(function(t){return o(t)?t.split("").reverse().join(""):Array.prototype.slice.call(t,0).reverse()})},function(t,n,r){"use strict";t.exports=function(t){return"[object AsyncFunction]"===Object.prototype.toString.call(t)}},function(t,n,r){"use strict";var e=r(3),o=e.or,u=r(31),i=null;try{i=new Function("return function* () {}")().constructor}catch(t){}t.exports=function(t){var n="[object AsyncFunction]"===Object.prototype.toString.call(t),r=u(i)&&t instanceof i;return o(n,r)}},function(t,n,r){"use strict";var e=r(3),o=e.equals;t.exports=o(null)},function(t,n,r){"use strict";var e=r(3),o=e.both,u=r(31),i=r(71);t.exports=o(u,i)},function(t,n,r){var e=r(10),o=r(0),u=r(9),i=r(8);t.exports=o(function(t,n){return"function"==typeof t.ap?t.ap(n):"function"==typeof t?function(r){return t(r)(n(r))}:u(function(t,r){return e(t,i(r,n))},[],t)})},function(t,n,r){var e=r(0),o=r(4),u=r(98),i=r(219),c=r(8);t.exports=e(o(["chain"],i,function(t,n){return"function"==typeof n?function(r){return t(n(r))(r)}:u(!1)(c(t,n))}))},function(t,n,r){var e=r(115),o=r(44);t.exports=function(){if(0===arguments.length)throw new Error("compose requires at least one argument");return e.apply(this,o(arguments))}},function(t,n,r){var e=r(0),o=r(15),u=r(22),i=r(29);t.exports=e(function(t,n){if(null==t||!u(t.concat))throw new TypeError(i(t)+' does not have a method named "concat"');if(o(t)&&!o(n))throw new TypeError(i(n)+" is not an array");return t.concat(n)})},function(t,n,r){var e=r(0),o=r(4),u=r(93),i=r(58),c=r(9),s=r(224),f=r(13);t.exports=e(o(["filter"],s,function(t,n){return i(n)?c(function(r,e){return t(n[e])&&(r[e]=n[e]),r},{},f(n)):u(t,n)}))},function(t,n,r){var e=r(1),o=r(57);t.exports=e(o)},function(t,n,r){var e=r(209);t.exports="function"==typeof Object.assign?Object.assign:e},function(t,n){t.exports=function(t,n,r){for(var e=0,o=r.length;e<o;){if(t(n,r[e]))return!0;e+=1}return!1}},function(t,n){t.exports=function(t){return t}},function(t,n){t.exports=function(t){return"[object Object]"===Object.prototype.toString.call(t)}},function(t,n){t.exports=function(t){return"function"==typeof t["@@transducer/step"]}},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return n[t]})},function(t,n,r){var e=r(21),o=r(1),u=r(18);t.exports=o(e("tail",u(1,1/0)))},function(t,n,r){var e=r(1);t.exports=e(function(t){return null===t?"Null":void 0===t?"Undefined":Object.prototype.toString.call(t).slice(8,-1)})},function(t,n,r){var e=r(54),o=r(123);t.exports=o(e)},function(t,n,r){var e=r(56),o=r(0);t.exports=o(function(t,n){for(var r,o=0,u=n.length,i=[];o<u;)r=n[o],e(t,r,i)||(i[i.length]=r),o+=1;return i})},function(t,n,r){"use strict";var e=r(15);t.exports=e},function(t,n,r){"use strict";var e=r(3),o=e.is;t.exports=o(Boolean)},function(t,n,r){"use strict";var e=r(3),o=e.both,u=e.anyPass,i=r(31),c=r(30),s=r(71);t.exports=o(i,u([s,c]))},function(t,n,r){"use strict";var e=r(58),o=r(3),u=o.pipe,i=o.both,c=o.equals,s=o.toString,f=o.pathSatisfies,a=r(47),p=r(48),l=r(30),h=u(s,c(s(Object))),v=f(i(l,h),["constructor"]);t.exports=function(t){if(!p(t)||!e(t))return!1;var n=Object.getPrototypeOf(t);return!!a(n)||v(n)}},function(t,n,r){"use strict";var e=r(23);t.exports=e},function(t,n,r){"use strict";var e=r(3),o=e.equals;t.exports=o(void 0)},function(t,n,r){"use strict";var e="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};t.exports=function(t){return"object"===("undefined"==typeof t?"undefined":e(t))}},function(t,n,r){var e=r(10),o=r(2);t.exports=o(function(t,n,r){if(n>=r.length||n<-r.length)return r;var o=n<0?r.length:0,u=o+n,i=e(r);return i[u]=t(r[u]),i})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t&&n})},function(t,n,r){var e=r(0),o=r(4),u=r(99);t.exports=e(o(["any"],u,function(t,n){for(var r=0;r<n.length;){if(t(n[r]))return!0;r+=1}return!1}))},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t.apply(this,n)})},function(t,n,r){var e=r(2),o=r(7),u=r(15),i=r(96),c=r(33);t.exports=e(function t(n,r,e){if(0===n.length)return r;var s=n[0];if(n.length>1){var f=o(s,e)?e[s]:i(n[1])?[]:{};r=t(Array.prototype.slice.call(n,1),r,f)}if(i(s)&&u(e)){var a=[].concat(e);return a[s]=r,a}return c(s,r,e)})},function(t,n,r){var e=r(12),o=r(0);t.exports=o(function(t,n){return e(t.length,function(){return t.apply(n,arguments)})})},function(t,n,r){var e=r(50),o=r(51),u=r(8);t.exports=function(){if(0===arguments.length)throw new Error("composeK requires at least one argument");var t=Array.prototype.slice.call(arguments),n=t.pop();return o(o.apply(this,u(e,t)),n)}},function(t,n,r){var e=r(0),o=r(34),u=r(41);t.exports=e(function(t,n){if(t>10)throw new Error("Constructor with greater than ten arguments");return 0===t?function(){return new n}:o(u(t,function(t,r,e,o,u,i,c,s,f,a){switch(arguments.length){case 1:return new n(t);case 2:return new n(t,r);case 3:return new n(t,r,e);case 4:return new n(t,r,e,o);case 5:return new n(t,r,e,o,u);case 6:return new n(t,r,e,o,u,i);case 7:return new n(t,r,e,o,u,i,c);case 8:return new n(t,r,e,o,u,i,c,s);case 9:return new n(t,r,e,o,u,i,c,s,f);case 10:return new n(t,r,e,o,u,i,c,s,f,a)}}))})},function(t,n,r){var e=r(0),o=r(38),u=r(6),i=r(20),c=r(28),s=r(14);t.exports=e(function(t,n){return u(s(i,0,c("length",n)),function(){var r=arguments,e=this;return t.apply(e,o(function(t){return t.apply(e,r)},n))})})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return null==n||n!==n?t:n})},function(t,n,r){var e=r(17),o=r(0);t.exports=o(function(t,n){for(var r=[],o=0,u=t.length;o<u;)e(t[o],n)||e(t[o],r)||(r[r.length]=t[o]),o+=1;return r})},function(t,n,r){var e=r(56),o=r(2);t.exports=o(function(t,n,r){for(var o=[],u=0,i=n.length;u<i;)e(t,n[u],r)||e(t,n[u],o)||o.push(n[u]),u+=1;return o})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){var r={};for(var e in n)r[e]=n[e];return delete r[t],r})},function(t,n,r){var e=r(0),o=r(4),u=r(220),i=r(18);t.exports=e(o(["drop"],u,function(t,n){return i(Math.max(0,t),1/0,n)}))},function(t,n,r){var e=r(0),o=r(4),u=r(100),i=r(104);t.exports=e(o([],u,function(t,n){var r=[],e=1,o=n.length;if(0!==o)for(r[0]=n[0];e<o;)t(i(r),n[e])||(r[r.length]=n[e]),e+=1;return r}))},function(t,n,r){var e=r(1),o=r(95),u=r(15),i=r(58),c=r(23);t.exports=e(function(t){return null!=t&&"function"==typeof t.empty?t.empty():null!=t&&null!=t.constructor&&"function"==typeof t.constructor.empty?t.constructor.empty():u(t)?[]:c(t)?"":i(t)?{}:o(t)?function(){return arguments}():void 0})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t===n?0!==t||1/t===1/n:t!==t&&n!==n})},function(t,n,r){var e=r(90),o=r(62);t.exports=function t(n,r,u,i){var c=function(e){for(var o=r.length,c=0;c<o;){if(n===r[c])return u[c];c+=1}r[c+1]=n,u[c+1]=e;for(var s in n)e[s]=i?t(n[s],r,u,!0):n[s];return e};switch(o(n)){case"Object":return c({});case"Array":return c([]);case"Date":return new Date(n.valueOf());case"RegExp":return e(n);default:return n}}},function(t,n){t.exports=function(t){return new RegExp(t.source,(t.global?"g":"")+(t.ignoreCase?"i":"")+(t.multiline?"m":"")+(t.sticky?"y":"")+(t.unicode?"u":""))}},function(t,n){t.exports=function(t){return function(){return!t.apply(this,arguments)}}},function(t,n,r){var e=r(12),o=r(0);t.exports=function(t){return o(function(n,r){return e(Math.max(0,n.length-r.length),function(){return n.apply(this,t(r,arguments))})})}},function(t,n){t.exports=function(t,n){for(var r=0,e=n.length,o=[];r<e;)t(n[r])&&(o[o.length]=n[r]),r+=1;return o}},function(t,n,r){var e=r(11);t.exports=function(t,n,r){var o,u;if("function"==typeof t.indexOf)switch(typeof n){case"number":if(0===n){for(o=1/n;r<t.length;){if(u=t[r],0===u&&1/u===o)return r;r+=1}return-1}if(n!==n){for(;r<t.length;){if(u=t[r],"number"==typeof u&&u!==u)return r;r+=1}return-1}return t.indexOf(n,r);case"string":case"boolean":case"function":case"undefined":return t.indexOf(n,r);case"object":if(null===n)return t.indexOf(n,r)}for(;r<t.length;){if(e(t[r],n))return r;r+=1}return-1}},function(t,n,r){var e=r(7);t.exports=function(){var t=Object.prototype.toString;return"[object Arguments]"===t.call(arguments)?function(n){return"[object Arguments]"===t.call(n)}:function(t){return e("callee",t)}}()},function(t,n){t.exports=Number.isInteger||function(t){return t<<0===t}},function(t,n){t.exports=function(t){return"[object Number]"===Object.prototype.toString.call(t)}},function(t,n,r){var e=r(25);t.exports=function(t){return function n(r){for(var o,u,i,c=[],s=0,f=r.length;s<f;){if(e(r[s]))for(o=t?n(r[s]):r[s],i=0,u=o.length;i<u;)c[c.length]=o[i],i+=1;else c[c.length]=r[s];s+=1}return c}}},function(t,n,r){var e=r(0),o=r(16),u=r(5);t.exports=function(){function t(t,n){this.xf=n,this.f=t,this.any=!1}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=function(t){return this.any||(t=this.xf["@@transducer/step"](t,!1)),this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){return this.f(n)&&(this.any=!0,t=o(this.xf["@@transducer/step"](t,!0))),t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(5);t.exports=function(){function t(t,n){this.xf=n,this.pred=t,this.lastValue=void 0,this.seenFirstValue=!1}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=o.result,t.prototype["@@transducer/step"]=function(t,n){var r=!1;return this.seenFirstValue?this.pred(this.lastValue,n)&&(r=!0):this.seenFirstValue=!0,this.lastValue=n,r?t:this.xf["@@transducer/step"](t,n)},e(function(n,r){return new t(n,r)})}()},function(t,n){t.exports=function(){function t(t){this.f=t}return t.prototype["@@transducer/init"]=function(){throw new Error("init not implemented on XWrap")},t.prototype["@@transducer/result"]=function(t){return t},t.prototype["@@transducer/step"]=function(t,n){return this.f(t,n)},function(n){return new t(n)}}()},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return null!=n&&n.constructor===t||n instanceof t})},function(t,n,r){var e=r(1),o=r(80);t.exports=e(function(t){return o(function(){return Array.prototype.slice.call(arguments,0)},t)})},function(t,n,r){var e=r(26);t.exports=e(-1)},function(t,n,r){var e=r(1),o=r(97);t.exports=e(function(t){return null!=t&&o(t.length)?t.length:NaN})},function(t,n,r){var e=r(0),o=r(9),u=r(49),i=r(6),c=r(8);t.exports=e(function(t,n){var r=i(t,n);return i(t,function(){return o(u,c(r,arguments[0]),Array.prototype.slice.call(arguments,1))})})},function(t,n,r){var e=r(1),o=r(120);t.exports=e(function(t){return o(t)/t.length})},function(t,n,r){var e=r(2),o=r(7);t.exports=e(function(t,n,r){var e,u={};for(e in n)o(e,n)&&(u[e]=o(e,r)?t(e,n[e],r[e]):n[e]);for(e in r)o(e,r)&&!o(e,u)&&(u[e]=r[e]);return u})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t*n})},function(t,n,r){var e=r(1);t.exports=e(function(t){return!t})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){var r={};return r[t]=n,r})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t||n})},function(t,n,r){var e=r(2);t.exports=function(){var t=function(n){return{value:n,map:function(r){return t(r(n))}}};return e(function(n,r,e){return n(function(n){return t(r(n))})(e).value})}()},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r={},e=0,o=t.length;e<o;){var u=t[e];r[u]=n[u],e+=1}return r})},function(t,n,r){var e=r(12),o=r(211),u=r(14),i=r(61);t.exports=function(){if(0===arguments.length)throw new Error("pipe requires at least one argument");return e(arguments[0].length,u(o,arguments[0],i(arguments)))}},function(t,n,r){var e=r(12),o=r(212),u=r(14),i=r(61);t.exports=function(){if(0===arguments.length)throw new Error("pipeP requires at least one argument");return e(arguments[0].length,u(o,arguments[0],i(arguments)))}},function(t,n,r){var e=r(10),o=r(0);t.exports=o(function(t,n){return e([t],n)})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){for(var e=r.length-1;e>=0;)n=t(r[e],n),e-=1;return n})},function(t,n,r){var e=r(0),o=r(49),u=r(8),i=r(117),c=r(118);t.exports=e(function(t,n){return"function"==typeof n.sequence?n.sequence(t):c(function(t,n){return o(u(i,t),n)},t([]),n)})},function(t,n,r){var e=r(32),o=r(14);t.exports=o(e,0)},function(t,n,r){var e=r(0),o=r(4),u=r(231),i=r(18);t.exports=e(o(["take"],u,function(t,n){return i(0,t<0?1/0:t,n)}))},function(t,n,r){var e=r(0);t.exports=e(function(t,n){var r,e=Number(n),o=0;if(e<0||isNaN(e))throw new RangeError("n must be a non-negative number");for(r=new Array(e);o<e;)r[o]=t(o),o+=1;return r})},function(t,n,r){var e=r(199),o=r(0);t.exports=o(function(t,n){for(var r,o,u=new e,i=[],c=0;c<n.length;)o=n[c],r=t(o),u.add(r)&&i.push(o),c+=1;return i})},function(t,n,r){var e=r(2),o=r(72),u=r(19);t.exports=e(function(t,n,r){return o(u(n),t,r)})},function(t,n,r){var e=r(0),o=r(6);t.exports=e(function(t,n){return o(n.length,function(){for(var r=[],e=0;e<n.length;)r.push(n[e].call(this,arguments[e])),e+=1;return t.apply(this,r.concat(Array.prototype.slice.call(arguments,n.length)))})})},function(t,n,r){var e=r(1),o=r(13);t.exports=e(function(t){for(var n=o(t),r=n.length,e=[],u=0;u<r;)e[u]=t[n[u]],u+=1;return e})},function(t,n,r){var e=r(0),o=r(7);t.exports=e(function(t,n){for(var r in t)if(o(r,t)&&!t[r](n[r]))return!1;return!0})},function(t,n,r){"use strict";var e=r(3),o=e.anyPass,u=e.isEmpty,i=e.isNil;t.exports=o([i,u])},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(65);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=e.isArrayLike;t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(45);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(66);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=e.isEmpty;t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(30);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(46);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.isNil,u=e.complement;t.exports=u(o)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(67);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(48);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(68);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(69);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(70);t.exports=o(u)},function(t,n,r){var e=r(19);t.exports=e(!1)},function(t,n,r){var e=r(19);t.exports=e(!0)},function(t,n){t.exports={"@@functional/placeholder":!0}},function(t,n,r){var e=r(10),o=r(1),u=r(6);t.exports=o(function(t){return u(t.length,function(){var n=0,r=arguments[0],o=arguments[arguments.length-1],u=Array.prototype.slice.call(arguments,0);return u[0]=function(){var t=r.apply(this,e(arguments,[n,o]));return n+=1,t},t.apply(this,u)})})},function(t,n,r){var e=r(0),o=r(4),u=r(217);t.exports=e(o(["all"],u,function(t,n){for(var r=0;r<n.length;){if(!t(n[r]))return!1;r+=1}return!0}))},function(t,n,r){var e=r(1),o=r(6),u=r(20),i=r(28),c=r(14);t.exports=e(function(t){return o(c(u,0,i("length",t)),function(){for(var n=0,r=t.length;n<r;){if(!t[n].apply(this,arguments))return!1;n+=1}return!0})})},function(t,n,r){var e=r(1),o=r(6),u=r(20),i=r(28),c=r(14);t.exports=e(function(t){return o(c(u,0,i("length",t)),function(){for(var n=0,r=t.length;n<r;){if(t[n].apply(this,arguments))return!0;n+=1}return!1})})},function(t,n,r){var e=r(200),o=r(0),u=r(4),i=r(218);t.exports=o(u([],i,e))},function(t,n,r){var e=r(10),o=r(0);t.exports=o(function(t,n){return e(n,[t])})},function(t,n,r){var e=r(1),o=r(75),u=r(6),i=r(8),c=r(20),s=r(28),f=r(14),a=r(126);t.exports=e(function t(n){return n=i(function(n){return"function"==typeof n?n:t(n)},n),u(f(c,0,s("length",a(n))),function(){var t=arguments;return i(function(n){return o(n,t)},n)})})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){var e=t(n),o=t(r);return e<o?-1:e>o?1:0})},function(t,n,r){var e=r(1),o=r(41);t.exports=e(function(t){return o(2,t)})},function(t,n,r){var e=r(0),o=r(22),u=r(73),i=r(40);t.exports=e(function(t,n){return o(t)?function(){return t.apply(this,arguments)&&n.apply(this,arguments)}:i(u)(t,n)})},function(t,n,r){var e=r(34);t.exports=e(function(t){return t.apply(this,Array.prototype.slice.call(arguments,1))})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){if(t>n)throw new Error("min must not be greater than max in clamp(min, max, value)");return r<t?t:r>n?n:r})},function(t,n,r){var e=r(89),o=r(1);t.exports=o(function(t){return null!=t&&"function"==typeof t.clone?t.clone():e(t,[],[],!0)})},function(t,n,r){var e=r(1);t.exports=e(function(t){return function(n,r){return t(n,r)?-1:t(r,n)?1:0}})},function(t,n,r){var e=r(40),o=r(110);t.exports=e(o)},function(t,n,r){var e=r(116),o=r(44);t.exports=function(){if(0===arguments.length)throw new Error("composeP requires at least one argument");return e.apply(this,o(arguments))}},function(t,n,r){var e=r(12),o=r(1),u=r(8),i=r(20),c=r(14);t.exports=o(function(t){var n=c(i,0,u(function(t){return t[0].length},t));return e(n,function(){for(var n=0;n<t.length;){if(t[n][0].apply(this,arguments))return t[n][1].apply(this,arguments);n+=1}})})},function(t,n,r){var e=r(1),o=r(79);t.exports=e(function(t){return o(t.length,t)})},function(t,n,r){var e=r(17),o=r(0);t.exports=o(e)},function(t,n,r){var e=r(42);t.exports=e(function(t,n){return t+1},0)},function(t,n,r){var e=r(32);t.exports=e(-1)},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){var e=t(n),o=t(r);return e>o?-1:e<o?1:0})},function(t,n,r){var e=r(0),o=r(33),u=r(84);t.exports=e(function t(n,r){switch(n.length){case 0:return r;case 1:return u(n[0],r);default:var e=n[0],i=Array.prototype.slice.call(n,1);return null==r[e]?r:o(e,t(i,r[e]),r)}})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t/n})},function(t,n,r){var e=r(0),o=r(4),u=r(202),i=r(221);t.exports=e(o([],i,u))},function(t,n,r){var e=r(0),o=r(4),u=r(203),i=r(222);t.exports=e(o([],i,u))},function(t,n,r){var e=r(1),o=r(4),u=r(100),i=r(86),c=r(11);t.exports=e(o([],u(c),i(c)))},function(t,n,r){var e=r(0),o=r(4),u=r(223);t.exports=e(o(["dropWhile"],u,function(t,n){for(var r=0,e=n.length;r<e&&t(n[r]);)r+=1;return Array.prototype.slice.call(n,r)}))},function(t,n,r){var e=r(0),o=r(22),u=r(40),i=r(112);t.exports=e(function(t,n){return o(t)?function(){return t.apply(this,arguments)||n.apply(this,arguments)}:u(i)(t,n)})},function(t,n,r){var e=r(2),o=r(11);t.exports=e(function(t,n,r){return o(t(n),t(r))})},function(t,n,r){var e=r(2),o=r(11);t.exports=e(function(t,n,r){return o(n[t],r[t]);
})},function(t,n,r){var e=r(0);t.exports=e(function t(n,r){var e,o,u,i={};for(o in r)e=n[o],u=typeof e,i[o]="function"===u?e(r[o]):e&&"object"===u?t(e,r[o]):r[o];return i})},function(t,n,r){var e=r(0),o=r(4),u=r(225);t.exports=e(o(["find"],u,function(t,n){for(var r=0,e=n.length;r<e;){if(t(n[r]))return n[r];r+=1}}))},function(t,n,r){var e=r(0),o=r(4),u=r(226);t.exports=e(o([],u,function(t,n){for(var r=0,e=n.length;r<e;){if(t(n[r]))return r;r+=1}return-1}))},function(t,n,r){var e=r(0),o=r(4),u=r(227);t.exports=e(o([],u,function(t,n){for(var r=n.length-1;r>=0;){if(t(n[r]))return n[r];r-=1}}))},function(t,n,r){var e=r(0),o=r(4),u=r(228);t.exports=e(o([],u,function(t,n){for(var r=n.length-1;r>=0;){if(t(n[r]))return r;r-=1}return-1}))},function(t,n,r){var e=r(1),o=r(98);t.exports=e(o(!0))},function(t,n,r){var e=r(21),o=r(0);t.exports=o(e("forEach",function(t,n){for(var r=n.length,e=0;e<r;)t(n[e]),e+=1;return n}))},function(t,n,r){var e=r(0),o=r(13);t.exports=e(function(t,n){for(var r=o(n),e=0;e<r.length;){var u=r[e];t(n[u],u,n),e+=1}return n})},function(t,n,r){var e=r(1);t.exports=e(function(t){for(var n={},r=0;r<t.length;)n[t[r][0]]=t[r][1],r+=1;return n})},function(t,n,r){var e=r(21),o=r(0),u=r(42);t.exports=o(e("groupBy",u(function(t,n){return null==t&&(t=[]),t.push(n),t},null)))},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=[],e=0,o=n.length;e<o;){for(var u=e+1;u<o&&t(n[e],n[u]);)u+=1;r.push(n.slice(e,u)),e=u}return r})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t>n})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t>=n})},function(t,n,r){var e=r(0),o=r(7);t.exports=e(o)},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t in n})},function(t,n,r){var e=r(26);t.exports=e(0)},function(t,n,r){var e=r(2),o=r(6);t.exports=e(function(t,n,r){return o(Math.max(t.length,n.length,r.length),function(){return t.apply(this,arguments)?n.apply(this,arguments):r.apply(this,arguments)})})},function(t,n,r){var e=r(32);t.exports=e(1)},function(t,n,r){var e=r(42);t.exports=e(function(t,n){return n},null)},function(t,n,r){var e=r(0),o=r(94),u=r(15);t.exports=e(function(t,n){return"function"!=typeof n.indexOf||u(n)?o(n,t,0):n.indexOf(t)})},function(t,n,r){var e=r(18);t.exports=e(0,-1)},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){t=t<r.length&&t>=0?t:r.length;var e=Array.prototype.slice.call(r,0);return e.splice(t,0,n),e})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){return t=t<r.length&&t>=0?t:r.length,[].concat(Array.prototype.slice.call(r,0,t),n,Array.prototype.slice.call(r,t))})},function(t,n,r){var e=r(17);t.exports=function(){function t(){this._nativeSet="function"==typeof Set?new Set:null,this._items={}}function n(t,n,r){var o,u,i=typeof t;switch(i){case"string":case"number":return 0===t&&1/t===-(1/0)?!!r._items["-0"]||(n&&(r._items["-0"]=!0),!1):null!==r._nativeSet?n?(o=r._nativeSet.size,r._nativeSet.add(t),u=r._nativeSet.size,u===o):r._nativeSet.has(t):i in r._items?t in r._items[i]||(n&&(r._items[i][t]=!0),!1):(n&&(r._items[i]={},r._items[i][t]=!0),!1);case"boolean":if(i in r._items){var c=t?1:0;return!!r._items[i][c]||(n&&(r._items[i][c]=!0),!1)}return n&&(r._items[i]=t?[!1,!0]:[!0,!1]),!1;case"function":return null!==r._nativeSet?n?(o=r._nativeSet.size,r._nativeSet.add(t),u=r._nativeSet.size,u===o):r._nativeSet.has(t):i in r._items?!!e(t,r._items[i])||(n&&r._items[i].push(t),!1):(n&&(r._items[i]=[t]),!1);case"undefined":return!!r._items[i]||(n&&(r._items[i]=!0),!1);case"object":if(null===t)return!!r._items.null||(n&&(r._items.null=!0),!1);default:return i=Object.prototype.toString.call(t),i in r._items?!!e(t,r._items[i])||(n&&r._items[i].push(t),!1):(n&&(r._items[i]=[t]),!1)}}return t.prototype.add=function(t){return!n(t,!0,this)},t.prototype.has=function(t){return n(t,!1,this)},t}()},function(t,n){t.exports=function(t,n){for(var r=0,e=n.length-(t-1),o=new Array(e>=0?e:0);r<e;)o[r]=Array.prototype.slice.call(n,r,r+t),r+=1;return o}},function(t,n){t.exports=function(t){for(var n,r=[];!(n=t.next()).done;)r.push(n.value);return r}},function(t,n,r){var e=r(121);t.exports=function(t,n){return e(t<n.length?n.length-t:0,n)}},function(t,n){t.exports=function(t,n){for(var r=n.length-1;r>=0&&t(n[r]);)r-=1;return Array.prototype.slice.call(n,0,r+1)}},function(t,n,r){var e=r(201),o=r(207),u=r(7),i=r(88),c=r(13),s=r(62);t.exports=function t(n,r,f,a){if(i(n,r))return!0;if(s(n)!==s(r))return!1;if(null==n||null==r)return!1;if("function"==typeof n.equals||"function"==typeof r.equals)return"function"==typeof n.equals&&n.equals(r)&&"function"==typeof r.equals&&r.equals(n);switch(s(n)){case"Arguments":case"Array":case"Object":if("function"==typeof n.constructor&&"Promise"===o(n.constructor))return n===r;break;case"Boolean":case"Number":case"String":if(typeof n!=typeof r||!i(n.valueOf(),r.valueOf()))return!1;break;case"Date":if(!i(n.valueOf(),r.valueOf()))return!1;break;case"Error":return n.name===r.name&&n.message===r.message;case"RegExp":if(n.source!==r.source||n.global!==r.global||n.ignoreCase!==r.ignoreCase||n.multiline!==r.multiline||n.sticky!==r.sticky||n.unicode!==r.unicode)return!1;break;case"Map":case"Set":if(!t(e(n.entries()),e(r.entries()),f,a))return!1;break;case"Int8Array":case"Uint8Array":case"Uint8ClampedArray":case"Int16Array":case"Uint16Array":case"Int32Array":case"Uint32Array":case"Float32Array":case"Float64Array":break;case"ArrayBuffer":break;default:return!1}var p=c(n);if(p.length!==c(r).length)return!1;for(var l=f.length-1;l>=0;){if(f[l]===n)return a[l]===r;l-=1}for(f.push(n),a.push(r),l=p.length-1;l>=0;){var h=p[l];if(!u(h,r)||!t(r[h],n[h],f,a))return!1;l-=1}return f.pop(),a.pop(),!0}},function(t,n,r){var e=r(206),o=r(9),u=r(5),i=r(25);t.exports=function(){var t=function(t){return{"@@transducer/init":u.init,"@@transducer/result":function(n){return t["@@transducer/result"](n)},"@@transducer/step":function(n,r){var o=t["@@transducer/step"](n,r);return o["@@transducer/reduced"]?e(o):o}}};return function(n){var r=t(n);return{"@@transducer/init":u.init,"@@transducer/result":function(t){return r["@@transducer/result"](t)},"@@transducer/step":function(t,n){return i(n)?o(r,t,n):o(r,t,[n])}}}}()},function(t,n){t.exports=function(t){return{"@@transducer/value":t,"@@transducer/reduced":!0}}},function(t,n){t.exports=function(t){var n=String(t).match(/^function (\w*)/);return null==n?"":n[1]}},function(t,n){t.exports=function(t){return"[object RegExp]"===Object.prototype.toString.call(t)}},function(t,n,r){var e=r(7);t.exports=function(t){if(null==t)throw new TypeError("Cannot convert undefined or null to object");for(var n=Object(t),r=1,o=arguments.length;r<o;){var u=arguments[r];if(null!=u)for(var i in u)e(i,u)&&(n[i]=u[i]);r+=1}return n}},function(t,n){t.exports=function(t){return[t]}},function(t,n){t.exports=function(t,n){return function(){return n.call(this,t.apply(this,arguments))}}},function(t,n){t.exports=function(t,n){return function(){var r=this;return t.apply(r,arguments).then(function(t){return n.call(r,t)})}}},function(t,n){t.exports=function(t){var n=t.replace(/\\/g,"\\\\").replace(/[\b]/g,"\\b").replace(/\f/g,"\\f").replace(/\n/g,"\\n").replace(/\r/g,"\\r").replace(/\t/g,"\\t").replace(/\v/g,"\\v").replace(/\0/g,"\\0");return'"'+n.replace(/"/g,'\\"')+'"'}},function(t,n,r){var e=r(55),o=r(57),u=r(59),i=r(25),c=r(111);t.exports=function(){var t={"@@transducer/init":Array,"@@transducer/step":function(t,n){return t.push(n),t},"@@transducer/result":o},n={"@@transducer/init":String,"@@transducer/step":function(t,n){return t+n},"@@transducer/result":o},r={"@@transducer/init":Object,"@@transducer/step":function(t,n){return e(t,i(n)?c(n[0],n[1]):n)},"@@transducer/result":o};return function(e){if(u(e))return e;if(i(e))return t;if("string"==typeof e)return n;if("object"==typeof e)return r;throw new Error("Cannot create transformer for "+e)}}()},function(t,n){t.exports=function(){var t=function(t){return(t<10?"0":"")+t};return"function"==typeof Date.prototype.toISOString?function(t){return t.toISOString()}:function(n){return n.getUTCFullYear()+"-"+t(n.getUTCMonth()+1)+"-"+t(n.getUTCDate())+"T"+t(n.getUTCHours())+":"+t(n.getUTCMinutes())+":"+t(n.getUTCSeconds())+"."+(n.getUTCMilliseconds()/1e3).toFixed(3).slice(2,5)+"Z"}}()},function(t,n,r){var e=r(17),o=r(38),u=r(213),i=r(215),c=r(13),s=r(43);t.exports=function t(n,r){var f=function(o){var u=r.concat([n]);return e(o,u)?"<Circular>":t(o,u)},a=function(t,n){return o(function(n){return u(n)+": "+f(t[n])},n.slice().sort())};switch(Object.prototype.toString.call(n)){case"[object Arguments]":return"(function() { return arguments; }("+o(f,n).join(", ")+"))";case"[object Array]":return"["+o(f,n).concat(a(n,s(function(t){return/^\d+$/.test(t)},c(n)))).join(", ")+"]";case"[object Boolean]":return"object"==typeof n?"new Boolean("+f(n.valueOf())+")":n.toString();case"[object Date]":return"new Date("+(isNaN(n.valueOf())?f(NaN):u(i(n)))+")";case"[object Null]":return"null";case"[object Number]":return"object"==typeof n?"new Number("+f(n.valueOf())+")":1/n===-(1/0)?"-0":n.toString(10);case"[object String]":return"object"==typeof n?"new String("+f(n.valueOf())+")":u(n);case"[object Undefined]":return"undefined";default:if("function"==typeof n.toString){var p=n.toString();if("[object Object]"!==p)return p}return"{"+a(n,c(n)).join(", ")+"}"}}},function(t,n,r){var e=r(0),o=r(16),u=r(5);t.exports=function(){function t(t,n){this.xf=n,this.f=t,this.all=!0}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=function(t){return this.all&&(t=this.xf["@@transducer/step"](t,!0)),this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){return this.f(n)||(this.all=!1,t=o(this.xf["@@transducer/step"](t,!1))),t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(10),o=r(0),u=r(5);t.exports=function(){function t(t,n){this.xf=n,this.pos=0,this.full=!1,this.acc=new Array(t)}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=function(t){return this.acc=null,this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){return this.store(n),this.full?this.xf["@@transducer/step"](t,this.getCopy()):t},t.prototype.store=function(t){this.acc[this.pos]=t,this.pos+=1,this.pos===this.acc.length&&(this.pos=0,this.full=!0)},t.prototype.getCopy=function(){return e(Array.prototype.slice.call(this.acc,this.pos),Array.prototype.slice.call(this.acc,0,this.pos))},o(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(205),u=r(8);t.exports=e(function(t,n){return u(t,o(n))})},function(t,n,r){var e=r(0),o=r(5);t.exports=function(){function t(t,n){this.xf=n,this.n=t}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=o.result,t.prototype["@@transducer/step"]=function(t,n){return this.n>0?(this.n-=1,t):this.xf["@@transducer/step"](t,n)},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(5);t.exports=function(){function t(t,n){this.xf=n,this.pos=0,this.full=!1,this.acc=new Array(t)}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=function(t){return this.acc=null,this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){return this.full&&(t=this.xf["@@transducer/step"](t,this.acc[this.pos])),this.store(n),t},t.prototype.store=function(t){this.acc[this.pos]=t,this.pos+=1,this.pos===this.acc.length&&(this.pos=0,this.full=!0)},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(9),u=r(5);t.exports=function(){function t(t,n){this.f=t,this.retained=[],this.xf=n}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=function(t){return this.retained=null,this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){return this.f(n)?this.retain(t,n):this.flush(t,n)},t.prototype.flush=function(t,n){return t=o(this.xf["@@transducer/step"],t,this.retained),this.retained=[],this.xf["@@transducer/step"](t,n)},t.prototype.retain=function(t,n){return this.retained.push(n),t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(5);t.exports=function(){function t(t,n){this.xf=n,this.f=t}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=o.result,t.prototype["@@transducer/step"]=function(t,n){if(this.f){if(this.f(n))return t;this.f=null}return this.xf["@@transducer/step"](t,n)},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(5);t.exports=function(){function t(t,n){this.xf=n,this.f=t}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=o.result,t.prototype["@@transducer/step"]=function(t,n){return this.f(n)?this.xf["@@transducer/step"](t,n):t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(16),u=r(5);t.exports=function(){function t(t,n){this.xf=n,this.f=t,this.found=!1}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=function(t){return this.found||(t=this.xf["@@transducer/step"](t,void 0)),this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){return this.f(n)&&(this.found=!0,t=o(this.xf["@@transducer/step"](t,n))),t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(16),u=r(5);t.exports=function(){function t(t,n){this.xf=n,this.f=t,this.idx=-1,this.found=!1}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=function(t){return this.found||(t=this.xf["@@transducer/step"](t,-1)),this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){return this.idx+=1,this.f(n)&&(this.found=!0,t=o(this.xf["@@transducer/step"](t,this.idx))),t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(5);t.exports=function(){function t(t,n){this.xf=n,this.f=t}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=function(t){return this.xf["@@transducer/result"](this.xf["@@transducer/step"](t,this.last))},t.prototype["@@transducer/step"]=function(t,n){return this.f(n)&&(this.last=n),t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(5);t.exports=function(){function t(t,n){this.xf=n,this.f=t,this.idx=-1,this.lastIdx=-1}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=function(t){return this.xf["@@transducer/result"](this.xf["@@transducer/step"](t,this.lastIdx))},t.prototype["@@transducer/step"]=function(t,n){return this.idx+=1,this.f(n)&&(this.lastIdx=this.idx),t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(5);t.exports=function(){function t(t,n){this.xf=n,this.f=t}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=o.result,t.prototype["@@transducer/step"]=function(t,n){return this.xf["@@transducer/step"](t,this.f(n))},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(36),o=r(7),u=r(5);t.exports=function(){function t(t,n,r,e){this.valueFn=t,this.valueAcc=n,this.keyFn=r,this.xf=e,this.inputs={}}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=function(t){var n;for(n in this.inputs)if(o(n,this.inputs)&&(t=this.xf["@@transducer/step"](t,this.inputs[n]),t["@@transducer/reduced"])){t=t["@@transducer/value"];break}return this.inputs=null,this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){var r=this.keyFn(n);return this.inputs[r]=this.inputs[r]||[r,this.valueAcc],this.inputs[r][1]=this.valueFn(this.inputs[r][1],n),t},e(4,[],function(n,r,e,o){return new t(n,r,e,o)})}()},function(t,n,r){var e=r(0),o=r(16),u=r(5);t.exports=function(){function t(t,n){this.xf=n,this.n=t,this.i=0}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=u.result,t.prototype["@@transducer/step"]=function(t,n){this.i+=1;var r=0===this.n?t:this.xf["@@transducer/step"](t,n);return this.i>=this.n?o(r):r},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(16),u=r(5);t.exports=function(){function t(t,n){this.xf=n,this.f=t}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=u.result,t.prototype["@@transducer/step"]=function(t,n){return this.f(n)?this.xf["@@transducer/step"](t,n):o(t)},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(17),o=r(0),u=r(93),i=r(35),c=r(63);t.exports=o(function(t,n){var r,o;return t.length>n.length?(r=t,o=n):(r=n,o=t),c(u(i(e)(r),o))})},function(t,n,r){var e=r(56),o=r(2),u=r(64);t.exports=o(function(t,n,r){var o,i;n.length>r.length?(o=n,i=r):(o=r,i=n);for(var c=[],s=0;s<i.length;)e(t,i[s],o)&&(c[c.length]=i[s]),s+=1;return u(t,c)})},function(t,n,r){var e=r(21),o=r(0);t.exports=o(e("intersperse",function(t,n){for(var r=[],e=0,o=n.length;e<o;)e===o-1?r.push(n[e]):r.push(n[e],t),e+=1;return r}))},function(t,n,r){var e=r(89),o=r(2),u=r(59),i=r(9),c=r(214);t.exports=o(function(t,n,r){return u(t)?i(n(t),t["@@transducer/init"](),r):i(n(c(t)),e(t,[],[],!1),r)})},function(t,n,r){var e=r(1),o=r(7),u=r(13);t.exports=e(function(t){for(var n=u(t),r=n.length,e=0,i={};e<r;){var c=n[e],s=t[c],f=o(s,i)?i[s]:i[s]=[];f[f.length]=c,e+=1}return i})},function(t,n,r){var e=r(1),o=r(13);t.exports=e(function(t){for(var n=o(t),r=n.length,e=0,u={};e<r;){var i=n[e];u[t[i]]=i,e+=1}return u})},function(t,n,r){var e=r(1),o=r(87),u=r(11);t.exports=e(function(t){return null!=t&&u(t,o(t))})},function(t,n,r){var e=r(1);t.exports=e(function(t){return null==t})},function(t,n,r){var e=r(24);t.exports=e(1,"join")},function(t,n,r){var e=r(1);t.exports=e(function(t){var n,r=[];for(n in t)r[r.length]=n;return r})},function(t,n,r){var e=r(0),o=r(15),u=r(11);t.exports=e(function(t,n){if("function"!=typeof n.lastIndexOf||o(n)){for(var r=n.length-1;r>=0;){if(u(n[r],t))return r;r-=1}return-1}return n.lastIndexOf(t)})},function(t,n,r){var e=r(1),o=r(39),u=r(26),i=r(124);t.exports=e(function(t){return o(u(t),i(t))})},function(t,n,r){var e=r(1),o=r(76),u=r(39),i=r(27);t.exports=e(function(t){return u(i(t),o(t))})},function(t,n,r){var e=r(1),o=r(33),u=r(39),i=r(60);t.exports=e(function(t){return u(i(t),o(t))})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t<n})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t<=n})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){for(var e=0,o=r.length,u=[],i=[n];e<o;)i=t(i[0],r[e]),u[e]=i[1],e+=1;return[i[0],u]})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){for(var e=r.length-1,o=[],u=[n];e>=0;)u=t(r[e],u[0]),o[e]=u[1],e-=1;return[o,u[0]]})},function(t,n,r){var e=r(0),o=r(9),u=r(13);t.exports=e(function(t,n){return o(function(r,e){return r[e]=t(n[e],e,n),r},{},u(n))})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return n.match(t)||[]})},function(t,n,r){var e=r(0),o=r(96);t.exports=e(function(t,n){return o(t)?!o(n)||n<1?NaN:(t%n+n)%n:NaN})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){return t(r)>t(n)?r:n})},function(t,n,r){var e=r(1),o=r(107);t.exports=e(function(t){var n=t.length;if(0===n)return NaN;var r=2-n%2,e=(n-r)/2;return o(Array.prototype.slice.call(t,0).sort(function(t,n){return t<n?-1:t>n?1:0}).slice(e,e+r))})},function(t,n,r){var e=r(12),o=r(1),u=r(7),i=r(29);t.exports=o(function(t){var n={};return e(t.length,function(){var r=i(arguments);return u(r,n)||(n[r]=t.apply(this,arguments)),n[r]})})},function(t,n,r){var e=r(55),o=r(0);t.exports=o(function(t,n){return e({},t,n)})},function(t,n,r){var e=r(55),o=r(1);t.exports=o(function(t){return e.apply(null,[{}].concat(t))})},function(t,n,r){var e=r(2),o=r(108);t.exports=e(function(t,n,r){return o(function(n,r,e){return t(r,e)},n,r)})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return n<t?n:t})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){return t(r)<t(n)?r:n})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t%n})},function(t,n,r){var e=r(1);t.exports=e(function(t){return-t})},function(t,n,r){var e=r(91),o=r(0),u=r(4),i=r(99),c=r(74);t.exports=o(e(u(["any"],i,c)))},function(t,n,r){var e=r(1),o=r(6),u=r(26);t.exports=e(function(t){var n=t<0?1:t+1;return o(n,function(){return u(t,arguments)})})},function(t,n,r){var e=r(1),o=r(210);t.exports=e(o)},function(t,n,r){var e=r(17),o=r(0);t.exports=o(function(t,n){var r={};for(var o in n)e(o,t)||(r[o]=n[o]);return r})},function(t,n,r){var e=r(12),o=r(1);t.exports=o(function(t){var n,r=!1;return e(t.length,function(){return r?n:(r=!0,n=t.apply(this,arguments))})})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return[t,n]})},function(t,n,r){var e=r(10),o=r(92);t.exports=o(e)},function(t,n,r){var e=r(10),o=r(92),u=r(35);t.exports=o(u(e))},function(t,n,r){var e=r(53),o=r(103),u=r(43);t.exports=o([e,u])},function(t,n,r){var e=r(2),o=r(11),u=r(27);t.exports=e(function(t,n,r){return o(u(t,r),n)})},function(t,n,r){var e=r(2),o=r(81),u=r(27);t.exports=e(function(t,n,r){return o(t,u(n,r))})},function(t,n,r){var e=r(2),o=r(27);t.exports=e(function(t,n,r){return n.length>0&&t(o(n,r))})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r={},e=0;e<t.length;)t[e]in n&&(r[t[e]]=n[t[e]]),e+=1;return r})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){var r={};for(var e in n)t(n[e],e,n)&&(r[e]=n[e]);return r})},function(t,n,r){var e=r(78),o=r(44);t.exports=function(){if(0===arguments.length)throw new Error("pipeK requires at least one argument");return e.apply(this,o(arguments))}},function(t,n,r){var e=r(109),o=r(14);t.exports=o(e,1)},function(t,n,r){var e=r(38),o=r(54),u=r(114),i=r(125);t.exports=i(e,[u,o])},function(t,n,r){var e=r(2),o=r(11);t.exports=e(function(t,n,r){return o(n,r[t])})},function(t,n,r){var e=r(2),o=r(102);t.exports=e(function(t,n,r){return o(t,r[n])})},function(t,n,r){var e=r(2),o=r(7);t.exports=e(function(t,n,r){return null!=r&&o(n,r)?r[n]:t})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){return t(r[n])})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=t.length,e=[],o=0;o<r;)e[o]=n[t[o]],o+=1;return e})},function(t,n,r){var e=r(0),o=r(97);t.exports=e(function(t,n){if(!o(t)||!o(n))throw new TypeError("Both arguments to range must be numbers");for(var r=[],e=t;e<n;)r.push(e),e+=1;return r})},function(t,n,r){var e=r(36),o=r(9),u=r(16);t.exports=e(4,[],function(t,n,r,e){return o(function(r,e){return t(r,e)?n(r,e):u(r)},r,e)})},function(t,n,r){var e=r(1),o=r(16);t.exports=e(o)},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){var e=Array.prototype.slice.call(r,0);return e.splice(t,n),e})},function(t,n,r){var e=r(0),o=r(19),u=r(122);t.exports=e(function(t,n){return u(o(t),n)})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){return r.replace(t,n)})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){for(var e=0,o=r.length,u=[n];e<o;)n=t(n,r[e]),u[e+1]=n,e+=1;return u})},function(t,n,r){var e=r(2),o=r(19),u=r(113);t.exports=e(function(t,n,r){return u(t,o(n),r)})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return Array.prototype.slice.call(n,0).sort(t)})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return Array.prototype.slice.call(n,0).sort(function(n,r){var e=t(n),o=t(r);return e<o?-1:e>o?1:0})})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return Array.prototype.slice.call(n,0).sort(function(n,r){for(var e=0,o=0;0===e&&o<t.length;)e=t[o](n,r),o+=1;return e})})},function(t,n,r){var e=r(24);t.exports=e(1,"split")},function(t,n,r){var e=r(0),o=r(105),u=r(18);t.exports=e(function(t,n){return[u(0,t,n),u(t,o(n),n)]})},function(t,n,r){var e=r(0),o=r(18);t.exports=e(function(t,n){if(t<=0)throw new Error("First argument to splitEvery must be a positive integer");for(var r=[],e=0;e<n.length;)r.push(o(e,e+=t,n));return r})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=0,e=n.length,o=[];r<e&&!t(n[r]);)o.push(n[r]),r+=1;return[o,Array.prototype.slice.call(n,r)]})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return Number(t)-Number(n)})},function(t,n,r){var e=r(0),o=r(52),u=r(82);t.exports=e(function(t,n){return o(u(t,n),u(n,t))})},function(t,n,r){var e=r(2),o=r(52),u=r(83);t.exports=e(function(t,n,r){return o(u(t,n,r),u(t,r,n))})},function(t,n,r){var e=r(0),o=r(85);t.exports=e(function(t,n){return o(t>=0?n.length-t:0,n)})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=n.length-1;r>=0&&t(n[r]);)r-=1;return Array.prototype.slice.call(n,r+1)})},function(t,n,r){var e=r(0),o=r(4),u=r(232);t.exports=e(o(["takeWhile"],u,function(t,n){for(var r=0,e=n.length;r<e&&t(n[r]);)r+=1;return Array.prototype.slice.call(n,0,r)}))},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t(n),n})},function(t,n,r){var e=r(90),o=r(0),u=r(208),i=r(29);t.exports=o(function(t,n){if(!u(t))throw new TypeError("‘test’ requires a value of type RegExp as its first argument; received "+i(t));return e(t).test(n)})},function(t,n,r){var e=r(24);t.exports=e(0,"toLowerCase")},function(t,n,r){var e=r(1),o=r(7);t.exports=e(function(t){var n=[];for(var r in t)o(r,t)&&(n[n.length]=[r,t[r]]);return n})},function(t,n,r){var e=r(1);t.exports=e(function(t){var n=[];for(var r in t)n[n.length]=[r,t[r]];return n})},function(t,n,r){var e=r(24);t.exports=e(0,"toUpperCase")},function(t,n,r){var e=r(9),o=r(101),u=r(6);t.exports=u(4,function(t,n,r,u){return e(t("function"==typeof n?o(n):n),r,u)})},function(t,n,r){var e=r(1);t.exports=e(function(t){for(var n=0,r=[];n<t.length;){for(var e=t[n],o=0;o<e.length;)"undefined"==typeof r[o]&&(r[o]=[]),r[o].push(e[o]),o+=1;n+=1}return r})},function(t,n,r){var e=r(2),o=r(8),u=r(119);t.exports=e(function(t,n,r){return u(t,o(n,r))})},function(t,n,r){var e=r(1);t.exports=function(){var t="\t\n\v\f\r   ᠎              \u2028\u2029\ufeff",n="​",r="function"==typeof String.prototype.trim;return e(r&&!t.trim()&&n.trim()?function(t){return t.trim()}:function(n){var r=new RegExp("^["+t+"]["+t+"]*"),e=new RegExp("["+t+"]["+t+"]*$");return n.replace(r,"").replace(e,"")})}()},function(t,n,r){var e=r(12),o=r(10),u=r(0);t.exports=u(function(t,n){return e(t.length,function(){try{return t.apply(this,arguments)}catch(t){return n.apply(this,o([t],arguments))}})})},function(t,n,r){var e=r(1);t.exports=e(function(t){return function(){return t(Array.prototype.slice.call(arguments,0))}})},function(t,n,r){var e=r(1),o=r(41);t.exports=e(function(t){return o(1,t)})},function(t,n,r){var e=r(0),o=r(6);t.exports=e(function(t,n){return o(t,function(){for(var r,e=1,o=n,u=0;e<=t&&"function"==typeof o;)r=e===t?arguments.length:u+o.length,o=o.apply(this,Array.prototype.slice.call(arguments,u,r)),e+=1,u=r;return o})})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=t(n),e=[];r&&r.length;)e[e.length]=r[0],r=t(r[1]);return e})},function(t,n,r){var e=r(10),o=r(0),u=r(51),i=r(63);t.exports=o(u(i,e))},function(t,n,r){var e=r(10),o=r(2),u=r(64);t.exports=o(function(t,n,r){return u(t,e(n,r))})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){return t(r)?r:n(r)})},function(t,n,r){var e=r(57),o=r(50);t.exports=o(e)},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){for(var e=r;!t(e);)e=n(e);return e})},function(t,n,r){var e=r(1);t.exports=e(function(t){var n,r=[];for(n in t)r[r.length]=t[n];return r})},function(t,n,r){var e=r(0);t.exports=function(){var t=function(t){return{value:t,map:function(){return this}}};return e(function(n,r){return n(t)(r).value})}()},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){return t(r)?n(r):r})},function(t,n,r){var e=r(0),o=r(11),u=r(8),i=r(127);t.exports=e(function(t,n){return i(u(o,t),n)})},function(t,n,r){var e=r(17),o=r(0),u=r(35),i=r(43);t.exports=o(function(t,n){return i(u(e)(t),n)})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r,e=0,o=t.length,u=n.length,i=[];e<o;){for(r=0;r<u;)i[i.length]=[t[e],n[r]],r+=1;e+=1}return i})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=[],e=0,o=Math.min(t.length,n.length);e<o;)r[e]=[t[e],n[e]],e+=1;return r})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=0,e=Math.min(t.length,n.length),o={};r<e;)o[t[r]]=n[r],r+=1;return o})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){for(var e=[],o=0,u=Math.min(n.length,r.length);o<u;)e[o]=t(n[o],r[o]),o+=1;return e})},function(t,n,r){"use strict";var e=r(141),o=r(70),u=r(47),i=r(31),c=r(136),s=r(65),f=r(129),a=r(66),p=r(132),l=r(133),h=r(128),v=r(69),x=r(140),y=r(130),d=r(46),g=r(135),m=r(45),b=r(131),w=r(30),j=r(134),A=r(67),O=r(137),S=r(48),N=r(138),E=r(68),_=r(139);t.exports={isNotUndefined:e,isUndefined:o,isNull:u,isNotNull:i,isNotNil:c,isArray:s,isNotArray:f,isBoolean:a,isNotBoolean:p,isNotEmpty:l,isNilOrEmpty:h,isString:v,isNotString:x,isNotArrayLike:y,isGeneratorFunction:d,isNotGeneratorFunction:g,isAsyncFunction:m,isNotAsyncFunction:b,isFunction:w,isNotFunction:j,isObject:A,isNotObject:O,isObjectLike:S,isNotObjectLike:N,isPlainObject:E,isNotPlainObject:_}}])});
!function(t,n){"object"==typeof exports&&"object"==typeof module?module.exports=n():"function"==typeof define&&define.amd?define([],n):"object"==typeof exports?exports.RA=n():t.RA=n()}(this,function(){return function(t){function n(e){if(r[e])return r[e].exports;var o=r[e]={i:e,l:!1,exports:{}};return t[e].call(o.exports,o,o.exports,n),o.l=!0,o.exports}var r={};return n.m=t,n.c=r,n.i=function(t){return t},n.d=function(t,r,e){n.o(t,r)||Object.defineProperty(t,r,{configurable:!1,enumerable:!0,get:e})},n.n=function(t){var r=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(r,"a",r),r},n.o=function(t,n){return Object.prototype.hasOwnProperty.call(t,n)},n.p="",n(n.s=343)}([function(t,n,r){var e=r(1),o=r(37);t.exports=function(t){return function n(r,u){switch(arguments.length){case 0:return n;case 1:return o(r)?n:e(function(n){return t(r,n)});default:return o(r)&&o(u)?n:o(r)?e(function(n){return t(n,u)}):o(u)?e(function(n){return t(r,n)}):t(r,u)}}}},function(t,n,r){var e=r(37);t.exports=function(t){return function n(r){return 0===arguments.length||e(r)?n:t.apply(this,arguments)}}},function(t,n,r){var e=r(1),o=r(0),u=r(37);t.exports=function(t){return function n(r,i,c){switch(arguments.length){case 0:return n;case 1:return u(r)?n:o(function(n,e){return t(r,n,e)});case 2:return u(r)&&u(i)?n:u(r)?o(function(n,r){return t(n,i,r)}):u(i)?o(function(n,e){return t(r,n,e)}):e(function(n){return t(r,i,n)});default:return u(r)&&u(i)&&u(c)?n:u(r)&&u(i)?o(function(n,r){return t(n,r,c)}):u(r)&&u(c)?o(function(n,r){return t(n,i,r)}):u(i)&&u(c)?o(function(n,e){return t(r,n,e)}):u(r)?e(function(n){return t(n,i,c)}):u(i)?e(function(n){return t(r,n,c)}):u(c)?e(function(n){return t(r,i,n)}):t(r,i,c)}}}},function(t,n,r){t.exports={F:r(149),T:r(150),__:r(151),add:r(32),addIndex:r(152),adjust:r(76),all:r(153),allPass:r(154),always:r(19),and:r(77),any:r(78),anyPass:r(155),ap:r(50),aperture:r(156),append:r(157),apply:r(79),applySpec:r(158),ascend:r(159),assoc:r(33),assocPath:r(80),binary:r(160),bind:r(81),both:r(161),call:r(162),chain:r(51),clamp:r(163),clone:r(164),comparator:r(165),complement:r(166),compose:r(52),composeK:r(82),composeP:r(167),concat:r(53),cond:r(168),construct:r(169),constructN:r(83),contains:r(170),converge:r(84),countBy:r(171),curry:r(34),curryN:r(6),dec:r(172),descend:r(173),defaultTo:r(85),difference:r(86),differenceWith:r(87),dissoc:r(88),dissocPath:r(174),divide:r(175),drop:r(89),dropLast:r(176),dropLastWhile:r(177),dropRepeats:r(178),dropRepeatsWith:r(90),dropWhile:r(179),either:r(180),empty:r(91),eqBy:r(181),eqProps:r(182),equals:r(11),evolve:r(183),filter:r(54),find:r(184),findIndex:r(185),findLast:r(186),findLastIndex:r(187),flatten:r(188),flip:r(35),forEach:r(189),forEachObjIndexed:r(190),fromPairs:r(191),groupBy:r(192),groupWith:r(193),gt:r(194),gte:r(195),has:r(196),hasIn:r(197),head:r(198),identical:r(92),identity:r(55),ifElse:r(199),inc:r(200),indexBy:r(201),indexOf:r(202),init:r(203),insert:r(204),insertAll:r(205),intersection:r(240),intersectionWith:r(241),intersperse:r(242),into:r(243),invert:r(244),invertObj:r(245),invoker:r(24),is:r(105),isArrayLike:r(25),isEmpty:r(246),isNil:r(247),join:r(248),juxt:r(106),keys:r(13),keysIn:r(249),last:r(107),lastIndexOf:r(250),length:r(108),lens:r(39),lensIndex:r(251),lensPath:r(252),lensProp:r(253),lift:r(40),liftN:r(109),lt:r(254),lte:r(255),map:r(8),mapAccum:r(256),mapAccumRight:r(257),mapObjIndexed:r(258),match:r(259),mathMod:r(260),max:r(20),maxBy:r(261),mean:r(110),median:r(262),memoize:r(263),merge:r(264),mergeAll:r(265),mergeWith:r(266),mergeWithKey:r(111),min:r(267),minBy:r(268),modulo:r(269),multiply:r(112),nAry:r(41),negate:r(270),none:r(271),not:r(113),nth:r(26),nthArg:r(272),objOf:r(114),of:r(273),omit:r(274),once:r(275),or:r(115),over:r(116),pair:r(276),partial:r(277),partialRight:r(278),partition:r(279),path:r(27),pathEq:r(280),pathOr:r(281),pathSatisfies:r(282),pick:r(283),pickAll:r(117),pickBy:r(284),pipe:r(118),pipeK:r(285),pipeP:r(119),pluck:r(28),prepend:r(120),product:r(286),project:r(287),prop:r(62),propEq:r(288),propIs:r(289),propOr:r(290),propSatisfies:r(291),props:r(292),range:r(293),reduce:r(14),reduceBy:r(42),reduceRight:r(121),reduceWhile:r(294),reduced:r(295),reject:r(43),remove:r(296),repeat:r(297),replace:r(298),reverse:r(44),scan:r(299),sequence:r(122),set:r(300),slice:r(18),sort:r(301),sortBy:r(302),sortWith:r(303),split:r(304),splitAt:r(305),splitEvery:r(306),splitWhen:r(307),subtract:r(308),sum:r(123),symmetricDifference:r(309),symmetricDifferenceWith:r(310),tail:r(63),take:r(124),takeLast:r(311),takeLastWhile:r(312),takeWhile:r(313),tap:r(314),test:r(315),times:r(125),toLower:r(316),toPairs:r(317),toPairsIn:r(318),toString:r(29),toUpper:r(319),transduce:r(320),transpose:r(321),traverse:r(322),trim:r(323),tryCatch:r(324),type:r(64),unapply:r(325),unary:r(326),uncurryN:r(327),unfold:r(328),union:r(329),unionWith:r(330),uniq:r(65),uniqBy:r(126),uniqWith:r(66),unless:r(331),unnest:r(332),until:r(333),update:r(127),useWith:r(128),values:r(129),valuesIn:r(334),view:r(335),when:r(336),where:r(130),whereEq:r(337),without:r(338),xprod:r(339),zip:r(340),zipObj:r(341),zipWith:r(342)}},function(t,n,r){var e=r(15),o=r(61);t.exports=function(t,n,r){return function(){if(0===arguments.length)return r();var u=Array.prototype.slice.call(arguments,0),i=u.pop();if(!e(i)){for(var c=0;c<t.length;){if("function"==typeof i[t[c]])return i[t[c]].apply(i,u);c+=1}if(o(i)){var s=n.apply(null,u);return s(i)}}return r.apply(this,arguments)}}},function(t,n){t.exports={init:function(){return this.xf["@@transducer/init"]()},result:function(t){return this.xf["@@transducer/result"](t)}}},function(t,n,r){var e=r(12),o=r(1),u=r(0),i=r(36);t.exports=u(function(t,n){return 1===t?o(n):e(t,i(t,[],n))})},function(t,n){t.exports=function(t,n){return Object.prototype.hasOwnProperty.call(n,t)}},function(t,n,r){var e=r(0),o=r(4),u=r(38),i=r(9),c=r(236),s=r(6),f=r(13);t.exports=e(o(["map"],c,function(t,n){switch(Object.prototype.toString.call(n)){case"[object Function]":return s(n.length,function(){return t.call(this,n.apply(this,arguments))});case"[object Object]":return i(function(r,e){return r[e]=t(n[e]),r},{},f(n));default:return u(t,n)}}))},function(t,n,r){var e=r(104),o=r(81),u=r(25);t.exports=function(){function t(t,n,r){for(var e=0,o=r.length;e<o;){if(n=t["@@transducer/step"](n,r[e]),n&&n["@@transducer/reduced"]){n=n["@@transducer/value"];break}e+=1}return t["@@transducer/result"](n)}function n(t,n,r){for(var e=r.next();!e.done;){if(n=t["@@transducer/step"](n,e.value),n&&n["@@transducer/reduced"]){n=n["@@transducer/value"];break}e=r.next()}return t["@@transducer/result"](n)}function r(t,n,r){return t["@@transducer/result"](r.reduce(o(t["@@transducer/step"],t),n))}var i="undefined"!=typeof Symbol?Symbol.iterator:"@@iterator";return function(o,c,s){if("function"==typeof o&&(o=e(o)),u(s))return t(o,c,s);if("function"==typeof s.reduce)return r(o,c,s);if(null!=s[i])return n(o,c,s[i]());if("function"==typeof s.next)return n(o,c,s);throw new TypeError("reduce: list must be array or iterable")}}()},function(t,n){t.exports=function(t,n){t=t||[],n=n||[];var r,e=t.length,o=n.length,u=[];for(r=0;r<e;)u[u.length]=t[r],r+=1;for(r=0;r<o;)u[u.length]=n[r],r+=1;return u}},function(t,n,r){var e=r(0),o=r(211);t.exports=e(function(t,n){return o(t,n,[],[])})},function(t,n){t.exports=function(t,n){switch(t){case 0:return function(){return n.apply(this,arguments)};case 1:return function(t){return n.apply(this,arguments)};case 2:return function(t,r){return n.apply(this,arguments)};case 3:return function(t,r,e){return n.apply(this,arguments)};case 4:return function(t,r,e,o){return n.apply(this,arguments)};case 5:return function(t,r,e,o,u){return n.apply(this,arguments)};case 6:return function(t,r,e,o,u,i){return n.apply(this,arguments)};case 7:return function(t,r,e,o,u,i,c){return n.apply(this,arguments)};case 8:return function(t,r,e,o,u,i,c,s){return n.apply(this,arguments)};case 9:return function(t,r,e,o,u,i,c,s,f){return n.apply(this,arguments)};case 10:return function(t,r,e,o,u,i,c,s,f,a){return n.apply(this,arguments)};default:throw new Error("First argument to _arity must be a non-negative integer no greater than ten")}}},function(t,n,r){var e=r(1),o=r(7),u=r(99);t.exports=function(){var t=!{toString:null}.propertyIsEnumerable("toString"),n=["constructor","valueOf","isPrototypeOf","toString","propertyIsEnumerable","hasOwnProperty","toLocaleString"],r=function(){"use strict";return arguments.propertyIsEnumerable("length")}(),i=function(t,n){for(var r=0;r<t.length;){if(t[r]===n)return!0;r+=1}return!1};return e("function"!=typeof Object.keys||r?function(e){if(Object(e)!==e)return[];var c,s,f=[],a=r&&u(e);for(c in e)!o(c,e)||a&&"length"===c||(f[f.length]=c);if(t)for(s=n.length-1;s>=0;)c=n[s],o(c,e)&&!i(f,c)&&(f[f.length]=c),s-=1;return f}:function(t){return Object(t)!==t?[]:Object.keys(t)})}()},function(t,n,r){var e=r(2),o=r(9);t.exports=e(o)},function(t,n){t.exports=Array.isArray||function(t){return null!=t&&t.length>=0&&"[object Array]"===Object.prototype.toString.call(t)}},function(t,n){t.exports=function(t){return t&&t["@@transducer/reduced"]?t:{"@@transducer/value":t,"@@transducer/reduced":!0}}},function(t,n,r){var e=r(98);t.exports=function(t,n){return e(n,t,0)>=0}},function(t,n,r){var e=r(21),o=r(2);t.exports=o(e("slice",function(t,n,r){return Array.prototype.slice.call(r,t,n)}))},function(t,n,r){var e=r(1);t.exports=e(function(t){return function(){return t}})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return n>t?n:t})},function(t,n,r){var e=r(15);t.exports=function(t,n){return function(){var r=arguments.length;if(0===r)return n();var o=arguments[r-1];return e(o)||"function"!=typeof o[t]?n.apply(this,arguments):o[t].apply(o,Array.prototype.slice.call(arguments,0,r-1))}}},function(t,n){t.exports=function(t){return"[object Function]"===Object.prototype.toString.call(t)}},function(t,n){t.exports=function(t){return"[object String]"===Object.prototype.toString.call(t)}},function(t,n,r){var e=r(0),o=r(22),u=r(6),i=r(29);t.exports=e(function(t,n){return u(t+1,function(){var r=arguments[t];if(null!=r&&o(r[n]))return r[n].apply(r,Array.prototype.slice.call(arguments,0,t));throw new TypeError(i(r)+' does not have a method named "'+n+'"')})})},function(t,n,r){var e=r(1),o=r(15),u=r(23);t.exports=e(function(t){return!!o(t)||!!t&&("object"==typeof t&&(!u(t)&&(1===t.nodeType?!!t.length:0===t.length||t.length>0&&(t.hasOwnProperty(0)&&t.hasOwnProperty(t.length-1)))))})},function(t,n,r){var e=r(0),o=r(23);t.exports=e(function(t,n){var r=t<0?n.length+t:t;return o(n)?n.charAt(r):n[r]})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=n,e=0;e<t.length;){if(null==r)return;r=r[t[e]],e+=1}return r})},function(t,n,r){var e=r(0),o=r(8),u=r(62);t.exports=e(function(t,n){return o(u(t),n)})},function(t,n,r){var e=r(1),o=r(223);t.exports=e(function(t){return o(t,[])})},function(t,n,r){"use strict";var e=r(3),o=e.anyPass,u=r(22),i=r(46),c=r(45);t.exports=o([u,i,c])},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(47);t.exports=o(u)},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return Number(t)+Number(n)})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){var e={};for(var o in r)e[o]=r[o];return e[t]=n,e})},function(t,n,r){var e=r(1),o=r(6);t.exports=e(function(t){return o(t.length,t)})},function(t,n,r){var e=r(1),o=r(34);t.exports=e(function(t){return o(function(n,r){var e=Array.prototype.slice.call(arguments,0);return e[0]=r,e[1]=n,t.apply(this,e)})})},function(t,n,r){var e=r(12),o=r(37);t.exports=function t(n,r,u){return function(){for(var i=[],c=0,s=n,f=0;f<r.length||c<arguments.length;){var a;f<r.length&&(!o(r[f])||c>=arguments.length)?a=r[f]:(a=arguments[c],c+=1),i[f]=a,o(a)||(s-=1),f+=1}return s<=0?u.apply(this,i):e(s,t(n,i,u))}}},function(t,n){t.exports=function(t){return null!=t&&"object"==typeof t&&t["@@functional/placeholder"]===!0}},function(t,n){t.exports=function(t,n){for(var r=0,e=n.length,o=Array(e);r<e;)o[r]=t(n[r]),r+=1;return o}},function(t,n,r){var e=r(0),o=r(8);t.exports=e(function(t,n){return function(r){return function(e){return o(function(t){return n(t,e)},r(t(e)))}}})},function(t,n,r){var e=r(1),o=r(109);t.exports=e(function(t){return o(t.length,t)})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){switch(t){case 0:return function(){return n.call(this)};case 1:return function(t){return n.call(this,t)};case 2:return function(t,r){return n.call(this,t,r)};case 3:return function(t,r,e){return n.call(this,t,r,e)};case 4:return function(t,r,e,o){return n.call(this,t,r,e,o)};case 5:return function(t,r,e,o,u){return n.call(this,t,r,e,o,u)};case 6:return function(t,r,e,o,u,i){return n.call(this,t,r,e,o,u,i)};case 7:return function(t,r,e,o,u,i,c){return n.call(this,t,r,e,o,u,i,c)};case 8:return function(t,r,e,o,u,i,c,s){return n.call(this,t,r,e,o,u,i,c,s)};case 9:return function(t,r,e,o,u,i,c,s,f){return n.call(this,t,r,e,o,u,i,c,s,f)};case 10:return function(t,r,e,o,u,i,c,s,f,a){return n.call(this,t,r,e,o,u,i,c,s,f,a)};default:throw new Error("First argument to nAry must be a non-negative integer no greater than ten")}})},function(t,n,r){var e=r(36),o=r(4),u=r(7),i=r(9),c=r(237);t.exports=e(4,[],o([],c,function(t,n,r,e){return i(function(e,o){var i=r(o);return e[i]=t(u(i,e)?e[i]:n,o),e},{},e)}))},function(t,n,r){var e=r(95),o=r(0),u=r(54);t.exports=o(function(t,n){return u(e(t),n)})},function(t,n,r){var e=r(1),o=r(23);t.exports=e(function(t){return o(t)?t.split("").reverse().join(""):Array.prototype.slice.call(t,0).reverse()})},function(t,n,r){"use strict";t.exports=function(t){return"[object AsyncFunction]"===Object.prototype.toString.call(t)}},function(t,n,r){"use strict";var e=r(3),o=e.or,u=r(31),i=null;try{i=new Function("return function* () {}")().constructor}catch(t){}t.exports=function(t){var n="[object AsyncFunction]"===Object.prototype.toString.call(t),r=u(i)&&t instanceof i;return o(n,r)}},function(t,n,r){"use strict";var e=r(3),o=e.equals;t.exports=o(null)},function(t,n,r){"use strict";var e=r(59);t.exports=e},function(t,n,r){"use strict";var e=r(3),o=e.both,u=r(31),i=r(75);t.exports=o(u,i)},function(t,n,r){var e=r(10),o=r(0),u=r(9),i=r(8);t.exports=o(function(t,n){return"function"==typeof t.ap?t.ap(n):"function"==typeof t?function(r){return t(r)(n(r))}:u(function(t,r){return e(t,i(r,n))},[],t)})},function(t,n,r){var e=r(0),o=r(4),u=r(101),i=r(226),c=r(8);t.exports=e(o(["chain"],i,function(t,n){return"function"==typeof n?function(r){return t(n(r))(r)}:u(!1)(c(t,n))}))},function(t,n,r){var e=r(118),o=r(44);t.exports=function(){if(0===arguments.length)throw new Error("compose requires at least one argument");return e.apply(this,o(arguments))}},function(t,n,r){var e=r(0),o=r(15),u=r(22),i=r(29);t.exports=e(function(t,n){if(null==t||!u(t.concat))throw new TypeError(i(t)+' does not have a method named "concat"');if(o(t)&&!o(n))throw new TypeError(i(n)+" is not an array");return t.concat(n)})},function(t,n,r){var e=r(0),o=r(4),u=r(97),i=r(60),c=r(9),s=r(231),f=r(13);t.exports=e(o(["filter"],s,function(t,n){return i(n)?c(function(r,e){return t(n[e])&&(r[e]=n[e]),r},{},f(n)):u(t,n)}))},function(t,n,r){var e=r(1),o=r(58);t.exports=e(o)},function(t,n,r){var e=r(216);t.exports="function"==typeof Object.assign?Object.assign:e},function(t,n){t.exports=function(t,n,r){for(var e=0,o=r.length;e<o;){if(t(n,r[e]))return!0;e+=1}return!1}},function(t,n){t.exports=function(t){return t}},function(t,n){t.exports=function(t){return"[object Number]"===Object.prototype.toString.call(t)}},function(t,n){t.exports=function(t){return"[object Object]"===Object.prototype.toString.call(t)}},function(t,n){t.exports=function(t){return"function"==typeof t["@@transducer/step"]}},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return n[t]})},function(t,n,r){var e=r(21),o=r(1),u=r(18);t.exports=o(e("tail",u(1,1/0)))},function(t,n,r){var e=r(1);t.exports=e(function(t){return null===t?"Null":void 0===t?"Undefined":Object.prototype.toString.call(t).slice(8,-1)})},function(t,n,r){var e=r(55),o=r(126);t.exports=o(e)},function(t,n,r){var e=r(57),o=r(0);t.exports=o(function(t,n){for(var r,o=0,u=n.length,i=[];o<u;)r=n[o],e(t,r,i)||(i[i.length]=r),o+=1;return i})},function(t,n,r){"use strict";var e=r(15);t.exports=e},function(t,n,r){"use strict";var e=r(3),o=e.is;t.exports=o(Boolean)},function(t,n,r){"use strict";var e=r(3),o=e.is;t.exports=o(Date)},function(t,n,r){"use strict";var e=r(3),o=e.or,u=r(148);t.exports=o(Number.isNaN,u)},function(t,n,r){"use strict";var e=r(3),o=e.both,u=e.anyPass,i=r(31),c=r(30),s=r(75);t.exports=o(i,u([s,c]))},function(t,n,r){"use strict";var e=r(60),o=r(3),u=o.pipe,i=o.both,c=o.equals,s=o.toString,f=o.pathSatisfies,a=r(47),p=r(49),l=r(30),h=u(s,c(s(Object))),v=f(i(l,h),["constructor"]);t.exports=function(t){if(!p(t)||!e(t))return!1;var n=Object.getPrototypeOf(t);return!!a(n)||v(n)}},function(t,n,r){"use strict";var e=r(23);t.exports=e},function(t,n,r){"use strict";var e=r(3),o=e.equals;t.exports=o(void 0)},function(t,n,r){"use strict";var e="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};t.exports=function(t){return"object"===("undefined"==typeof t?"undefined":e(t))}},function(t,n,r){var e=r(10),o=r(2);t.exports=o(function(t,n,r){if(n>=r.length||n<-r.length)return r;var o=n<0?r.length:0,u=o+n,i=e(r);return i[u]=t(r[u]),i})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t&&n})},function(t,n,r){var e=r(0),o=r(4),u=r(102);t.exports=e(o(["any"],u,function(t,n){for(var r=0;r<n.length;){if(t(n[r]))return!0;r+=1}return!1}))},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t.apply(this,n)})},function(t,n,r){var e=r(2),o=r(7),u=r(15),i=r(100),c=r(33);t.exports=e(function t(n,r,e){if(0===n.length)return r;var s=n[0];if(n.length>1){var f=o(s,e)?e[s]:i(n[1])?[]:{};r=t(Array.prototype.slice.call(n,1),r,f)}if(i(s)&&u(e)){var a=[].concat(e);return a[s]=r,a}return c(s,r,e)})},function(t,n,r){var e=r(12),o=r(0);t.exports=o(function(t,n){return e(t.length,function(){return t.apply(n,arguments)})})},function(t,n,r){var e=r(51),o=r(52),u=r(8);t.exports=function(){if(0===arguments.length)throw new Error("composeK requires at least one argument");var t=Array.prototype.slice.call(arguments),n=t.pop();return o(o.apply(this,u(e,t)),n)}},function(t,n,r){var e=r(0),o=r(34),u=r(41);t.exports=e(function(t,n){if(t>10)throw new Error("Constructor with greater than ten arguments");return 0===t?function(){return new n}:o(u(t,function(t,r,e,o,u,i,c,s,f,a){switch(arguments.length){case 1:return new n(t);case 2:return new n(t,r);case 3:return new n(t,r,e);case 4:return new n(t,r,e,o);case 5:return new n(t,r,e,o,u);case 6:return new n(t,r,e,o,u,i);case 7:return new n(t,r,e,o,u,i,c);case 8:return new n(t,r,e,o,u,i,c,s);case 9:return new n(t,r,e,o,u,i,c,s,f);case 10:return new n(t,r,e,o,u,i,c,s,f,a)}}))})},function(t,n,r){var e=r(0),o=r(38),u=r(6),i=r(20),c=r(28),s=r(14);t.exports=e(function(t,n){return u(s(i,0,c("length",n)),function(){var r=arguments,e=this;return t.apply(e,o(function(t){return t.apply(e,r)},n))})})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return null==n||n!==n?t:n})},function(t,n,r){var e=r(17),o=r(0);t.exports=o(function(t,n){for(var r=[],o=0,u=t.length;o<u;)e(t[o],n)||e(t[o],r)||(r[r.length]=t[o]),o+=1;return r})},function(t,n,r){var e=r(57),o=r(2);t.exports=o(function(t,n,r){for(var o=[],u=0,i=n.length;u<i;)e(t,n[u],r)||e(t,n[u],o)||o.push(n[u]),u+=1;return o})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){var r={};for(var e in n)r[e]=n[e];return delete r[t],r})},function(t,n,r){var e=r(0),o=r(4),u=r(227),i=r(18);t.exports=e(o(["drop"],u,function(t,n){return i(Math.max(0,t),1/0,n)}))},function(t,n,r){var e=r(0),o=r(4),u=r(103),i=r(107);t.exports=e(o([],u,function(t,n){var r=[],e=1,o=n.length;if(0!==o)for(r[0]=n[0];e<o;)t(i(r),n[e])||(r[r.length]=n[e]),e+=1;return r}))},function(t,n,r){var e=r(1),o=r(99),u=r(15),i=r(60),c=r(23);t.exports=e(function(t){return null!=t&&"function"==typeof t.empty?t.empty():null!=t&&null!=t.constructor&&"function"==typeof t.constructor.empty?t.constructor.empty():u(t)?[]:c(t)?"":i(t)?{}:o(t)?function(){return arguments}():void 0})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t===n?0!==t||1/t===1/n:t!==t&&n!==n})},function(t,n,r){var e=r(94),o=r(64);t.exports=function t(n,r,u,i){var c=function(e){for(var o=r.length,c=0;c<o;){if(n===r[c])return u[c];c+=1}r[c+1]=n,u[c+1]=e;for(var s in n)e[s]=i?t(n[s],r,u,!0):n[s];return e};switch(o(n)){case"Object":return c({});case"Array":return c([]);case"Date":return new Date(n.valueOf());case"RegExp":return e(n);default:return n}}},function(t,n){t.exports=function(t){return new RegExp(t.source,(t.global?"g":"")+(t.ignoreCase?"i":"")+(t.multiline?"m":"")+(t.sticky?"y":"")+(t.unicode?"u":""))}},function(t,n){t.exports=function(t){return function(){return!t.apply(this,arguments)}}},function(t,n,r){var e=r(12),o=r(0);t.exports=function(t){return o(function(n,r){return e(Math.max(0,n.length-r.length),function(){return n.apply(this,t(r,arguments))})})}},function(t,n){t.exports=function(t,n){for(var r=0,e=n.length,o=[];r<e;)t(n[r])&&(o[o.length]=n[r]),r+=1;return o}},function(t,n,r){var e=r(11);t.exports=function(t,n,r){var o,u;if("function"==typeof t.indexOf)switch(typeof n){case"number":if(0===n){for(o=1/n;r<t.length;){if(u=t[r],0===u&&1/u===o)return r;r+=1}return-1}if(n!==n){for(;r<t.length;){if(u=t[r],"number"==typeof u&&u!==u)return r;r+=1}return-1}return t.indexOf(n,r);case"string":case"boolean":case"function":case"undefined":return t.indexOf(n,r);case"object":if(null===n)return t.indexOf(n,r)}for(;r<t.length;){if(e(t[r],n))return r;r+=1}return-1}},function(t,n,r){var e=r(7);t.exports=function(){var t=Object.prototype.toString;return"[object Arguments]"===t.call(arguments)?function(n){return"[object Arguments]"===t.call(n)}:function(t){return e("callee",t)}}()},function(t,n){t.exports=Number.isInteger||function(t){return t<<0===t}},function(t,n,r){var e=r(25);t.exports=function(t){return function n(r){for(var o,u,i,c=[],s=0,f=r.length;s<f;){if(e(r[s]))for(o=t?n(r[s]):r[s],i=0,u=o.length;i<u;)c[c.length]=o[i],i+=1;else c[c.length]=r[s];s+=1}return c}}},function(t,n,r){var e=r(0),o=r(16),u=r(5);t.exports=function(){function t(t,n){this.xf=n,this.f=t,this.any=!1}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=function(t){return this.any||(t=this.xf["@@transducer/step"](t,!1)),this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){return this.f(n)&&(this.any=!0,t=o(this.xf["@@transducer/step"](t,!0))),t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(5);t.exports=function(){function t(t,n){this.xf=n,this.pred=t,this.lastValue=void 0,this.seenFirstValue=!1}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=o.result,t.prototype["@@transducer/step"]=function(t,n){var r=!1;return this.seenFirstValue?this.pred(this.lastValue,n)&&(r=!0):this.seenFirstValue=!0,this.lastValue=n,r?t:this.xf["@@transducer/step"](t,n)},e(function(n,r){return new t(n,r)})}()},function(t,n){t.exports=function(){function t(t){this.f=t}return t.prototype["@@transducer/init"]=function(){throw new Error("init not implemented on XWrap")},t.prototype["@@transducer/result"]=function(t){return t},t.prototype["@@transducer/step"]=function(t,n){return this.f(t,n)},function(n){return new t(n)}}()},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return null!=n&&n.constructor===t||n instanceof t})},function(t,n,r){var e=r(1),o=r(84);t.exports=e(function(t){return o(function(){return Array.prototype.slice.call(arguments,0)},t)})},function(t,n,r){var e=r(26);t.exports=e(-1)},function(t,n,r){var e=r(1),o=r(59);t.exports=e(function(t){return null!=t&&o(t.length)?t.length:NaN})},function(t,n,r){var e=r(0),o=r(9),u=r(50),i=r(6),c=r(8);t.exports=e(function(t,n){var r=i(t,n);return i(t,function(){return o(u,c(r,arguments[0]),Array.prototype.slice.call(arguments,1))})})},function(t,n,r){var e=r(1),o=r(123);t.exports=e(function(t){return o(t)/t.length})},function(t,n,r){var e=r(2),o=r(7);t.exports=e(function(t,n,r){var e,u={};for(e in n)o(e,n)&&(u[e]=o(e,r)?t(e,n[e],r[e]):n[e]);for(e in r)o(e,r)&&!o(e,u)&&(u[e]=r[e]);return u})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t*n})},function(t,n,r){var e=r(1);t.exports=e(function(t){return!t})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){var r={};return r[t]=n,r})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t||n})},function(t,n,r){var e=r(2);t.exports=function(){var t=function(n){return{value:n,map:function(r){return t(r(n))}}};return e(function(n,r,e){return n(function(n){return t(r(n))})(e).value})}()},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r={},e=0,o=t.length;e<o;){var u=t[e];r[u]=n[u],e+=1}return r})},function(t,n,r){var e=r(12),o=r(218),u=r(14),i=r(63);t.exports=function(){if(0===arguments.length)throw new Error("pipe requires at least one argument");return e(arguments[0].length,u(o,arguments[0],i(arguments)))}},function(t,n,r){var e=r(12),o=r(219),u=r(14),i=r(63);t.exports=function(){if(0===arguments.length)throw new Error("pipeP requires at least one argument");return e(arguments[0].length,u(o,arguments[0],i(arguments)))}},function(t,n,r){var e=r(10),o=r(0);t.exports=o(function(t,n){return e([t],n)})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){for(var e=r.length-1;e>=0;)n=t(r[e],n),e-=1;return n})},function(t,n,r){var e=r(0),o=r(50),u=r(8),i=r(120),c=r(121);t.exports=e(function(t,n){return"function"==typeof n.sequence?n.sequence(t):c(function(t,n){return o(u(i,t),n)},t([]),n)})},function(t,n,r){var e=r(32),o=r(14);t.exports=o(e,0)},function(t,n,r){var e=r(0),o=r(4),u=r(238),i=r(18);t.exports=e(o(["take"],u,function(t,n){return i(0,t<0?1/0:t,n)}))},function(t,n,r){var e=r(0);t.exports=e(function(t,n){var r,e=Number(n),o=0;if(e<0||isNaN(e))throw new RangeError("n must be a non-negative number");for(r=new Array(e);o<e;)r[o]=t(o),o+=1;return r})},function(t,n,r){var e=r(206),o=r(0);t.exports=o(function(t,n){for(var r,o,u=new e,i=[],c=0;c<n.length;)o=n[c],r=t(o),u.add(r)&&i.push(o),c+=1;return i})},function(t,n,r){var e=r(2),o=r(76),u=r(19);t.exports=e(function(t,n,r){return o(u(n),t,r)})},function(t,n,r){var e=r(0),o=r(6);t.exports=e(function(t,n){return o(n.length,function(){for(var r=[],e=0;e<n.length;)r.push(n[e].call(this,arguments[e])),e+=1;return t.apply(this,r.concat(Array.prototype.slice.call(arguments,n.length)))})})},function(t,n,r){var e=r(1),o=r(13);t.exports=e(function(t){for(var n=o(t),r=n.length,e=[],u=0;u<r;)e[u]=t[n[u]],u+=1;return e})},function(t,n,r){var e=r(0),o=r(7);t.exports=e(function(t,n){for(var r in t)if(o(r,t)&&!t[r](n[r]))return!1;return!0})},function(t,n,r){"use strict";var e=r(3),o=e.anyPass,u=e.isEmpty,i=e.isNil;t.exports=o([i,u])},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(67);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=e.isArrayLike;t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(45);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(68);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(69);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=e.isEmpty;t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(30);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(46);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(70);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.isNil,u=e.complement;t.exports=u(o)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(48);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(71);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(49);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(72);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(73);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(74);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.both,u=r(48);t.exports=o(u,isNaN)},function(t,n,r){var e=r(19);t.exports=e(!1)},function(t,n,r){var e=r(19);t.exports=e(!0)},function(t,n){t.exports={"@@functional/placeholder":!0}},function(t,n,r){var e=r(10),o=r(1),u=r(6);t.exports=o(function(t){return u(t.length,function(){var n=0,r=arguments[0],o=arguments[arguments.length-1],u=Array.prototype.slice.call(arguments,0);return u[0]=function(){var t=r.apply(this,e(arguments,[n,o]));return n+=1,t},t.apply(this,u)})})},function(t,n,r){var e=r(0),o=r(4),u=r(224);t.exports=e(o(["all"],u,function(t,n){for(var r=0;r<n.length;){if(!t(n[r]))return!1;r+=1}return!0}))},function(t,n,r){var e=r(1),o=r(6),u=r(20),i=r(28),c=r(14);t.exports=e(function(t){return o(c(u,0,i("length",t)),function(){for(var n=0,r=t.length;n<r;){if(!t[n].apply(this,arguments))return!1;n+=1}return!0})})},function(t,n,r){var e=r(1),o=r(6),u=r(20),i=r(28),c=r(14);t.exports=e(function(t){return o(c(u,0,i("length",t)),function(){for(var n=0,r=t.length;n<r;){if(t[n].apply(this,arguments))return!0;n+=1}return!1})})},function(t,n,r){var e=r(207),o=r(0),u=r(4),i=r(225);t.exports=o(u([],i,e))},function(t,n,r){var e=r(10),o=r(0);t.exports=o(function(t,n){return e(n,[t])})},function(t,n,r){var e=r(1),o=r(79),u=r(6),i=r(8),c=r(20),s=r(28),f=r(14),a=r(129);t.exports=e(function t(n){return n=i(function(n){return"function"==typeof n?n:t(n)},n),u(f(c,0,s("length",a(n))),function(){var t=arguments;return i(function(n){return o(n,t)},n)})})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){var e=t(n),o=t(r);return e<o?-1:e>o?1:0})},function(t,n,r){var e=r(1),o=r(41);t.exports=e(function(t){return o(2,t)})},function(t,n,r){var e=r(0),o=r(22),u=r(77),i=r(40);t.exports=e(function(t,n){return o(t)?function(){return t.apply(this,arguments)&&n.apply(this,arguments)}:i(u)(t,n)})},function(t,n,r){var e=r(34);t.exports=e(function(t){return t.apply(this,Array.prototype.slice.call(arguments,1))})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){if(t>n)throw new Error("min must not be greater than max in clamp(min, max, value)");return r<t?t:r>n?n:r})},function(t,n,r){var e=r(93),o=r(1);t.exports=o(function(t){return null!=t&&"function"==typeof t.clone?t.clone():e(t,[],[],!0)})},function(t,n,r){var e=r(1);t.exports=e(function(t){return function(n,r){return t(n,r)?-1:t(r,n)?1:0}})},function(t,n,r){var e=r(40),o=r(113);t.exports=e(o)},function(t,n,r){var e=r(119),o=r(44);t.exports=function(){if(0===arguments.length)throw new Error("composeP requires at least one argument");return e.apply(this,o(arguments))}},function(t,n,r){var e=r(12),o=r(1),u=r(8),i=r(20),c=r(14);t.exports=o(function(t){var n=c(i,0,u(function(t){return t[0].length},t));return e(n,function(){for(var n=0;n<t.length;){if(t[n][0].apply(this,arguments))return t[n][1].apply(this,arguments);n+=1}})})},function(t,n,r){var e=r(1),o=r(83);t.exports=e(function(t){return o(t.length,t)})},function(t,n,r){var e=r(17),o=r(0);t.exports=o(e)},function(t,n,r){var e=r(42);t.exports=e(function(t,n){return t+1},0)},function(t,n,r){var e=r(32);t.exports=e(-1)},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){var e=t(n),o=t(r);return e>o?-1:e<o?1:0})},function(t,n,r){var e=r(0),o=r(33),u=r(88);t.exports=e(function t(n,r){switch(n.length){case 0:return r;case 1:return u(n[0],r);default:var e=n[0],i=Array.prototype.slice.call(n,1);return null==r[e]?r:o(e,t(i,r[e]),r)}})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t/n})},function(t,n,r){var e=r(0),o=r(4),u=r(209),i=r(228);t.exports=e(o([],i,u))},function(t,n,r){var e=r(0),o=r(4),u=r(210),i=r(229);t.exports=e(o([],i,u))},function(t,n,r){var e=r(1),o=r(4),u=r(103),i=r(90),c=r(11);t.exports=e(o([],u(c),i(c)));
},function(t,n,r){var e=r(0),o=r(4),u=r(230);t.exports=e(o(["dropWhile"],u,function(t,n){for(var r=0,e=n.length;r<e&&t(n[r]);)r+=1;return Array.prototype.slice.call(n,r)}))},function(t,n,r){var e=r(0),o=r(22),u=r(40),i=r(115);t.exports=e(function(t,n){return o(t)?function(){return t.apply(this,arguments)||n.apply(this,arguments)}:u(i)(t,n)})},function(t,n,r){var e=r(2),o=r(11);t.exports=e(function(t,n,r){return o(t(n),t(r))})},function(t,n,r){var e=r(2),o=r(11);t.exports=e(function(t,n,r){return o(n[t],r[t])})},function(t,n,r){var e=r(0);t.exports=e(function t(n,r){var e,o,u,i={};for(o in r)e=n[o],u=typeof e,i[o]="function"===u?e(r[o]):e&&"object"===u?t(e,r[o]):r[o];return i})},function(t,n,r){var e=r(0),o=r(4),u=r(232);t.exports=e(o(["find"],u,function(t,n){for(var r=0,e=n.length;r<e;){if(t(n[r]))return n[r];r+=1}}))},function(t,n,r){var e=r(0),o=r(4),u=r(233);t.exports=e(o([],u,function(t,n){for(var r=0,e=n.length;r<e;){if(t(n[r]))return r;r+=1}return-1}))},function(t,n,r){var e=r(0),o=r(4),u=r(234);t.exports=e(o([],u,function(t,n){for(var r=n.length-1;r>=0;){if(t(n[r]))return n[r];r-=1}}))},function(t,n,r){var e=r(0),o=r(4),u=r(235);t.exports=e(o([],u,function(t,n){for(var r=n.length-1;r>=0;){if(t(n[r]))return r;r-=1}return-1}))},function(t,n,r){var e=r(1),o=r(101);t.exports=e(o(!0))},function(t,n,r){var e=r(21),o=r(0);t.exports=o(e("forEach",function(t,n){for(var r=n.length,e=0;e<r;)t(n[e]),e+=1;return n}))},function(t,n,r){var e=r(0),o=r(13);t.exports=e(function(t,n){for(var r=o(n),e=0;e<r.length;){var u=r[e];t(n[u],u,n),e+=1}return n})},function(t,n,r){var e=r(1);t.exports=e(function(t){for(var n={},r=0;r<t.length;)n[t[r][0]]=t[r][1],r+=1;return n})},function(t,n,r){var e=r(21),o=r(0),u=r(42);t.exports=o(e("groupBy",u(function(t,n){return null==t&&(t=[]),t.push(n),t},null)))},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=[],e=0,o=n.length;e<o;){for(var u=e+1;u<o&&t(n[e],n[u]);)u+=1;r.push(n.slice(e,u)),e=u}return r})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t>n})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t>=n})},function(t,n,r){var e=r(0),o=r(7);t.exports=e(o)},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t in n})},function(t,n,r){var e=r(26);t.exports=e(0)},function(t,n,r){var e=r(2),o=r(6);t.exports=e(function(t,n,r){return o(Math.max(t.length,n.length,r.length),function(){return t.apply(this,arguments)?n.apply(this,arguments):r.apply(this,arguments)})})},function(t,n,r){var e=r(32);t.exports=e(1)},function(t,n,r){var e=r(42);t.exports=e(function(t,n){return n},null)},function(t,n,r){var e=r(0),o=r(98),u=r(15);t.exports=e(function(t,n){return"function"!=typeof n.indexOf||u(n)?o(n,t,0):n.indexOf(t)})},function(t,n,r){var e=r(18);t.exports=e(0,-1)},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){t=t<r.length&&t>=0?t:r.length;var e=Array.prototype.slice.call(r,0);return e.splice(t,0,n),e})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){return t=t<r.length&&t>=0?t:r.length,[].concat(Array.prototype.slice.call(r,0,t),n,Array.prototype.slice.call(r,t))})},function(t,n,r){var e=r(17);t.exports=function(){function t(){this._nativeSet="function"==typeof Set?new Set:null,this._items={}}function n(t,n,r){var o,u,i=typeof t;switch(i){case"string":case"number":return 0===t&&1/t===-(1/0)?!!r._items["-0"]||(n&&(r._items["-0"]=!0),!1):null!==r._nativeSet?n?(o=r._nativeSet.size,r._nativeSet.add(t),u=r._nativeSet.size,u===o):r._nativeSet.has(t):i in r._items?t in r._items[i]||(n&&(r._items[i][t]=!0),!1):(n&&(r._items[i]={},r._items[i][t]=!0),!1);case"boolean":if(i in r._items){var c=t?1:0;return!!r._items[i][c]||(n&&(r._items[i][c]=!0),!1)}return n&&(r._items[i]=t?[!1,!0]:[!0,!1]),!1;case"function":return null!==r._nativeSet?n?(o=r._nativeSet.size,r._nativeSet.add(t),u=r._nativeSet.size,u===o):r._nativeSet.has(t):i in r._items?!!e(t,r._items[i])||(n&&r._items[i].push(t),!1):(n&&(r._items[i]=[t]),!1);case"undefined":return!!r._items[i]||(n&&(r._items[i]=!0),!1);case"object":if(null===t)return!!r._items.null||(n&&(r._items.null=!0),!1);default:return i=Object.prototype.toString.call(t),i in r._items?!!e(t,r._items[i])||(n&&r._items[i].push(t),!1):(n&&(r._items[i]=[t]),!1)}}return t.prototype.add=function(t){return!n(t,!0,this)},t.prototype.has=function(t){return n(t,!1,this)},t}()},function(t,n){t.exports=function(t,n){for(var r=0,e=n.length-(t-1),o=new Array(e>=0?e:0);r<e;)o[r]=Array.prototype.slice.call(n,r,r+t),r+=1;return o}},function(t,n){t.exports=function(t){for(var n,r=[];!(n=t.next()).done;)r.push(n.value);return r}},function(t,n,r){var e=r(124);t.exports=function(t,n){return e(t<n.length?n.length-t:0,n)}},function(t,n){t.exports=function(t,n){for(var r=n.length-1;r>=0&&t(n[r]);)r-=1;return Array.prototype.slice.call(n,0,r+1)}},function(t,n,r){var e=r(208),o=r(214),u=r(7),i=r(92),c=r(13),s=r(64);t.exports=function t(n,r,f,a){if(i(n,r))return!0;if(s(n)!==s(r))return!1;if(null==n||null==r)return!1;if("function"==typeof n.equals||"function"==typeof r.equals)return"function"==typeof n.equals&&n.equals(r)&&"function"==typeof r.equals&&r.equals(n);switch(s(n)){case"Arguments":case"Array":case"Object":if("function"==typeof n.constructor&&"Promise"===o(n.constructor))return n===r;break;case"Boolean":case"Number":case"String":if(typeof n!=typeof r||!i(n.valueOf(),r.valueOf()))return!1;break;case"Date":if(!i(n.valueOf(),r.valueOf()))return!1;break;case"Error":return n.name===r.name&&n.message===r.message;case"RegExp":if(n.source!==r.source||n.global!==r.global||n.ignoreCase!==r.ignoreCase||n.multiline!==r.multiline||n.sticky!==r.sticky||n.unicode!==r.unicode)return!1;break;case"Map":case"Set":if(!t(e(n.entries()),e(r.entries()),f,a))return!1;break;case"Int8Array":case"Uint8Array":case"Uint8ClampedArray":case"Int16Array":case"Uint16Array":case"Int32Array":case"Uint32Array":case"Float32Array":case"Float64Array":break;case"ArrayBuffer":break;default:return!1}var p=c(n);if(p.length!==c(r).length)return!1;for(var l=f.length-1;l>=0;){if(f[l]===n)return a[l]===r;l-=1}for(f.push(n),a.push(r),l=p.length-1;l>=0;){var h=p[l];if(!u(h,r)||!t(r[h],n[h],f,a))return!1;l-=1}return f.pop(),a.pop(),!0}},function(t,n,r){var e=r(213),o=r(9),u=r(5),i=r(25);t.exports=function(){var t=function(t){return{"@@transducer/init":u.init,"@@transducer/result":function(n){return t["@@transducer/result"](n)},"@@transducer/step":function(n,r){var o=t["@@transducer/step"](n,r);return o["@@transducer/reduced"]?e(o):o}}};return function(n){var r=t(n);return{"@@transducer/init":u.init,"@@transducer/result":function(t){return r["@@transducer/result"](t)},"@@transducer/step":function(t,n){return i(n)?o(r,t,n):o(r,t,[n])}}}}()},function(t,n){t.exports=function(t){return{"@@transducer/value":t,"@@transducer/reduced":!0}}},function(t,n){t.exports=function(t){var n=String(t).match(/^function (\w*)/);return null==n?"":n[1]}},function(t,n){t.exports=function(t){return"[object RegExp]"===Object.prototype.toString.call(t)}},function(t,n,r){var e=r(7);t.exports=function(t){if(null==t)throw new TypeError("Cannot convert undefined or null to object");for(var n=Object(t),r=1,o=arguments.length;r<o;){var u=arguments[r];if(null!=u)for(var i in u)e(i,u)&&(n[i]=u[i]);r+=1}return n}},function(t,n){t.exports=function(t){return[t]}},function(t,n){t.exports=function(t,n){return function(){return n.call(this,t.apply(this,arguments))}}},function(t,n){t.exports=function(t,n){return function(){var r=this;return t.apply(r,arguments).then(function(t){return n.call(r,t)})}}},function(t,n){t.exports=function(t){var n=t.replace(/\\/g,"\\\\").replace(/[\b]/g,"\\b").replace(/\f/g,"\\f").replace(/\n/g,"\\n").replace(/\r/g,"\\r").replace(/\t/g,"\\t").replace(/\v/g,"\\v").replace(/\0/g,"\\0");return'"'+n.replace(/"/g,'\\"')+'"'}},function(t,n,r){var e=r(56),o=r(58),u=r(61),i=r(25),c=r(114);t.exports=function(){var t={"@@transducer/init":Array,"@@transducer/step":function(t,n){return t.push(n),t},"@@transducer/result":o},n={"@@transducer/init":String,"@@transducer/step":function(t,n){return t+n},"@@transducer/result":o},r={"@@transducer/init":Object,"@@transducer/step":function(t,n){return e(t,i(n)?c(n[0],n[1]):n)},"@@transducer/result":o};return function(e){if(u(e))return e;if(i(e))return t;if("string"==typeof e)return n;if("object"==typeof e)return r;throw new Error("Cannot create transformer for "+e)}}()},function(t,n){t.exports=function(){var t=function(t){return(t<10?"0":"")+t};return"function"==typeof Date.prototype.toISOString?function(t){return t.toISOString()}:function(n){return n.getUTCFullYear()+"-"+t(n.getUTCMonth()+1)+"-"+t(n.getUTCDate())+"T"+t(n.getUTCHours())+":"+t(n.getUTCMinutes())+":"+t(n.getUTCSeconds())+"."+(n.getUTCMilliseconds()/1e3).toFixed(3).slice(2,5)+"Z"}}()},function(t,n,r){var e=r(17),o=r(38),u=r(220),i=r(222),c=r(13),s=r(43);t.exports=function t(n,r){var f=function(o){var u=r.concat([n]);return e(o,u)?"<Circular>":t(o,u)},a=function(t,n){return o(function(n){return u(n)+": "+f(t[n])},n.slice().sort())};switch(Object.prototype.toString.call(n)){case"[object Arguments]":return"(function() { return arguments; }("+o(f,n).join(", ")+"))";case"[object Array]":return"["+o(f,n).concat(a(n,s(function(t){return/^\d+$/.test(t)},c(n)))).join(", ")+"]";case"[object Boolean]":return"object"==typeof n?"new Boolean("+f(n.valueOf())+")":n.toString();case"[object Date]":return"new Date("+(isNaN(n.valueOf())?f(NaN):u(i(n)))+")";case"[object Null]":return"null";case"[object Number]":return"object"==typeof n?"new Number("+f(n.valueOf())+")":1/n===-(1/0)?"-0":n.toString(10);case"[object String]":return"object"==typeof n?"new String("+f(n.valueOf())+")":u(n);case"[object Undefined]":return"undefined";default:if("function"==typeof n.toString){var p=n.toString();if("[object Object]"!==p)return p}return"{"+a(n,c(n)).join(", ")+"}"}}},function(t,n,r){var e=r(0),o=r(16),u=r(5);t.exports=function(){function t(t,n){this.xf=n,this.f=t,this.all=!0}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=function(t){return this.all&&(t=this.xf["@@transducer/step"](t,!0)),this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){return this.f(n)||(this.all=!1,t=o(this.xf["@@transducer/step"](t,!1))),t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(10),o=r(0),u=r(5);t.exports=function(){function t(t,n){this.xf=n,this.pos=0,this.full=!1,this.acc=new Array(t)}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=function(t){return this.acc=null,this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){return this.store(n),this.full?this.xf["@@transducer/step"](t,this.getCopy()):t},t.prototype.store=function(t){this.acc[this.pos]=t,this.pos+=1,this.pos===this.acc.length&&(this.pos=0,this.full=!0)},t.prototype.getCopy=function(){return e(Array.prototype.slice.call(this.acc,this.pos),Array.prototype.slice.call(this.acc,0,this.pos))},o(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(212),u=r(8);t.exports=e(function(t,n){return u(t,o(n))})},function(t,n,r){var e=r(0),o=r(5);t.exports=function(){function t(t,n){this.xf=n,this.n=t}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=o.result,t.prototype["@@transducer/step"]=function(t,n){return this.n>0?(this.n-=1,t):this.xf["@@transducer/step"](t,n)},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(5);t.exports=function(){function t(t,n){this.xf=n,this.pos=0,this.full=!1,this.acc=new Array(t)}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=function(t){return this.acc=null,this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){return this.full&&(t=this.xf["@@transducer/step"](t,this.acc[this.pos])),this.store(n),t},t.prototype.store=function(t){this.acc[this.pos]=t,this.pos+=1,this.pos===this.acc.length&&(this.pos=0,this.full=!0)},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(9),u=r(5);t.exports=function(){function t(t,n){this.f=t,this.retained=[],this.xf=n}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=function(t){return this.retained=null,this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){return this.f(n)?this.retain(t,n):this.flush(t,n)},t.prototype.flush=function(t,n){return t=o(this.xf["@@transducer/step"],t,this.retained),this.retained=[],this.xf["@@transducer/step"](t,n)},t.prototype.retain=function(t,n){return this.retained.push(n),t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(5);t.exports=function(){function t(t,n){this.xf=n,this.f=t}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=o.result,t.prototype["@@transducer/step"]=function(t,n){if(this.f){if(this.f(n))return t;this.f=null}return this.xf["@@transducer/step"](t,n)},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(5);t.exports=function(){function t(t,n){this.xf=n,this.f=t}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=o.result,t.prototype["@@transducer/step"]=function(t,n){return this.f(n)?this.xf["@@transducer/step"](t,n):t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(16),u=r(5);t.exports=function(){function t(t,n){this.xf=n,this.f=t,this.found=!1}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=function(t){return this.found||(t=this.xf["@@transducer/step"](t,void 0)),this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){return this.f(n)&&(this.found=!0,t=o(this.xf["@@transducer/step"](t,n))),t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(16),u=r(5);t.exports=function(){function t(t,n){this.xf=n,this.f=t,this.idx=-1,this.found=!1}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=function(t){return this.found||(t=this.xf["@@transducer/step"](t,-1)),this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){return this.idx+=1,this.f(n)&&(this.found=!0,t=o(this.xf["@@transducer/step"](t,this.idx))),t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(5);t.exports=function(){function t(t,n){this.xf=n,this.f=t}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=function(t){return this.xf["@@transducer/result"](this.xf["@@transducer/step"](t,this.last))},t.prototype["@@transducer/step"]=function(t,n){return this.f(n)&&(this.last=n),t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(5);t.exports=function(){function t(t,n){this.xf=n,this.f=t,this.idx=-1,this.lastIdx=-1}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=function(t){return this.xf["@@transducer/result"](this.xf["@@transducer/step"](t,this.lastIdx))},t.prototype["@@transducer/step"]=function(t,n){return this.idx+=1,this.f(n)&&(this.lastIdx=this.idx),t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(5);t.exports=function(){function t(t,n){this.xf=n,this.f=t}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=o.result,t.prototype["@@transducer/step"]=function(t,n){return this.xf["@@transducer/step"](t,this.f(n))},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(36),o=r(7),u=r(5);t.exports=function(){function t(t,n,r,e){this.valueFn=t,this.valueAcc=n,this.keyFn=r,this.xf=e,this.inputs={}}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=function(t){var n;for(n in this.inputs)if(o(n,this.inputs)&&(t=this.xf["@@transducer/step"](t,this.inputs[n]),t["@@transducer/reduced"])){t=t["@@transducer/value"];break}return this.inputs=null,this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){var r=this.keyFn(n);return this.inputs[r]=this.inputs[r]||[r,this.valueAcc],this.inputs[r][1]=this.valueFn(this.inputs[r][1],n),t},e(4,[],function(n,r,e,o){return new t(n,r,e,o)})}()},function(t,n,r){var e=r(0),o=r(16),u=r(5);t.exports=function(){function t(t,n){this.xf=n,this.n=t,this.i=0}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=u.result,t.prototype["@@transducer/step"]=function(t,n){this.i+=1;var r=0===this.n?t:this.xf["@@transducer/step"](t,n);return this.i>=this.n?o(r):r},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(16),u=r(5);t.exports=function(){function t(t,n){this.xf=n,this.f=t}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=u.result,t.prototype["@@transducer/step"]=function(t,n){return this.f(n)?this.xf["@@transducer/step"](t,n):o(t)},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(17),o=r(0),u=r(97),i=r(35),c=r(65);t.exports=o(function(t,n){var r,o;return t.length>n.length?(r=t,o=n):(r=n,o=t),c(u(i(e)(r),o))})},function(t,n,r){var e=r(57),o=r(2),u=r(66);t.exports=o(function(t,n,r){var o,i;n.length>r.length?(o=n,i=r):(o=r,i=n);for(var c=[],s=0;s<i.length;)e(t,i[s],o)&&(c[c.length]=i[s]),s+=1;return u(t,c)})},function(t,n,r){var e=r(21),o=r(0);t.exports=o(e("intersperse",function(t,n){for(var r=[],e=0,o=n.length;e<o;)e===o-1?r.push(n[e]):r.push(n[e],t),e+=1;return r}))},function(t,n,r){var e=r(93),o=r(2),u=r(61),i=r(9),c=r(221);t.exports=o(function(t,n,r){return u(t)?i(n(t),t["@@transducer/init"](),r):i(n(c(t)),e(t,[],[],!1),r)})},function(t,n,r){var e=r(1),o=r(7),u=r(13);t.exports=e(function(t){for(var n=u(t),r=n.length,e=0,i={};e<r;){var c=n[e],s=t[c],f=o(s,i)?i[s]:i[s]=[];f[f.length]=c,e+=1}return i})},function(t,n,r){var e=r(1),o=r(13);t.exports=e(function(t){for(var n=o(t),r=n.length,e=0,u={};e<r;){var i=n[e];u[t[i]]=i,e+=1}return u})},function(t,n,r){var e=r(1),o=r(91),u=r(11);t.exports=e(function(t){return null!=t&&u(t,o(t))})},function(t,n,r){var e=r(1);t.exports=e(function(t){return null==t})},function(t,n,r){var e=r(24);t.exports=e(1,"join")},function(t,n,r){var e=r(1);t.exports=e(function(t){var n,r=[];for(n in t)r[r.length]=n;return r})},function(t,n,r){var e=r(0),o=r(15),u=r(11);t.exports=e(function(t,n){if("function"!=typeof n.lastIndexOf||o(n)){for(var r=n.length-1;r>=0;){if(u(n[r],t))return r;r-=1}return-1}return n.lastIndexOf(t)})},function(t,n,r){var e=r(1),o=r(39),u=r(26),i=r(127);t.exports=e(function(t){return o(u(t),i(t))})},function(t,n,r){var e=r(1),o=r(80),u=r(39),i=r(27);t.exports=e(function(t){return u(i(t),o(t))})},function(t,n,r){var e=r(1),o=r(33),u=r(39),i=r(62);t.exports=e(function(t){return u(i(t),o(t))})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t<n})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t<=n})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){for(var e=0,o=r.length,u=[],i=[n];e<o;)i=t(i[0],r[e]),u[e]=i[1],e+=1;return[i[0],u]})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){for(var e=r.length-1,o=[],u=[n];e>=0;)u=t(r[e],u[0]),o[e]=u[1],e-=1;return[o,u[0]]})},function(t,n,r){var e=r(0),o=r(9),u=r(13);t.exports=e(function(t,n){return o(function(r,e){return r[e]=t(n[e],e,n),r},{},u(n))})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return n.match(t)||[]})},function(t,n,r){var e=r(0),o=r(100);t.exports=e(function(t,n){return o(t)?!o(n)||n<1?NaN:(t%n+n)%n:NaN})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){return t(r)>t(n)?r:n})},function(t,n,r){var e=r(1),o=r(110);t.exports=e(function(t){var n=t.length;if(0===n)return NaN;var r=2-n%2,e=(n-r)/2;return o(Array.prototype.slice.call(t,0).sort(function(t,n){return t<n?-1:t>n?1:0}).slice(e,e+r))})},function(t,n,r){var e=r(12),o=r(1),u=r(7),i=r(29);t.exports=o(function(t){var n={};return e(t.length,function(){var r=i(arguments);return u(r,n)||(n[r]=t.apply(this,arguments)),n[r]})})},function(t,n,r){var e=r(56),o=r(0);t.exports=o(function(t,n){return e({},t,n)})},function(t,n,r){var e=r(56),o=r(1);t.exports=o(function(t){return e.apply(null,[{}].concat(t))})},function(t,n,r){var e=r(2),o=r(111);t.exports=e(function(t,n,r){return o(function(n,r,e){return t(r,e)},n,r)})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return n<t?n:t})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){return t(r)<t(n)?r:n})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t%n})},function(t,n,r){var e=r(1);t.exports=e(function(t){return-t})},function(t,n,r){var e=r(95),o=r(0),u=r(4),i=r(102),c=r(78);t.exports=o(e(u(["any"],i,c)))},function(t,n,r){var e=r(1),o=r(6),u=r(26);t.exports=e(function(t){var n=t<0?1:t+1;return o(n,function(){return u(t,arguments)})})},function(t,n,r){var e=r(1),o=r(217);t.exports=e(o)},function(t,n,r){var e=r(17),o=r(0);t.exports=o(function(t,n){var r={};for(var o in n)e(o,t)||(r[o]=n[o]);return r})},function(t,n,r){var e=r(12),o=r(1);t.exports=o(function(t){var n,r=!1;return e(t.length,function(){return r?n:(r=!0,n=t.apply(this,arguments))})})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return[t,n]})},function(t,n,r){var e=r(10),o=r(96);t.exports=o(e)},function(t,n,r){var e=r(10),o=r(96),u=r(35);t.exports=o(u(e))},function(t,n,r){var e=r(54),o=r(106),u=r(43);t.exports=o([e,u])},function(t,n,r){var e=r(2),o=r(11),u=r(27);t.exports=e(function(t,n,r){return o(u(t,r),n)})},function(t,n,r){var e=r(2),o=r(85),u=r(27);t.exports=e(function(t,n,r){return o(t,u(n,r))})},function(t,n,r){var e=r(2),o=r(27);t.exports=e(function(t,n,r){return n.length>0&&t(o(n,r))})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r={},e=0;e<t.length;)t[e]in n&&(r[t[e]]=n[t[e]]),e+=1;return r})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){var r={};for(var e in n)t(n[e],e,n)&&(r[e]=n[e]);return r})},function(t,n,r){var e=r(82),o=r(44);t.exports=function(){if(0===arguments.length)throw new Error("pipeK requires at least one argument");return e.apply(this,o(arguments))}},function(t,n,r){var e=r(112),o=r(14);t.exports=o(e,1)},function(t,n,r){var e=r(38),o=r(55),u=r(117),i=r(128);t.exports=i(e,[u,o])},function(t,n,r){var e=r(2),o=r(11);t.exports=e(function(t,n,r){return o(n,r[t])})},function(t,n,r){var e=r(2),o=r(105);t.exports=e(function(t,n,r){return o(t,r[n])})},function(t,n,r){var e=r(2),o=r(7);t.exports=e(function(t,n,r){return null!=r&&o(n,r)?r[n]:t})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){return t(r[n])})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=t.length,e=[],o=0;o<r;)e[o]=n[t[o]],o+=1;return e})},function(t,n,r){var e=r(0),o=r(59);t.exports=e(function(t,n){if(!o(t)||!o(n))throw new TypeError("Both arguments to range must be numbers");for(var r=[],e=t;e<n;)r.push(e),e+=1;return r})},function(t,n,r){var e=r(36),o=r(9),u=r(16);t.exports=e(4,[],function(t,n,r,e){return o(function(r,e){return t(r,e)?n(r,e):u(r)},r,e)})},function(t,n,r){var e=r(1),o=r(16);t.exports=e(o)},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){var e=Array.prototype.slice.call(r,0);return e.splice(t,n),e})},function(t,n,r){var e=r(0),o=r(19),u=r(125);t.exports=e(function(t,n){return u(o(t),n)})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){return r.replace(t,n)})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){for(var e=0,o=r.length,u=[n];e<o;)n=t(n,r[e]),u[e+1]=n,e+=1;return u})},function(t,n,r){var e=r(2),o=r(19),u=r(116);t.exports=e(function(t,n,r){return u(t,o(n),r)})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return Array.prototype.slice.call(n,0).sort(t)})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return Array.prototype.slice.call(n,0).sort(function(n,r){var e=t(n),o=t(r);return e<o?-1:e>o?1:0})})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return Array.prototype.slice.call(n,0).sort(function(n,r){for(var e=0,o=0;0===e&&o<t.length;)e=t[o](n,r),o+=1;return e})})},function(t,n,r){var e=r(24);t.exports=e(1,"split")},function(t,n,r){var e=r(0),o=r(108),u=r(18);t.exports=e(function(t,n){return[u(0,t,n),u(t,o(n),n)]})},function(t,n,r){var e=r(0),o=r(18);t.exports=e(function(t,n){if(t<=0)throw new Error("First argument to splitEvery must be a positive integer");for(var r=[],e=0;e<n.length;)r.push(o(e,e+=t,n));return r})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=0,e=n.length,o=[];r<e&&!t(n[r]);)o.push(n[r]),r+=1;return[o,Array.prototype.slice.call(n,r)]})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return Number(t)-Number(n)})},function(t,n,r){var e=r(0),o=r(53),u=r(86);t.exports=e(function(t,n){return o(u(t,n),u(n,t))})},function(t,n,r){var e=r(2),o=r(53),u=r(87);t.exports=e(function(t,n,r){return o(u(t,n,r),u(t,r,n))})},function(t,n,r){var e=r(0),o=r(89);t.exports=e(function(t,n){return o(t>=0?n.length-t:0,n)})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=n.length-1;r>=0&&t(n[r]);)r-=1;return Array.prototype.slice.call(n,r+1)})},function(t,n,r){var e=r(0),o=r(4),u=r(239);t.exports=e(o(["takeWhile"],u,function(t,n){for(var r=0,e=n.length;r<e&&t(n[r]);)r+=1;return Array.prototype.slice.call(n,0,r)}))},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t(n),n})},function(t,n,r){var e=r(94),o=r(0),u=r(215),i=r(29);t.exports=o(function(t,n){if(!u(t))throw new TypeError("‘test’ requires a value of type RegExp as its first argument; received "+i(t));return e(t).test(n)})},function(t,n,r){var e=r(24);t.exports=e(0,"toLowerCase")},function(t,n,r){var e=r(1),o=r(7);t.exports=e(function(t){var n=[];for(var r in t)o(r,t)&&(n[n.length]=[r,t[r]]);return n})},function(t,n,r){var e=r(1);t.exports=e(function(t){var n=[];for(var r in t)n[n.length]=[r,t[r]];return n})},function(t,n,r){var e=r(24);t.exports=e(0,"toUpperCase")},function(t,n,r){var e=r(9),o=r(104),u=r(6);t.exports=u(4,function(t,n,r,u){return e(t("function"==typeof n?o(n):n),r,u)})},function(t,n,r){var e=r(1);t.exports=e(function(t){for(var n=0,r=[];n<t.length;){for(var e=t[n],o=0;o<e.length;)"undefined"==typeof r[o]&&(r[o]=[]),r[o].push(e[o]),o+=1;n+=1}return r})},function(t,n,r){var e=r(2),o=r(8),u=r(122);t.exports=e(function(t,n,r){return u(t,o(n,r))})},function(t,n,r){var e=r(1);t.exports=function(){var t="\t\n\v\f\r   ᠎              \u2028\u2029\ufeff",n="​",r="function"==typeof String.prototype.trim;return e(r&&!t.trim()&&n.trim()?function(t){return t.trim()}:function(n){var r=new RegExp("^["+t+"]["+t+"]*"),e=new RegExp("["+t+"]["+t+"]*$");return n.replace(r,"").replace(e,"")})}()},function(t,n,r){var e=r(12),o=r(10),u=r(0);t.exports=u(function(t,n){return e(t.length,function(){try{return t.apply(this,arguments)}catch(t){return n.apply(this,o([t],arguments))}})})},function(t,n,r){var e=r(1);t.exports=e(function(t){return function(){return t(Array.prototype.slice.call(arguments,0))}})},function(t,n,r){var e=r(1),o=r(41);t.exports=e(function(t){return o(1,t)})},function(t,n,r){var e=r(0),o=r(6);t.exports=e(function(t,n){return o(t,function(){for(var r,e=1,o=n,u=0;e<=t&&"function"==typeof o;)r=e===t?arguments.length:u+o.length,o=o.apply(this,Array.prototype.slice.call(arguments,u,r)),e+=1,u=r;return o})})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=t(n),e=[];r&&r.length;)e[e.length]=r[0],r=t(r[1]);return e})},function(t,n,r){var e=r(10),o=r(0),u=r(52),i=r(65);t.exports=o(u(i,e))},function(t,n,r){var e=r(10),o=r(2),u=r(66);t.exports=o(function(t,n,r){return u(t,e(n,r))})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){return t(r)?r:n(r)})},function(t,n,r){var e=r(58),o=r(51);t.exports=o(e)},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){for(var e=r;!t(e);)e=n(e);return e})},function(t,n,r){var e=r(1);t.exports=e(function(t){var n,r=[];for(n in t)r[r.length]=t[n];return r})},function(t,n,r){var e=r(0);t.exports=function(){var t=function(t){return{value:t,map:function(){return this}}};return e(function(n,r){return n(t)(r).value})}()},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){return t(r)?n(r):r})},function(t,n,r){var e=r(0),o=r(11),u=r(8),i=r(130);t.exports=e(function(t,n){return i(u(o,t),n)})},function(t,n,r){var e=r(17),o=r(0),u=r(35),i=r(43);t.exports=o(function(t,n){return i(u(e)(t),n)})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r,e=0,o=t.length,u=n.length,i=[];e<o;){for(r=0;r<u;)i[i.length]=[t[e],n[r]],r+=1;e+=1}return i})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=[],e=0,o=Math.min(t.length,n.length);e<o;)r[e]=[t[e],n[e]],e+=1;return r})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=0,e=Math.min(t.length,n.length),o={};r<e;)o[t[r]]=n[r],r+=1;return o})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){for(var e=[],o=0,u=Math.min(n.length,r.length);o<u;)e[o]=t(n[o],r[o]),o+=1;return e})},function(t,n,r){"use strict";var e=r(147),o=r(74),u=r(47),i=r(31),c=r(141),s=r(67),f=r(132),a=r(68),p=r(135),l=r(137),h=r(131),v=r(73),x=r(146),y=r(133),d=r(46),g=r(139),m=r(45),b=r(134),w=r(30),j=r(138),A=r(71),O=r(143),N=r(49),S=r(144),E=r(72),_=r(145),k=r(69),q=r(136),P=r(48),F=r(142),I=r(70),W=r(140);t.exports={isNotUndefined:e,isUndefined:o,isNull:u,isNotNull:i,isNotNil:c,isArray:s,isNotArray:f,isBoolean:a,isNotBoolean:p,isNotEmpty:l,isNilOrEmpty:h,isString:v,isNotString:x,isNotArrayLike:y,isGeneratorFunction:d,isNotGeneratorFunction:g,isAsyncFunction:m,isNotAsyncFunction:b,isFunction:w,isNotFunction:j,isObject:A,isNotObject:O,isObjectLike:N,isNotObjectLike:S,isPlainObject:E,isNotPlainObject:_,isDate:k,isNotDate:q,isNumber:P,isNotNumber:F,isNaN:I,isNotNaN:W}}])});

@@ -6,4 +6,4 @@ {

"description": "Extensions for Ramda",
"keywords": "ramda extensions addons cookbook adjunct recipe",
"version": "0.5.1",
"keywords": "ramda extensions addons cookbook adjunct recipe extras",
"version": "0.6.0",
"homepage": "https://github.com/char0n/ramda-adjunct",

@@ -10,0 +10,0 @@ "license": "SEE LICENSE IN LICENSE.md",

@@ -71,2 +71,3 @@ [![CircleCI](https://circleci.com/gh/char0n/ramda-adjunct.svg?style=svg)](https://circleci.com/gh/char0n/ramda-adjunct)

- [0.5.1](https://char0n.github.io/ramda-adjunct/0.5.1)
- [0.6.0](https://char0n.github.io/ramda-adjunct/0.6.0)
- Latest: https://char0n.github.io/ramda-adjunct

@@ -73,0 +74,0 @@

@@ -135,2 +135,33 @@ declare var RA: RamdaAdjunct.Static;

isNotPlainObject(val: any): boolean
/**
* Checks if value is `Date` object.
*/
isDate(val: any): val is Date
/**
* Checks if value is complement of `Date` object
*/
isNotDate(val: any): boolean
/**
* Checks whether the passed value is `NaN` and its type is `Number`.
* It is a more robust version of the original, global isNaN().
*/
isNaN(val: any): boolean
/**
* Checks whether the passed value is complement of `NaN` and its type is not `Number`.
*/
isNotNaN(val: any): boolean
/**
* Checks if value is a `Number` primitive or object
*/
isNumber(val: any): val is Number
/**
* Checks if value is a complement of `Number` primitive or object
*/
isNotNumber(val: any): boolean
}

@@ -137,0 +168,0 @@

@@ -29,2 +29,8 @@ 'use strict';

const isNotPlainObject = require('./isNotPlainObject');
const isDate = require('./isDate');
const isNotDate = require('./isNotDate');
const isNumber = require('./isNumber');
const isNotNumber = require('./isNotNumber');
const isNaN = require('./isNaN');
const isNotNaN = require('./isNotNaN');

@@ -61,2 +67,8 @@ /**

isNotPlainObject,
isDate,
isNotDate,
isNumber,
isNotNumber,
isNaN,
isNotNaN,
};

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc