@shipengine/alchemy 6.0.92 → 6.0.94

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/index.js +759 -562
  2. package/index.mjs +759 -562
  3. package/package.json +1 -1
package/index.js CHANGED
@@ -2288,7 +2288,7 @@ var syncFallback = function syncFallback(create) {
2288
2288
  var useInsertionEffect = React__namespace['useInsertion' + 'Effect'] ? React__namespace['useInsertion' + 'Effect'] : false;
2289
2289
  var useInsertionEffectAlwaysWithSyncFallback = useInsertionEffect || syncFallback;
2290
2290
 
2291
- var hasOwnProperty$b = {}.hasOwnProperty;
2291
+ var hasOwnProperty$a = {}.hasOwnProperty;
2292
2292
 
2293
2293
  var EmotionCacheContext = /* #__PURE__ */React.createContext( // we're doing this to avoid preconstruct's dead code elimination in this one case
2294
2294
  // because this module is primarily intended for the browser and node
@@ -2375,7 +2375,7 @@ var createEmotionProps = function createEmotionProps(type, props) {
2375
2375
  var newProps = {};
2376
2376
 
2377
2377
  for (var key in props) {
2378
- if (hasOwnProperty$b.call(props, key)) {
2378
+ if (hasOwnProperty$a.call(props, key)) {
2379
2379
  newProps[key] = props[key];
2380
2380
  }
2381
2381
  }
@@ -2436,7 +2436,7 @@ var Emotion = /* #__PURE__ */withEmotionCache(function (props, cache, ref) {
2436
2436
  var newProps = {};
2437
2437
 
2438
2438
  for (var key in props) {
2439
- if (hasOwnProperty$b.call(props, key) && key !== 'css' && key !== typePropName && (process.env.NODE_ENV === 'production' || key !== labelPropName)) {
2439
+ if (hasOwnProperty$a.call(props, key) && key !== 'css' && key !== typePropName && (process.env.NODE_ENV === 'production' || key !== labelPropName)) {
2440
2440
  newProps[key] = props[key];
2441
2441
  }
2442
2442
  }
@@ -2455,7 +2455,7 @@ if (process.env.NODE_ENV !== 'production') {
2455
2455
  }
2456
2456
 
2457
2457
  function jsx(type, props, key) {
2458
- if (!hasOwnProperty$b.call(props, 'css')) {
2458
+ if (!hasOwnProperty$a.call(props, 'css')) {
2459
2459
  return jsxRuntime.jsx(type, props, key);
2460
2460
  }
2461
2461
 
@@ -3435,49 +3435,73 @@ var _baseConvert = baseConvert$1;
3435
3435
  * // => true
3436
3436
  */
3437
3437
 
3438
- function identity$3(value) {
3439
- return value;
3440
- }
3438
+ var identity_1;
3439
+ var hasRequiredIdentity;
3440
+
3441
+ function requireIdentity () {
3442
+ if (hasRequiredIdentity) return identity_1;
3443
+ hasRequiredIdentity = 1;
3444
+ function identity(value) {
3445
+ return value;
3446
+ }
3441
3447
 
3442
- var identity_1 = identity$3;
3448
+ identity_1 = identity;
3449
+ return identity_1;
3450
+ }
3443
3451
 
3444
3452
  /** Detect free variable `global` from Node.js. */
3445
3453
 
3446
- var freeGlobal$1 = typeof commonjsGlobal == 'object' && commonjsGlobal && commonjsGlobal.Object === Object && commonjsGlobal;
3454
+ var _freeGlobal;
3455
+ var hasRequired_freeGlobal;
3456
+
3457
+ function require_freeGlobal () {
3458
+ if (hasRequired_freeGlobal) return _freeGlobal;
3459
+ hasRequired_freeGlobal = 1;
3460
+ var freeGlobal = typeof commonjsGlobal == 'object' && commonjsGlobal && commonjsGlobal.Object === Object && commonjsGlobal;
3447
3461
 
3448
- var _freeGlobal = freeGlobal$1;
3462
+ _freeGlobal = freeGlobal;
3463
+ return _freeGlobal;
3464
+ }
3465
+
3466
+ var _root;
3467
+ var hasRequired_root;
3449
3468
 
3450
- var freeGlobal = _freeGlobal;
3469
+ function require_root () {
3470
+ if (hasRequired_root) return _root;
3471
+ hasRequired_root = 1;
3472
+ var freeGlobal = require_freeGlobal();
3451
3473
 
3452
- /** Detect free variable `self`. */
3453
- var freeSelf = typeof self == 'object' && self && self.Object === Object && self;
3474
+ /** Detect free variable `self`. */
3475
+ var freeSelf = typeof self == 'object' && self && self.Object === Object && self;
3454
3476
 
3455
- /** Used as a reference to the global object. */
3456
- var root$c = freeGlobal || freeSelf || Function('return this')();
3477
+ /** Used as a reference to the global object. */
3478
+ var root = freeGlobal || freeSelf || Function('return this')();
3457
3479
 
3458
- var _root = root$c;
3480
+ _root = root;
3481
+ return _root;
3482
+ }
3459
3483
 
3460
- var root$b = _root;
3484
+ var root$a = require_root();
3461
3485
 
3462
3486
  /** Built-in value references. */
3463
- var Symbol$7 = root$b.Symbol;
3487
+ var Symbol$7 = root$a.Symbol;
3464
3488
 
3465
3489
  var _Symbol = Symbol$7;
3466
3490
 
3467
3491
  var Symbol$6 = _Symbol;
3468
3492
 
3469
3493
  /** Used for built-in method references. */
3470
- var objectProto$d = Object.prototype;
3494
+ var objectProto$c = Object.prototype;
3471
3495
 
3472
3496
  /** Used to check objects for own properties. */
3473
- var hasOwnProperty$a = objectProto$d.hasOwnProperty;
3497
+ var hasOwnProperty$9 = objectProto$c.hasOwnProperty;
3474
3498
 
3475
3499
  /**
3476
3500
  * Used to resolve the
3477
3501
  * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)
3478
3502
  * of values.
3479
3503
  */
3480
- var nativeObjectToString$1 = objectProto$d.toString;
3504
+ var nativeObjectToString$1 = objectProto$c.toString;
3481
3505
 
3482
3506
  /** Built-in value references. */
3483
3507
  var symToStringTag$1 = Symbol$6 ? Symbol$6.toStringTag : undefined;
@@ -3490,7 +3514,7 @@ var symToStringTag$1 = Symbol$6 ? Symbol$6.toStringTag : undefined;
3490
3514
  * @returns {string} Returns the raw `toStringTag`.
3491
3515
  */
3492
3516
  function getRawTag$1(value) {
3493
- var isOwn = hasOwnProperty$a.call(value, symToStringTag$1),
3517
+ var isOwn = hasOwnProperty$9.call(value, symToStringTag$1),
3494
3518
  tag = value[symToStringTag$1];
3495
3519
 
3496
3520
  try {
@@ -3513,14 +3537,14 @@ var _getRawTag = getRawTag$1;
3513
3537
 
3514
3538
  /** Used for built-in method references. */
3515
3539
 
3516
- var objectProto$c = Object.prototype;
3540
+ var objectProto$b = Object.prototype;
3517
3541
 
3518
3542
  /**
3519
3543
  * Used to resolve the
3520
3544
  * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)
3521
3545
  * of values.
3522
3546
  */
3523
- var nativeObjectToString = objectProto$c.toString;
3547
+ var nativeObjectToString = objectProto$b.toString;
3524
3548
 
3525
3549
  /**
3526
3550
  * Converts `value` to a string using `Object.prototype.toString`.
@@ -3590,15 +3614,23 @@ var _baseGetTag = baseGetTag$5;
3590
3614
  * // => false
3591
3615
  */
3592
3616
 
3593
- function isObject$8(value) {
3594
- var type = typeof value;
3595
- return value != null && (type == 'object' || type == 'function');
3596
- }
3617
+ var isObject_1;
3618
+ var hasRequiredIsObject;
3619
+
3620
+ function requireIsObject () {
3621
+ if (hasRequiredIsObject) return isObject_1;
3622
+ hasRequiredIsObject = 1;
3623
+ function isObject(value) {
3624
+ var type = typeof value;
3625
+ return value != null && (type == 'object' || type == 'function');
3626
+ }
3597
3627
 
3598
- var isObject_1 = isObject$8;
3628
+ isObject_1 = isObject;
3629
+ return isObject_1;
3630
+ }
3599
3631
 
3600
3632
  var baseGetTag$4 = _baseGetTag,
3601
- isObject$7 = isObject_1;
3633
+ isObject$6 = requireIsObject();
3602
3634
 
3603
3635
  /** `Object#toString` result references. */
3604
3636
  var asyncTag = '[object AsyncFunction]',
@@ -3623,8 +3655,8 @@ var asyncTag = '[object AsyncFunction]',
3623
3655
  * _.isFunction(/abc/);
3624
3656
  * // => false
3625
3657
  */
3626
- function isFunction$3(value) {
3627
- if (!isObject$7(value)) {
3658
+ function isFunction$2(value) {
3659
+ if (!isObject$6(value)) {
3628
3660
  return false;
3629
3661
  }
3630
3662
  // The use of `Object#toString` avoids issues with the `typeof` operator
@@ -3633,12 +3665,12 @@ function isFunction$3(value) {
3633
3665
  return tag == funcTag$1 || tag == genTag$1 || tag == asyncTag || tag == proxyTag;
3634
3666
  }
3635
3667
 
3636
- var isFunction_1 = isFunction$3;
3668
+ var isFunction_1 = isFunction$2;
3637
3669
 
3638
- var root$a = _root;
3670
+ var root$9 = require_root();
3639
3671
 
3640
3672
  /** Used to detect overreaching core-js shims. */
3641
- var coreJsData$1 = root$a['__core-js_shared__'];
3673
+ var coreJsData$1 = root$9['__core-js_shared__'];
3642
3674
 
3643
3675
  var _coreJsData = coreJsData$1;
3644
3676
 
@@ -3691,9 +3723,9 @@ function toSource$2(func) {
3691
3723
 
3692
3724
  var _toSource = toSource$2;
3693
3725
 
3694
- var isFunction$2 = isFunction_1,
3726
+ var isFunction$1 = isFunction_1,
3695
3727
  isMasked = _isMasked,
3696
- isObject$6 = isObject_1,
3728
+ isObject$5 = requireIsObject(),
3697
3729
  toSource$1 = _toSource;
3698
3730
 
3699
3731
  /**
@@ -3707,17 +3739,17 @@ var reIsHostCtor = /^\[object .+?Constructor\]$/;
3707
3739
 
3708
3740
  /** Used for built-in method references. */
3709
3741
  var funcProto$1 = Function.prototype,
3710
- objectProto$b = Object.prototype;
3742
+ objectProto$a = Object.prototype;
3711
3743
 
3712
3744
  /** Used to resolve the decompiled source of functions. */
3713
3745
  var funcToString$1 = funcProto$1.toString;
3714
3746
 
3715
3747
  /** Used to check objects for own properties. */
3716
- var hasOwnProperty$9 = objectProto$b.hasOwnProperty;
3748
+ var hasOwnProperty$8 = objectProto$a.hasOwnProperty;
3717
3749
 
3718
3750
  /** Used to detect if a method is native. */
3719
3751
  var reIsNative = RegExp('^' +
3720
- funcToString$1.call(hasOwnProperty$9).replace(reRegExpChar, '\\$&')
3752
+ funcToString$1.call(hasOwnProperty$8).replace(reRegExpChar, '\\$&')
3721
3753
  .replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, '$1.*?') + '$'
3722
3754
  );
3723
3755
 
@@ -3730,10 +3762,10 @@ var reIsNative = RegExp('^' +
3730
3762
  * else `false`.
3731
3763
  */
3732
3764
  function baseIsNative$1(value) {
3733
- if (!isObject$6(value) || isMasked(value)) {
3765
+ if (!isObject$5(value) || isMasked(value)) {
3734
3766
  return false;
3735
3767
  }
3736
- var pattern = isFunction$2(value) ? reIsNative : reIsHostCtor;
3768
+ var pattern = isFunction$1(value) ? reIsNative : reIsHostCtor;
3737
3769
  return pattern.test(toSource$1(value));
3738
3770
  }
3739
3771
 
@@ -3765,18 +3797,18 @@ var baseIsNative = _baseIsNative,
3765
3797
  * @param {string} key The key of the method to get.
3766
3798
  * @returns {*} Returns the function if it's native, else `undefined`.
3767
3799
  */
3768
- function getNative$6(object, key) {
3800
+ function getNative$5(object, key) {
3769
3801
  var value = getValue(object, key);
3770
3802
  return baseIsNative(value) ? value : undefined;
3771
3803
  }
3772
3804
 
3773
- var _getNative = getNative$6;
3805
+ var _getNative = getNative$5;
3774
3806
 
3775
- var getNative$5 = _getNative,
3776
- root$9 = _root;
3807
+ var getNative$4 = _getNative,
3808
+ root$8 = require_root();
3777
3809
 
3778
3810
  /* Built-in method references that are verified to be native. */
3779
- var WeakMap$3 = getNative$5(root$9, 'WeakMap');
3811
+ var WeakMap$3 = getNative$4(root$8, 'WeakMap');
3780
3812
 
3781
3813
  var _WeakMap = WeakMap$3;
3782
3814
 
@@ -3787,7 +3819,7 @@ var metaMap$2 = WeakMap$2 && new WeakMap$2;
3787
3819
 
3788
3820
  var _metaMap = metaMap$2;
3789
3821
 
3790
- var identity$2 = identity_1,
3822
+ var identity$1 = requireIdentity(),
3791
3823
  metaMap$1 = _metaMap;
3792
3824
 
3793
3825
  /**
@@ -3798,46 +3830,54 @@ var identity$2 = identity_1,
3798
3830
  * @param {*} data The metadata.
3799
3831
  * @returns {Function} Returns `func`.
3800
3832
  */
3801
- var baseSetData$2 = !metaMap$1 ? identity$2 : function(func, data) {
3833
+ var baseSetData$2 = !metaMap$1 ? identity$1 : function(func, data) {
3802
3834
  metaMap$1.set(func, data);
3803
3835
  return func;
3804
3836
  };
3805
3837
 
3806
3838
  var _baseSetData = baseSetData$2;
3807
3839
 
3808
- var isObject$5 = isObject_1;
3840
+ var _baseCreate;
3841
+ var hasRequired_baseCreate;
3809
3842
 
3810
- /** Built-in value references. */
3811
- var objectCreate = Object.create;
3843
+ function require_baseCreate () {
3844
+ if (hasRequired_baseCreate) return _baseCreate;
3845
+ hasRequired_baseCreate = 1;
3846
+ var isObject = requireIsObject();
3812
3847
 
3813
- /**
3814
- * The base implementation of `_.create` without support for assigning
3815
- * properties to the created object.
3816
- *
3817
- * @private
3818
- * @param {Object} proto The object to inherit from.
3819
- * @returns {Object} Returns the new object.
3820
- */
3821
- var baseCreate$4 = (function() {
3822
- function object() {}
3823
- return function(proto) {
3824
- if (!isObject$5(proto)) {
3825
- return {};
3826
- }
3827
- if (objectCreate) {
3828
- return objectCreate(proto);
3829
- }
3830
- object.prototype = proto;
3831
- var result = new object;
3832
- object.prototype = undefined;
3833
- return result;
3834
- };
3835
- }());
3848
+ /** Built-in value references. */
3849
+ var objectCreate = Object.create;
3850
+
3851
+ /**
3852
+ * The base implementation of `_.create` without support for assigning
3853
+ * properties to the created object.
3854
+ *
3855
+ * @private
3856
+ * @param {Object} proto The object to inherit from.
3857
+ * @returns {Object} Returns the new object.
3858
+ */
3859
+ var baseCreate = (function() {
3860
+ function object() {}
3861
+ return function(proto) {
3862
+ if (!isObject(proto)) {
3863
+ return {};
3864
+ }
3865
+ if (objectCreate) {
3866
+ return objectCreate(proto);
3867
+ }
3868
+ object.prototype = proto;
3869
+ var result = new object;
3870
+ object.prototype = undefined;
3871
+ return result;
3872
+ };
3873
+ }());
3836
3874
 
3837
- var _baseCreate = baseCreate$4;
3875
+ _baseCreate = baseCreate;
3876
+ return _baseCreate;
3877
+ }
3838
3878
 
3839
- var baseCreate$3 = _baseCreate,
3840
- isObject$4 = isObject_1;
3879
+ var baseCreate$2 = require_baseCreate(),
3880
+ isObject$4 = requireIsObject();
3841
3881
 
3842
3882
  /**
3843
3883
  * Creates a function that produces an instance of `Ctor` regardless of
@@ -3863,7 +3903,7 @@ function createCtor$4(Ctor) {
3863
3903
  case 6: return new Ctor(args[0], args[1], args[2], args[3], args[4], args[5]);
3864
3904
  case 7: return new Ctor(args[0], args[1], args[2], args[3], args[4], args[5], args[6]);
3865
3905
  }
3866
- var thisBinding = baseCreate$3(Ctor.prototype),
3906
+ var thisBinding = baseCreate$2(Ctor.prototype),
3867
3907
  result = Ctor.apply(thisBinding, args);
3868
3908
 
3869
3909
  // Mimic the constructor's `return` behavior.
@@ -3875,7 +3915,7 @@ function createCtor$4(Ctor) {
3875
3915
  var _createCtor = createCtor$4;
3876
3916
 
3877
3917
  var createCtor$3 = _createCtor,
3878
- root$8 = _root;
3918
+ root$7 = require_root();
3879
3919
 
3880
3920
  /** Used to compose bitmasks for function metadata. */
3881
3921
  var WRAP_BIND_FLAG$6 = 1;
@@ -3895,7 +3935,7 @@ function createBind$1(func, bitmask, thisArg) {
3895
3935
  Ctor = createCtor$3(func);
3896
3936
 
3897
3937
  function wrapper() {
3898
- var fn = (this && this !== root$8 && this instanceof wrapper) ? Ctor : func;
3938
+ var fn = (this && this !== root$7 && this instanceof wrapper) ? Ctor : func;
3899
3939
  return fn.apply(isBind ? thisArg : this, arguments);
3900
3940
  }
3901
3941
  return wrapper;
@@ -3914,21 +3954,29 @@ var _createBind = createBind$1;
3914
3954
  * @returns {*} Returns the result of `func`.
3915
3955
  */
3916
3956
 
3917
- function apply$3(func, thisArg, args) {
3918
- switch (args.length) {
3919
- case 0: return func.call(thisArg);
3920
- case 1: return func.call(thisArg, args[0]);
3921
- case 2: return func.call(thisArg, args[0], args[1]);
3922
- case 3: return func.call(thisArg, args[0], args[1], args[2]);
3923
- }
3924
- return func.apply(thisArg, args);
3925
- }
3957
+ var _apply;
3958
+ var hasRequired_apply;
3959
+
3960
+ function require_apply () {
3961
+ if (hasRequired_apply) return _apply;
3962
+ hasRequired_apply = 1;
3963
+ function apply(func, thisArg, args) {
3964
+ switch (args.length) {
3965
+ case 0: return func.call(thisArg);
3966
+ case 1: return func.call(thisArg, args[0]);
3967
+ case 2: return func.call(thisArg, args[0], args[1]);
3968
+ case 3: return func.call(thisArg, args[0], args[1], args[2]);
3969
+ }
3970
+ return func.apply(thisArg, args);
3971
+ }
3926
3972
 
3927
- var _apply = apply$3;
3973
+ _apply = apply;
3974
+ return _apply;
3975
+ }
3928
3976
 
3929
3977
  /* Built-in method references for those with the same name as other `lodash` methods. */
3930
3978
 
3931
- var nativeMax$3 = Math.max;
3979
+ var nativeMax$2 = Math.max;
3932
3980
 
3933
3981
  /**
3934
3982
  * Creates an array that is the composition of partially applied arguments,
@@ -3947,7 +3995,7 @@ function composeArgs$2(args, partials, holders, isCurried) {
3947
3995
  holdersLength = holders.length,
3948
3996
  leftIndex = -1,
3949
3997
  leftLength = partials.length,
3950
- rangeLength = nativeMax$3(argsLength - holdersLength, 0),
3998
+ rangeLength = nativeMax$2(argsLength - holdersLength, 0),
3951
3999
  result = Array(leftLength + rangeLength),
3952
4000
  isUncurried = !isCurried;
3953
4001
 
@@ -3969,7 +4017,7 @@ var _composeArgs = composeArgs$2;
3969
4017
 
3970
4018
  /* Built-in method references for those with the same name as other `lodash` methods. */
3971
4019
 
3972
- var nativeMax$2 = Math.max;
4020
+ var nativeMax$1 = Math.max;
3973
4021
 
3974
4022
  /**
3975
4023
  * This function is like `composeArgs` except that the arguments composition
@@ -3989,7 +4037,7 @@ function composeArgsRight$2(args, partials, holders, isCurried) {
3989
4037
  holdersLength = holders.length,
3990
4038
  rightIndex = -1,
3991
4039
  rightLength = partials.length,
3992
- rangeLength = nativeMax$2(argsLength - holdersLength, 0),
4040
+ rangeLength = nativeMax$1(argsLength - holdersLength, 0),
3993
4041
  result = Array(rangeLength + rightLength),
3994
4042
  isUncurried = !isCurried;
3995
4043
 
@@ -4045,7 +4093,7 @@ function baseLodash$3() {
4045
4093
 
4046
4094
  var _baseLodash = baseLodash$3;
4047
4095
 
4048
- var baseCreate$2 = _baseCreate,
4096
+ var baseCreate$1 = require_baseCreate(),
4049
4097
  baseLodash$2 = _baseLodash;
4050
4098
 
4051
4099
  /** Used as references for the maximum length and index of an array. */
@@ -4069,7 +4117,7 @@ function LazyWrapper$3(value) {
4069
4117
  }
4070
4118
 
4071
4119
  // Ensure `LazyWrapper` is an instance of `baseLodash`.
4072
- LazyWrapper$3.prototype = baseCreate$2(baseLodash$2.prototype);
4120
+ LazyWrapper$3.prototype = baseCreate$1(baseLodash$2.prototype);
4073
4121
  LazyWrapper$3.prototype.constructor = LazyWrapper$3;
4074
4122
 
4075
4123
  var _LazyWrapper = LazyWrapper$3;
@@ -4118,10 +4166,10 @@ var _realNames = realNames$1;
4118
4166
  var realNames = _realNames;
4119
4167
 
4120
4168
  /** Used for built-in method references. */
4121
- var objectProto$a = Object.prototype;
4169
+ var objectProto$9 = Object.prototype;
4122
4170
 
4123
4171
  /** Used to check objects for own properties. */
4124
- var hasOwnProperty$8 = objectProto$a.hasOwnProperty;
4172
+ var hasOwnProperty$7 = objectProto$9.hasOwnProperty;
4125
4173
 
4126
4174
  /**
4127
4175
  * Gets the name of `func`.
@@ -4133,7 +4181,7 @@ var hasOwnProperty$8 = objectProto$a.hasOwnProperty;
4133
4181
  function getFuncName$1(func) {
4134
4182
  var result = (func.name + ''),
4135
4183
  array = realNames[result],
4136
- length = hasOwnProperty$8.call(realNames, result) ? array.length : 0;
4184
+ length = hasOwnProperty$7.call(realNames, result) ? array.length : 0;
4137
4185
 
4138
4186
  while (length--) {
4139
4187
  var data = array[length],
@@ -4147,7 +4195,7 @@ function getFuncName$1(func) {
4147
4195
 
4148
4196
  var _getFuncName = getFuncName$1;
4149
4197
 
4150
- var baseCreate$1 = _baseCreate,
4198
+ var baseCreate = require_baseCreate(),
4151
4199
  baseLodash$1 = _baseLodash;
4152
4200
 
4153
4201
  /**
@@ -4165,7 +4213,7 @@ function LodashWrapper$2(value, chainAll) {
4165
4213
  this.__values__ = undefined;
4166
4214
  }
4167
4215
 
4168
- LodashWrapper$2.prototype = baseCreate$1(baseLodash$1.prototype);
4216
+ LodashWrapper$2.prototype = baseCreate(baseLodash$1.prototype);
4169
4217
  LodashWrapper$2.prototype.constructor = LodashWrapper$2;
4170
4218
 
4171
4219
  var _LodashWrapper = LodashWrapper$2;
@@ -4194,9 +4242,9 @@ var _LodashWrapper = LodashWrapper$2;
4194
4242
  * // => false
4195
4243
  */
4196
4244
 
4197
- var isArray$h = Array.isArray;
4245
+ var isArray$g = Array.isArray;
4198
4246
 
4199
- var isArray_1 = isArray$h;
4247
+ var isArray_1 = isArray$g;
4200
4248
 
4201
4249
  /**
4202
4250
  * Checks if `value` is object-like. A value is object-like if it's not `null`
@@ -4278,15 +4326,15 @@ var _wrapperClone = wrapperClone$1;
4278
4326
  var LazyWrapper$1 = _LazyWrapper,
4279
4327
  LodashWrapper = _LodashWrapper,
4280
4328
  baseLodash = _baseLodash,
4281
- isArray$g = isArray_1,
4329
+ isArray$f = isArray_1,
4282
4330
  isObjectLike$7 = isObjectLike_1,
4283
4331
  wrapperClone = _wrapperClone;
4284
4332
 
4285
4333
  /** Used for built-in method references. */
4286
- var objectProto$9 = Object.prototype;
4334
+ var objectProto$8 = Object.prototype;
4287
4335
 
4288
4336
  /** Used to check objects for own properties. */
4289
- var hasOwnProperty$7 = objectProto$9.hasOwnProperty;
4337
+ var hasOwnProperty$6 = objectProto$8.hasOwnProperty;
4290
4338
 
4291
4339
  /**
4292
4340
  * Creates a `lodash` object which wraps `value` to enable implicit method
@@ -4406,11 +4454,11 @@ var hasOwnProperty$7 = objectProto$9.hasOwnProperty;
4406
4454
  * // => true
4407
4455
  */
4408
4456
  function lodash$2(value) {
4409
- if (isObjectLike$7(value) && !isArray$g(value) && !(value instanceof LazyWrapper$1)) {
4457
+ if (isObjectLike$7(value) && !isArray$f(value) && !(value instanceof LazyWrapper$1)) {
4410
4458
  if (value instanceof LodashWrapper) {
4411
4459
  return value;
4412
4460
  }
4413
- if (hasOwnProperty$7.call(value, '__wrapped__')) {
4461
+ if (hasOwnProperty$6.call(value, '__wrapped__')) {
4414
4462
  return wrapperClone(value);
4415
4463
  }
4416
4464
  }
@@ -4454,45 +4502,53 @@ var _isLaziable = isLaziable$1;
4454
4502
 
4455
4503
  /** Used to detect hot functions by number of calls within a span of milliseconds. */
4456
4504
 
4457
- var HOT_COUNT = 800,
4458
- HOT_SPAN = 16;
4505
+ var _shortOut;
4506
+ var hasRequired_shortOut;
4459
4507
 
4460
- /* Built-in method references for those with the same name as other `lodash` methods. */
4461
- var nativeNow = Date.now;
4508
+ function require_shortOut () {
4509
+ if (hasRequired_shortOut) return _shortOut;
4510
+ hasRequired_shortOut = 1;
4511
+ var HOT_COUNT = 800,
4512
+ HOT_SPAN = 16;
4462
4513
 
4463
- /**
4464
- * Creates a function that'll short out and invoke `identity` instead
4465
- * of `func` when it's called `HOT_COUNT` or more times in `HOT_SPAN`
4466
- * milliseconds.
4467
- *
4468
- * @private
4469
- * @param {Function} func The function to restrict.
4470
- * @returns {Function} Returns the new shortable function.
4471
- */
4472
- function shortOut$2(func) {
4473
- var count = 0,
4474
- lastCalled = 0;
4514
+ /* Built-in method references for those with the same name as other `lodash` methods. */
4515
+ var nativeNow = Date.now;
4475
4516
 
4476
- return function() {
4477
- var stamp = nativeNow(),
4478
- remaining = HOT_SPAN - (stamp - lastCalled);
4517
+ /**
4518
+ * Creates a function that'll short out and invoke `identity` instead
4519
+ * of `func` when it's called `HOT_COUNT` or more times in `HOT_SPAN`
4520
+ * milliseconds.
4521
+ *
4522
+ * @private
4523
+ * @param {Function} func The function to restrict.
4524
+ * @returns {Function} Returns the new shortable function.
4525
+ */
4526
+ function shortOut(func) {
4527
+ var count = 0,
4528
+ lastCalled = 0;
4479
4529
 
4480
- lastCalled = stamp;
4481
- if (remaining > 0) {
4482
- if (++count >= HOT_COUNT) {
4483
- return arguments[0];
4484
- }
4485
- } else {
4486
- count = 0;
4487
- }
4488
- return func.apply(undefined, arguments);
4489
- };
4490
- }
4530
+ return function() {
4531
+ var stamp = nativeNow(),
4532
+ remaining = HOT_SPAN - (stamp - lastCalled);
4533
+
4534
+ lastCalled = stamp;
4535
+ if (remaining > 0) {
4536
+ if (++count >= HOT_COUNT) {
4537
+ return arguments[0];
4538
+ }
4539
+ } else {
4540
+ count = 0;
4541
+ }
4542
+ return func.apply(undefined, arguments);
4543
+ };
4544
+ }
4491
4545
 
4492
- var _shortOut = shortOut$2;
4546
+ _shortOut = shortOut;
4547
+ return _shortOut;
4548
+ }
4493
4549
 
4494
4550
  var baseSetData$1 = _baseSetData,
4495
- shortOut$1 = _shortOut;
4551
+ shortOut = require_shortOut();
4496
4552
 
4497
4553
  /**
4498
4554
  * Sets metadata for `func`.
@@ -4508,7 +4564,7 @@ var baseSetData$1 = _baseSetData,
4508
4564
  * @param {*} data The metadata.
4509
4565
  * @returns {Function} Returns `func`.
4510
4566
  */
4511
- var setData$2 = shortOut$1(baseSetData$1);
4567
+ var setData$2 = shortOut(baseSetData$1);
4512
4568
 
4513
4569
  var _setData = setData$2;
4514
4570
 
@@ -4576,63 +4632,95 @@ var _insertWrapDetails = insertWrapDetails$1;
4576
4632
  * // => true
4577
4633
  */
4578
4634
 
4579
- function constant$1(value) {
4580
- return function() {
4581
- return value;
4582
- };
4635
+ var constant_1;
4636
+ var hasRequiredConstant;
4637
+
4638
+ function requireConstant () {
4639
+ if (hasRequiredConstant) return constant_1;
4640
+ hasRequiredConstant = 1;
4641
+ function constant(value) {
4642
+ return function() {
4643
+ return value;
4644
+ };
4645
+ }
4646
+
4647
+ constant_1 = constant;
4648
+ return constant_1;
4583
4649
  }
4584
4650
 
4585
- var constant_1 = constant$1;
4651
+ var _defineProperty;
4652
+ var hasRequired_defineProperty;
4586
4653
 
4587
- var getNative$4 = _getNative;
4654
+ function require_defineProperty () {
4655
+ if (hasRequired_defineProperty) return _defineProperty;
4656
+ hasRequired_defineProperty = 1;
4657
+ var getNative = _getNative;
4588
4658
 
4589
- var defineProperty$2 = (function() {
4590
- try {
4591
- var func = getNative$4(Object, 'defineProperty');
4592
- func({}, '', {});
4593
- return func;
4594
- } catch (e) {}
4595
- }());
4659
+ var defineProperty = (function() {
4660
+ try {
4661
+ var func = getNative(Object, 'defineProperty');
4662
+ func({}, '', {});
4663
+ return func;
4664
+ } catch (e) {}
4665
+ }());
4596
4666
 
4597
- var _defineProperty = defineProperty$2;
4667
+ _defineProperty = defineProperty;
4668
+ return _defineProperty;
4669
+ }
4598
4670
 
4599
- var constant = constant_1,
4600
- defineProperty$1 = _defineProperty,
4601
- identity$1 = identity_1;
4671
+ var _baseSetToString;
4672
+ var hasRequired_baseSetToString;
4602
4673
 
4603
- /**
4604
- * The base implementation of `setToString` without support for hot loop shorting.
4605
- *
4606
- * @private
4607
- * @param {Function} func The function to modify.
4608
- * @param {Function} string The `toString` result.
4609
- * @returns {Function} Returns `func`.
4610
- */
4611
- var baseSetToString$1 = !defineProperty$1 ? identity$1 : function(func, string) {
4612
- return defineProperty$1(func, 'toString', {
4613
- 'configurable': true,
4614
- 'enumerable': false,
4615
- 'value': constant(string),
4616
- 'writable': true
4617
- });
4618
- };
4674
+ function require_baseSetToString () {
4675
+ if (hasRequired_baseSetToString) return _baseSetToString;
4676
+ hasRequired_baseSetToString = 1;
4677
+ var constant = requireConstant(),
4678
+ defineProperty = require_defineProperty(),
4679
+ identity = requireIdentity();
4680
+
4681
+ /**
4682
+ * The base implementation of `setToString` without support for hot loop shorting.
4683
+ *
4684
+ * @private
4685
+ * @param {Function} func The function to modify.
4686
+ * @param {Function} string The `toString` result.
4687
+ * @returns {Function} Returns `func`.
4688
+ */
4689
+ var baseSetToString = !defineProperty ? identity : function(func, string) {
4690
+ return defineProperty(func, 'toString', {
4691
+ 'configurable': true,
4692
+ 'enumerable': false,
4693
+ 'value': constant(string),
4694
+ 'writable': true
4695
+ });
4696
+ };
4619
4697
 
4620
- var _baseSetToString = baseSetToString$1;
4698
+ _baseSetToString = baseSetToString;
4699
+ return _baseSetToString;
4700
+ }
4621
4701
 
4622
- var baseSetToString = _baseSetToString,
4623
- shortOut = _shortOut;
4702
+ var _setToString;
4703
+ var hasRequired_setToString;
4624
4704
 
4625
- /**
4626
- * Sets the `toString` method of `func` to return `string`.
4627
- *
4628
- * @private
4629
- * @param {Function} func The function to modify.
4630
- * @param {Function} string The `toString` result.
4631
- * @returns {Function} Returns `func`.
4632
- */
4633
- var setToString$2 = shortOut(baseSetToString);
4705
+ function require_setToString () {
4706
+ if (hasRequired_setToString) return _setToString;
4707
+ hasRequired_setToString = 1;
4708
+ var baseSetToString = require_baseSetToString(),
4709
+ shortOut = require_shortOut();
4710
+
4711
+ /**
4712
+ * Sets the `toString` method of `func` to return `string`.
4713
+ *
4714
+ * @private
4715
+ * @param {Function} func The function to modify.
4716
+ * @param {Function} string The `toString` result.
4717
+ * @returns {Function} Returns `func`.
4718
+ */
4719
+ var setToString = shortOut(baseSetToString);
4634
4720
 
4635
- var _setToString = setToString$2;
4721
+ _setToString = setToString;
4722
+ return _setToString;
4723
+ }
4636
4724
 
4637
4725
  /**
4638
4726
  * A specialized version of `_.forEach` for arrays without support for
@@ -4811,7 +4899,7 @@ var _updateWrapDetails = updateWrapDetails$1;
4811
4899
 
4812
4900
  var getWrapDetails = _getWrapDetails,
4813
4901
  insertWrapDetails = _insertWrapDetails,
4814
- setToString$1 = _setToString,
4902
+ setToString$1 = require_setToString(),
4815
4903
  updateWrapDetails = _updateWrapDetails;
4816
4904
 
4817
4905
  /**
@@ -4939,7 +5027,7 @@ function require_isIndex () {
4939
5027
  }
4940
5028
 
4941
5029
  var copyArray$2 = _copyArray,
4942
- isIndex$2 = require_isIndex();
5030
+ isIndex$1 = require_isIndex();
4943
5031
 
4944
5032
  /* Built-in method references for those with the same name as other `lodash` methods. */
4945
5033
  var nativeMin$1 = Math.min;
@@ -4961,7 +5049,7 @@ function reorder$1(array, indexes) {
4961
5049
 
4962
5050
  while (length--) {
4963
5051
  var index = indexes[length];
4964
- array[length] = isIndex$2(index, arrLength) ? oldArray[index] : undefined;
5052
+ array[length] = isIndex$1(index, arrLength) ? oldArray[index] : undefined;
4965
5053
  }
4966
5054
  return array;
4967
5055
  }
@@ -5007,7 +5095,7 @@ var composeArgs$1 = _composeArgs,
5007
5095
  getHolder$1 = _getHolder,
5008
5096
  reorder = _reorder,
5009
5097
  replaceHolders$2 = _replaceHolders,
5010
- root$7 = _root;
5098
+ root$6 = require_root();
5011
5099
 
5012
5100
  /** Used to compose bitmasks for function metadata. */
5013
5101
  var WRAP_BIND_FLAG$3 = 1,
@@ -5082,7 +5170,7 @@ function createHybrid$2(func, bitmask, thisArg, partials, holders, partialsRight
5082
5170
  if (isAry && ary < length) {
5083
5171
  args.length = ary;
5084
5172
  }
5085
- if (this && this !== root$7 && this instanceof wrapper) {
5173
+ if (this && this !== root$6 && this instanceof wrapper) {
5086
5174
  fn = Ctor || createCtor$2(fn);
5087
5175
  }
5088
5176
  return fn.apply(thisBinding, args);
@@ -5092,13 +5180,13 @@ function createHybrid$2(func, bitmask, thisArg, partials, holders, partialsRight
5092
5180
 
5093
5181
  var _createHybrid = createHybrid$2;
5094
5182
 
5095
- var apply$2 = _apply,
5183
+ var apply$1 = require_apply(),
5096
5184
  createCtor$1 = _createCtor,
5097
5185
  createHybrid$1 = _createHybrid,
5098
5186
  createRecurry = _createRecurry,
5099
5187
  getHolder = _getHolder,
5100
5188
  replaceHolders$1 = _replaceHolders,
5101
- root$6 = _root;
5189
+ root$5 = require_root();
5102
5190
 
5103
5191
  /**
5104
5192
  * Creates a function that wraps `func` to enable currying.
@@ -5131,17 +5219,17 @@ function createCurry$1(func, bitmask, arity) {
5131
5219
  func, bitmask, createHybrid$1, wrapper.placeholder, undefined,
5132
5220
  args, holders, undefined, undefined, arity - length);
5133
5221
  }
5134
- var fn = (this && this !== root$6 && this instanceof wrapper) ? Ctor : func;
5135
- return apply$2(fn, this, args);
5222
+ var fn = (this && this !== root$5 && this instanceof wrapper) ? Ctor : func;
5223
+ return apply$1(fn, this, args);
5136
5224
  }
5137
5225
  return wrapper;
5138
5226
  }
5139
5227
 
5140
5228
  var _createCurry = createCurry$1;
5141
5229
 
5142
- var apply$1 = _apply,
5230
+ var apply = require_apply(),
5143
5231
  createCtor = _createCtor,
5144
- root$5 = _root;
5232
+ root$4 = require_root();
5145
5233
 
5146
5234
  /** Used to compose bitmasks for function metadata. */
5147
5235
  var WRAP_BIND_FLAG$2 = 1;
@@ -5168,7 +5256,7 @@ function createPartial$1(func, bitmask, thisArg, partials) {
5168
5256
  leftIndex = -1,
5169
5257
  leftLength = partials.length,
5170
5258
  args = Array(leftLength + argsLength),
5171
- fn = (this && this !== root$5 && this instanceof wrapper) ? Ctor : func;
5259
+ fn = (this && this !== root$4 && this instanceof wrapper) ? Ctor : func;
5172
5260
 
5173
5261
  while (++leftIndex < leftLength) {
5174
5262
  args[leftIndex] = partials[leftIndex];
@@ -5176,7 +5264,7 @@ function createPartial$1(func, bitmask, thisArg, partials) {
5176
5264
  while (argsLength--) {
5177
5265
  args[leftIndex++] = arguments[++argsIndex];
5178
5266
  }
5179
- return apply$1(fn, isBind ? thisArg : this, args);
5267
+ return apply(fn, isBind ? thisArg : this, args);
5180
5268
  }
5181
5269
  return wrapper;
5182
5270
  }
@@ -5346,7 +5434,7 @@ function isSymbol$6(value) {
5346
5434
  var isSymbol_1 = isSymbol$6;
5347
5435
 
5348
5436
  var baseTrim = _baseTrim,
5349
- isObject$3 = isObject_1,
5437
+ isObject$3 = requireIsObject(),
5350
5438
  isSymbol$5 = isSymbol_1;
5351
5439
 
5352
5440
  /** Used as references for various `Number` constants. */
@@ -5513,7 +5601,7 @@ var WRAP_BIND_FLAG = 1,
5513
5601
  WRAP_PARTIAL_RIGHT_FLAG = 64;
5514
5602
 
5515
5603
  /* Built-in method references for those with the same name as other `lodash` methods. */
5516
- var nativeMax$1 = Math.max;
5604
+ var nativeMax = Math.max;
5517
5605
 
5518
5606
  /**
5519
5607
  * Creates a function that either curries or invokes `func` with optional
@@ -5550,7 +5638,7 @@ function createWrap$3(func, bitmask, thisArg, partials, holders, argPos, ary, ar
5550
5638
  bitmask &= ~(WRAP_PARTIAL_FLAG | WRAP_PARTIAL_RIGHT_FLAG);
5551
5639
  partials = holders = undefined;
5552
5640
  }
5553
- ary = ary === undefined ? ary : nativeMax$1(toInteger(ary), 0);
5641
+ ary = ary === undefined ? ary : nativeMax(toInteger(ary), 0);
5554
5642
  arity = arity === undefined ? arity : toInteger(arity);
5555
5643
  length -= holders ? holders.length : 0;
5556
5644
 
@@ -5577,7 +5665,7 @@ function createWrap$3(func, bitmask, thisArg, partials, holders, argPos, ary, ar
5577
5665
  holders = newData[4];
5578
5666
  arity = newData[9] = newData[9] === undefined
5579
5667
  ? (isBindKey ? 0 : func.length)
5580
- : nativeMax$1(newData[9] - length, 0);
5668
+ : nativeMax(newData[9] - length, 0);
5581
5669
 
5582
5670
  if (!arity && bitmask & (WRAP_CURRY_FLAG$1 | WRAP_CURRY_RIGHT_FLAG)) {
5583
5671
  bitmask &= ~(WRAP_CURRY_FLAG$1 | WRAP_CURRY_RIGHT_FLAG);
@@ -5627,31 +5715,39 @@ function ary(func, n, guard) {
5627
5715
 
5628
5716
  var ary_1 = ary;
5629
5717
 
5630
- var defineProperty = _defineProperty;
5718
+ var _baseAssignValue;
5719
+ var hasRequired_baseAssignValue;
5631
5720
 
5632
- /**
5633
- * The base implementation of `assignValue` and `assignMergeValue` without
5634
- * value checks.
5635
- *
5636
- * @private
5637
- * @param {Object} object The object to modify.
5638
- * @param {string} key The key of the property to assign.
5639
- * @param {*} value The value to assign.
5640
- */
5641
- function baseAssignValue$2(object, key, value) {
5642
- if (key == '__proto__' && defineProperty) {
5643
- defineProperty(object, key, {
5644
- 'configurable': true,
5645
- 'enumerable': true,
5646
- 'value': value,
5647
- 'writable': true
5648
- });
5649
- } else {
5650
- object[key] = value;
5651
- }
5652
- }
5721
+ function require_baseAssignValue () {
5722
+ if (hasRequired_baseAssignValue) return _baseAssignValue;
5723
+ hasRequired_baseAssignValue = 1;
5724
+ var defineProperty = require_defineProperty();
5653
5725
 
5654
- var _baseAssignValue = baseAssignValue$2;
5726
+ /**
5727
+ * The base implementation of `assignValue` and `assignMergeValue` without
5728
+ * value checks.
5729
+ *
5730
+ * @private
5731
+ * @param {Object} object The object to modify.
5732
+ * @param {string} key The key of the property to assign.
5733
+ * @param {*} value The value to assign.
5734
+ */
5735
+ function baseAssignValue(object, key, value) {
5736
+ if (key == '__proto__' && defineProperty) {
5737
+ defineProperty(object, key, {
5738
+ 'configurable': true,
5739
+ 'enumerable': true,
5740
+ 'value': value,
5741
+ 'writable': true
5742
+ });
5743
+ } else {
5744
+ object[key] = value;
5745
+ }
5746
+ }
5747
+
5748
+ _baseAssignValue = baseAssignValue;
5749
+ return _baseAssignValue;
5750
+ }
5655
5751
 
5656
5752
  /**
5657
5753
  * Performs a
@@ -5700,14 +5796,14 @@ function requireEq () {
5700
5796
  return eq_1;
5701
5797
  }
5702
5798
 
5703
- var baseAssignValue$1 = _baseAssignValue,
5799
+ var baseAssignValue$1 = require_baseAssignValue(),
5704
5800
  eq$1 = requireEq();
5705
5801
 
5706
5802
  /** Used for built-in method references. */
5707
- var objectProto$8 = Object.prototype;
5803
+ var objectProto$7 = Object.prototype;
5708
5804
 
5709
5805
  /** Used to check objects for own properties. */
5710
- var hasOwnProperty$6 = objectProto$8.hasOwnProperty;
5806
+ var hasOwnProperty$5 = objectProto$7.hasOwnProperty;
5711
5807
 
5712
5808
  /**
5713
5809
  * Assigns `value` to `key` of `object` if the existing value is not equivalent
@@ -5721,7 +5817,7 @@ var hasOwnProperty$6 = objectProto$8.hasOwnProperty;
5721
5817
  */
5722
5818
  function assignValue$2(object, key, value) {
5723
5819
  var objValue = object[key];
5724
- if (!(hasOwnProperty$6.call(object, key) && eq$1(objValue, value)) ||
5820
+ if (!(hasOwnProperty$5.call(object, key) && eq$1(objValue, value)) ||
5725
5821
  (value === undefined && !(key in object))) {
5726
5822
  baseAssignValue$1(object, key, value);
5727
5823
  }
@@ -5730,7 +5826,7 @@ function assignValue$2(object, key, value) {
5730
5826
  var _assignValue = assignValue$2;
5731
5827
 
5732
5828
  var assignValue$1 = _assignValue,
5733
- baseAssignValue = _baseAssignValue;
5829
+ baseAssignValue = require_baseAssignValue();
5734
5830
 
5735
5831
  /**
5736
5832
  * Copies properties of `source` to `object`.
@@ -5780,17 +5876,25 @@ var _copyObject = copyObject$4;
5780
5876
  * @returns {Array} Returns the array of results.
5781
5877
  */
5782
5878
 
5783
- function baseTimes$1(n, iteratee) {
5784
- var index = -1,
5785
- result = Array(n);
5879
+ var _baseTimes;
5880
+ var hasRequired_baseTimes;
5786
5881
 
5787
- while (++index < n) {
5788
- result[index] = iteratee(index);
5789
- }
5790
- return result;
5791
- }
5882
+ function require_baseTimes () {
5883
+ if (hasRequired_baseTimes) return _baseTimes;
5884
+ hasRequired_baseTimes = 1;
5885
+ function baseTimes(n, iteratee) {
5886
+ var index = -1,
5887
+ result = Array(n);
5888
+
5889
+ while (++index < n) {
5890
+ result[index] = iteratee(index);
5891
+ }
5892
+ return result;
5893
+ }
5792
5894
 
5793
- var _baseTimes = baseTimes$1;
5895
+ _baseTimes = baseTimes;
5896
+ return _baseTimes;
5897
+ }
5794
5898
 
5795
5899
  var _baseIsArguments;
5796
5900
  var hasRequired_baseIsArguments;
@@ -5865,7 +5969,7 @@ function requireIsArguments () {
5865
5969
  }
5866
5970
 
5867
5971
  var isBufferExports = {};
5868
- var isBuffer$5 = {
5972
+ var isBuffer$4 = {
5869
5973
  get exports(){ return isBufferExports; },
5870
5974
  set exports(v){ isBufferExports = v; },
5871
5975
  };
@@ -5884,90 +5988,113 @@ var isBuffer$5 = {
5884
5988
  * // => [false, false]
5885
5989
  */
5886
5990
 
5887
- function stubFalse() {
5888
- return false;
5991
+ var stubFalse_1;
5992
+ var hasRequiredStubFalse;
5993
+
5994
+ function requireStubFalse () {
5995
+ if (hasRequiredStubFalse) return stubFalse_1;
5996
+ hasRequiredStubFalse = 1;
5997
+ function stubFalse() {
5998
+ return false;
5999
+ }
6000
+
6001
+ stubFalse_1 = stubFalse;
6002
+ return stubFalse_1;
5889
6003
  }
5890
6004
 
5891
- var stubFalse_1 = stubFalse;
6005
+ var hasRequiredIsBuffer;
5892
6006
 
5893
- (function (module, exports) {
5894
- var root = _root,
5895
- stubFalse = stubFalse_1;
6007
+ function requireIsBuffer () {
6008
+ if (hasRequiredIsBuffer) return isBufferExports;
6009
+ hasRequiredIsBuffer = 1;
6010
+ (function (module, exports) {
6011
+ var root = require_root(),
6012
+ stubFalse = requireStubFalse();
5896
6013
 
5897
- /** Detect free variable `exports`. */
5898
- var freeExports = exports && !exports.nodeType && exports;
6014
+ /** Detect free variable `exports`. */
6015
+ var freeExports = exports && !exports.nodeType && exports;
5899
6016
 
5900
- /** Detect free variable `module`. */
5901
- var freeModule = freeExports && 'object' == 'object' && module && !module.nodeType && module;
6017
+ /** Detect free variable `module`. */
6018
+ var freeModule = freeExports && 'object' == 'object' && module && !module.nodeType && module;
5902
6019
 
5903
- /** Detect the popular CommonJS extension `module.exports`. */
5904
- var moduleExports = freeModule && freeModule.exports === freeExports;
6020
+ /** Detect the popular CommonJS extension `module.exports`. */
6021
+ var moduleExports = freeModule && freeModule.exports === freeExports;
5905
6022
 
5906
- /** Built-in value references. */
5907
- var Buffer = moduleExports ? root.Buffer : undefined;
6023
+ /** Built-in value references. */
6024
+ var Buffer = moduleExports ? root.Buffer : undefined;
5908
6025
 
5909
- /* Built-in method references for those with the same name as other `lodash` methods. */
5910
- var nativeIsBuffer = Buffer ? Buffer.isBuffer : undefined;
6026
+ /* Built-in method references for those with the same name as other `lodash` methods. */
6027
+ var nativeIsBuffer = Buffer ? Buffer.isBuffer : undefined;
6028
+
6029
+ /**
6030
+ * Checks if `value` is a buffer.
6031
+ *
6032
+ * @static
6033
+ * @memberOf _
6034
+ * @since 4.3.0
6035
+ * @category Lang
6036
+ * @param {*} value The value to check.
6037
+ * @returns {boolean} Returns `true` if `value` is a buffer, else `false`.
6038
+ * @example
6039
+ *
6040
+ * _.isBuffer(new Buffer(2));
6041
+ * // => true
6042
+ *
6043
+ * _.isBuffer(new Uint8Array(2));
6044
+ * // => false
6045
+ */
6046
+ var isBuffer = nativeIsBuffer || stubFalse;
6047
+
6048
+ module.exports = isBuffer;
6049
+ } (isBuffer$4, isBufferExports));
6050
+ return isBufferExports;
6051
+ }
6052
+
6053
+ /** Used as references for various `Number` constants. */
6054
+
6055
+ var isLength_1;
6056
+ var hasRequiredIsLength;
6057
+
6058
+ function requireIsLength () {
6059
+ if (hasRequiredIsLength) return isLength_1;
6060
+ hasRequiredIsLength = 1;
6061
+ var MAX_SAFE_INTEGER = 9007199254740991;
5911
6062
 
5912
6063
  /**
5913
- * Checks if `value` is a buffer.
6064
+ * Checks if `value` is a valid array-like length.
6065
+ *
6066
+ * **Note:** This method is loosely based on
6067
+ * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength).
5914
6068
  *
5915
6069
  * @static
5916
6070
  * @memberOf _
5917
- * @since 4.3.0
6071
+ * @since 4.0.0
5918
6072
  * @category Lang
5919
6073
  * @param {*} value The value to check.
5920
- * @returns {boolean} Returns `true` if `value` is a buffer, else `false`.
6074
+ * @returns {boolean} Returns `true` if `value` is a valid length, else `false`.
5921
6075
  * @example
5922
6076
  *
5923
- * _.isBuffer(new Buffer(2));
6077
+ * _.isLength(3);
5924
6078
  * // => true
5925
6079
  *
5926
- * _.isBuffer(new Uint8Array(2));
6080
+ * _.isLength(Number.MIN_VALUE);
6081
+ * // => false
6082
+ *
6083
+ * _.isLength(Infinity);
6084
+ * // => false
6085
+ *
6086
+ * _.isLength('3');
5927
6087
  * // => false
5928
6088
  */
5929
- var isBuffer = nativeIsBuffer || stubFalse;
5930
-
5931
- module.exports = isBuffer;
5932
- } (isBuffer$5, isBufferExports));
5933
-
5934
- /** Used as references for various `Number` constants. */
5935
-
5936
- var MAX_SAFE_INTEGER = 9007199254740991;
6089
+ function isLength(value) {
6090
+ return typeof value == 'number' &&
6091
+ value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER;
6092
+ }
5937
6093
 
5938
- /**
5939
- * Checks if `value` is a valid array-like length.
5940
- *
5941
- * **Note:** This method is loosely based on
5942
- * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength).
5943
- *
5944
- * @static
5945
- * @memberOf _
5946
- * @since 4.0.0
5947
- * @category Lang
5948
- * @param {*} value The value to check.
5949
- * @returns {boolean} Returns `true` if `value` is a valid length, else `false`.
5950
- * @example
5951
- *
5952
- * _.isLength(3);
5953
- * // => true
5954
- *
5955
- * _.isLength(Number.MIN_VALUE);
5956
- * // => false
5957
- *
5958
- * _.isLength(Infinity);
5959
- * // => false
5960
- *
5961
- * _.isLength('3');
5962
- * // => false
5963
- */
5964
- function isLength$2(value) {
5965
- return typeof value == 'number' &&
5966
- value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER;
6094
+ isLength_1 = isLength;
6095
+ return isLength_1;
5967
6096
  }
5968
6097
 
5969
- var isLength_1 = isLength$2;
5970
-
5971
6098
  var _baseIsTypedArray;
5972
6099
  var hasRequired_baseIsTypedArray;
5973
6100
 
@@ -5975,7 +6102,7 @@ function require_baseIsTypedArray () {
5975
6102
  if (hasRequired_baseIsTypedArray) return _baseIsTypedArray;
5976
6103
  hasRequired_baseIsTypedArray = 1;
5977
6104
  var baseGetTag = _baseGetTag,
5978
- isLength = isLength_1,
6105
+ isLength = requireIsLength(),
5979
6106
  isObjectLike = isObjectLike_1;
5980
6107
 
5981
6108
  /** `Object#toString` result references. */
@@ -6045,13 +6172,21 @@ function require_baseIsTypedArray () {
6045
6172
  * @returns {Function} Returns the new capped function.
6046
6173
  */
6047
6174
 
6048
- function baseUnary$2(func) {
6049
- return function(value) {
6050
- return func(value);
6051
- };
6052
- }
6175
+ var _baseUnary;
6176
+ var hasRequired_baseUnary;
6177
+
6178
+ function require_baseUnary () {
6179
+ if (hasRequired_baseUnary) return _baseUnary;
6180
+ hasRequired_baseUnary = 1;
6181
+ function baseUnary(func) {
6182
+ return function(value) {
6183
+ return func(value);
6184
+ };
6185
+ }
6053
6186
 
6054
- var _baseUnary = baseUnary$2;
6187
+ _baseUnary = baseUnary;
6188
+ return _baseUnary;
6189
+ }
6055
6190
 
6056
6191
  var _nodeUtilExports = {};
6057
6192
  var _nodeUtil = {
@@ -6059,38 +6194,45 @@ var _nodeUtil = {
6059
6194
  set exports(v){ _nodeUtilExports = v; },
6060
6195
  };
6061
6196
 
6062
- (function (module, exports) {
6063
- var freeGlobal = _freeGlobal;
6197
+ var hasRequired_nodeUtil;
6064
6198
 
6065
- /** Detect free variable `exports`. */
6066
- var freeExports = exports && !exports.nodeType && exports;
6199
+ function require_nodeUtil () {
6200
+ if (hasRequired_nodeUtil) return _nodeUtilExports;
6201
+ hasRequired_nodeUtil = 1;
6202
+ (function (module, exports) {
6203
+ var freeGlobal = require_freeGlobal();
6067
6204
 
6068
- /** Detect free variable `module`. */
6069
- var freeModule = freeExports && 'object' == 'object' && module && !module.nodeType && module;
6205
+ /** Detect free variable `exports`. */
6206
+ var freeExports = exports && !exports.nodeType && exports;
6070
6207
 
6071
- /** Detect the popular CommonJS extension `module.exports`. */
6072
- var moduleExports = freeModule && freeModule.exports === freeExports;
6208
+ /** Detect free variable `module`. */
6209
+ var freeModule = freeExports && 'object' == 'object' && module && !module.nodeType && module;
6073
6210
 
6074
- /** Detect free variable `process` from Node.js. */
6075
- var freeProcess = moduleExports && freeGlobal.process;
6211
+ /** Detect the popular CommonJS extension `module.exports`. */
6212
+ var moduleExports = freeModule && freeModule.exports === freeExports;
6076
6213
 
6077
- /** Used to access faster Node.js helpers. */
6078
- var nodeUtil = (function() {
6079
- try {
6080
- // Use `util.types` for Node.js 10+.
6081
- var types = freeModule && freeModule.require && freeModule.require('util').types;
6214
+ /** Detect free variable `process` from Node.js. */
6215
+ var freeProcess = moduleExports && freeGlobal.process;
6082
6216
 
6083
- if (types) {
6084
- return types;
6085
- }
6217
+ /** Used to access faster Node.js helpers. */
6218
+ var nodeUtil = (function() {
6219
+ try {
6220
+ // Use `util.types` for Node.js 10+.
6221
+ var types = freeModule && freeModule.require && freeModule.require('util').types;
6086
6222
 
6087
- // Legacy `process.binding('util')` for Node.js < 10.
6088
- return freeProcess && freeProcess.binding && freeProcess.binding('util');
6089
- } catch (e) {}
6090
- }());
6223
+ if (types) {
6224
+ return types;
6225
+ }
6226
+
6227
+ // Legacy `process.binding('util')` for Node.js < 10.
6228
+ return freeProcess && freeProcess.binding && freeProcess.binding('util');
6229
+ } catch (e) {}
6230
+ }());
6091
6231
 
6092
- module.exports = nodeUtil;
6232
+ module.exports = nodeUtil;
6093
6233
  } (_nodeUtil, _nodeUtilExports));
6234
+ return _nodeUtilExports;
6235
+ }
6094
6236
 
6095
6237
  var isTypedArray_1;
6096
6238
  var hasRequiredIsTypedArray;
@@ -6099,8 +6241,8 @@ function requireIsTypedArray () {
6099
6241
  if (hasRequiredIsTypedArray) return isTypedArray_1;
6100
6242
  hasRequiredIsTypedArray = 1;
6101
6243
  var baseIsTypedArray = require_baseIsTypedArray(),
6102
- baseUnary = _baseUnary,
6103
- nodeUtil = _nodeUtilExports;
6244
+ baseUnary = require_baseUnary(),
6245
+ nodeUtil = require_nodeUtil();
6104
6246
 
6105
6247
  /* Node.js helper references. */
6106
6248
  var nodeIsTypedArray = nodeUtil && nodeUtil.isTypedArray;
@@ -6128,55 +6270,63 @@ function requireIsTypedArray () {
6128
6270
  return isTypedArray_1;
6129
6271
  }
6130
6272
 
6131
- var baseTimes = _baseTimes,
6132
- isArguments$2 = requireIsArguments(),
6133
- isArray$f = isArray_1,
6134
- isBuffer$4 = isBufferExports,
6135
- isIndex$1 = require_isIndex(),
6136
- isTypedArray$1 = requireIsTypedArray();
6273
+ var _arrayLikeKeys;
6274
+ var hasRequired_arrayLikeKeys;
6137
6275
 
6138
- /** Used for built-in method references. */
6139
- var objectProto$7 = Object.prototype;
6276
+ function require_arrayLikeKeys () {
6277
+ if (hasRequired_arrayLikeKeys) return _arrayLikeKeys;
6278
+ hasRequired_arrayLikeKeys = 1;
6279
+ var baseTimes = require_baseTimes(),
6280
+ isArguments = requireIsArguments(),
6281
+ isArray = isArray_1,
6282
+ isBuffer = requireIsBuffer(),
6283
+ isIndex = require_isIndex(),
6284
+ isTypedArray = requireIsTypedArray();
6140
6285
 
6141
- /** Used to check objects for own properties. */
6142
- var hasOwnProperty$5 = objectProto$7.hasOwnProperty;
6286
+ /** Used for built-in method references. */
6287
+ var objectProto = Object.prototype;
6143
6288
 
6144
- /**
6145
- * Creates an array of the enumerable property names of the array-like `value`.
6146
- *
6147
- * @private
6148
- * @param {*} value The value to query.
6149
- * @param {boolean} inherited Specify returning inherited property names.
6150
- * @returns {Array} Returns the array of property names.
6151
- */
6152
- function arrayLikeKeys$1(value, inherited) {
6153
- var isArr = isArray$f(value),
6154
- isArg = !isArr && isArguments$2(value),
6155
- isBuff = !isArr && !isArg && isBuffer$4(value),
6156
- isType = !isArr && !isArg && !isBuff && isTypedArray$1(value),
6157
- skipIndexes = isArr || isArg || isBuff || isType,
6158
- result = skipIndexes ? baseTimes(value.length, String) : [],
6159
- length = result.length;
6289
+ /** Used to check objects for own properties. */
6290
+ var hasOwnProperty = objectProto.hasOwnProperty;
6160
6291
 
6161
- for (var key in value) {
6162
- if ((inherited || hasOwnProperty$5.call(value, key)) &&
6163
- !(skipIndexes && (
6164
- // Safari 9 has enumerable `arguments.length` in strict mode.
6165
- key == 'length' ||
6166
- // Node.js 0.10 has enumerable non-index properties on buffers.
6167
- (isBuff && (key == 'offset' || key == 'parent')) ||
6168
- // PhantomJS 2 has enumerable non-index properties on typed arrays.
6169
- (isType && (key == 'buffer' || key == 'byteLength' || key == 'byteOffset')) ||
6170
- // Skip index properties.
6171
- isIndex$1(key, length)
6172
- ))) {
6173
- result.push(key);
6174
- }
6175
- }
6176
- return result;
6177
- }
6292
+ /**
6293
+ * Creates an array of the enumerable property names of the array-like `value`.
6294
+ *
6295
+ * @private
6296
+ * @param {*} value The value to query.
6297
+ * @param {boolean} inherited Specify returning inherited property names.
6298
+ * @returns {Array} Returns the array of property names.
6299
+ */
6300
+ function arrayLikeKeys(value, inherited) {
6301
+ var isArr = isArray(value),
6302
+ isArg = !isArr && isArguments(value),
6303
+ isBuff = !isArr && !isArg && isBuffer(value),
6304
+ isType = !isArr && !isArg && !isBuff && isTypedArray(value),
6305
+ skipIndexes = isArr || isArg || isBuff || isType,
6306
+ result = skipIndexes ? baseTimes(value.length, String) : [],
6307
+ length = result.length;
6308
+
6309
+ for (var key in value) {
6310
+ if ((inherited || hasOwnProperty.call(value, key)) &&
6311
+ !(skipIndexes && (
6312
+ // Safari 9 has enumerable `arguments.length` in strict mode.
6313
+ key == 'length' ||
6314
+ // Node.js 0.10 has enumerable non-index properties on buffers.
6315
+ (isBuff && (key == 'offset' || key == 'parent')) ||
6316
+ // PhantomJS 2 has enumerable non-index properties on typed arrays.
6317
+ (isType && (key == 'buffer' || key == 'byteLength' || key == 'byteOffset')) ||
6318
+ // Skip index properties.
6319
+ isIndex(key, length)
6320
+ ))) {
6321
+ result.push(key);
6322
+ }
6323
+ }
6324
+ return result;
6325
+ }
6178
6326
 
6179
- var _arrayLikeKeys = arrayLikeKeys$1;
6327
+ _arrayLikeKeys = arrayLikeKeys;
6328
+ return _arrayLikeKeys;
6329
+ }
6180
6330
 
6181
6331
  /** Used for built-in method references. */
6182
6332
 
@@ -6189,14 +6339,14 @@ var objectProto$6 = Object.prototype;
6189
6339
  * @param {*} value The value to check.
6190
6340
  * @returns {boolean} Returns `true` if `value` is a prototype, else `false`.
6191
6341
  */
6192
- function isPrototype$2(value) {
6342
+ function isPrototype$1(value) {
6193
6343
  var Ctor = value && value.constructor,
6194
6344
  proto = (typeof Ctor == 'function' && Ctor.prototype) || objectProto$6;
6195
6345
 
6196
6346
  return value === proto;
6197
6347
  }
6198
6348
 
6199
- var _isPrototype = isPrototype$2;
6349
+ var _isPrototype = isPrototype$1;
6200
6350
 
6201
6351
  /**
6202
6352
  * Creates a unary function that invokes `func` with its argument transformed.
@@ -6222,7 +6372,7 @@ var nativeKeys$1 = overArg$1(Object.keys, Object);
6222
6372
 
6223
6373
  var _nativeKeys = nativeKeys$1;
6224
6374
 
6225
- var isPrototype$1 = _isPrototype,
6375
+ var isPrototype = _isPrototype,
6226
6376
  nativeKeys = _nativeKeys;
6227
6377
 
6228
6378
  /** Used for built-in method references. */
@@ -6239,7 +6389,7 @@ var hasOwnProperty$4 = objectProto$5.hasOwnProperty;
6239
6389
  * @returns {Array} Returns the array of property names.
6240
6390
  */
6241
6391
  function baseKeys$1(object) {
6242
- if (!isPrototype$1(object)) {
6392
+ if (!isPrototype(object)) {
6243
6393
  return nativeKeys(object);
6244
6394
  }
6245
6395
  var result = [];
@@ -6253,43 +6403,51 @@ function baseKeys$1(object) {
6253
6403
 
6254
6404
  var _baseKeys = baseKeys$1;
6255
6405
 
6256
- var isFunction$1 = isFunction_1,
6257
- isLength$1 = isLength_1;
6406
+ var isArrayLike_1;
6407
+ var hasRequiredIsArrayLike;
6258
6408
 
6259
- /**
6260
- * Checks if `value` is array-like. A value is considered array-like if it's
6261
- * not a function and has a `value.length` that's an integer greater than or
6262
- * equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`.
6263
- *
6264
- * @static
6265
- * @memberOf _
6266
- * @since 4.0.0
6267
- * @category Lang
6268
- * @param {*} value The value to check.
6269
- * @returns {boolean} Returns `true` if `value` is array-like, else `false`.
6270
- * @example
6271
- *
6272
- * _.isArrayLike([1, 2, 3]);
6273
- * // => true
6274
- *
6275
- * _.isArrayLike(document.body.children);
6276
- * // => true
6277
- *
6278
- * _.isArrayLike('abc');
6279
- * // => true
6280
- *
6281
- * _.isArrayLike(_.noop);
6282
- * // => false
6283
- */
6284
- function isArrayLike$1(value) {
6285
- return value != null && isLength$1(value.length) && !isFunction$1(value);
6286
- }
6409
+ function requireIsArrayLike () {
6410
+ if (hasRequiredIsArrayLike) return isArrayLike_1;
6411
+ hasRequiredIsArrayLike = 1;
6412
+ var isFunction = isFunction_1,
6413
+ isLength = requireIsLength();
6287
6414
 
6288
- var isArrayLike_1 = isArrayLike$1;
6415
+ /**
6416
+ * Checks if `value` is array-like. A value is considered array-like if it's
6417
+ * not a function and has a `value.length` that's an integer greater than or
6418
+ * equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`.
6419
+ *
6420
+ * @static
6421
+ * @memberOf _
6422
+ * @since 4.0.0
6423
+ * @category Lang
6424
+ * @param {*} value The value to check.
6425
+ * @returns {boolean} Returns `true` if `value` is array-like, else `false`.
6426
+ * @example
6427
+ *
6428
+ * _.isArrayLike([1, 2, 3]);
6429
+ * // => true
6430
+ *
6431
+ * _.isArrayLike(document.body.children);
6432
+ * // => true
6433
+ *
6434
+ * _.isArrayLike('abc');
6435
+ * // => true
6436
+ *
6437
+ * _.isArrayLike(_.noop);
6438
+ * // => false
6439
+ */
6440
+ function isArrayLike(value) {
6441
+ return value != null && isLength(value.length) && !isFunction(value);
6442
+ }
6443
+
6444
+ isArrayLike_1 = isArrayLike;
6445
+ return isArrayLike_1;
6446
+ }
6289
6447
 
6290
- var arrayLikeKeys = _arrayLikeKeys,
6448
+ var arrayLikeKeys = require_arrayLikeKeys(),
6291
6449
  baseKeys = _baseKeys,
6292
- isArrayLike = isArrayLike_1;
6450
+ isArrayLike = requireIsArrayLike();
6293
6451
 
6294
6452
  /**
6295
6453
  * Creates an array of the own enumerable property names of `object`.
@@ -6670,10 +6828,10 @@ function require_stackHas () {
6670
6828
  }
6671
6829
 
6672
6830
  var getNative$3 = _getNative,
6673
- root$4 = _root;
6831
+ root$3 = require_root();
6674
6832
 
6675
6833
  /* Built-in method references that are verified to be native. */
6676
- var Map$2 = getNative$3(root$4, 'Map');
6834
+ var Map$2 = getNative$3(root$3, 'Map');
6677
6835
 
6678
6836
  var _Map = Map$2;
6679
6837
 
@@ -7233,7 +7391,7 @@ var hasRequired_baseKeysIn;
7233
7391
  function require_baseKeysIn () {
7234
7392
  if (hasRequired_baseKeysIn) return _baseKeysIn;
7235
7393
  hasRequired_baseKeysIn = 1;
7236
- var isObject = isObject_1,
7394
+ var isObject = requireIsObject(),
7237
7395
  isPrototype = _isPrototype,
7238
7396
  nativeKeysIn = require_nativeKeysIn();
7239
7397
 
@@ -7275,9 +7433,9 @@ var hasRequiredKeysIn;
7275
7433
  function requireKeysIn () {
7276
7434
  if (hasRequiredKeysIn) return keysIn_1;
7277
7435
  hasRequiredKeysIn = 1;
7278
- var arrayLikeKeys = _arrayLikeKeys,
7436
+ var arrayLikeKeys = require_arrayLikeKeys(),
7279
7437
  baseKeysIn = require_baseKeysIn(),
7280
- isArrayLike = isArrayLike_1;
7438
+ isArrayLike = requireIsArrayLike();
7281
7439
 
7282
7440
  /**
7283
7441
  * Creates an array of the own and inherited enumerable property names of `object`.
@@ -7334,43 +7492,50 @@ var _cloneBuffer = {
7334
7492
  set exports(v){ _cloneBufferExports = v; },
7335
7493
  };
7336
7494
 
7337
- (function (module, exports) {
7338
- var root = _root;
7339
-
7340
- /** Detect free variable `exports`. */
7341
- var freeExports = exports && !exports.nodeType && exports;
7342
-
7343
- /** Detect free variable `module`. */
7344
- var freeModule = freeExports && 'object' == 'object' && module && !module.nodeType && module;
7345
-
7346
- /** Detect the popular CommonJS extension `module.exports`. */
7347
- var moduleExports = freeModule && freeModule.exports === freeExports;
7348
-
7349
- /** Built-in value references. */
7350
- var Buffer = moduleExports ? root.Buffer : undefined,
7351
- allocUnsafe = Buffer ? Buffer.allocUnsafe : undefined;
7352
-
7353
- /**
7354
- * Creates a clone of `buffer`.
7355
- *
7356
- * @private
7357
- * @param {Buffer} buffer The buffer to clone.
7358
- * @param {boolean} [isDeep] Specify a deep clone.
7359
- * @returns {Buffer} Returns the cloned buffer.
7360
- */
7361
- function cloneBuffer(buffer, isDeep) {
7362
- if (isDeep) {
7363
- return buffer.slice();
7364
- }
7365
- var length = buffer.length,
7366
- result = allocUnsafe ? allocUnsafe(length) : new buffer.constructor(length);
7367
-
7368
- buffer.copy(result);
7369
- return result;
7370
- }
7495
+ var hasRequired_cloneBuffer;
7496
+
7497
+ function require_cloneBuffer () {
7498
+ if (hasRequired_cloneBuffer) return _cloneBufferExports;
7499
+ hasRequired_cloneBuffer = 1;
7500
+ (function (module, exports) {
7501
+ var root = require_root();
7502
+
7503
+ /** Detect free variable `exports`. */
7504
+ var freeExports = exports && !exports.nodeType && exports;
7505
+
7506
+ /** Detect free variable `module`. */
7507
+ var freeModule = freeExports && 'object' == 'object' && module && !module.nodeType && module;
7508
+
7509
+ /** Detect the popular CommonJS extension `module.exports`. */
7510
+ var moduleExports = freeModule && freeModule.exports === freeExports;
7511
+
7512
+ /** Built-in value references. */
7513
+ var Buffer = moduleExports ? root.Buffer : undefined,
7514
+ allocUnsafe = Buffer ? Buffer.allocUnsafe : undefined;
7515
+
7516
+ /**
7517
+ * Creates a clone of `buffer`.
7518
+ *
7519
+ * @private
7520
+ * @param {Buffer} buffer The buffer to clone.
7521
+ * @param {boolean} [isDeep] Specify a deep clone.
7522
+ * @returns {Buffer} Returns the cloned buffer.
7523
+ */
7524
+ function cloneBuffer(buffer, isDeep) {
7525
+ if (isDeep) {
7526
+ return buffer.slice();
7527
+ }
7528
+ var length = buffer.length,
7529
+ result = allocUnsafe ? allocUnsafe(length) : new buffer.constructor(length);
7530
+
7531
+ buffer.copy(result);
7532
+ return result;
7533
+ }
7371
7534
 
7372
- module.exports = cloneBuffer;
7535
+ module.exports = cloneBuffer;
7373
7536
  } (_cloneBuffer, _cloneBufferExports));
7537
+ return _cloneBufferExports;
7538
+ }
7374
7539
 
7375
7540
  /**
7376
7541
  * A specialized version of `_.filter` for arrays without support for
@@ -7497,12 +7662,12 @@ var _arrayPush = arrayPush$3;
7497
7662
  var overArg = _overArg;
7498
7663
 
7499
7664
  /** Built-in value references. */
7500
- var getPrototype$3 = overArg(Object.getPrototypeOf, Object);
7665
+ var getPrototype$2 = overArg(Object.getPrototypeOf, Object);
7501
7666
 
7502
- var _getPrototype = getPrototype$3;
7667
+ var _getPrototype = getPrototype$2;
7503
7668
 
7504
7669
  var arrayPush$2 = _arrayPush,
7505
- getPrototype$2 = _getPrototype,
7670
+ getPrototype$1 = _getPrototype,
7506
7671
  getSymbols$1 = _getSymbols,
7507
7672
  stubArray = stubArray_1;
7508
7673
 
@@ -7520,7 +7685,7 @@ var getSymbolsIn$2 = !nativeGetSymbols ? stubArray : function(object) {
7520
7685
  var result = [];
7521
7686
  while (object) {
7522
7687
  arrayPush$2(result, getSymbols$1(object));
7523
- object = getPrototype$2(object);
7688
+ object = getPrototype$1(object);
7524
7689
  }
7525
7690
  return result;
7526
7691
  };
@@ -7601,26 +7766,26 @@ function getAllKeysIn$1(object) {
7601
7766
  var _getAllKeysIn = getAllKeysIn$1;
7602
7767
 
7603
7768
  var getNative$2 = _getNative,
7604
- root$3 = _root;
7769
+ root$2 = require_root();
7605
7770
 
7606
7771
  /* Built-in method references that are verified to be native. */
7607
- var DataView$2 = getNative$2(root$3, 'DataView');
7772
+ var DataView$2 = getNative$2(root$2, 'DataView');
7608
7773
 
7609
7774
  var _DataView = DataView$2;
7610
7775
 
7611
7776
  var getNative$1 = _getNative,
7612
- root$2 = _root;
7777
+ root$1 = require_root();
7613
7778
 
7614
7779
  /* Built-in method references that are verified to be native. */
7615
- var Promise$2 = getNative$1(root$2, 'Promise');
7780
+ var Promise$2 = getNative$1(root$1, 'Promise');
7616
7781
 
7617
7782
  var _Promise = Promise$2;
7618
7783
 
7619
7784
  var getNative = _getNative,
7620
- root$1 = _root;
7785
+ root = require_root();
7621
7786
 
7622
7787
  /* Built-in method references that are verified to be native. */
7623
- var Set$2 = getNative(root$1, 'Set');
7788
+ var Set$2 = getNative(root, 'Set');
7624
7789
 
7625
7790
  var _Set = Set$2;
7626
7791
 
@@ -7711,31 +7876,47 @@ function initCloneArray$1(array) {
7711
7876
 
7712
7877
  var _initCloneArray = initCloneArray$1;
7713
7878
 
7714
- var root = _root;
7715
-
7716
- /** Built-in value references. */
7717
- var Uint8Array$3 = root.Uint8Array;
7879
+ var _Uint8Array;
7880
+ var hasRequired_Uint8Array;
7718
7881
 
7719
- var _Uint8Array = Uint8Array$3;
7882
+ function require_Uint8Array () {
7883
+ if (hasRequired_Uint8Array) return _Uint8Array;
7884
+ hasRequired_Uint8Array = 1;
7885
+ var root = require_root();
7720
7886
 
7721
- var Uint8Array$2 = _Uint8Array;
7887
+ /** Built-in value references. */
7888
+ var Uint8Array = root.Uint8Array;
7722
7889
 
7723
- /**
7724
- * Creates a clone of `arrayBuffer`.
7725
- *
7726
- * @private
7727
- * @param {ArrayBuffer} arrayBuffer The array buffer to clone.
7728
- * @returns {ArrayBuffer} Returns the cloned array buffer.
7729
- */
7730
- function cloneArrayBuffer$2(arrayBuffer) {
7731
- var result = new arrayBuffer.constructor(arrayBuffer.byteLength);
7732
- new Uint8Array$2(result).set(new Uint8Array$2(arrayBuffer));
7733
- return result;
7890
+ _Uint8Array = Uint8Array;
7891
+ return _Uint8Array;
7734
7892
  }
7735
7893
 
7736
- var _cloneArrayBuffer = cloneArrayBuffer$2;
7894
+ var _cloneArrayBuffer;
7895
+ var hasRequired_cloneArrayBuffer;
7896
+
7897
+ function require_cloneArrayBuffer () {
7898
+ if (hasRequired_cloneArrayBuffer) return _cloneArrayBuffer;
7899
+ hasRequired_cloneArrayBuffer = 1;
7900
+ var Uint8Array = require_Uint8Array();
7901
+
7902
+ /**
7903
+ * Creates a clone of `arrayBuffer`.
7904
+ *
7905
+ * @private
7906
+ * @param {ArrayBuffer} arrayBuffer The array buffer to clone.
7907
+ * @returns {ArrayBuffer} Returns the cloned array buffer.
7908
+ */
7909
+ function cloneArrayBuffer(arrayBuffer) {
7910
+ var result = new arrayBuffer.constructor(arrayBuffer.byteLength);
7911
+ new Uint8Array(result).set(new Uint8Array(arrayBuffer));
7912
+ return result;
7913
+ }
7914
+
7915
+ _cloneArrayBuffer = cloneArrayBuffer;
7916
+ return _cloneArrayBuffer;
7917
+ }
7737
7918
 
7738
- var cloneArrayBuffer$1 = _cloneArrayBuffer;
7919
+ var cloneArrayBuffer$1 = require_cloneArrayBuffer();
7739
7920
 
7740
7921
  /**
7741
7922
  * Creates a clone of `dataView`.
@@ -7796,7 +7977,7 @@ var hasRequired_cloneTypedArray;
7796
7977
  function require_cloneTypedArray () {
7797
7978
  if (hasRequired_cloneTypedArray) return _cloneTypedArray;
7798
7979
  hasRequired_cloneTypedArray = 1;
7799
- var cloneArrayBuffer = _cloneArrayBuffer;
7980
+ var cloneArrayBuffer = require_cloneArrayBuffer();
7800
7981
 
7801
7982
  /**
7802
7983
  * Creates a clone of `typedArray`.
@@ -7815,7 +7996,7 @@ function require_cloneTypedArray () {
7815
7996
  return _cloneTypedArray;
7816
7997
  }
7817
7998
 
7818
- var cloneArrayBuffer = _cloneArrayBuffer,
7999
+ var cloneArrayBuffer = require_cloneArrayBuffer(),
7819
8000
  cloneDataView = _cloneDataView,
7820
8001
  cloneRegExp = _cloneRegExp,
7821
8002
  cloneSymbol = _cloneSymbol,
@@ -7893,24 +8074,32 @@ function initCloneByTag$1(object, tag, isDeep) {
7893
8074
 
7894
8075
  var _initCloneByTag = initCloneByTag$1;
7895
8076
 
7896
- var baseCreate = _baseCreate,
7897
- getPrototype$1 = _getPrototype,
7898
- isPrototype = _isPrototype;
8077
+ var _initCloneObject;
8078
+ var hasRequired_initCloneObject;
7899
8079
 
7900
- /**
7901
- * Initializes an object clone.
7902
- *
7903
- * @private
7904
- * @param {Object} object The object to clone.
7905
- * @returns {Object} Returns the initialized clone.
7906
- */
7907
- function initCloneObject$1(object) {
7908
- return (typeof object.constructor == 'function' && !isPrototype(object))
7909
- ? baseCreate(getPrototype$1(object))
7910
- : {};
7911
- }
8080
+ function require_initCloneObject () {
8081
+ if (hasRequired_initCloneObject) return _initCloneObject;
8082
+ hasRequired_initCloneObject = 1;
8083
+ var baseCreate = require_baseCreate(),
8084
+ getPrototype = _getPrototype,
8085
+ isPrototype = _isPrototype;
8086
+
8087
+ /**
8088
+ * Initializes an object clone.
8089
+ *
8090
+ * @private
8091
+ * @param {Object} object The object to clone.
8092
+ * @returns {Object} Returns the initialized clone.
8093
+ */
8094
+ function initCloneObject(object) {
8095
+ return (typeof object.constructor == 'function' && !isPrototype(object))
8096
+ ? baseCreate(getPrototype(object))
8097
+ : {};
8098
+ }
7912
8099
 
7913
- var _initCloneObject = initCloneObject$1;
8100
+ _initCloneObject = initCloneObject;
8101
+ return _initCloneObject;
8102
+ }
7914
8103
 
7915
8104
  var getTag$4 = _getTag,
7916
8105
  isObjectLike$5 = isObjectLike_1;
@@ -7932,8 +8121,8 @@ function baseIsMap$1(value) {
7932
8121
  var _baseIsMap = baseIsMap$1;
7933
8122
 
7934
8123
  var baseIsMap = _baseIsMap,
7935
- baseUnary$1 = _baseUnary,
7936
- nodeUtil$1 = _nodeUtilExports;
8124
+ baseUnary$1 = require_baseUnary(),
8125
+ nodeUtil$1 = require_nodeUtil();
7937
8126
 
7938
8127
  /* Node.js helper references. */
7939
8128
  var nodeIsMap = nodeUtil$1 && nodeUtil$1.isMap;
@@ -7979,8 +8168,8 @@ function baseIsSet$1(value) {
7979
8168
  var _baseIsSet = baseIsSet$1;
7980
8169
 
7981
8170
  var baseIsSet = _baseIsSet,
7982
- baseUnary = _baseUnary,
7983
- nodeUtil = _nodeUtilExports;
8171
+ baseUnary = require_baseUnary(),
8172
+ nodeUtil = require_nodeUtil();
7984
8173
 
7985
8174
  /* Node.js helper references. */
7986
8175
  var nodeIsSet = nodeUtil && nodeUtil.isSet;
@@ -8011,7 +8200,7 @@ var Stack$2 = require_Stack(),
8011
8200
  assignValue = _assignValue,
8012
8201
  baseAssign = _baseAssign,
8013
8202
  baseAssignIn = _baseAssignIn,
8014
- cloneBuffer = _cloneBufferExports,
8203
+ cloneBuffer = require_cloneBuffer(),
8015
8204
  copyArray$1 = _copyArray,
8016
8205
  copySymbols = _copySymbols,
8017
8206
  copySymbolsIn = _copySymbolsIn,
@@ -8020,11 +8209,11 @@ var Stack$2 = require_Stack(),
8020
8209
  getTag$2 = _getTag,
8021
8210
  initCloneArray = _initCloneArray,
8022
8211
  initCloneByTag = _initCloneByTag,
8023
- initCloneObject = _initCloneObject,
8212
+ initCloneObject = require_initCloneObject(),
8024
8213
  isArray$d = isArray_1,
8025
- isBuffer$3 = isBufferExports,
8214
+ isBuffer$3 = requireIsBuffer(),
8026
8215
  isMap$1 = isMap_1,
8027
- isObject$2 = isObject_1,
8216
+ isObject$2 = requireIsObject(),
8028
8217
  isSet$1 = isSet_1,
8029
8218
  keys$1 = keys_1,
8030
8219
  keysIn = requireKeysIn();
@@ -8628,7 +8817,7 @@ function setToArray$1(set) {
8628
8817
  var _setToArray = setToArray$1;
8629
8818
 
8630
8819
  var Symbol$3 = _Symbol,
8631
- Uint8Array$1 = _Uint8Array,
8820
+ Uint8Array$1 = require_Uint8Array(),
8632
8821
  eq = requireEq(),
8633
8822
  equalArrays$1 = _equalArrays,
8634
8823
  mapToArray = _mapToArray,
@@ -8837,7 +9026,7 @@ var Stack$1 = require_Stack(),
8837
9026
  equalObjects = _equalObjects,
8838
9027
  getTag = _getTag,
8839
9028
  isArray$c = isArray_1,
8840
- isBuffer$2 = isBufferExports,
9029
+ isBuffer$2 = requireIsBuffer(),
8841
9030
  isTypedArray = requireIsTypedArray();
8842
9031
 
8843
9032
  /** Used to compose bitmasks for value comparisons. */
@@ -9007,7 +9196,7 @@ function baseIsMatch$1(object, source, matchData, customizer) {
9007
9196
 
9008
9197
  var _baseIsMatch = baseIsMatch$1;
9009
9198
 
9010
- var isObject$1 = isObject_1;
9199
+ var isObject$1 = requireIsObject();
9011
9200
 
9012
9201
  /**
9013
9202
  * Checks if `value` is suitable for strict equality comparisons, i.e. `===`.
@@ -9464,7 +9653,7 @@ var castPath = _castPath,
9464
9653
  isArguments$1 = requireIsArguments(),
9465
9654
  isArray$8 = isArray_1,
9466
9655
  isIndex = require_isIndex(),
9467
- isLength = isLength_1,
9656
+ isLength = requireIsLength(),
9468
9657
  toKey$3 = _toKey;
9469
9658
 
9470
9659
  /**
@@ -9637,7 +9826,7 @@ var property_1 = property$1;
9637
9826
 
9638
9827
  var baseMatches = _baseMatches,
9639
9828
  baseMatchesProperty = _baseMatchesProperty,
9640
- identity = identity_1,
9829
+ identity = requireIdentity(),
9641
9830
  isArray$7 = isArray_1,
9642
9831
  property = property_1;
9643
9832
 
@@ -9804,46 +9993,54 @@ function flatten$1(array) {
9804
9993
 
9805
9994
  var flatten_1 = flatten$1;
9806
9995
 
9807
- var apply = _apply;
9996
+ var _overRest;
9997
+ var hasRequired_overRest;
9808
9998
 
9809
- /* Built-in method references for those with the same name as other `lodash` methods. */
9810
- var nativeMax = Math.max;
9999
+ function require_overRest () {
10000
+ if (hasRequired_overRest) return _overRest;
10001
+ hasRequired_overRest = 1;
10002
+ var apply = require_apply();
9811
10003
 
9812
- /**
9813
- * A specialized version of `baseRest` which transforms the rest array.
9814
- *
9815
- * @private
9816
- * @param {Function} func The function to apply a rest parameter to.
9817
- * @param {number} [start=func.length-1] The start position of the rest parameter.
9818
- * @param {Function} transform The rest array transform.
9819
- * @returns {Function} Returns the new function.
9820
- */
9821
- function overRest$1(func, start, transform) {
9822
- start = nativeMax(start === undefined ? (func.length - 1) : start, 0);
9823
- return function() {
9824
- var args = arguments,
9825
- index = -1,
9826
- length = nativeMax(args.length - start, 0),
9827
- array = Array(length);
10004
+ /* Built-in method references for those with the same name as other `lodash` methods. */
10005
+ var nativeMax = Math.max;
9828
10006
 
9829
- while (++index < length) {
9830
- array[index] = args[start + index];
9831
- }
9832
- index = -1;
9833
- var otherArgs = Array(start + 1);
9834
- while (++index < start) {
9835
- otherArgs[index] = args[index];
9836
- }
9837
- otherArgs[start] = transform(array);
9838
- return apply(func, this, otherArgs);
9839
- };
9840
- }
10007
+ /**
10008
+ * A specialized version of `baseRest` which transforms the rest array.
10009
+ *
10010
+ * @private
10011
+ * @param {Function} func The function to apply a rest parameter to.
10012
+ * @param {number} [start=func.length-1] The start position of the rest parameter.
10013
+ * @param {Function} transform The rest array transform.
10014
+ * @returns {Function} Returns the new function.
10015
+ */
10016
+ function overRest(func, start, transform) {
10017
+ start = nativeMax(start === undefined ? (func.length - 1) : start, 0);
10018
+ return function() {
10019
+ var args = arguments,
10020
+ index = -1,
10021
+ length = nativeMax(args.length - start, 0),
10022
+ array = Array(length);
9841
10023
 
9842
- var _overRest = overRest$1;
10024
+ while (++index < length) {
10025
+ array[index] = args[start + index];
10026
+ }
10027
+ index = -1;
10028
+ var otherArgs = Array(start + 1);
10029
+ while (++index < start) {
10030
+ otherArgs[index] = args[index];
10031
+ }
10032
+ otherArgs[start] = transform(array);
10033
+ return apply(func, this, otherArgs);
10034
+ };
10035
+ }
10036
+
10037
+ _overRest = overRest;
10038
+ return _overRest;
10039
+ }
9843
10040
 
9844
10041
  var flatten = flatten_1,
9845
- overRest = _overRest,
9846
- setToString = _setToString;
10042
+ overRest = require_overRest(),
10043
+ setToString = require_setToString();
9847
10044
 
9848
10045
  /**
9849
10046
  * A specialized version of `baseRest` which flattens the rest array.
@@ -9968,7 +10165,7 @@ var hasRequired_assignMergeValue;
9968
10165
  function require_assignMergeValue () {
9969
10166
  if (hasRequired_assignMergeValue) return _assignMergeValue;
9970
10167
  hasRequired_assignMergeValue = 1;
9971
- var baseAssignValue = _baseAssignValue,
10168
+ var baseAssignValue = require_baseAssignValue(),
9972
10169
  eq = requireEq();
9973
10170
 
9974
10171
  /**
@@ -10057,7 +10254,7 @@ var hasRequiredIsArrayLikeObject;
10057
10254
  function requireIsArrayLikeObject () {
10058
10255
  if (hasRequiredIsArrayLikeObject) return isArrayLikeObject_1;
10059
10256
  hasRequiredIsArrayLikeObject = 1;
10060
- var isArrayLike = isArrayLike_1,
10257
+ var isArrayLike = requireIsArrayLike(),
10061
10258
  isObjectLike = isObjectLike_1;
10062
10259
 
10063
10260
  /**
@@ -10172,16 +10369,16 @@ function require_baseMergeDeep () {
10172
10369
  if (hasRequired_baseMergeDeep) return _baseMergeDeep;
10173
10370
  hasRequired_baseMergeDeep = 1;
10174
10371
  var assignMergeValue = require_assignMergeValue(),
10175
- cloneBuffer = _cloneBufferExports,
10372
+ cloneBuffer = require_cloneBuffer(),
10176
10373
  cloneTypedArray = require_cloneTypedArray(),
10177
10374
  copyArray = _copyArray,
10178
- initCloneObject = _initCloneObject,
10375
+ initCloneObject = require_initCloneObject(),
10179
10376
  isArguments = requireIsArguments(),
10180
10377
  isArray = isArray_1,
10181
10378
  isArrayLikeObject = requireIsArrayLikeObject(),
10182
- isBuffer = isBufferExports,
10379
+ isBuffer = requireIsBuffer(),
10183
10380
  isFunction = isFunction_1,
10184
- isObject = isObject_1,
10381
+ isObject = requireIsObject(),
10185
10382
  isPlainObject = isPlainObject_1,
10186
10383
  isTypedArray = requireIsTypedArray(),
10187
10384
  safeGet = require_safeGet(),
@@ -10278,7 +10475,7 @@ function require_baseMerge () {
10278
10475
  assignMergeValue = require_assignMergeValue(),
10279
10476
  baseFor = require_baseFor(),
10280
10477
  baseMergeDeep = require_baseMergeDeep(),
10281
- isObject = isObject_1,
10478
+ isObject = requireIsObject(),
10282
10479
  keysIn = requireKeysIn(),
10283
10480
  safeGet = require_safeGet();
10284
10481
 
@@ -10325,9 +10522,9 @@ var hasRequired_baseRest;
10325
10522
  function require_baseRest () {
10326
10523
  if (hasRequired_baseRest) return _baseRest;
10327
10524
  hasRequired_baseRest = 1;
10328
- var identity = identity_1,
10329
- overRest = _overRest,
10330
- setToString = _setToString;
10525
+ var identity = requireIdentity(),
10526
+ overRest = require_overRest(),
10527
+ setToString = require_setToString();
10331
10528
 
10332
10529
  /**
10333
10530
  * The base implementation of `_.rest` which doesn't validate or coerce arguments.
@@ -10352,9 +10549,9 @@ function require_isIterateeCall () {
10352
10549
  if (hasRequired_isIterateeCall) return _isIterateeCall;
10353
10550
  hasRequired_isIterateeCall = 1;
10354
10551
  var eq = requireEq(),
10355
- isArrayLike = isArrayLike_1,
10552
+ isArrayLike = requireIsArrayLike(),
10356
10553
  isIndex = require_isIndex(),
10357
- isObject = isObject_1;
10554
+ isObject = requireIsObject();
10358
10555
 
10359
10556
  /**
10360
10557
  * Checks if the given arguments are from an iteratee call.