Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

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.0 to 0.5.1

src/index.d.ts

27

CHANGELOG.md

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

<a name="0.5.0"></a>
# [0.5.0](https://github.com/char0n/ramda-adjunct/compare/v0.4.0...v0.5.0) (2017-03-06)
### Bug Fixes
* **isGeneratorFunction:** add legacy check ([24969a6](https://github.com/char0n/ramda-adjunct/commit/24969a6))
### Features
* add isFunction ([c0e45e7](https://github.com/char0n/ramda-adjunct/commit/c0e45e7))
* **typescript:** add support for typescript by typings ([1ff7c61](https://github.com/char0n/ramda-adjunct/commit/1ff7c61))
* add isAsyncFunction ([b72a040](https://github.com/char0n/ramda-adjunct/commit/b72a040))
* add isGeneratorFunction ([08ee74b](https://github.com/char0n/ramda-adjunct/commit/08ee74b))
* add isNotArrayLike ([dbf09b9](https://github.com/char0n/ramda-adjunct/commit/dbf09b9)), closes [#33](https://github.com/char0n/ramda-adjunct/issues/33)
* add isNotAsyncFunction ([8194de9](https://github.com/char0n/ramda-adjunct/commit/8194de9))
* add isNotFunction ([82b8295](https://github.com/char0n/ramda-adjunct/commit/82b8295)), closes [#31](https://github.com/char0n/ramda-adjunct/issues/31)
* add isNotObjectLike ([9233e00](https://github.com/char0n/ramda-adjunct/commit/9233e00))
* add isObject ([9f6e64a](https://github.com/char0n/ramda-adjunct/commit/9f6e64a))
* add isObjectLike ([52b1917](https://github.com/char0n/ramda-adjunct/commit/52b1917))
* add isPlainObject ([6e14291](https://github.com/char0n/ramda-adjunct/commit/6e14291))
* isNotGeneratorFunction ([ffba8cd](https://github.com/char0n/ramda-adjunct/commit/ffba8cd))
* isNotObject ([aa4a0df](https://github.com/char0n/ramda-adjunct/commit/aa4a0df))
<a name="0.4.0"></a>

@@ -2,0 +29,0 @@ # [0.4.0](https://github.com/char0n/ramda-adjunct/compare/v0.3.0...v0.4.0) (2017-02-27)

684

dist/RA.node.js

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

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

@@ -93,5 +93,223 @@ /************************************************************************/

var isArray = __webpack_require__(14);
var _require = __webpack_require__(0),
anyPass = _require.anyPass;
var _isFunction = __webpack_require__(29);
var isGeneratorFunction = __webpack_require__(4);
var isAsyncFunction = __webpack_require__(3);
/* eslint-disable max-len */
/**
* Checks if input value is `Function`
*
* @func isFunction
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.5.0|v0.5.0}
* @category Type
* @sig * -> Boolean
* @param {*} val The value to test
* @return {Boolean}
* @see {@link RA.isNotFunction|isNotFunction}, {@link RA.isAsyncFunction|isNotAsyncFunction}, {@link RA.isGeneratorFunction|isGeneratorFunction}
* @example
*
* RA.isFunction(function test() { }); //=> true
* RA.isFunction(function* test() { }); //=> true
* RA.isFunction(async function test() { }); //=> true
* RA.isFunction(() => {}); //=> true
* RA.isFunction(null); //=> false
* RA.isFunction('abc'); //=> false
*/
/* eslint-enable max-len */
module.exports = anyPass([_isFunction, isGeneratorFunction, isAsyncFunction]);
/***/ }),
/* 2 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var _require = __webpack_require__(0),
complement = _require.complement;
var isNull = __webpack_require__(5);
/**
* Checks if input value is complement of `null`
*
* @func isNotNull
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.1.0|v0.1.0}
* @category Type
* @sig * -> Boolean
* @param {*} val The value to test
* @return {Boolean}
* @see {@link RA.isNull|isNull}
* @example
*
* RA.isNotNull(1); //=> true
* RA.isNotNull(undefined); //=> true
* RA.isNotNull(null); //=> false
*/
module.exports = complement(isNull);
/***/ }),
/* 3 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
/* eslint-disable max-len */
/**
* Checks if input value is `Async Function`
*
* @func isAsyncFunction
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.5.0|v0.5.0}
* @category Type
* @sig * -> Boolean
* @param {*} val The value to test
* @return {Boolean}
* @see {@link RA.isFunction|isFunction}, {@link RA.isNotAsyncFunction|isNotAsyncFunction}, {@link RA.isGeneratorFunction|isGeneratorFunction}
* @example
*
* RA.isAsyncFunction(async function test() { }); //=> true
* RA.isAsyncFunction(null); //=> false
* RA.isAsyncFunction(function test() { }); //=> false
* RA.isAsyncFunction(() => {}); //=> false
*/
/* eslint-enable max-len */
module.exports = function (val) {
return Object.prototype.toString.call(val) === '[object AsyncFunction]';
};
/***/ }),
/* 4 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var _require = __webpack_require__(0),
or = _require.or;
var isNotNull = __webpack_require__(2);
var GeneratorFunction = null;
try {
GeneratorFunction = new Function('return function* () {}')().constructor; // eslint-disable-line no-new-func
} catch (e) {} // eslint-disable-line no-empty
/* eslint-disable max-len */
/**
* Checks if input value is `Generator Function`
*
* @func isGeneratorFunction
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.5.0|v0.5.0}
* @category Type
* @sig * -> Boolean
* @param {*} val The value to test
* @return {Boolean}
* @see {@link RA.isFunction|isFunction}, {@link RA.isAsyncFunction|isAsyncFunction}, {@link RA.isNotGeneratorFunction|isNotGeneratorFunction}
* @example
*
* RA.isGeneratorFunction(function* test() { }); //=> true
* RA.isGeneratorFunction(null); //=> false
* RA.isGeneratorFunction(function test() { }); //=> false
* RA.isGeneratorFunction(() => {}); //=> false
*/
/* eslint-enable max-len */
module.exports = function (val) {
var toStringCheck = Object.prototype.toString.call(val) === '[object AsyncFunction]';
var legacyConstructorCheck = isNotNull(GeneratorFunction) && val instanceof GeneratorFunction;
return or(toStringCheck, legacyConstructorCheck);
};
/***/ }),
/* 5 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var _require = __webpack_require__(0),
equals = _require.equals;
/**
* Checks if input value is `null`
*
* @func isNull
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.1.0|v0.1.0}
* @category Type
* @sig * -> Boolean
* @param {*} val The value to test
* @return {Boolean}
* @see {@link RA.isNotNull|isNotNull}
* @example
*
* RA.isNull(1); //=> false
* RA.isNull(undefined); //=> false
* RA.isNull(null); //=> true
*/
module.exports = equals(null);
/***/ }),
/* 6 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var _require = __webpack_require__(0),
both = _require.both;
var isNotNull = __webpack_require__(2);
var isOfTypeObject = __webpack_require__(13);
/* eslint-disable max-len */
/**
* Checks if value is object-like. A value is object-like if it's not null and has a typeof result of "object".
*
* @func isObjectLike
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.5.0|v0.5.0}
* @category Type
* @sig * -> Boolean
* @param {*} val The value to test
* @return {Boolean}
* @see {@link RA.isNotObjectLike|isNotObjectLike}, {@link RA.isObject|isObject}, {@link RA.isPlainObject|isPlainObject}
* @example
*
* RA.isObjectLike({}); //=> true
* RA.isObjectLike([]); //=> true
* RA.isObjectLike(() => {}); //=> false
* RA.isObjectLike(null); //=> false
* RA.isObjectLike(undefined); //=> false
*/
/* eslint-enable max-len */
module.exports = both(isNotNull, isOfTypeObject);
/***/ }),
/* 7 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var _isArray = __webpack_require__(28);
/**
* Checks if input value is `Array`

@@ -114,6 +332,6 @@ *

module.exports = isArray;
module.exports = _isArray;
/***/ }),
/* 2 */
/* 8 */
/***/ (function(module, exports, __webpack_require__) {

@@ -128,3 +346,3 @@

/**
* Checks if input `value` is `Boolean`
* Checks if input value is `Boolean`
*

@@ -149,3 +367,3 @@ * @func isBoolean

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

@@ -157,10 +375,16 @@

var _require = __webpack_require__(0),
equals = _require.equals;
both = _require.both,
anyPass = _require.anyPass;
var isNotNull = __webpack_require__(2);
var isFunction = __webpack_require__(1);
var isOfTypeObject = __webpack_require__(13);
/* eslint-disable max-len */
/**
* Checks if input value is `null`
* Checks if input value is language type of `Object`
*
* @func isNull
* @func isObject
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.1.0|v0.1.0}
* @since {@link https://char0n.github.io/ramda-adjunct/0.5.0|v0.5.0}
* @category Type

@@ -170,15 +394,82 @@ * @sig * -> Boolean

* @return {Boolean}
* @see {@link RA.isNotNull|isNotNull}
* @see {@link RA.isNotObject|isNotObject}, {@link RA.isObjectLike|isObjectLike}, {@link RA.isPlainObject|isPlainObject}
* @example
*
* RA.isNull(1); //=> false
* RA.isNull(undefined); //=> false
* RA.isNull(null); //=> true
* RA.isObject({}); //=> true
* RA.isObject([]); //=> true
* RA.isObject(() => {}); //=> true
* RA.isObject(null); //=> false
* RA.isObject(undefined); //=> false
*/
/* eslint-enable max-len */
module.exports = both(isNotNull, anyPass([isOfTypeObject, isFunction]));
module.exports = equals(null);
/***/ }),
/* 10 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var _isObject = __webpack_require__(30);
var _require = __webpack_require__(0),
pipe = _require.pipe,
both = _require.both,
equals = _require.equals,
toString = _require.toString,
pathSatisfies = _require.pathSatisfies;
var isNull = __webpack_require__(5);
var isObjectLike = __webpack_require__(6);
var isFunction = __webpack_require__(1);
var isObjectConstructor = pipe(toString, equals(toString(Object)));
var hasObjectConstructor = pathSatisfies(both(isFunction, isObjectConstructor), ['constructor']);
/* eslint-disable max-len */
/**
* Check to see if an object is a plain object (created using `{}`, `new Object()` or `Object.create(null)`)
*
* @func isPlainObject
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.5.0|v0.5.0}
* @category Type
* @sig * -> Boolean
* @param {*} val The value to test
* @return {Boolean}
* @see {@link RA.isNotPlainObject|isNotPlainObject}, {@link RA.isObjectLike|isObjectLike}, {@link RA.isObject|isObject}
* @example
*
* class Bar {
* constructor() {
* this.prop = 'value';
* }
* }
*
* RA.isPlainObject(new Bar()); //=> false
* RA.isPlainObject({ prop: 'value' }); //=> true
* RA.isPlainObject(['a', 'b', 'c']); //=> false
* RA.isPlainObject(Object.create(null); //=> true
* RA.isPlainObject(new Object()); //=> true
*/
/* eslint-enable max-len */
module.exports = function (val) {
if (!isObjectLike(val) || !_isObject(val)) {
return false;
}
var proto = Object.getPrototypeOf(val);
if (isNull(proto)) {
return true;
}
return hasObjectConstructor(proto);
};
/***/ }),
/* 4 */
/* 11 */
/***/ (function(module, exports, __webpack_require__) {

@@ -189,3 +480,3 @@

var isString = __webpack_require__(15);
var _isString = __webpack_require__(31);

@@ -209,6 +500,6 @@ /**

module.exports = isString;
module.exports = _isString;
/***/ }),
/* 5 */
/* 12 */
/***/ (function(module, exports, __webpack_require__) {

@@ -244,3 +535,3 @@

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

@@ -251,2 +542,15 @@

var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
module.exports = function (val) {
return (typeof val === 'undefined' ? 'undefined' : _typeof(val)) === 'object';
};
/***/ }),
/* 14 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var _require = __webpack_require__(0),

@@ -282,3 +586,3 @@ anyPass = _require.anyPass,

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

@@ -292,3 +596,3 @@

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

@@ -316,3 +620,3 @@ /**

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

@@ -324,7 +628,75 @@

var _require = __webpack_require__(0),
complement = _require.complement,
isArrayLike = _require.isArrayLike;
/**
* Tests whether or not an object is similar to an array.
*
* @func isNotArrayLike
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.5.0|v0.5.0}
* @category Type
* @sig * -> Boolean
* @param {*} val The value to test
* @return {Boolean}
* @see {@link http://ramdajs.com/docs/#isArrayLike|isArrayLike}
* @example
*
* RA.isNotArrayLike([]); //=> false
* RA.isNotArrayLike(true); //=> true
* RA.isNotArrayLike({}); //=> true
* RA.isNotArrayLike({length: 10}); //=> true
* RA.isNotArrayLike({0: 'zero', 9: 'nine', length: 10}); //=> false
*/
module.exports = complement(isArrayLike);
/***/ }),
/* 17 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var _require = __webpack_require__(0),
complement = _require.complement;
var isBoolean = __webpack_require__(2);
var isAsyncFunction = __webpack_require__(3);
/* eslint-disable max-len */
/**
* Checks if input value is complement of `Async Function`
*
* @func isNotAsyncFunction
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.5.0|v0.5.0}
* @category Type
* @sig * -> Boolean
* @param {*} val The value to test
* @return {Boolean}
* @see {@link RA.isFunction|isFunction}, {@link RA.isAsyncFunction|isAsyncFunction}, {@link RA.isGeneratorFunction|isGeneratorFunction}
* @example
*
* RA.isNotAsyncFunction(async function test() { }); //=> false
* RA.isNotAsyncFunction(null); //=> true
* RA.isNotAsyncFunction(function test() { }); //=> true
* RA.isNotAsyncFunction(() => {}); //=> true
*/
/* eslint-enable max-len */
module.exports = complement(isAsyncFunction);
/***/ }),
/* 18 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var _require = __webpack_require__(0),
complement = _require.complement;
var isBoolean = __webpack_require__(8);
/**
* Checks if input value is complement of `Boolean`

@@ -350,3 +722,3 @@ *

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

@@ -386,3 +758,3 @@

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

@@ -394,2 +766,74 @@

var _require = __webpack_require__(0),
complement = _require.complement;
var isFunction = __webpack_require__(1);
/* eslint-disable max-len */
/**
* Checks if input value is complement of `Function`
*
* @func isNotFunction
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.5.0|v0.5.0}
* @category Type
* @sig * -> Boolean
* @param {*} val The value to test
* @return {Boolean}
* @see {@link RA.isFunction|isFunction}, {@link RA.isAsyncFunction|isNotAsyncFunction}, {@link RA.isGeneratorFunction|isGeneratorFunction}
* @example
*
* RA.isNotFunction(function test() { }); //=> false
* RA.isNotFunction(function* test() { }); //=> false
* RA.isNotFunction(async function test() { }); //=> false
* RA.isNotFunction(() => {}); //=> false
* RA.isNotFunction(null); //=> true
* RA.isNotFunction('abc'); //=> true
*/
/* eslint-enable max-len */
module.exports = complement(isFunction);
/***/ }),
/* 21 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var _require = __webpack_require__(0),
complement = _require.complement;
var isGeneratorFunction = __webpack_require__(4);
/* eslint-disable max-len */
/**
* Checks if input value is complement of `Generator Function`
*
* @func isNotGeneratorFunction
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.5.0|v0.5.0}
* @category Type
* @sig * -> Boolean
* @param {*} val The value to test
* @return {Boolean}
* @see {@link RA.isFunction|isFunction}, {@link RA.isAsyncFunction|isAsyncFunction}, {@link RA.isGeneratorFunction|isGeneratorFunction}
* @example
*
* RA.isNotGeneratorFunction(function* test() { }); //=> false
* RA.isNotGeneratorFunction(null); //=> true
* RA.isNotGeneratorFunction(function test() { }); //=> true
* RA.isNotGeneratorFunction(() => {}); //=> true
*/
/* eslint-enable max-len */
module.exports = complement(isGeneratorFunction);
/***/ }),
/* 22 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var _require = __webpack_require__(0),
isNil = _require.isNil,

@@ -421,3 +865,3 @@ complement = _require.complement;

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

@@ -431,10 +875,11 @@

var isNull = __webpack_require__(3);
var isObject = __webpack_require__(9);
/* eslint-disable max-len */
/**
* Checks if input value is complement of `null`
* Checks if input value is complement of language type of `Object`
*
* @func isNotNull
* @func isNotObject
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.1.0|v0.1.0}
* @since {@link https://char0n.github.io/ramda-adjunct/0.5.0|v0.5.0}
* @category Type

@@ -444,14 +889,17 @@ * @sig * -> Boolean

* @return {Boolean}
* @see {@link RA.isNull|isNull}
* @see {@link RA.isObject|isObject}, {@link RA.isObjectLike|isObjectLike}, {@link RA.isPlainObject|isPlainObject}
* @example
*
* RA.isNotNull(1); //=> true
* RA.isNotNull(undefined); //=> true
* RA.isNotNull(null); //=> false
* RA.isNotObject({}); //=> false
* RA.isNotObject([]); //=> false
* RA.isNotObject(() => {}); //=> false
* RA.isNotObject(null); //=> true
* RA.isNotObject(undefined); //=> true
*/
/* eslint-enable max-len */
module.exports = complement(isNull);
module.exports = complement(isObject);
/***/ }),
/* 12 */
/* 24 */
/***/ (function(module, exports, __webpack_require__) {

@@ -465,5 +913,83 @@

var iString = __webpack_require__(4);
var isObjectLike = __webpack_require__(6);
/* eslint-disable max-len */
/**
* Checks if value is not object-like. A value is object-like if it's not null and has a typeof result of "object".
*
* @func isNotObjectLike
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.5.0|v0.5.0}
* @category Type
* @sig * -> Boolean
* @param {*} val The value to test
* @return {Boolean}
* @see {@link RA.isObjectLike|isObjectLike}, {@link RA.isObject|isObject}, {@link RA.isPlainObject|isPlainObject}
* @example
*
* RA.isNotObjectLike({}); //=> false
* RA.isNotObjectLike([]); //=> false
* RA.isNotObjectLike(() => {}); //=> true
* RA.isNotObjectLike(null); //=> true
* RA.isNotObjectLike(undefined); //=> true
*/
/* eslint-enable max-len */
module.exports = complement(isObjectLike);
/***/ }),
/* 25 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var _require = __webpack_require__(0),
complement = _require.complement;
var isPlainObject = __webpack_require__(10);
/* eslint-disable max-len */
/**
* Check to see if an object is a not plain object (created using `{}`, `new Object()` or `Object.create(null)`)
*
* @func isNotPlainObject
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.5.0|v0.5.0}
* @category Type
* @sig * -> Boolean
* @param {*} val The value to test
* @return {Boolean}
* @see {@link RA.isPlainObject|isPlainObject}, {@link RA.isObjectLike|isObjectLike}, {@link RA.isObject|isObject}
* @example
*
* class Bar {
* constructor() {
* this.prop = 'value';
* }
* }
*
* RA.isNotPlainObject(new Bar()); //=> true
* RA.isNotPlainObject({ prop: 'value' }); //=> false
* RA.isNotPlainObject(['a', 'b', 'c']); //=> true
* RA.isNotPlainObject(Object.create(null); //=> false
* RA.isNotPlainObject(new Object()); //=> false
*/
/* eslint-enable max-len */
module.exports = complement(isPlainObject);
/***/ }),
/* 26 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var _require = __webpack_require__(0),
complement = _require.complement;
var iString = __webpack_require__(11);
/**
* Checks if input value is complement of `String`

@@ -488,3 +1014,3 @@ *

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

@@ -498,3 +1024,3 @@

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

@@ -521,3 +1047,3 @@ /**

/***/ }),
/* 14 */
/* 28 */
/***/ (function(module, exports) {

@@ -545,5 +1071,23 @@

/***/ }),
/* 15 */
/* 29 */
/***/ (function(module, exports) {
module.exports = function _isFunction(x) {
return Object.prototype.toString.call(x) === '[object Function]';
};
/***/ }),
/* 30 */
/***/ (function(module, exports) {
module.exports = function _isObject(x) {
return Object.prototype.toString.call(x) === '[object Object]';
};
/***/ }),
/* 31 */
/***/ (function(module, exports) {
module.exports = function _isString(x) {

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

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

@@ -562,15 +1106,28 @@

var isNotUndefined = __webpack_require__(13);
var isUndefined = __webpack_require__(5);
var isNull = __webpack_require__(3);
var isNotNull = __webpack_require__(11);
var isNotNil = __webpack_require__(10);
var isArray = __webpack_require__(1);
var isNotArray = __webpack_require__(7);
var isBoolean = __webpack_require__(2);
var isNotBoolean = __webpack_require__(8);
var isNotEmpty = __webpack_require__(9);
var isNilOrEmpty = __webpack_require__(6);
var isString = __webpack_require__(4);
var isNotString = __webpack_require__(12);
var isNotUndefined = __webpack_require__(27);
var isUndefined = __webpack_require__(12);
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 isGeneratorFunction = __webpack_require__(4);
var isNotGeneratorFunction = __webpack_require__(21);
var isAsyncFunction = __webpack_require__(3);
var isNotAsyncFunction = __webpack_require__(17);
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);

@@ -593,3 +1150,16 @@ /**

isString: isString,
isNotString: isNotString
isNotString: isNotString,
isNotArrayLike: isNotArrayLike,
isGeneratorFunction: isGeneratorFunction,
isNotGeneratorFunction: isNotGeneratorFunction,
isAsyncFunction: isAsyncFunction,
isNotAsyncFunction: isNotAsyncFunction,
isFunction: isFunction,
isNotFunction: isNotFunction,
isObject: isObject,
isNotObject: isNotObject,
isObjectLike: isObjectLike,
isNotObjectLike: isNotObjectLike,
isPlainObject: isPlainObject,
isNotPlainObject: isNotPlainObject
};

@@ -596,0 +1166,0 @@

2

dist/RA.node.min.js

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

!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(r[n])return r[n].exports;var o=r[n]={i:n,l:!1,exports:{}};return t[n].call(o.exports,o,o.exports,e),o.l=!0,o.exports}var r={};return e.m=t,e.c=r,e.i=function(t){return t},e.d=function(t,r,n){e.o(t,r)||Object.defineProperty(t,r,{configurable:!1,enumerable:!0,get:n})},e.n=function(t){var r=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(r,"a",r),r},e.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},e.p="",e(e.s=16)}([function(e,r){e.exports=t},function(t,e,r){"use strict";var n=r(14);t.exports=n},function(t,e,r){"use strict";var n=r(0),o=n.is;t.exports=o(Boolean)},function(t,e,r){"use strict";var n=r(0),o=n.equals;t.exports=o(null)},function(t,e,r){"use strict";var n=r(15);t.exports=n},function(t,e,r){"use strict";var n=r(0),o=n.equals;t.exports=o(void 0)},function(t,e,r){"use strict";var n=r(0),o=n.anyPass,i=n.isEmpty,s=n.isNil;t.exports=o([s,i])},function(t,e,r){"use strict";var n=r(0),o=n.complement,i=r(1);t.exports=o(i)},function(t,e,r){"use strict";var n=r(0),o=n.complement,i=r(2);t.exports=o(i)},function(t,e,r){"use strict";var n=r(0),o=n.complement,i=n.isEmpty;t.exports=o(i)},function(t,e,r){"use strict";var n=r(0),o=n.isNil,i=n.complement;t.exports=i(o)},function(t,e,r){"use strict";var n=r(0),o=n.complement,i=r(3);t.exports=o(i)},function(t,e,r){"use strict";var n=r(0),o=n.complement,i=r(4);t.exports=o(i)},function(t,e,r){"use strict";var n=r(0),o=n.complement,i=r(5);t.exports=o(i)},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 String]"===Object.prototype.toString.call(t)}},function(t,e,r){"use strict";var n=r(13),o=r(5),i=r(3),s=r(11),u=r(10),c=r(1),p=r(7),a=r(2),f=r(8),l=r(9),m=r(6),x=r(4),d=r(12);t.exports={isNotUndefined:n,isUndefined:o,isNull:i,isNotNull:s,isNotNil:u,isArray:c,isNotArray:p,isBoolean:a,isNotBoolean:f,isNotEmpty:l,isNilOrEmpty:m,isString:x,isNotString:d}}])});
!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}}])});

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

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

@@ -93,5 +93,223 @@ /************************************************************************/

var isArray = __webpack_require__(14);
var _require = __webpack_require__(0),
anyPass = _require.anyPass;
var _isFunction = __webpack_require__(29);
var isGeneratorFunction = __webpack_require__(4);
var isAsyncFunction = __webpack_require__(3);
/* eslint-disable max-len */
/**
* Checks if input value is `Function`
*
* @func isFunction
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.5.0|v0.5.0}
* @category Type
* @sig * -> Boolean
* @param {*} val The value to test
* @return {Boolean}
* @see {@link RA.isNotFunction|isNotFunction}, {@link RA.isAsyncFunction|isNotAsyncFunction}, {@link RA.isGeneratorFunction|isGeneratorFunction}
* @example
*
* RA.isFunction(function test() { }); //=> true
* RA.isFunction(function* test() { }); //=> true
* RA.isFunction(async function test() { }); //=> true
* RA.isFunction(() => {}); //=> true
* RA.isFunction(null); //=> false
* RA.isFunction('abc'); //=> false
*/
/* eslint-enable max-len */
module.exports = anyPass([_isFunction, isGeneratorFunction, isAsyncFunction]);
/***/ }),
/* 2 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var _require = __webpack_require__(0),
complement = _require.complement;
var isNull = __webpack_require__(5);
/**
* Checks if input value is complement of `null`
*
* @func isNotNull
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.1.0|v0.1.0}
* @category Type
* @sig * -> Boolean
* @param {*} val The value to test
* @return {Boolean}
* @see {@link RA.isNull|isNull}
* @example
*
* RA.isNotNull(1); //=> true
* RA.isNotNull(undefined); //=> true
* RA.isNotNull(null); //=> false
*/
module.exports = complement(isNull);
/***/ }),
/* 3 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
/* eslint-disable max-len */
/**
* Checks if input value is `Async Function`
*
* @func isAsyncFunction
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.5.0|v0.5.0}
* @category Type
* @sig * -> Boolean
* @param {*} val The value to test
* @return {Boolean}
* @see {@link RA.isFunction|isFunction}, {@link RA.isNotAsyncFunction|isNotAsyncFunction}, {@link RA.isGeneratorFunction|isGeneratorFunction}
* @example
*
* RA.isAsyncFunction(async function test() { }); //=> true
* RA.isAsyncFunction(null); //=> false
* RA.isAsyncFunction(function test() { }); //=> false
* RA.isAsyncFunction(() => {}); //=> false
*/
/* eslint-enable max-len */
module.exports = function (val) {
return Object.prototype.toString.call(val) === '[object AsyncFunction]';
};
/***/ }),
/* 4 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var _require = __webpack_require__(0),
or = _require.or;
var isNotNull = __webpack_require__(2);
var GeneratorFunction = null;
try {
GeneratorFunction = new Function('return function* () {}')().constructor; // eslint-disable-line no-new-func
} catch (e) {} // eslint-disable-line no-empty
/* eslint-disable max-len */
/**
* Checks if input value is `Generator Function`
*
* @func isGeneratorFunction
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.5.0|v0.5.0}
* @category Type
* @sig * -> Boolean
* @param {*} val The value to test
* @return {Boolean}
* @see {@link RA.isFunction|isFunction}, {@link RA.isAsyncFunction|isAsyncFunction}, {@link RA.isNotGeneratorFunction|isNotGeneratorFunction}
* @example
*
* RA.isGeneratorFunction(function* test() { }); //=> true
* RA.isGeneratorFunction(null); //=> false
* RA.isGeneratorFunction(function test() { }); //=> false
* RA.isGeneratorFunction(() => {}); //=> false
*/
/* eslint-enable max-len */
module.exports = function (val) {
var toStringCheck = Object.prototype.toString.call(val) === '[object AsyncFunction]';
var legacyConstructorCheck = isNotNull(GeneratorFunction) && val instanceof GeneratorFunction;
return or(toStringCheck, legacyConstructorCheck);
};
/***/ }),
/* 5 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var _require = __webpack_require__(0),
equals = _require.equals;
/**
* Checks if input value is `null`
*
* @func isNull
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.1.0|v0.1.0}
* @category Type
* @sig * -> Boolean
* @param {*} val The value to test
* @return {Boolean}
* @see {@link RA.isNotNull|isNotNull}
* @example
*
* RA.isNull(1); //=> false
* RA.isNull(undefined); //=> false
* RA.isNull(null); //=> true
*/
module.exports = equals(null);
/***/ }),
/* 6 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var _require = __webpack_require__(0),
both = _require.both;
var isNotNull = __webpack_require__(2);
var isOfTypeObject = __webpack_require__(13);
/* eslint-disable max-len */
/**
* Checks if value is object-like. A value is object-like if it's not null and has a typeof result of "object".
*
* @func isObjectLike
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.5.0|v0.5.0}
* @category Type
* @sig * -> Boolean
* @param {*} val The value to test
* @return {Boolean}
* @see {@link RA.isNotObjectLike|isNotObjectLike}, {@link RA.isObject|isObject}, {@link RA.isPlainObject|isPlainObject}
* @example
*
* RA.isObjectLike({}); //=> true
* RA.isObjectLike([]); //=> true
* RA.isObjectLike(() => {}); //=> false
* RA.isObjectLike(null); //=> false
* RA.isObjectLike(undefined); //=> false
*/
/* eslint-enable max-len */
module.exports = both(isNotNull, isOfTypeObject);
/***/ }),
/* 7 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var _isArray = __webpack_require__(28);
/**
* Checks if input value is `Array`

@@ -114,6 +332,6 @@ *

module.exports = isArray;
module.exports = _isArray;
/***/ }),
/* 2 */
/* 8 */
/***/ (function(module, exports, __webpack_require__) {

@@ -128,3 +346,3 @@

/**
* Checks if input `value` is `Boolean`
* Checks if input value is `Boolean`
*

@@ -149,3 +367,3 @@ * @func isBoolean

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

@@ -157,10 +375,16 @@

var _require = __webpack_require__(0),
equals = _require.equals;
both = _require.both,
anyPass = _require.anyPass;
var isNotNull = __webpack_require__(2);
var isFunction = __webpack_require__(1);
var isOfTypeObject = __webpack_require__(13);
/* eslint-disable max-len */
/**
* Checks if input value is `null`
* Checks if input value is language type of `Object`
*
* @func isNull
* @func isObject
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.1.0|v0.1.0}
* @since {@link https://char0n.github.io/ramda-adjunct/0.5.0|v0.5.0}
* @category Type

@@ -170,15 +394,82 @@ * @sig * -> Boolean

* @return {Boolean}
* @see {@link RA.isNotNull|isNotNull}
* @see {@link RA.isNotObject|isNotObject}, {@link RA.isObjectLike|isObjectLike}, {@link RA.isPlainObject|isPlainObject}
* @example
*
* RA.isNull(1); //=> false
* RA.isNull(undefined); //=> false
* RA.isNull(null); //=> true
* RA.isObject({}); //=> true
* RA.isObject([]); //=> true
* RA.isObject(() => {}); //=> true
* RA.isObject(null); //=> false
* RA.isObject(undefined); //=> false
*/
/* eslint-enable max-len */
module.exports = both(isNotNull, anyPass([isOfTypeObject, isFunction]));
module.exports = equals(null);
/***/ }),
/* 10 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var _isObject = __webpack_require__(30);
var _require = __webpack_require__(0),
pipe = _require.pipe,
both = _require.both,
equals = _require.equals,
toString = _require.toString,
pathSatisfies = _require.pathSatisfies;
var isNull = __webpack_require__(5);
var isObjectLike = __webpack_require__(6);
var isFunction = __webpack_require__(1);
var isObjectConstructor = pipe(toString, equals(toString(Object)));
var hasObjectConstructor = pathSatisfies(both(isFunction, isObjectConstructor), ['constructor']);
/* eslint-disable max-len */
/**
* Check to see if an object is a plain object (created using `{}`, `new Object()` or `Object.create(null)`)
*
* @func isPlainObject
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.5.0|v0.5.0}
* @category Type
* @sig * -> Boolean
* @param {*} val The value to test
* @return {Boolean}
* @see {@link RA.isNotPlainObject|isNotPlainObject}, {@link RA.isObjectLike|isObjectLike}, {@link RA.isObject|isObject}
* @example
*
* class Bar {
* constructor() {
* this.prop = 'value';
* }
* }
*
* RA.isPlainObject(new Bar()); //=> false
* RA.isPlainObject({ prop: 'value' }); //=> true
* RA.isPlainObject(['a', 'b', 'c']); //=> false
* RA.isPlainObject(Object.create(null); //=> true
* RA.isPlainObject(new Object()); //=> true
*/
/* eslint-enable max-len */
module.exports = function (val) {
if (!isObjectLike(val) || !_isObject(val)) {
return false;
}
var proto = Object.getPrototypeOf(val);
if (isNull(proto)) {
return true;
}
return hasObjectConstructor(proto);
};
/***/ }),
/* 4 */
/* 11 */
/***/ (function(module, exports, __webpack_require__) {

@@ -189,3 +480,3 @@

var isString = __webpack_require__(15);
var _isString = __webpack_require__(31);

@@ -209,6 +500,6 @@ /**

module.exports = isString;
module.exports = _isString;
/***/ }),
/* 5 */
/* 12 */
/***/ (function(module, exports, __webpack_require__) {

@@ -244,3 +535,3 @@

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

@@ -251,2 +542,15 @@

var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
module.exports = function (val) {
return (typeof val === 'undefined' ? 'undefined' : _typeof(val)) === 'object';
};
/***/ }),
/* 14 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var _require = __webpack_require__(0),

@@ -282,3 +586,3 @@ anyPass = _require.anyPass,

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

@@ -292,3 +596,3 @@

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

@@ -316,3 +620,3 @@ /**

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

@@ -324,7 +628,75 @@

var _require = __webpack_require__(0),
complement = _require.complement,
isArrayLike = _require.isArrayLike;
/**
* Tests whether or not an object is similar to an array.
*
* @func isNotArrayLike
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.5.0|v0.5.0}
* @category Type
* @sig * -> Boolean
* @param {*} val The value to test
* @return {Boolean}
* @see {@link http://ramdajs.com/docs/#isArrayLike|isArrayLike}
* @example
*
* RA.isNotArrayLike([]); //=> false
* RA.isNotArrayLike(true); //=> true
* RA.isNotArrayLike({}); //=> true
* RA.isNotArrayLike({length: 10}); //=> true
* RA.isNotArrayLike({0: 'zero', 9: 'nine', length: 10}); //=> false
*/
module.exports = complement(isArrayLike);
/***/ }),
/* 17 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var _require = __webpack_require__(0),
complement = _require.complement;
var isBoolean = __webpack_require__(2);
var isAsyncFunction = __webpack_require__(3);
/* eslint-disable max-len */
/**
* Checks if input value is complement of `Async Function`
*
* @func isNotAsyncFunction
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.5.0|v0.5.0}
* @category Type
* @sig * -> Boolean
* @param {*} val The value to test
* @return {Boolean}
* @see {@link RA.isFunction|isFunction}, {@link RA.isAsyncFunction|isAsyncFunction}, {@link RA.isGeneratorFunction|isGeneratorFunction}
* @example
*
* RA.isNotAsyncFunction(async function test() { }); //=> false
* RA.isNotAsyncFunction(null); //=> true
* RA.isNotAsyncFunction(function test() { }); //=> true
* RA.isNotAsyncFunction(() => {}); //=> true
*/
/* eslint-enable max-len */
module.exports = complement(isAsyncFunction);
/***/ }),
/* 18 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var _require = __webpack_require__(0),
complement = _require.complement;
var isBoolean = __webpack_require__(8);
/**
* Checks if input value is complement of `Boolean`

@@ -350,3 +722,3 @@ *

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

@@ -386,3 +758,3 @@

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

@@ -394,2 +766,74 @@

var _require = __webpack_require__(0),
complement = _require.complement;
var isFunction = __webpack_require__(1);
/* eslint-disable max-len */
/**
* Checks if input value is complement of `Function`
*
* @func isNotFunction
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.5.0|v0.5.0}
* @category Type
* @sig * -> Boolean
* @param {*} val The value to test
* @return {Boolean}
* @see {@link RA.isFunction|isFunction}, {@link RA.isAsyncFunction|isNotAsyncFunction}, {@link RA.isGeneratorFunction|isGeneratorFunction}
* @example
*
* RA.isNotFunction(function test() { }); //=> false
* RA.isNotFunction(function* test() { }); //=> false
* RA.isNotFunction(async function test() { }); //=> false
* RA.isNotFunction(() => {}); //=> false
* RA.isNotFunction(null); //=> true
* RA.isNotFunction('abc'); //=> true
*/
/* eslint-enable max-len */
module.exports = complement(isFunction);
/***/ }),
/* 21 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var _require = __webpack_require__(0),
complement = _require.complement;
var isGeneratorFunction = __webpack_require__(4);
/* eslint-disable max-len */
/**
* Checks if input value is complement of `Generator Function`
*
* @func isNotGeneratorFunction
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.5.0|v0.5.0}
* @category Type
* @sig * -> Boolean
* @param {*} val The value to test
* @return {Boolean}
* @see {@link RA.isFunction|isFunction}, {@link RA.isAsyncFunction|isAsyncFunction}, {@link RA.isGeneratorFunction|isGeneratorFunction}
* @example
*
* RA.isNotGeneratorFunction(function* test() { }); //=> false
* RA.isNotGeneratorFunction(null); //=> true
* RA.isNotGeneratorFunction(function test() { }); //=> true
* RA.isNotGeneratorFunction(() => {}); //=> true
*/
/* eslint-enable max-len */
module.exports = complement(isGeneratorFunction);
/***/ }),
/* 22 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var _require = __webpack_require__(0),
isNil = _require.isNil,

@@ -421,3 +865,3 @@ complement = _require.complement;

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

@@ -431,10 +875,11 @@

var isNull = __webpack_require__(3);
var isObject = __webpack_require__(9);
/* eslint-disable max-len */
/**
* Checks if input value is complement of `null`
* Checks if input value is complement of language type of `Object`
*
* @func isNotNull
* @func isNotObject
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.1.0|v0.1.0}
* @since {@link https://char0n.github.io/ramda-adjunct/0.5.0|v0.5.0}
* @category Type

@@ -444,14 +889,17 @@ * @sig * -> Boolean

* @return {Boolean}
* @see {@link RA.isNull|isNull}
* @see {@link RA.isObject|isObject}, {@link RA.isObjectLike|isObjectLike}, {@link RA.isPlainObject|isPlainObject}
* @example
*
* RA.isNotNull(1); //=> true
* RA.isNotNull(undefined); //=> true
* RA.isNotNull(null); //=> false
* RA.isNotObject({}); //=> false
* RA.isNotObject([]); //=> false
* RA.isNotObject(() => {}); //=> false
* RA.isNotObject(null); //=> true
* RA.isNotObject(undefined); //=> true
*/
/* eslint-enable max-len */
module.exports = complement(isNull);
module.exports = complement(isObject);
/***/ }),
/* 12 */
/* 24 */
/***/ (function(module, exports, __webpack_require__) {

@@ -465,5 +913,83 @@

var iString = __webpack_require__(4);
var isObjectLike = __webpack_require__(6);
/* eslint-disable max-len */
/**
* Checks if value is not object-like. A value is object-like if it's not null and has a typeof result of "object".
*
* @func isNotObjectLike
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.5.0|v0.5.0}
* @category Type
* @sig * -> Boolean
* @param {*} val The value to test
* @return {Boolean}
* @see {@link RA.isObjectLike|isObjectLike}, {@link RA.isObject|isObject}, {@link RA.isPlainObject|isPlainObject}
* @example
*
* RA.isNotObjectLike({}); //=> false
* RA.isNotObjectLike([]); //=> false
* RA.isNotObjectLike(() => {}); //=> true
* RA.isNotObjectLike(null); //=> true
* RA.isNotObjectLike(undefined); //=> true
*/
/* eslint-enable max-len */
module.exports = complement(isObjectLike);
/***/ }),
/* 25 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var _require = __webpack_require__(0),
complement = _require.complement;
var isPlainObject = __webpack_require__(10);
/* eslint-disable max-len */
/**
* Check to see if an object is a not plain object (created using `{}`, `new Object()` or `Object.create(null)`)
*
* @func isNotPlainObject
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.5.0|v0.5.0}
* @category Type
* @sig * -> Boolean
* @param {*} val The value to test
* @return {Boolean}
* @see {@link RA.isPlainObject|isPlainObject}, {@link RA.isObjectLike|isObjectLike}, {@link RA.isObject|isObject}
* @example
*
* class Bar {
* constructor() {
* this.prop = 'value';
* }
* }
*
* RA.isNotPlainObject(new Bar()); //=> true
* RA.isNotPlainObject({ prop: 'value' }); //=> false
* RA.isNotPlainObject(['a', 'b', 'c']); //=> true
* RA.isNotPlainObject(Object.create(null); //=> false
* RA.isNotPlainObject(new Object()); //=> false
*/
/* eslint-enable max-len */
module.exports = complement(isPlainObject);
/***/ }),
/* 26 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var _require = __webpack_require__(0),
complement = _require.complement;
var iString = __webpack_require__(11);
/**
* Checks if input value is complement of `String`

@@ -488,3 +1014,3 @@ *

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

@@ -498,3 +1024,3 @@

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

@@ -521,3 +1047,3 @@ /**

/***/ }),
/* 14 */
/* 28 */
/***/ (function(module, exports) {

@@ -545,5 +1071,23 @@

/***/ }),
/* 15 */
/* 29 */
/***/ (function(module, exports) {
module.exports = function _isFunction(x) {
return Object.prototype.toString.call(x) === '[object Function]';
};
/***/ }),
/* 30 */
/***/ (function(module, exports) {
module.exports = function _isObject(x) {
return Object.prototype.toString.call(x) === '[object Object]';
};
/***/ }),
/* 31 */
/***/ (function(module, exports) {
module.exports = function _isString(x) {

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

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

@@ -562,15 +1106,28 @@

var isNotUndefined = __webpack_require__(13);
var isUndefined = __webpack_require__(5);
var isNull = __webpack_require__(3);
var isNotNull = __webpack_require__(11);
var isNotNil = __webpack_require__(10);
var isArray = __webpack_require__(1);
var isNotArray = __webpack_require__(7);
var isBoolean = __webpack_require__(2);
var isNotBoolean = __webpack_require__(8);
var isNotEmpty = __webpack_require__(9);
var isNilOrEmpty = __webpack_require__(6);
var isString = __webpack_require__(4);
var isNotString = __webpack_require__(12);
var isNotUndefined = __webpack_require__(27);
var isUndefined = __webpack_require__(12);
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 isGeneratorFunction = __webpack_require__(4);
var isNotGeneratorFunction = __webpack_require__(21);
var isAsyncFunction = __webpack_require__(3);
var isNotAsyncFunction = __webpack_require__(17);
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);

@@ -593,3 +1150,16 @@ /**

isString: isString,
isNotString: isNotString
isNotString: isNotString,
isNotArrayLike: isNotArrayLike,
isGeneratorFunction: isGeneratorFunction,
isNotGeneratorFunction: isNotGeneratorFunction,
isAsyncFunction: isAsyncFunction,
isNotAsyncFunction: isNotAsyncFunction,
isFunction: isFunction,
isNotFunction: isNotFunction,
isObject: isObject,
isNotObject: isNotObject,
isObjectLike: isObjectLike,
isNotObjectLike: isNotObjectLike,
isPlainObject: isPlainObject,
isNotPlainObject: isNotPlainObject
};

@@ -596,0 +1166,0 @@

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

!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(r[n])return r[n].exports;var o=r[n]={i:n,l:!1,exports:{}};return t[n].call(o.exports,o,o.exports,e),o.l=!0,o.exports}var r={};return e.m=t,e.c=r,e.i=function(t){return t},e.d=function(t,r,n){e.o(t,r)||Object.defineProperty(t,r,{configurable:!1,enumerable:!0,get:n})},e.n=function(t){var r=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(r,"a",r),r},e.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},e.p="",e(e.s=16)}([function(e,r){e.exports=t},function(t,e,r){"use strict";var n=r(14);t.exports=n},function(t,e,r){"use strict";var n=r(0),o=n.is;t.exports=o(Boolean)},function(t,e,r){"use strict";var n=r(0),o=n.equals;t.exports=o(null)},function(t,e,r){"use strict";var n=r(15);t.exports=n},function(t,e,r){"use strict";var n=r(0),o=n.equals;t.exports=o(void 0)},function(t,e,r){"use strict";var n=r(0),o=n.anyPass,i=n.isEmpty,s=n.isNil;t.exports=o([s,i])},function(t,e,r){"use strict";var n=r(0),o=n.complement,i=r(1);t.exports=o(i)},function(t,e,r){"use strict";var n=r(0),o=n.complement,i=r(2);t.exports=o(i)},function(t,e,r){"use strict";var n=r(0),o=n.complement,i=n.isEmpty;t.exports=o(i)},function(t,e,r){"use strict";var n=r(0),o=n.isNil,i=n.complement;t.exports=i(o)},function(t,e,r){"use strict";var n=r(0),o=n.complement,i=r(3);t.exports=o(i)},function(t,e,r){"use strict";var n=r(0),o=n.complement,i=r(4);t.exports=o(i)},function(t,e,r){"use strict";var n=r(0),o=n.complement,i=r(5);t.exports=o(i)},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 String]"===Object.prototype.toString.call(t)}},function(t,e,r){"use strict";var n=r(13),o=r(5),i=r(3),s=r(11),u=r(10),c=r(1),p=r(7),f=r(2),l=r(8),a=r(9),x=r(6),m=r(4),y=r(12);t.exports={isNotUndefined:n,isUndefined:o,isNull:i,isNotNull:s,isNotNil:u,isArray:c,isNotArray:p,isBoolean:f,isNotBoolean:l,isNotEmpty:a,isNilOrEmpty:x,isString:m,isNotString:y}}])});
!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}}])});

@@ -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=322)}([function(t,n,r){var e=r(1),o=r(35);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(35);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(35);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){var e=r(15),o=r(52);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(33);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(3),u=r(36),i=r(8),c=r(215),s=r(5),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(93),o=r(68),u=r(24);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,r){t.exports={F:r(128),T:r(129),__:r(130),add:r(29),addIndex:r(131),adjust:r(63),all:r(132),allPass:r(133),always:r(19),and:r(64),any:r(65),anyPass:r(134),ap:r(43),aperture:r(135),append:r(136),apply:r(66),applySpec:r(137),ascend:r(138),assoc:r(30),assocPath:r(67),binary:r(139),bind:r(68),both:r(140),call:r(141),chain:r(44),clamp:r(142),clone:r(143),comparator:r(144),complement:r(145),compose:r(45),composeK:r(69),composeP:r(146),concat:r(46),cond:r(147),construct:r(148),constructN:r(70),contains:r(149),converge:r(71),countBy:r(150),curry:r(31),curryN:r(5),dec:r(151),descend:r(152),defaultTo:r(72),difference:r(73),differenceWith:r(74),dissoc:r(75),dissocPath:r(153),divide:r(154),drop:r(76),dropLast:r(155),dropLastWhile:r(156),dropRepeats:r(157),dropRepeatsWith:r(77),dropWhile:r(158),either:r(159),empty:r(78),eqBy:r(160),eqProps:r(161),equals:r(11),evolve:r(162),filter:r(47),find:r(163),findIndex:r(164),findLast:r(165),findLastIndex:r(166),flatten:r(167),flip:r(32),forEach:r(168),forEachObjIndexed:r(169),fromPairs:r(170),groupBy:r(171),groupWith:r(172),gt:r(173),gte:r(174),has:r(175),hasIn:r(176),head:r(177),identical:r(79),identity:r(48),ifElse:r(178),inc:r(179),indexBy:r(180),indexOf:r(181),init:r(182),insert:r(183),insertAll:r(184),intersection:r(219),intersectionWith:r(220),intersperse:r(221),into:r(222),invert:r(223),invertObj:r(224),invoker:r(23),is:r(94),isArrayLike:r(24),isEmpty:r(225),isNil:r(226),join:r(227),juxt:r(95),keys:r(13),keysIn:r(228),last:r(96),lastIndexOf:r(229),length:r(97),lens:r(37),lensIndex:r(230),lensPath:r(231),lensProp:r(232),lift:r(38),liftN:r(98),lt:r(233),lte:r(234),map:r(7),mapAccum:r(235),mapAccumRight:r(236),mapObjIndexed:r(237),match:r(238),mathMod:r(239),max:r(20),maxBy:r(240),mean:r(99),median:r(241),memoize:r(242),merge:r(243),mergeAll:r(244),mergeWith:r(245),mergeWithKey:r(100),min:r(246),minBy:r(247),modulo:r(248),multiply:r(101),nAry:r(39),negate:r(249),none:r(250),not:r(102),nth:r(25),nthArg:r(251),objOf:r(103),of:r(252),omit:r(253),once:r(254),or:r(104),over:r(105),pair:r(255),partial:r(256),partialRight:r(257),partition:r(258),path:r(26),pathEq:r(259),pathOr:r(260),pathSatisfies:r(261),pick:r(262),pickAll:r(106),pickBy:r(263),pipe:r(107),pipeK:r(264),pipeP:r(108),pluck:r(27),prepend:r(109),product:r(265),project:r(266),prop:r(53),propEq:r(267),propIs:r(268),propOr:r(269),propSatisfies:r(270),props:r(271),range:r(272),reduce:r(14),reduceBy:r(40),reduceRight:r(110),reduceWhile:r(273),reduced:r(274),reject:r(41),remove:r(275),repeat:r(276),replace:r(277),reverse:r(42),scan:r(278),sequence:r(111),set:r(279),slice:r(18),sort:r(280),sortBy:r(281),sortWith:r(282),split:r(283),splitAt:r(284),splitEvery:r(285),splitWhen:r(286),subtract:r(287),sum:r(112),symmetricDifference:r(288),symmetricDifferenceWith:r(289),tail:r(54),take:r(113),takeLast:r(290),takeLastWhile:r(291),takeWhile:r(292),tap:r(293),test:r(294),times:r(114),toLower:r(295),toPairs:r(296),toPairsIn:r(297),toString:r(28),toUpper:r(298),transduce:r(299),transpose:r(300),traverse:r(301),trim:r(302),tryCatch:r(303),type:r(55),unapply:r(304),unary:r(305),uncurryN:r(306),unfold:r(307),union:r(308),unionWith:r(309),uniq:r(56),uniqBy:r(115),uniqWith:r(57),unless:r(310),unnest:r(311),until:r(312),update:r(116),useWith:r(117),values:r(118),valuesIn:r(313),view:r(314),when:r(315),where:r(119),whereEq:r(316),without:r(317),xprod:r(318),zip:r(319),zipObj:r(320),zipWith:r(321)}},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(190);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(6),u=r(86);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(8);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(85);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 String]"===Object.prototype.toString.call(t)}},function(t,n,r){var e=r(0),o=r(34),u=r(5),i=r(28);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(22);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(22);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(7),u=r(53);t.exports=e(function(t,n){return o(u(t),n)})},function(t,n,r){var e=r(1),o=r(202);t.exports=e(function(t){return o(t,[])})},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(5);t.exports=e(function(t){return o(t.length,t)})},function(t,n,r){var e=r(1),o=r(31);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(35);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"[object Function]"===Object.prototype.toString.call(t)}},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(7);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(98);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(33),o=r(3),u=r(6),i=r(8),c=r(216);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(82),o=r(0),u=r(47);t.exports=o(function(t,n){return u(e(t),n)})},function(t,n,r){var e=r(1),o=r(22);t.exports=e(function(t){return o(t)?t.split("").reverse().join(""):Array.prototype.slice.call(t,0).reverse()})},function(t,n,r){var e=r(10),o=r(0),u=r(8),i=r(7);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(3),u=r(90),i=r(205),c=r(7);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(107),o=r(42);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(34),i=r(28);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(3),u=r(84),i=r(89),c=r(8),s=r(210),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(51);t.exports=e(o)},function(t,n,r){var e=r(195);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"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(48),o=r(115);t.exports=o(e)},function(t,n,r){var e=r(50),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(9),o=e.is;t.exports=o(Boolean)},function(t,n,r){"use strict";var e=r(9),o=e.equals;t.exports=o(null)},function(t,n,r){"use strict";var e=r(22);t.exports=e},function(t,n,r){"use strict";var e=r(9),o=e.equals;t.exports=o(void 0)},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(3),u=r(91);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(6),u=r(15),i=r(87),c=r(30);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(44),o=r(45),u=r(7);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(31),u=r(39);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(36),u=r(5),i=r(20),c=r(27),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(50),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(3),u=r(206),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(3),u=r(92),i=r(96);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(86),u=r(15),i=r(89),c=r(22);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(81),o=r(55);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(6);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){t.exports=function(t){return"[object Object]"===Object.prototype.toString.call(t)}},function(t,n,r){var e=r(24);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(4);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(4);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(71);t.exports=e(function(t){return o(function(){return Array.prototype.slice.call(arguments,0)},t)})},function(t,n,r){var e=r(25);t.exports=e(-1)},function(t,n,r){var e=r(1),o=r(88);t.exports=e(function(t){return null!=t&&o(t.length)?t.length:NaN})},function(t,n,r){var e=r(0),o=r(8),u=r(43),i=r(5),c=r(7);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(112);t.exports=e(function(t){return o(t)/t.length})},function(t,n,r){var e=r(2),o=r(6);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(197),u=r(14),i=r(54);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(198),u=r(14),i=r(54);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(43),u=r(7),i=r(109),c=r(110);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(29),o=r(14);t.exports=o(e,0)},function(t,n,r){var e=r(0),o=r(3),u=r(217),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(185),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(63),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(5);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(6);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(9),o=e.anyPass,u=e.isEmpty,i=e.isNil;t.exports=o([i,u])},function(t,n,r){"use strict";var e=r(9),o=e.complement,u=r(58);t.exports=o(u)},function(t,n,r){"use strict";var e=r(9),o=e.complement,u=r(59);t.exports=o(u)},function(t,n,r){"use strict";var e=r(9),o=e.complement,u=e.isEmpty;t.exports=o(u)},function(t,n,r){"use strict";var e=r(9),o=e.isNil,u=e.complement;t.exports=u(o)},function(t,n,r){"use strict";var e=r(9),o=e.complement,u=r(60);t.exports=o(u)},function(t,n,r){"use strict";var e=r(9),o=e.complement,u=r(61);t.exports=o(u)},function(t,n,r){"use strict";var e=r(9),o=e.complement,u=r(62);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(5);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(3),u=r(203);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(5),u=r(20),i=r(27),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(5),u=r(20),i=r(27),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(186),o=r(0),u=r(3),i=r(204);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(66),u=r(5),i=r(7),c=r(20),s=r(27),f=r(14),a=r(118);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(39);t.exports=e(function(t){return o(2,t)})},function(t,n,r){var e=r(0),o=r(34),u=r(64),i=r(38);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(31);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(80),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(38),o=r(102);t.exports=e(o)},function(t,n,r){var e=r(108),o=r(42);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(7),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(70);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(40);t.exports=e(function(t,n){return t+1},0)},function(t,n,r){var e=r(29);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(30),u=r(75);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(3),u=r(188),i=r(207);t.exports=e(o([],i,u))},function(t,n,r){var e=r(0),o=r(3),u=r(189),i=r(208);t.exports=e(o([],i,u))},function(t,n,r){var e=r(1),o=r(3),u=r(92),i=r(77),c=r(11);t.exports=e(o([],u(c),i(c)))},function(t,n,r){var e=r(0),o=r(3),u=r(209);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(34),u=r(38),i=r(104);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(3),u=r(211);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(3),u=r(212);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(3),u=r(213);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(3),u=r(214);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(90);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(40);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(6);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(25);t.exports=e(0)},function(t,n,r){var e=r(2),o=r(5);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(29);t.exports=e(1)},function(t,n,r){var e=r(40);t.exports=e(function(t,n){return n},null)},function(t,n,r){var e=r(0),o=r(85),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(113);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(187),o=r(193),u=r(6),i=r(79),c=r(13),s=r(55);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(192),o=r(8),u=r(4),i=r(24);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(6);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(49),o=r(51),u=r(52),i=r(24),c=r(103);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(36),u=r(199),i=r(201),c=r(13),s=r(41);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(4);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(4);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(191),u=r(7);t.exports=e(function(t,n){return u(t,o(n))})},function(t,n,r){var e=r(0),o=r(4);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(4);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(8),u=r(4);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(4);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(4);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(4);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(4);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(4);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(4);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(4);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(33),o=r(6),u=r(4);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(4);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(4);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(84),i=r(32),c=r(56);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(50),o=r(2),u=r(57);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(80),o=r(2),u=r(52),i=r(8),c=r(200);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(6),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(78),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(23);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(37),u=r(25),i=r(116);t.exports=e(function(t){return o(u(t),i(t))})},function(t,n,r){var e=r(1),o=r(67),u=r(37),i=r(26);t.exports=e(function(t){return u(i(t),o(t))})},function(t,n,r){var e=r(1),o=r(30),u=r(37),i=r(53);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(8),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(87);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(99);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(6),i=r(28);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(49),o=r(0);t.exports=o(function(t,n){return e({},t,n)})},function(t,n,r){var e=r(49),o=r(1);t.exports=o(function(t){return e.apply(null,[{}].concat(t))})},function(t,n,r){var e=r(2),o=r(100);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(82),o=r(0),u=r(3),i=r(91),c=r(65);t.exports=o(e(u(["any"],i,c)))},function(t,n,r){var e=r(1),o=r(5),u=r(25);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(196);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(83);t.exports=o(e)},function(t,n,r){var e=r(10),o=r(83),u=r(32);t.exports=o(u(e))},function(t,n,r){var e=r(47),o=r(95),u=r(41);t.exports=o([e,u])},function(t,n,r){var e=r(2),o=r(11),u=r(26);t.exports=e(function(t,n,r){return o(u(t,r),n)})},function(t,n,r){var e=r(2),o=r(72),u=r(26);t.exports=e(function(t,n,r){return o(t,u(n,r))})},function(t,n,r){var e=r(2),o=r(26);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(69),o=r(42);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(101),o=r(14);t.exports=o(e,1)},function(t,n,r){var e=r(36),o=r(48),u=r(106),i=r(117);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(94);t.exports=e(function(t,n,r){return o(t,r[n])})},function(t,n,r){var e=r(2),o=r(6);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(88);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(33),o=r(8),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(114);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(105);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(23);t.exports=e(1,"split")},function(t,n,r){var e=r(0),o=r(97),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(46),u=r(73);t.exports=e(function(t,n){return o(u(t,n),u(n,t))})},function(t,n,r){var e=r(2),o=r(46),u=r(74);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(76);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(3),u=r(218);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(81),o=r(0),u=r(194),i=r(28);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(23);t.exports=e(0,"toLowerCase")},function(t,n,r){var e=r(1),o=r(6);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(23);t.exports=e(0,"toUpperCase")},function(t,n,r){var e=r(8),o=r(93),u=r(5);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(7),u=r(111);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(39);t.exports=e(function(t){return o(1,t)})},function(t,n,r){var e=r(0),o=r(5);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(45),i=r(56);t.exports=o(u(i,e))},function(t,n,r){var e=r(10),o=r(2),u=r(57);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(51),o=r(44);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(7),i=r(119);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(32),i=r(41);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(127),o=r(62),u=r(60),i=r(125),c=r(124),s=r(58),f=r(121),a=r(59),p=r(122),l=r(123),h=r(120),v=r(61),x=r(126);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}}])});
!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:_}}])});

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

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

@@ -17,3 +17,3 @@ "license": "SEE LICENSE IN LICENSE.md",

"engines": {
"node": ">=6.9.5"
"node": ">=0.10.3"
},

@@ -39,5 +39,5 @@ "scripts": {

"changelog": "conventional-changelog -p angular -i ./CHANGELOG.md -s -r 0",
"test": "mocha",
"test": "mocha-webpack --opts test/mocha-webpack.opts",
"test:web": "testem ci",
"test:bundle-create": "webpack --config webpack.config-test.js",
"test:bundle-create": "webpack --config webpack.config-test.web.js",
"test:bundle-clean": "rimraf tmp-test-bundle.js",

@@ -61,3 +61,3 @@ "coverage": "istanbul cover ./node_modules/mocha/bin/_mocha",

"docdash": "git+https://github.com/char0n/docdash.git#abb8b242321856b5ae9d90948cb5de4d960a45b2",
"eslint": "=3.15.0",
"eslint": "=3.17.0",
"eslint-config-airbnb": "=14.1.0",

@@ -73,2 +73,3 @@ "eslint-plugin-import": "=2.2.0",

"mocha-multi-reporters": "=1.1.3",
"mocha-webpack": "=0.7.0",
"nsp": "=2.6.2",

@@ -78,4 +79,6 @@ "phantom": "=4.0.0",

"testem": "=1.15.0",
"typescript": "=2.2.0",
"webpack": "=2.2.1"
}
},
"typings": "src/index.d.ts"
}

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

- ramda >= 0.23.0
- node >=6.9.5
- node >= 0.10.48
It doesn't mean that Ramda Adjunct won't work on lower versions of node or ramda.
This just means that our tests run on these versions.
Ramda Adjunct is being automatically tested against node version >=4 <=7.
### Legacy builds
We are building our npm distributions by Webpack to support also legacy versions of node starting from 0.10.48.
Although all tests are run only against node version >=4 <=7, we rely on Webpack to transpile ramda-adjunct
into legacy ES5. It is also possible that our ES5 distributions run on node versions older than 0.10.48 as
long as they support ES5.
## Installation

@@ -65,2 +71,3 @@

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

@@ -139,2 +146,7 @@

## Typescript support
Although Ramda Adjunct is written in ES6, we support **Typescript**. When Ramda Adjunct
gets imported into Typescript project, typings are automatically imported and used.
## Author

@@ -147,1 +159,5 @@

https://www.linkedin.com/in/vladimirgorej/
### Contributors
[Tycho Grouwstra](https://github.com/tycho01)

@@ -16,2 +16,15 @@ 'use strict';

const isNotString = require('./isNotString');
const isNotArrayLike = require('./isNotArrayLike');
const isGeneratorFunction = require('./isGeneratorFunction');
const isNotGeneratorFunction = require('./isNotGeneratorFunction');
const isAsyncFunction = require('./isAsyncFunction');
const isNotAsyncFunction = require('./isNotAsyncFunction');
const isFunction = require('./isFunction');
const isNotFunction = require('./isNotFunction');
const isObject = require('./isObject');
const isNotObject = require('./isNotObject');
const isObjectLike = require('./isObjectLike');
const isNotObjectLike = require('./isNotObjectLike');
const isPlainObject = require('./isPlainObject');
const isNotPlainObject = require('./isNotPlainObject');

@@ -35,2 +48,15 @@ /**

isNotString,
isNotArrayLike,
isGeneratorFunction,
isNotGeneratorFunction,
isAsyncFunction,
isNotAsyncFunction,
isFunction,
isNotFunction,
isObject,
isNotObject,
isObjectLike,
isNotObjectLike,
isPlainObject,
isNotPlainObject,
};
'use strict';
const isArray = require('ramda/src/internal/_isArray');
const _isArray = require('ramda/src/internal/_isArray');

@@ -23,2 +23,2 @@ /**

module.exports = isArray;
module.exports = _isArray;

@@ -6,3 +6,3 @@ 'use strict';

/**
* Checks if input `value` is `Boolean`
* Checks if input value is `Boolean`
*

@@ -9,0 +9,0 @@ * @func isBoolean

'use strict';
const isString = require('ramda/src/internal/_isString');
const _isString = require('ramda/src/internal/_isString');

@@ -22,2 +22,2 @@ /**

module.exports = isString;
module.exports = _isString;

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