github.com/mweagle/Sparta@v1.15.0/resources/describe/dagre-0.8.4/dist/dagre.min.js (about) 1 (function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.dagre=f()}})(function(){var define,module,exports;return function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r}()({1:[function(require,module,exports){ 2 /* 3 Copyright (c) 2012-2014 Chris Pettitt 4 5 Permission is hereby granted, free of charge, to any person obtaining a copy 6 of this software and associated documentation files (the "Software"), to deal 7 in the Software without restriction, including without limitation the rights 8 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 copies of the Software, and to permit persons to whom the Software is 10 furnished to do so, subject to the following conditions: 11 12 The above copyright notice and this permission notice shall be included in 13 all copies or substantial portions of the Software. 14 15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 THE SOFTWARE. 22 */ 23 module.exports={graphlib:require("./lib/graphlib"),layout:require("./lib/layout"),debug:require("./lib/debug"),util:{time:require("./lib/util").time,notime:require("./lib/util").notime},version:require("./lib/version")}},{"./lib/debug":6,"./lib/graphlib":7,"./lib/layout":9,"./lib/util":29,"./lib/version":30}],2:[function(require,module,exports){"use strict";var _=require("./lodash"),greedyFAS=require("./greedy-fas");module.exports={run:run,undo:undo};function run(g){var fas=g.graph().acyclicer==="greedy"?greedyFAS(g,weightFn(g)):dfsFAS(g);_.forEach(fas,function(e){var label=g.edge(e);g.removeEdge(e);label.forwardName=e.name;label.reversed=true;g.setEdge(e.w,e.v,label,_.uniqueId("rev"))});function weightFn(g){return function(e){return g.edge(e).weight}}}function dfsFAS(g){var fas=[],stack={},visited={};function dfs(v){if(_.has(visited,v)){return}visited[v]=true;stack[v]=true;_.forEach(g.outEdges(v),function(e){if(_.has(stack,e.w)){fas.push(e)}else{dfs(e.w)}});delete stack[v]}_.forEach(g.nodes(),dfs);return fas}function undo(g){_.forEach(g.edges(),function(e){var label=g.edge(e);if(label.reversed){g.removeEdge(e);var forwardName=label.forwardName;delete label.reversed;delete label.forwardName;g.setEdge(e.w,e.v,label,forwardName)}})}},{"./greedy-fas":8,"./lodash":10}],3:[function(require,module,exports){var _=require("./lodash"),util=require("./util");module.exports=addBorderSegments;function addBorderSegments(g){function dfs(v){var children=g.children(v),node=g.node(v);if(children.length){_.forEach(children,dfs)}if(_.has(node,"minRank")){node.borderLeft=[];node.borderRight=[];for(var rank=node.minRank,maxRank=node.maxRank+1;rank<maxRank;++rank){addBorderNode(g,"borderLeft","_bl",v,node,rank);addBorderNode(g,"borderRight","_br",v,node,rank)}}}_.forEach(g.children(),dfs)}function addBorderNode(g,prop,prefix,sg,sgNode,rank){var label={width:0,height:0,rank:rank,borderType:prop},prev=sgNode[prop][rank-1],curr=util.addDummyNode(g,"border",label,prefix);sgNode[prop][rank]=curr;g.setParent(curr,sg);if(prev){g.setEdge(prev,curr,{weight:1})}}},{"./lodash":10,"./util":29}],4:[function(require,module,exports){"use strict";var _=require("./lodash");module.exports={adjust:adjust,undo:undo};function adjust(g){var rankDir=g.graph().rankdir.toLowerCase();if(rankDir==="lr"||rankDir==="rl"){swapWidthHeight(g)}}function undo(g){var rankDir=g.graph().rankdir.toLowerCase();if(rankDir==="bt"||rankDir==="rl"){reverseY(g)}if(rankDir==="lr"||rankDir==="rl"){swapXY(g);swapWidthHeight(g)}}function swapWidthHeight(g){_.forEach(g.nodes(),function(v){swapWidthHeightOne(g.node(v))});_.forEach(g.edges(),function(e){swapWidthHeightOne(g.edge(e))})}function swapWidthHeightOne(attrs){var w=attrs.width;attrs.width=attrs.height;attrs.height=w}function reverseY(g){_.forEach(g.nodes(),function(v){reverseYOne(g.node(v))});_.forEach(g.edges(),function(e){var edge=g.edge(e);_.forEach(edge.points,reverseYOne);if(_.has(edge,"y")){reverseYOne(edge)}})}function reverseYOne(attrs){attrs.y=-attrs.y}function swapXY(g){_.forEach(g.nodes(),function(v){swapXYOne(g.node(v))});_.forEach(g.edges(),function(e){var edge=g.edge(e);_.forEach(edge.points,swapXYOne);if(_.has(edge,"x")){swapXYOne(edge)}})}function swapXYOne(attrs){var x=attrs.x;attrs.x=attrs.y;attrs.y=x}},{"./lodash":10}],5:[function(require,module,exports){ 24 /* 25 * Simple doubly linked list implementation derived from Cormen, et al., 26 * "Introduction to Algorithms". 27 */ 28 module.exports=List;function List(){var sentinel={};sentinel._next=sentinel._prev=sentinel;this._sentinel=sentinel}List.prototype.dequeue=function(){var sentinel=this._sentinel,entry=sentinel._prev;if(entry!==sentinel){unlink(entry);return entry}};List.prototype.enqueue=function(entry){var sentinel=this._sentinel;if(entry._prev&&entry._next){unlink(entry)}entry._next=sentinel._next;sentinel._next._prev=entry;sentinel._next=entry;entry._prev=sentinel};List.prototype.toString=function(){var strs=[],sentinel=this._sentinel,curr=sentinel._prev;while(curr!==sentinel){strs.push(JSON.stringify(curr,filterOutLinks));curr=curr._prev}return"["+strs.join(", ")+"]"};function unlink(entry){entry._prev._next=entry._next;entry._next._prev=entry._prev;delete entry._next;delete entry._prev}function filterOutLinks(k,v){if(k!=="_next"&&k!=="_prev"){return v}}},{}],6:[function(require,module,exports){var _=require("./lodash"),util=require("./util"),Graph=require("./graphlib").Graph;module.exports={debugOrdering:debugOrdering}; 29 /* istanbul ignore next */function debugOrdering(g){var layerMatrix=util.buildLayerMatrix(g);var h=new Graph({compound:true,multigraph:true}).setGraph({});_.forEach(g.nodes(),function(v){h.setNode(v,{label:v});h.setParent(v,"layer"+g.node(v).rank)});_.forEach(g.edges(),function(e){h.setEdge(e.v,e.w,{},e.name)});_.forEach(layerMatrix,function(layer,i){var layerV="layer"+i;h.setNode(layerV,{rank:"same"});_.reduce(layer,function(u,v){h.setEdge(u,v,{style:"invis"});return v})});return h}},{"./graphlib":7,"./lodash":10,"./util":29}],7:[function(require,module,exports){ 30 /* global window */ 31 var graphlib;if(typeof require==="function"){try{graphlib=require("graphlib")}catch(e){}}if(!graphlib){graphlib=window.graphlib}module.exports=graphlib},{graphlib:31}],8:[function(require,module,exports){var _=require("./lodash"),Graph=require("./graphlib").Graph,List=require("./data/list"); 32 /* 33 * A greedy heuristic for finding a feedback arc set for a graph. A feedback 34 * arc set is a set of edges that can be removed to make a graph acyclic. 35 * The algorithm comes from: P. Eades, X. Lin, and W. F. Smyth, "A fast and 36 * effective heuristic for the feedback arc set problem." This implementation 37 * adjusts that from the paper to allow for weighted edges. 38 */module.exports=greedyFAS;var DEFAULT_WEIGHT_FN=_.constant(1);function greedyFAS(g,weightFn){if(g.nodeCount()<=1){return[]}var state=buildState(g,weightFn||DEFAULT_WEIGHT_FN);var results=doGreedyFAS(state.graph,state.buckets,state.zeroIdx); 39 // Expand multi-edges 40 return _.flatten(_.map(results,function(e){return g.outEdges(e.v,e.w)}),true)}function doGreedyFAS(g,buckets,zeroIdx){var results=[],sources=buckets[buckets.length-1],sinks=buckets[0];var entry;while(g.nodeCount()){while(entry=sinks.dequeue()){removeNode(g,buckets,zeroIdx,entry)}while(entry=sources.dequeue()){removeNode(g,buckets,zeroIdx,entry)}if(g.nodeCount()){for(var i=buckets.length-2;i>0;--i){entry=buckets[i].dequeue();if(entry){results=results.concat(removeNode(g,buckets,zeroIdx,entry,true));break}}}}return results}function removeNode(g,buckets,zeroIdx,entry,collectPredecessors){var results=collectPredecessors?[]:undefined;_.forEach(g.inEdges(entry.v),function(edge){var weight=g.edge(edge),uEntry=g.node(edge.v);if(collectPredecessors){results.push({v:edge.v,w:edge.w})}uEntry.out-=weight;assignBucket(buckets,zeroIdx,uEntry)});_.forEach(g.outEdges(entry.v),function(edge){var weight=g.edge(edge),w=edge.w,wEntry=g.node(w);wEntry["in"]-=weight;assignBucket(buckets,zeroIdx,wEntry)});g.removeNode(entry.v);return results}function buildState(g,weightFn){var fasGraph=new Graph,maxIn=0,maxOut=0;_.forEach(g.nodes(),function(v){fasGraph.setNode(v,{v:v,in:0,out:0})}); 41 // Aggregate weights on nodes, but also sum the weights across multi-edges 42 // into a single edge for the fasGraph. 43 _.forEach(g.edges(),function(e){var prevWeight=fasGraph.edge(e.v,e.w)||0,weight=weightFn(e),edgeWeight=prevWeight+weight;fasGraph.setEdge(e.v,e.w,edgeWeight);maxOut=Math.max(maxOut,fasGraph.node(e.v).out+=weight);maxIn=Math.max(maxIn,fasGraph.node(e.w)["in"]+=weight)});var buckets=_.range(maxOut+maxIn+3).map(function(){return new List});var zeroIdx=maxIn+1;_.forEach(fasGraph.nodes(),function(v){assignBucket(buckets,zeroIdx,fasGraph.node(v))});return{graph:fasGraph,buckets:buckets,zeroIdx:zeroIdx}}function assignBucket(buckets,zeroIdx,entry){if(!entry.out){buckets[0].enqueue(entry)}else if(!entry["in"]){buckets[buckets.length-1].enqueue(entry)}else{buckets[entry.out-entry["in"]+zeroIdx].enqueue(entry)}}},{"./data/list":5,"./graphlib":7,"./lodash":10}],9:[function(require,module,exports){"use strict";var _=require("./lodash"),acyclic=require("./acyclic"),normalize=require("./normalize"),rank=require("./rank"),normalizeRanks=require("./util").normalizeRanks,parentDummyChains=require("./parent-dummy-chains"),removeEmptyRanks=require("./util").removeEmptyRanks,nestingGraph=require("./nesting-graph"),addBorderSegments=require("./add-border-segments"),coordinateSystem=require("./coordinate-system"),order=require("./order"),position=require("./position"),util=require("./util"),Graph=require("./graphlib").Graph;module.exports=layout;function layout(g,opts){var time=opts&&opts.debugTiming?util.time:util.notime;time("layout",function(){var layoutGraph=time(" buildLayoutGraph",function(){return buildLayoutGraph(g)});time(" runLayout",function(){runLayout(layoutGraph,time)});time(" updateInputGraph",function(){updateInputGraph(g,layoutGraph)})})}function runLayout(g,time){time(" makeSpaceForEdgeLabels",function(){makeSpaceForEdgeLabels(g)});time(" removeSelfEdges",function(){removeSelfEdges(g)});time(" acyclic",function(){acyclic.run(g)});time(" nestingGraph.run",function(){nestingGraph.run(g)});time(" rank",function(){rank(util.asNonCompoundGraph(g))});time(" injectEdgeLabelProxies",function(){injectEdgeLabelProxies(g)});time(" removeEmptyRanks",function(){removeEmptyRanks(g)});time(" nestingGraph.cleanup",function(){nestingGraph.cleanup(g)});time(" normalizeRanks",function(){normalizeRanks(g)});time(" assignRankMinMax",function(){assignRankMinMax(g)});time(" removeEdgeLabelProxies",function(){removeEdgeLabelProxies(g)});time(" normalize.run",function(){normalize.run(g)});time(" parentDummyChains",function(){parentDummyChains(g)});time(" addBorderSegments",function(){addBorderSegments(g)});time(" order",function(){order(g)});time(" insertSelfEdges",function(){insertSelfEdges(g)});time(" adjustCoordinateSystem",function(){coordinateSystem.adjust(g)});time(" position",function(){position(g)});time(" positionSelfEdges",function(){positionSelfEdges(g)});time(" removeBorderNodes",function(){removeBorderNodes(g)});time(" normalize.undo",function(){normalize.undo(g)});time(" fixupEdgeLabelCoords",function(){fixupEdgeLabelCoords(g)});time(" undoCoordinateSystem",function(){coordinateSystem.undo(g)});time(" translateGraph",function(){translateGraph(g)});time(" assignNodeIntersects",function(){assignNodeIntersects(g)});time(" reversePoints",function(){reversePointsForReversedEdges(g)});time(" acyclic.undo",function(){acyclic.undo(g)})} 44 /* 45 * Copies final layout information from the layout graph back to the input 46 * graph. This process only copies whitelisted attributes from the layout graph 47 * to the input graph, so it serves as a good place to determine what 48 * attributes can influence layout. 49 */function updateInputGraph(inputGraph,layoutGraph){_.forEach(inputGraph.nodes(),function(v){var inputLabel=inputGraph.node(v),layoutLabel=layoutGraph.node(v);if(inputLabel){inputLabel.x=layoutLabel.x;inputLabel.y=layoutLabel.y;if(layoutGraph.children(v).length){inputLabel.width=layoutLabel.width;inputLabel.height=layoutLabel.height}}});_.forEach(inputGraph.edges(),function(e){var inputLabel=inputGraph.edge(e),layoutLabel=layoutGraph.edge(e);inputLabel.points=layoutLabel.points;if(_.has(layoutLabel,"x")){inputLabel.x=layoutLabel.x;inputLabel.y=layoutLabel.y}});inputGraph.graph().width=layoutGraph.graph().width;inputGraph.graph().height=layoutGraph.graph().height}var graphNumAttrs=["nodesep","edgesep","ranksep","marginx","marginy"],graphDefaults={ranksep:50,edgesep:20,nodesep:50,rankdir:"tb"},graphAttrs=["acyclicer","ranker","rankdir","align"],nodeNumAttrs=["width","height"],nodeDefaults={width:0,height:0},edgeNumAttrs=["minlen","weight","width","height","labeloffset"],edgeDefaults={minlen:1,weight:1,width:0,height:0,labeloffset:10,labelpos:"r"},edgeAttrs=["labelpos"]; 50 /* 51 * Constructs a new graph from the input graph, which can be used for layout. 52 * This process copies only whitelisted attributes from the input graph to the 53 * layout graph. Thus this function serves as a good place to determine what 54 * attributes can influence layout. 55 */function buildLayoutGraph(inputGraph){var g=new Graph({multigraph:true,compound:true}),graph=canonicalize(inputGraph.graph());g.setGraph(_.merge({},graphDefaults,selectNumberAttrs(graph,graphNumAttrs),_.pick(graph,graphAttrs)));_.forEach(inputGraph.nodes(),function(v){var node=canonicalize(inputGraph.node(v));g.setNode(v,_.defaults(selectNumberAttrs(node,nodeNumAttrs),nodeDefaults));g.setParent(v,inputGraph.parent(v))});_.forEach(inputGraph.edges(),function(e){var edge=canonicalize(inputGraph.edge(e));g.setEdge(e,_.merge({},edgeDefaults,selectNumberAttrs(edge,edgeNumAttrs),_.pick(edge,edgeAttrs)))});return g} 56 /* 57 * This idea comes from the Gansner paper: to account for edge labels in our 58 * layout we split each rank in half by doubling minlen and halving ranksep. 59 * Then we can place labels at these mid-points between nodes. 60 * 61 * We also add some minimal padding to the width to push the label for the edge 62 * away from the edge itself a bit. 63 */function makeSpaceForEdgeLabels(g){var graph=g.graph();graph.ranksep/=2;_.forEach(g.edges(),function(e){var edge=g.edge(e);edge.minlen*=2;if(edge.labelpos.toLowerCase()!=="c"){if(graph.rankdir==="TB"||graph.rankdir==="BT"){edge.width+=edge.labeloffset}else{edge.height+=edge.labeloffset}}})} 64 /* 65 * Creates temporary dummy nodes that capture the rank in which each edge's 66 * label is going to, if it has one of non-zero width and height. We do this 67 * so that we can safely remove empty ranks while preserving balance for the 68 * label's position. 69 */function injectEdgeLabelProxies(g){_.forEach(g.edges(),function(e){var edge=g.edge(e);if(edge.width&&edge.height){var v=g.node(e.v),w=g.node(e.w),label={rank:(w.rank-v.rank)/2+v.rank,e:e};util.addDummyNode(g,"edge-proxy",label,"_ep")}})}function assignRankMinMax(g){var maxRank=0;_.forEach(g.nodes(),function(v){var node=g.node(v);if(node.borderTop){node.minRank=g.node(node.borderTop).rank;node.maxRank=g.node(node.borderBottom).rank;maxRank=_.max(maxRank,node.maxRank)}});g.graph().maxRank=maxRank}function removeEdgeLabelProxies(g){_.forEach(g.nodes(),function(v){var node=g.node(v);if(node.dummy==="edge-proxy"){g.edge(node.e).labelRank=node.rank;g.removeNode(v)}})}function translateGraph(g){var minX=Number.POSITIVE_INFINITY,maxX=0,minY=Number.POSITIVE_INFINITY,maxY=0,graphLabel=g.graph(),marginX=graphLabel.marginx||0,marginY=graphLabel.marginy||0;function getExtremes(attrs){var x=attrs.x,y=attrs.y,w=attrs.width,h=attrs.height;minX=Math.min(minX,x-w/2);maxX=Math.max(maxX,x+w/2);minY=Math.min(minY,y-h/2);maxY=Math.max(maxY,y+h/2)}_.forEach(g.nodes(),function(v){getExtremes(g.node(v))});_.forEach(g.edges(),function(e){var edge=g.edge(e);if(_.has(edge,"x")){getExtremes(edge)}});minX-=marginX;minY-=marginY;_.forEach(g.nodes(),function(v){var node=g.node(v);node.x-=minX;node.y-=minY});_.forEach(g.edges(),function(e){var edge=g.edge(e);_.forEach(edge.points,function(p){p.x-=minX;p.y-=minY});if(_.has(edge,"x")){edge.x-=minX}if(_.has(edge,"y")){edge.y-=minY}});graphLabel.width=maxX-minX+marginX;graphLabel.height=maxY-minY+marginY}function assignNodeIntersects(g){_.forEach(g.edges(),function(e){var edge=g.edge(e),nodeV=g.node(e.v),nodeW=g.node(e.w),p1,p2;if(!edge.points){edge.points=[];p1=nodeW;p2=nodeV}else{p1=edge.points[0];p2=edge.points[edge.points.length-1]}edge.points.unshift(util.intersectRect(nodeV,p1));edge.points.push(util.intersectRect(nodeW,p2))})}function fixupEdgeLabelCoords(g){_.forEach(g.edges(),function(e){var edge=g.edge(e);if(_.has(edge,"x")){if(edge.labelpos==="l"||edge.labelpos==="r"){edge.width-=edge.labeloffset}switch(edge.labelpos){case"l":edge.x-=edge.width/2+edge.labeloffset;break;case"r":edge.x+=edge.width/2+edge.labeloffset;break}}})}function reversePointsForReversedEdges(g){_.forEach(g.edges(),function(e){var edge=g.edge(e);if(edge.reversed){edge.points.reverse()}})}function removeBorderNodes(g){_.forEach(g.nodes(),function(v){if(g.children(v).length){var node=g.node(v),t=g.node(node.borderTop),b=g.node(node.borderBottom),l=g.node(_.last(node.borderLeft)),r=g.node(_.last(node.borderRight));node.width=Math.abs(r.x-l.x);node.height=Math.abs(b.y-t.y);node.x=l.x+node.width/2;node.y=t.y+node.height/2}});_.forEach(g.nodes(),function(v){if(g.node(v).dummy==="border"){g.removeNode(v)}})}function removeSelfEdges(g){_.forEach(g.edges(),function(e){if(e.v===e.w){var node=g.node(e.v);if(!node.selfEdges){node.selfEdges=[]}node.selfEdges.push({e:e,label:g.edge(e)});g.removeEdge(e)}})}function insertSelfEdges(g){var layers=util.buildLayerMatrix(g);_.forEach(layers,function(layer){var orderShift=0;_.forEach(layer,function(v,i){var node=g.node(v);node.order=i+orderShift;_.forEach(node.selfEdges,function(selfEdge){util.addDummyNode(g,"selfedge",{width:selfEdge.label.width,height:selfEdge.label.height,rank:node.rank,order:i+ ++orderShift,e:selfEdge.e,label:selfEdge.label},"_se")});delete node.selfEdges})})}function positionSelfEdges(g){_.forEach(g.nodes(),function(v){var node=g.node(v);if(node.dummy==="selfedge"){var selfNode=g.node(node.e.v),x=selfNode.x+selfNode.width/2,y=selfNode.y,dx=node.x-x,dy=selfNode.height/2;g.setEdge(node.e,node.label);g.removeNode(v);node.label.points=[{x:x+2*dx/3,y:y-dy},{x:x+5*dx/6,y:y-dy},{x:x+dx,y:y},{x:x+5*dx/6,y:y+dy},{x:x+2*dx/3,y:y+dy}];node.label.x=node.x;node.label.y=node.y}})}function selectNumberAttrs(obj,attrs){return _.mapValues(_.pick(obj,attrs),Number)}function canonicalize(attrs){var newAttrs={};_.forEach(attrs,function(v,k){newAttrs[k.toLowerCase()]=v});return newAttrs}},{"./acyclic":2,"./add-border-segments":3,"./coordinate-system":4,"./graphlib":7,"./lodash":10,"./nesting-graph":11,"./normalize":12,"./order":17,"./parent-dummy-chains":22,"./position":24,"./rank":26,"./util":29}],10:[function(require,module,exports){ 70 /* global window */ 71 var lodash;if(typeof require==="function"){try{lodash={cloneDeep:require("lodash/cloneDeep"),constant:require("lodash/constant"),defaults:require("lodash/defaults"),each:require("lodash/each"),filter:require("lodash/filter"),find:require("lodash/find"),flatten:require("lodash/flatten"),forEach:require("lodash/forEach"),forIn:require("lodash/forIn"),has:require("lodash/has"),isUndefined:require("lodash/isUndefined"),last:require("lodash/last"),map:require("lodash/map"),mapValues:require("lodash/mapValues"),max:require("lodash/max"),merge:require("lodash/merge"),min:require("lodash/min"),minBy:require("lodash/minBy"),now:require("lodash/now"),pick:require("lodash/pick"),range:require("lodash/range"),reduce:require("lodash/reduce"),sortBy:require("lodash/sortBy"),uniqueId:require("lodash/uniqueId"),values:require("lodash/values"),zipObject:require("lodash/zipObject")}}catch(e){}}if(!lodash){lodash=window._}module.exports=lodash},{"lodash/cloneDeep":227,"lodash/constant":228,"lodash/defaults":229,"lodash/each":230,"lodash/filter":232,"lodash/find":233,"lodash/flatten":235,"lodash/forEach":236,"lodash/forIn":237,"lodash/has":239,"lodash/isUndefined":258,"lodash/last":261,"lodash/map":262,"lodash/mapValues":263,"lodash/max":264,"lodash/merge":266,"lodash/min":267,"lodash/minBy":268,"lodash/now":270,"lodash/pick":271,"lodash/range":273,"lodash/reduce":274,"lodash/sortBy":276,"lodash/uniqueId":286,"lodash/values":287,"lodash/zipObject":288}],11:[function(require,module,exports){var _=require("./lodash"),util=require("./util");module.exports={run:run,cleanup:cleanup}; 72 /* 73 * A nesting graph creates dummy nodes for the tops and bottoms of subgraphs, 74 * adds appropriate edges to ensure that all cluster nodes are placed between 75 * these boundries, and ensures that the graph is connected. 76 * 77 * In addition we ensure, through the use of the minlen property, that nodes 78 * and subgraph border nodes to not end up on the same rank. 79 * 80 * Preconditions: 81 * 82 * 1. Input graph is a DAG 83 * 2. Nodes in the input graph has a minlen attribute 84 * 85 * Postconditions: 86 * 87 * 1. Input graph is connected. 88 * 2. Dummy nodes are added for the tops and bottoms of subgraphs. 89 * 3. The minlen attribute for nodes is adjusted to ensure nodes do not 90 * get placed on the same rank as subgraph border nodes. 91 * 92 * The nesting graph idea comes from Sander, "Layout of Compound Directed 93 * Graphs." 94 */function run(g){var root=util.addDummyNode(g,"root",{},"_root");var depths=treeDepths(g);var height=_.max(_.values(depths))-1;// Note: depths is an Object not an array 95 var nodeSep=2*height+1;g.graph().nestingRoot=root; 96 // Multiply minlen by nodeSep to align nodes on non-border ranks. 97 _.forEach(g.edges(),function(e){g.edge(e).minlen*=nodeSep}); 98 // Calculate a weight that is sufficient to keep subgraphs vertically compact 99 var weight=sumWeights(g)+1; 100 // Create border nodes and link them up 101 _.forEach(g.children(),function(child){dfs(g,root,nodeSep,weight,height,depths,child)}); 102 // Save the multiplier for node layers for later removal of empty border 103 // layers. 104 g.graph().nodeRankFactor=nodeSep}function dfs(g,root,nodeSep,weight,height,depths,v){var children=g.children(v);if(!children.length){if(v!==root){g.setEdge(root,v,{weight:0,minlen:nodeSep})}return}var top=util.addBorderNode(g,"_bt"),bottom=util.addBorderNode(g,"_bb"),label=g.node(v);g.setParent(top,v);label.borderTop=top;g.setParent(bottom,v);label.borderBottom=bottom;_.forEach(children,function(child){dfs(g,root,nodeSep,weight,height,depths,child);var childNode=g.node(child),childTop=childNode.borderTop?childNode.borderTop:child,childBottom=childNode.borderBottom?childNode.borderBottom:child,thisWeight=childNode.borderTop?weight:2*weight,minlen=childTop!==childBottom?1:height-depths[v]+1;g.setEdge(top,childTop,{weight:thisWeight,minlen:minlen,nestingEdge:true});g.setEdge(childBottom,bottom,{weight:thisWeight,minlen:minlen,nestingEdge:true})});if(!g.parent(v)){g.setEdge(root,top,{weight:0,minlen:height+depths[v]})}}function treeDepths(g){var depths={};function dfs(v,depth){var children=g.children(v);if(children&&children.length){_.forEach(children,function(child){dfs(child,depth+1)})}depths[v]=depth}_.forEach(g.children(),function(v){dfs(v,1)});return depths}function sumWeights(g){return _.reduce(g.edges(),function(acc,e){return acc+g.edge(e).weight},0)}function cleanup(g){var graphLabel=g.graph();g.removeNode(graphLabel.nestingRoot);delete graphLabel.nestingRoot;_.forEach(g.edges(),function(e){var edge=g.edge(e);if(edge.nestingEdge){g.removeEdge(e)}})}},{"./lodash":10,"./util":29}],12:[function(require,module,exports){"use strict";var _=require("./lodash"),util=require("./util");module.exports={run:run,undo:undo}; 105 /* 106 * Breaks any long edges in the graph into short segments that span 1 layer 107 * each. This operation is undoable with the denormalize function. 108 * 109 * Pre-conditions: 110 * 111 * 1. The input graph is a DAG. 112 * 2. Each node in the graph has a "rank" property. 113 * 114 * Post-condition: 115 * 116 * 1. All edges in the graph have a length of 1. 117 * 2. Dummy nodes are added where edges have been split into segments. 118 * 3. The graph is augmented with a "dummyChains" attribute which contains 119 * the first dummy in each chain of dummy nodes produced. 120 */function run(g){g.graph().dummyChains=[];_.forEach(g.edges(),function(edge){normalizeEdge(g,edge)})}function normalizeEdge(g,e){var v=e.v,vRank=g.node(v).rank,w=e.w,wRank=g.node(w).rank,name=e.name,edgeLabel=g.edge(e),labelRank=edgeLabel.labelRank;if(wRank===vRank+1)return;g.removeEdge(e);var dummy,attrs,i;for(i=0,++vRank;vRank<wRank;++i,++vRank){edgeLabel.points=[];attrs={width:0,height:0,edgeLabel:edgeLabel,edgeObj:e,rank:vRank};dummy=util.addDummyNode(g,"edge",attrs,"_d");if(vRank===labelRank){attrs.width=edgeLabel.width;attrs.height=edgeLabel.height;attrs.dummy="edge-label";attrs.labelpos=edgeLabel.labelpos}g.setEdge(v,dummy,{weight:edgeLabel.weight},name);if(i===0){g.graph().dummyChains.push(dummy)}v=dummy}g.setEdge(v,w,{weight:edgeLabel.weight},name)}function undo(g){_.forEach(g.graph().dummyChains,function(v){var node=g.node(v),origLabel=node.edgeLabel,w;g.setEdge(node.edgeObj,origLabel);while(node.dummy){w=g.successors(v)[0];g.removeNode(v);origLabel.points.push({x:node.x,y:node.y});if(node.dummy==="edge-label"){origLabel.x=node.x;origLabel.y=node.y;origLabel.width=node.width;origLabel.height=node.height}v=w;node=g.node(v)}})}},{"./lodash":10,"./util":29}],13:[function(require,module,exports){var _=require("../lodash");module.exports=addSubgraphConstraints;function addSubgraphConstraints(g,cg,vs){var prev={},rootPrev;_.forEach(vs,function(v){var child=g.parent(v),parent,prevChild;while(child){parent=g.parent(child);if(parent){prevChild=prev[parent];prev[parent]=child}else{prevChild=rootPrev;rootPrev=child}if(prevChild&&prevChild!==child){cg.setEdge(prevChild,child);return}child=parent}}); 121 /* 122 function dfs(v) { 123 var children = v ? g.children(v) : g.children(); 124 if (children.length) { 125 var min = Number.POSITIVE_INFINITY, 126 subgraphs = []; 127 _.each(children, function(child) { 128 var childMin = dfs(child); 129 if (g.children(child).length) { 130 subgraphs.push({ v: child, order: childMin }); 131 } 132 min = Math.min(min, childMin); 133 }); 134 _.reduce(_.sortBy(subgraphs, "order"), function(prev, curr) { 135 cg.setEdge(prev.v, curr.v); 136 return curr; 137 }); 138 return min; 139 } 140 return g.node(v).order; 141 } 142 dfs(undefined); 143 */}},{"../lodash":10}],14:[function(require,module,exports){var _=require("../lodash");module.exports=barycenter;function barycenter(g,movable){return _.map(movable,function(v){var inV=g.inEdges(v);if(!inV.length){return{v:v}}else{var result=_.reduce(inV,function(acc,e){var edge=g.edge(e),nodeU=g.node(e.v);return{sum:acc.sum+edge.weight*nodeU.order,weight:acc.weight+edge.weight}},{sum:0,weight:0});return{v:v,barycenter:result.sum/result.weight,weight:result.weight}}})}},{"../lodash":10}],15:[function(require,module,exports){var _=require("../lodash"),Graph=require("../graphlib").Graph;module.exports=buildLayerGraph; 144 /* 145 * Constructs a graph that can be used to sort a layer of nodes. The graph will 146 * contain all base and subgraph nodes from the request layer in their original 147 * hierarchy and any edges that are incident on these nodes and are of the type 148 * requested by the "relationship" parameter. 149 * 150 * Nodes from the requested rank that do not have parents are assigned a root 151 * node in the output graph, which is set in the root graph attribute. This 152 * makes it easy to walk the hierarchy of movable nodes during ordering. 153 * 154 * Pre-conditions: 155 * 156 * 1. Input graph is a DAG 157 * 2. Base nodes in the input graph have a rank attribute 158 * 3. Subgraph nodes in the input graph has minRank and maxRank attributes 159 * 4. Edges have an assigned weight 160 * 161 * Post-conditions: 162 * 163 * 1. Output graph has all nodes in the movable rank with preserved 164 * hierarchy. 165 * 2. Root nodes in the movable layer are made children of the node 166 * indicated by the root attribute of the graph. 167 * 3. Non-movable nodes incident on movable nodes, selected by the 168 * relationship parameter, are included in the graph (without hierarchy). 169 * 4. Edges incident on movable nodes, selected by the relationship 170 * parameter, are added to the output graph. 171 * 5. The weights for copied edges are aggregated as need, since the output 172 * graph is not a multi-graph. 173 */function buildLayerGraph(g,rank,relationship){var root=createRootNode(g),result=new Graph({compound:true}).setGraph({root:root}).setDefaultNodeLabel(function(v){return g.node(v)});_.forEach(g.nodes(),function(v){var node=g.node(v),parent=g.parent(v);if(node.rank===rank||node.minRank<=rank&&rank<=node.maxRank){result.setNode(v);result.setParent(v,parent||root); 174 // This assumes we have only short edges! 175 _.forEach(g[relationship](v),function(e){var u=e.v===v?e.w:e.v,edge=result.edge(u,v),weight=!_.isUndefined(edge)?edge.weight:0;result.setEdge(u,v,{weight:g.edge(e).weight+weight})});if(_.has(node,"minRank")){result.setNode(v,{borderLeft:node.borderLeft[rank],borderRight:node.borderRight[rank]})}}});return result}function createRootNode(g){var v;while(g.hasNode(v=_.uniqueId("_root")));return v}},{"../graphlib":7,"../lodash":10}],16:[function(require,module,exports){"use strict";var _=require("../lodash");module.exports=crossCount; 176 /* 177 * A function that takes a layering (an array of layers, each with an array of 178 * ordererd nodes) and a graph and returns a weighted crossing count. 179 * 180 * Pre-conditions: 181 * 182 * 1. Input graph must be simple (not a multigraph), directed, and include 183 * only simple edges. 184 * 2. Edges in the input graph must have assigned weights. 185 * 186 * Post-conditions: 187 * 188 * 1. The graph and layering matrix are left unchanged. 189 * 190 * This algorithm is derived from Barth, et al., "Bilayer Cross Counting." 191 */function crossCount(g,layering){var cc=0;for(var i=1;i<layering.length;++i){cc+=twoLayerCrossCount(g,layering[i-1],layering[i])}return cc}function twoLayerCrossCount(g,northLayer,southLayer){ 192 // Sort all of the edges between the north and south layers by their position 193 // in the north layer and then the south. Map these edges to the position of 194 // their head in the south layer. 195 var southPos=_.zipObject(southLayer,_.map(southLayer,function(v,i){return i}));var southEntries=_.flatten(_.map(northLayer,function(v){return _.sortBy(_.map(g.outEdges(v),function(e){return{pos:southPos[e.w],weight:g.edge(e).weight}}),"pos")}),true); 196 // Build the accumulator tree 197 var firstIndex=1;while(firstIndex<southLayer.length)firstIndex<<=1;var treeSize=2*firstIndex-1;firstIndex-=1;var tree=_.map(new Array(treeSize),function(){return 0}); 198 // Calculate the weighted crossings 199 var cc=0;_.forEach(southEntries.forEach(function(entry){var index=entry.pos+firstIndex;tree[index]+=entry.weight;var weightSum=0;while(index>0){if(index%2){weightSum+=tree[index+1]}index=index-1>>1;tree[index]+=entry.weight}cc+=entry.weight*weightSum}));return cc}},{"../lodash":10}],17:[function(require,module,exports){"use strict";var _=require("../lodash"),initOrder=require("./init-order"),crossCount=require("./cross-count"),sortSubgraph=require("./sort-subgraph"),buildLayerGraph=require("./build-layer-graph"),addSubgraphConstraints=require("./add-subgraph-constraints"),Graph=require("../graphlib").Graph,util=require("../util");module.exports=order; 200 /* 201 * Applies heuristics to minimize edge crossings in the graph and sets the best 202 * order solution as an order attribute on each node. 203 * 204 * Pre-conditions: 205 * 206 * 1. Graph must be DAG 207 * 2. Graph nodes must be objects with a "rank" attribute 208 * 3. Graph edges must have the "weight" attribute 209 * 210 * Post-conditions: 211 * 212 * 1. Graph nodes will have an "order" attribute based on the results of the 213 * algorithm. 214 */function order(g){var maxRank=util.maxRank(g),downLayerGraphs=buildLayerGraphs(g,_.range(1,maxRank+1),"inEdges"),upLayerGraphs=buildLayerGraphs(g,_.range(maxRank-1,-1,-1),"outEdges");var layering=initOrder(g);assignOrder(g,layering);var bestCC=Number.POSITIVE_INFINITY,best;for(var i=0,lastBest=0;lastBest<4;++i,++lastBest){sweepLayerGraphs(i%2?downLayerGraphs:upLayerGraphs,i%4>=2);layering=util.buildLayerMatrix(g);var cc=crossCount(g,layering);if(cc<bestCC){lastBest=0;best=_.cloneDeep(layering);bestCC=cc}}assignOrder(g,best)}function buildLayerGraphs(g,ranks,relationship){return _.map(ranks,function(rank){return buildLayerGraph(g,rank,relationship)})}function sweepLayerGraphs(layerGraphs,biasRight){var cg=new Graph;_.forEach(layerGraphs,function(lg){var root=lg.graph().root;var sorted=sortSubgraph(lg,root,cg,biasRight);_.forEach(sorted.vs,function(v,i){lg.node(v).order=i});addSubgraphConstraints(lg,cg,sorted.vs)})}function assignOrder(g,layering){_.forEach(layering,function(layer){_.forEach(layer,function(v,i){g.node(v).order=i})})}},{"../graphlib":7,"../lodash":10,"../util":29,"./add-subgraph-constraints":13,"./build-layer-graph":15,"./cross-count":16,"./init-order":18,"./sort-subgraph":20}],18:[function(require,module,exports){"use strict";var _=require("../lodash");module.exports=initOrder; 215 /* 216 * Assigns an initial order value for each node by performing a DFS search 217 * starting from nodes in the first rank. Nodes are assigned an order in their 218 * rank as they are first visited. 219 * 220 * This approach comes from Gansner, et al., "A Technique for Drawing Directed 221 * Graphs." 222 * 223 * Returns a layering matrix with an array per layer and each layer sorted by 224 * the order of its nodes. 225 */function initOrder(g){var visited={},simpleNodes=_.filter(g.nodes(),function(v){return!g.children(v).length}),maxRank=_.max(_.map(simpleNodes,function(v){return g.node(v).rank})),layers=_.map(_.range(maxRank+1),function(){return[]});function dfs(v){if(_.has(visited,v))return;visited[v]=true;var node=g.node(v);layers[node.rank].push(v);_.forEach(g.successors(v),dfs)}var orderedVs=_.sortBy(simpleNodes,function(v){return g.node(v).rank});_.forEach(orderedVs,dfs);return layers}},{"../lodash":10}],19:[function(require,module,exports){"use strict";var _=require("../lodash");module.exports=resolveConflicts; 226 /* 227 * Given a list of entries of the form {v, barycenter, weight} and a 228 * constraint graph this function will resolve any conflicts between the 229 * constraint graph and the barycenters for the entries. If the barycenters for 230 * an entry would violate a constraint in the constraint graph then we coalesce 231 * the nodes in the conflict into a new node that respects the contraint and 232 * aggregates barycenter and weight information. 233 * 234 * This implementation is based on the description in Forster, "A Fast and 235 * Simple Hueristic for Constrained Two-Level Crossing Reduction," thought it 236 * differs in some specific details. 237 * 238 * Pre-conditions: 239 * 240 * 1. Each entry has the form {v, barycenter, weight}, or if the node has 241 * no barycenter, then {v}. 242 * 243 * Returns: 244 * 245 * A new list of entries of the form {vs, i, barycenter, weight}. The list 246 * `vs` may either be a singleton or it may be an aggregation of nodes 247 * ordered such that they do not violate constraints from the constraint 248 * graph. The property `i` is the lowest original index of any of the 249 * elements in `vs`. 250 */function resolveConflicts(entries,cg){var mappedEntries={};_.forEach(entries,function(entry,i){var tmp=mappedEntries[entry.v]={indegree:0,in:[],out:[],vs:[entry.v],i:i};if(!_.isUndefined(entry.barycenter)){tmp.barycenter=entry.barycenter;tmp.weight=entry.weight}});_.forEach(cg.edges(),function(e){var entryV=mappedEntries[e.v],entryW=mappedEntries[e.w];if(!_.isUndefined(entryV)&&!_.isUndefined(entryW)){entryW.indegree++;entryV.out.push(mappedEntries[e.w])}});var sourceSet=_.filter(mappedEntries,function(entry){return!entry.indegree});return doResolveConflicts(sourceSet)}function doResolveConflicts(sourceSet){var entries=[];function handleIn(vEntry){return function(uEntry){if(uEntry.merged){return}if(_.isUndefined(uEntry.barycenter)||_.isUndefined(vEntry.barycenter)||uEntry.barycenter>=vEntry.barycenter){mergeEntries(vEntry,uEntry)}}}function handleOut(vEntry){return function(wEntry){wEntry["in"].push(vEntry);if(--wEntry.indegree===0){sourceSet.push(wEntry)}}}while(sourceSet.length){var entry=sourceSet.pop();entries.push(entry);_.forEach(entry["in"].reverse(),handleIn(entry));_.forEach(entry.out,handleOut(entry))}return _.map(_.filter(entries,function(entry){return!entry.merged}),function(entry){return _.pick(entry,["vs","i","barycenter","weight"])})}function mergeEntries(target,source){var sum=0,weight=0;if(target.weight){sum+=target.barycenter*target.weight;weight+=target.weight}if(source.weight){sum+=source.barycenter*source.weight;weight+=source.weight}target.vs=source.vs.concat(target.vs);target.barycenter=sum/weight;target.weight=weight;target.i=Math.min(source.i,target.i);source.merged=true}},{"../lodash":10}],20:[function(require,module,exports){var _=require("../lodash"),barycenter=require("./barycenter"),resolveConflicts=require("./resolve-conflicts"),sort=require("./sort");module.exports=sortSubgraph;function sortSubgraph(g,v,cg,biasRight){var movable=g.children(v),node=g.node(v),bl=node?node.borderLeft:undefined,br=node?node.borderRight:undefined,subgraphs={};if(bl){movable=_.filter(movable,function(w){return w!==bl&&w!==br})}var barycenters=barycenter(g,movable);_.forEach(barycenters,function(entry){if(g.children(entry.v).length){var subgraphResult=sortSubgraph(g,entry.v,cg,biasRight);subgraphs[entry.v]=subgraphResult;if(_.has(subgraphResult,"barycenter")){mergeBarycenters(entry,subgraphResult)}}});var entries=resolveConflicts(barycenters,cg);expandSubgraphs(entries,subgraphs);var result=sort(entries,biasRight);if(bl){result.vs=_.flatten([bl,result.vs,br],true);if(g.predecessors(bl).length){var blPred=g.node(g.predecessors(bl)[0]),brPred=g.node(g.predecessors(br)[0]);if(!_.has(result,"barycenter")){result.barycenter=0;result.weight=0}result.barycenter=(result.barycenter*result.weight+blPred.order+brPred.order)/(result.weight+2);result.weight+=2}}return result}function expandSubgraphs(entries,subgraphs){_.forEach(entries,function(entry){entry.vs=_.flatten(entry.vs.map(function(v){if(subgraphs[v]){return subgraphs[v].vs}return v}),true)})}function mergeBarycenters(target,other){if(!_.isUndefined(target.barycenter)){target.barycenter=(target.barycenter*target.weight+other.barycenter*other.weight)/(target.weight+other.weight);target.weight+=other.weight}else{target.barycenter=other.barycenter;target.weight=other.weight}}},{"../lodash":10,"./barycenter":14,"./resolve-conflicts":19,"./sort":21}],21:[function(require,module,exports){var _=require("../lodash"),util=require("../util");module.exports=sort;function sort(entries,biasRight){var parts=util.partition(entries,function(entry){return _.has(entry,"barycenter")});var sortable=parts.lhs,unsortable=_.sortBy(parts.rhs,function(entry){return-entry.i}),vs=[],sum=0,weight=0,vsIndex=0;sortable.sort(compareWithBias(!!biasRight));vsIndex=consumeUnsortable(vs,unsortable,vsIndex);_.forEach(sortable,function(entry){vsIndex+=entry.vs.length;vs.push(entry.vs);sum+=entry.barycenter*entry.weight;weight+=entry.weight;vsIndex=consumeUnsortable(vs,unsortable,vsIndex)});var result={vs:_.flatten(vs,true)};if(weight){result.barycenter=sum/weight;result.weight=weight}return result}function consumeUnsortable(vs,unsortable,index){var last;while(unsortable.length&&(last=_.last(unsortable)).i<=index){unsortable.pop();vs.push(last.vs);index++}return index}function compareWithBias(bias){return function(entryV,entryW){if(entryV.barycenter<entryW.barycenter){return-1}else if(entryV.barycenter>entryW.barycenter){return 1}return!bias?entryV.i-entryW.i:entryW.i-entryV.i}}},{"../lodash":10,"../util":29}],22:[function(require,module,exports){var _=require("./lodash");module.exports=parentDummyChains;function parentDummyChains(g){var postorderNums=postorder(g);_.forEach(g.graph().dummyChains,function(v){var node=g.node(v),edgeObj=node.edgeObj,pathData=findPath(g,postorderNums,edgeObj.v,edgeObj.w),path=pathData.path,lca=pathData.lca,pathIdx=0,pathV=path[pathIdx],ascending=true;while(v!==edgeObj.w){node=g.node(v);if(ascending){while((pathV=path[pathIdx])!==lca&&g.node(pathV).maxRank<node.rank){pathIdx++}if(pathV===lca){ascending=false}}if(!ascending){while(pathIdx<path.length-1&&g.node(pathV=path[pathIdx+1]).minRank<=node.rank){pathIdx++}pathV=path[pathIdx]}g.setParent(v,pathV);v=g.successors(v)[0]}})} 251 // Find a path from v to w through the lowest common ancestor (LCA). Return the 252 // full path and the LCA. 253 function findPath(g,postorderNums,v,w){var vPath=[],wPath=[],low=Math.min(postorderNums[v].low,postorderNums[w].low),lim=Math.max(postorderNums[v].lim,postorderNums[w].lim),parent,lca; 254 // Traverse up from v to find the LCA 255 parent=v;do{parent=g.parent(parent);vPath.push(parent)}while(parent&&(postorderNums[parent].low>low||lim>postorderNums[parent].lim));lca=parent; 256 // Traverse from w to LCA 257 parent=w;while((parent=g.parent(parent))!==lca){wPath.push(parent)}return{path:vPath.concat(wPath.reverse()),lca:lca}}function postorder(g){var result={},lim=0;function dfs(v){var low=lim;_.forEach(g.children(v),dfs);result[v]={low:low,lim:lim++}}_.forEach(g.children(),dfs);return result}},{"./lodash":10}],23:[function(require,module,exports){"use strict";var _=require("../lodash"),Graph=require("../graphlib").Graph,util=require("../util"); 258 /* 259 * This module provides coordinate assignment based on Brandes and Köpf, "Fast 260 * and Simple Horizontal Coordinate Assignment." 261 */module.exports={positionX:positionX,findType1Conflicts:findType1Conflicts,findType2Conflicts:findType2Conflicts,addConflict:addConflict,hasConflict:hasConflict,verticalAlignment:verticalAlignment,horizontalCompaction:horizontalCompaction,alignCoordinates:alignCoordinates,findSmallestWidthAlignment:findSmallestWidthAlignment,balance:balance}; 262 /* 263 * Marks all edges in the graph with a type-1 conflict with the "type1Conflict" 264 * property. A type-1 conflict is one where a non-inner segment crosses an 265 * inner segment. An inner segment is an edge with both incident nodes marked 266 * with the "dummy" property. 267 * 268 * This algorithm scans layer by layer, starting with the second, for type-1 269 * conflicts between the current layer and the previous layer. For each layer 270 * it scans the nodes from left to right until it reaches one that is incident 271 * on an inner segment. It then scans predecessors to determine if they have 272 * edges that cross that inner segment. At the end a final scan is done for all 273 * nodes on the current rank to see if they cross the last visited inner 274 * segment. 275 * 276 * This algorithm (safely) assumes that a dummy node will only be incident on a 277 * single node in the layers being scanned. 278 */function findType1Conflicts(g,layering){var conflicts={};function visitLayer(prevLayer,layer){var 279 // last visited node in the previous layer that is incident on an inner 280 // segment. 281 k0=0, 282 // Tracks the last node in this layer scanned for crossings with a type-1 283 // segment. 284 scanPos=0,prevLayerLength=prevLayer.length,lastNode=_.last(layer);_.forEach(layer,function(v,i){var w=findOtherInnerSegmentNode(g,v),k1=w?g.node(w).order:prevLayerLength;if(w||v===lastNode){_.forEach(layer.slice(scanPos,i+1),function(scanNode){_.forEach(g.predecessors(scanNode),function(u){var uLabel=g.node(u),uPos=uLabel.order;if((uPos<k0||k1<uPos)&&!(uLabel.dummy&&g.node(scanNode).dummy)){addConflict(conflicts,u,scanNode)}})});scanPos=i+1;k0=k1}});return layer}_.reduce(layering,visitLayer);return conflicts}function findType2Conflicts(g,layering){var conflicts={};function scan(south,southPos,southEnd,prevNorthBorder,nextNorthBorder){var v;_.forEach(_.range(southPos,southEnd),function(i){v=south[i];if(g.node(v).dummy){_.forEach(g.predecessors(v),function(u){var uNode=g.node(u);if(uNode.dummy&&(uNode.order<prevNorthBorder||uNode.order>nextNorthBorder)){addConflict(conflicts,u,v)}})}})}function visitLayer(north,south){var prevNorthPos=-1,nextNorthPos,southPos=0;_.forEach(south,function(v,southLookahead){if(g.node(v).dummy==="border"){var predecessors=g.predecessors(v);if(predecessors.length){nextNorthPos=g.node(predecessors[0]).order;scan(south,southPos,southLookahead,prevNorthPos,nextNorthPos);southPos=southLookahead;prevNorthPos=nextNorthPos}}scan(south,southPos,south.length,nextNorthPos,north.length)});return south}_.reduce(layering,visitLayer);return conflicts}function findOtherInnerSegmentNode(g,v){if(g.node(v).dummy){return _.find(g.predecessors(v),function(u){return g.node(u).dummy})}}function addConflict(conflicts,v,w){if(v>w){var tmp=v;v=w;w=tmp}var conflictsV=conflicts[v];if(!conflictsV){conflicts[v]=conflictsV={}}conflictsV[w]=true}function hasConflict(conflicts,v,w){if(v>w){var tmp=v;v=w;w=tmp}return _.has(conflicts[v],w)} 285 /* 286 * Try to align nodes into vertical "blocks" where possible. This algorithm 287 * attempts to align a node with one of its median neighbors. If the edge 288 * connecting a neighbor is a type-1 conflict then we ignore that possibility. 289 * If a previous node has already formed a block with a node after the node 290 * we're trying to form a block with, we also ignore that possibility - our 291 * blocks would be split in that scenario. 292 */function verticalAlignment(g,layering,conflicts,neighborFn){var root={},align={},pos={}; 293 // We cache the position here based on the layering because the graph and 294 // layering may be out of sync. The layering matrix is manipulated to 295 // generate different extreme alignments. 296 _.forEach(layering,function(layer){_.forEach(layer,function(v,order){root[v]=v;align[v]=v;pos[v]=order})});_.forEach(layering,function(layer){var prevIdx=-1;_.forEach(layer,function(v){var ws=neighborFn(v);if(ws.length){ws=_.sortBy(ws,function(w){return pos[w]});var mp=(ws.length-1)/2;for(var i=Math.floor(mp),il=Math.ceil(mp);i<=il;++i){var w=ws[i];if(align[v]===v&&prevIdx<pos[w]&&!hasConflict(conflicts,v,w)){align[w]=v;align[v]=root[v]=root[w];prevIdx=pos[w]}}}})});return{root:root,align:align}}function horizontalCompaction(g,layering,root,align,reverseSep){ 297 // This portion of the algorithm differs from BK due to a number of problems. 298 // Instead of their algorithm we construct a new block graph and do two 299 // sweeps. The first sweep places blocks with the smallest possible 300 // coordinates. The second sweep removes unused space by moving blocks to the 301 // greatest coordinates without violating separation. 302 var xs={},blockG=buildBlockGraph(g,layering,root,reverseSep),borderType=reverseSep?"borderLeft":"borderRight";function iterate(setXsFunc,nextNodesFunc){var stack=blockG.nodes();var elem=stack.pop();var visited={};while(elem){if(visited[elem]){setXsFunc(elem)}else{visited[elem]=true;stack.push(elem);stack=stack.concat(nextNodesFunc(elem))}elem=stack.pop()}} 303 // First pass, assign smallest coordinates 304 function pass1(elem){xs[elem]=blockG.inEdges(elem).reduce(function(acc,e){return Math.max(acc,xs[e.v]+blockG.edge(e))},0)} 305 // Second pass, assign greatest coordinates 306 function pass2(elem){var min=blockG.outEdges(elem).reduce(function(acc,e){return Math.min(acc,xs[e.w]-blockG.edge(e))},Number.POSITIVE_INFINITY);var node=g.node(elem);if(min!==Number.POSITIVE_INFINITY&&node.borderType!==borderType){xs[elem]=Math.max(xs[elem],min)}}iterate(pass1,blockG.predecessors.bind(blockG));iterate(pass2,blockG.successors.bind(blockG)); 307 // Assign x coordinates to all nodes 308 _.forEach(align,function(v){xs[v]=xs[root[v]]});return xs}function buildBlockGraph(g,layering,root,reverseSep){var blockGraph=new Graph,graphLabel=g.graph(),sepFn=sep(graphLabel.nodesep,graphLabel.edgesep,reverseSep);_.forEach(layering,function(layer){var u;_.forEach(layer,function(v){var vRoot=root[v];blockGraph.setNode(vRoot);if(u){var uRoot=root[u],prevMax=blockGraph.edge(uRoot,vRoot);blockGraph.setEdge(uRoot,vRoot,Math.max(sepFn(g,v,u),prevMax||0))}u=v})});return blockGraph} 309 /* 310 * Returns the alignment that has the smallest width of the given alignments. 311 */function findSmallestWidthAlignment(g,xss){return _.minBy(_.values(xss),function(xs){var max=Number.NEGATIVE_INFINITY;var min=Number.POSITIVE_INFINITY;_.forIn(xs,function(x,v){var halfWidth=width(g,v)/2;max=Math.max(x+halfWidth,max);min=Math.min(x-halfWidth,min)});return max-min})} 312 /* 313 * Align the coordinates of each of the layout alignments such that 314 * left-biased alignments have their minimum coordinate at the same point as 315 * the minimum coordinate of the smallest width alignment and right-biased 316 * alignments have their maximum coordinate at the same point as the maximum 317 * coordinate of the smallest width alignment. 318 */function alignCoordinates(xss,alignTo){var alignToVals=_.values(alignTo),alignToMin=_.min(alignToVals),alignToMax=_.max(alignToVals);_.forEach(["u","d"],function(vert){_.forEach(["l","r"],function(horiz){var alignment=vert+horiz,xs=xss[alignment],delta;if(xs===alignTo)return;var xsVals=_.values(xs);delta=horiz==="l"?alignToMin-_.min(xsVals):alignToMax-_.max(xsVals);if(delta){xss[alignment]=_.mapValues(xs,function(x){return x+delta})}})})}function balance(xss,align){return _.mapValues(xss.ul,function(ignore,v){if(align){return xss[align.toLowerCase()][v]}else{var xs=_.sortBy(_.map(xss,v));return(xs[1]+xs[2])/2}})}function positionX(g){var layering=util.buildLayerMatrix(g),conflicts=_.merge(findType1Conflicts(g,layering),findType2Conflicts(g,layering));var xss={},adjustedLayering;_.forEach(["u","d"],function(vert){adjustedLayering=vert==="u"?layering:_.values(layering).reverse();_.forEach(["l","r"],function(horiz){if(horiz==="r"){adjustedLayering=_.map(adjustedLayering,function(inner){return _.values(inner).reverse()})}var neighborFn=(vert==="u"?g.predecessors:g.successors).bind(g);var align=verticalAlignment(g,adjustedLayering,conflicts,neighborFn);var xs=horizontalCompaction(g,adjustedLayering,align.root,align.align,horiz==="r");if(horiz==="r"){xs=_.mapValues(xs,function(x){return-x})}xss[vert+horiz]=xs})});var smallestWidth=findSmallestWidthAlignment(g,xss);alignCoordinates(xss,smallestWidth);return balance(xss,g.graph().align)}function sep(nodeSep,edgeSep,reverseSep){return function(g,v,w){var vLabel=g.node(v),wLabel=g.node(w),sum=0,delta;sum+=vLabel.width/2;if(_.has(vLabel,"labelpos")){switch(vLabel.labelpos.toLowerCase()){case"l":delta=-vLabel.width/2;break;case"r":delta=vLabel.width/2;break}}if(delta){sum+=reverseSep?delta:-delta}delta=0;sum+=(vLabel.dummy?edgeSep:nodeSep)/2;sum+=(wLabel.dummy?edgeSep:nodeSep)/2;sum+=wLabel.width/2;if(_.has(wLabel,"labelpos")){switch(wLabel.labelpos.toLowerCase()){case"l":delta=wLabel.width/2;break;case"r":delta=-wLabel.width/2;break}}if(delta){sum+=reverseSep?delta:-delta}delta=0;return sum}}function width(g,v){return g.node(v).width}},{"../graphlib":7,"../lodash":10,"../util":29}],24:[function(require,module,exports){"use strict";var _=require("../lodash"),util=require("../util"),positionX=require("./bk").positionX;module.exports=position;function position(g){g=util.asNonCompoundGraph(g);positionY(g);_.forEach(positionX(g),function(x,v){g.node(v).x=x})}function positionY(g){var layering=util.buildLayerMatrix(g),rankSep=g.graph().ranksep,prevY=0;_.forEach(layering,function(layer){var maxHeight=_.max(_.map(layer,function(v){return g.node(v).height}));_.forEach(layer,function(v){g.node(v).y=prevY+maxHeight/2});prevY+=maxHeight+rankSep})}},{"../lodash":10,"../util":29,"./bk":23}],25:[function(require,module,exports){"use strict";var _=require("../lodash"),Graph=require("../graphlib").Graph,slack=require("./util").slack;module.exports=feasibleTree; 319 /* 320 * Constructs a spanning tree with tight edges and adjusted the input node's 321 * ranks to achieve this. A tight edge is one that is has a length that matches 322 * its "minlen" attribute. 323 * 324 * The basic structure for this function is derived from Gansner, et al., "A 325 * Technique for Drawing Directed Graphs." 326 * 327 * Pre-conditions: 328 * 329 * 1. Graph must be a DAG. 330 * 2. Graph must be connected. 331 * 3. Graph must have at least one node. 332 * 5. Graph nodes must have been previously assigned a "rank" property that 333 * respects the "minlen" property of incident edges. 334 * 6. Graph edges must have a "minlen" property. 335 * 336 * Post-conditions: 337 * 338 * - Graph nodes will have their rank adjusted to ensure that all edges are 339 * tight. 340 * 341 * Returns a tree (undirected graph) that is constructed using only "tight" 342 * edges. 343 */function feasibleTree(g){var t=new Graph({directed:false}); 344 // Choose arbitrary node from which to start our tree 345 var start=g.nodes()[0],size=g.nodeCount();t.setNode(start,{});var edge,delta;while(tightTree(t,g)<size){edge=findMinSlackEdge(t,g);delta=t.hasNode(edge.v)?slack(g,edge):-slack(g,edge);shiftRanks(t,g,delta)}return t} 346 /* 347 * Finds a maximal tree of tight edges and returns the number of nodes in the 348 * tree. 349 */function tightTree(t,g){function dfs(v){_.forEach(g.nodeEdges(v),function(e){var edgeV=e.v,w=v===edgeV?e.w:edgeV;if(!t.hasNode(w)&&!slack(g,e)){t.setNode(w,{});t.setEdge(v,w,{});dfs(w)}})}_.forEach(t.nodes(),dfs);return t.nodeCount()} 350 /* 351 * Finds the edge with the smallest slack that is incident on tree and returns 352 * it. 353 */function findMinSlackEdge(t,g){return _.minBy(g.edges(),function(e){if(t.hasNode(e.v)!==t.hasNode(e.w)){return slack(g,e)}})}function shiftRanks(t,g,delta){_.forEach(t.nodes(),function(v){g.node(v).rank+=delta})}},{"../graphlib":7,"../lodash":10,"./util":28}],26:[function(require,module,exports){"use strict";var rankUtil=require("./util"),longestPath=rankUtil.longestPath,feasibleTree=require("./feasible-tree"),networkSimplex=require("./network-simplex");module.exports=rank; 354 /* 355 * Assigns a rank to each node in the input graph that respects the "minlen" 356 * constraint specified on edges between nodes. 357 * 358 * This basic structure is derived from Gansner, et al., "A Technique for 359 * Drawing Directed Graphs." 360 * 361 * Pre-conditions: 362 * 363 * 1. Graph must be a connected DAG 364 * 2. Graph nodes must be objects 365 * 3. Graph edges must have "weight" and "minlen" attributes 366 * 367 * Post-conditions: 368 * 369 * 1. Graph nodes will have a "rank" attribute based on the results of the 370 * algorithm. Ranks can start at any index (including negative), we'll 371 * fix them up later. 372 */function rank(g){switch(g.graph().ranker){case"network-simplex":networkSimplexRanker(g);break;case"tight-tree":tightTreeRanker(g);break;case"longest-path":longestPathRanker(g);break;default:networkSimplexRanker(g)}} 373 // A fast and simple ranker, but results are far from optimal. 374 var longestPathRanker=longestPath;function tightTreeRanker(g){longestPath(g);feasibleTree(g)}function networkSimplexRanker(g){networkSimplex(g)}},{"./feasible-tree":25,"./network-simplex":27,"./util":28}],27:[function(require,module,exports){"use strict";var _=require("../lodash"),feasibleTree=require("./feasible-tree"),slack=require("./util").slack,initRank=require("./util").longestPath,preorder=require("../graphlib").alg.preorder,postorder=require("../graphlib").alg.postorder,simplify=require("../util").simplify;module.exports=networkSimplex; 375 // Expose some internals for testing purposes 376 networkSimplex.initLowLimValues=initLowLimValues;networkSimplex.initCutValues=initCutValues;networkSimplex.calcCutValue=calcCutValue;networkSimplex.leaveEdge=leaveEdge;networkSimplex.enterEdge=enterEdge;networkSimplex.exchangeEdges=exchangeEdges; 377 /* 378 * The network simplex algorithm assigns ranks to each node in the input graph 379 * and iteratively improves the ranking to reduce the length of edges. 380 * 381 * Preconditions: 382 * 383 * 1. The input graph must be a DAG. 384 * 2. All nodes in the graph must have an object value. 385 * 3. All edges in the graph must have "minlen" and "weight" attributes. 386 * 387 * Postconditions: 388 * 389 * 1. All nodes in the graph will have an assigned "rank" attribute that has 390 * been optimized by the network simplex algorithm. Ranks start at 0. 391 * 392 * 393 * A rough sketch of the algorithm is as follows: 394 * 395 * 1. Assign initial ranks to each node. We use the longest path algorithm, 396 * which assigns ranks to the lowest position possible. In general this 397 * leads to very wide bottom ranks and unnecessarily long edges. 398 * 2. Construct a feasible tight tree. A tight tree is one such that all 399 * edges in the tree have no slack (difference between length of edge 400 * and minlen for the edge). This by itself greatly improves the assigned 401 * rankings by shorting edges. 402 * 3. Iteratively find edges that have negative cut values. Generally a 403 * negative cut value indicates that the edge could be removed and a new 404 * tree edge could be added to produce a more compact graph. 405 * 406 * Much of the algorithms here are derived from Gansner, et al., "A Technique 407 * for Drawing Directed Graphs." The structure of the file roughly follows the 408 * structure of the overall algorithm. 409 */function networkSimplex(g){g=simplify(g);initRank(g);var t=feasibleTree(g);initLowLimValues(t);initCutValues(t,g);var e,f;while(e=leaveEdge(t)){f=enterEdge(t,g,e);exchangeEdges(t,g,e,f)}} 410 /* 411 * Initializes cut values for all edges in the tree. 412 */function initCutValues(t,g){var vs=postorder(t,t.nodes());vs=vs.slice(0,vs.length-1);_.forEach(vs,function(v){assignCutValue(t,g,v)})}function assignCutValue(t,g,child){var childLab=t.node(child),parent=childLab.parent;t.edge(child,parent).cutvalue=calcCutValue(t,g,child)} 413 /* 414 * Given the tight tree, its graph, and a child in the graph calculate and 415 * return the cut value for the edge between the child and its parent. 416 */function calcCutValue(t,g,child){var childLab=t.node(child),parent=childLab.parent, 417 // True if the child is on the tail end of the edge in the directed graph 418 childIsTail=true, 419 // The graph's view of the tree edge we're inspecting 420 graphEdge=g.edge(child,parent), 421 // The accumulated cut value for the edge between this node and its parent 422 cutValue=0;if(!graphEdge){childIsTail=false;graphEdge=g.edge(parent,child)}cutValue=graphEdge.weight;_.forEach(g.nodeEdges(child),function(e){var isOutEdge=e.v===child,other=isOutEdge?e.w:e.v;if(other!==parent){var pointsToHead=isOutEdge===childIsTail,otherWeight=g.edge(e).weight;cutValue+=pointsToHead?otherWeight:-otherWeight;if(isTreeEdge(t,child,other)){var otherCutValue=t.edge(child,other).cutvalue;cutValue+=pointsToHead?-otherCutValue:otherCutValue}}});return cutValue}function initLowLimValues(tree,root){if(arguments.length<2){root=tree.nodes()[0]}dfsAssignLowLim(tree,{},1,root)}function dfsAssignLowLim(tree,visited,nextLim,v,parent){var low=nextLim,label=tree.node(v);visited[v]=true;_.forEach(tree.neighbors(v),function(w){if(!_.has(visited,w)){nextLim=dfsAssignLowLim(tree,visited,nextLim,w,v)}});label.low=low;label.lim=nextLim++;if(parent){label.parent=parent}else{ 423 // TODO should be able to remove this when we incrementally update low lim 424 delete label.parent}return nextLim}function leaveEdge(tree){return _.find(tree.edges(),function(e){return tree.edge(e).cutvalue<0})}function enterEdge(t,g,edge){var v=edge.v,w=edge.w; 425 // For the rest of this function we assume that v is the tail and w is the 426 // head, so if we don't have this edge in the graph we should flip it to 427 // match the correct orientation. 428 if(!g.hasEdge(v,w)){v=edge.w;w=edge.v}var vLabel=t.node(v),wLabel=t.node(w),tailLabel=vLabel,flip=false; 429 // If the root is in the tail of the edge then we need to flip the logic that 430 // checks for the head and tail nodes in the candidates function below. 431 if(vLabel.lim>wLabel.lim){tailLabel=wLabel;flip=true}var candidates=_.filter(g.edges(),function(edge){return flip===isDescendant(t,t.node(edge.v),tailLabel)&&flip!==isDescendant(t,t.node(edge.w),tailLabel)});return _.minBy(candidates,function(edge){return slack(g,edge)})}function exchangeEdges(t,g,e,f){var v=e.v,w=e.w;t.removeEdge(v,w);t.setEdge(f.v,f.w,{});initLowLimValues(t);initCutValues(t,g);updateRanks(t,g)}function updateRanks(t,g){var root=_.find(t.nodes(),function(v){return!g.node(v).parent}),vs=preorder(t,root);vs=vs.slice(1);_.forEach(vs,function(v){var parent=t.node(v).parent,edge=g.edge(v,parent),flipped=false;if(!edge){edge=g.edge(parent,v);flipped=true}g.node(v).rank=g.node(parent).rank+(flipped?edge.minlen:-edge.minlen)})} 432 /* 433 * Returns true if the edge is in the tree. 434 */function isTreeEdge(tree,u,v){return tree.hasEdge(u,v)} 435 /* 436 * Returns true if the specified node is descendant of the root node per the 437 * assigned low and lim attributes in the tree. 438 */function isDescendant(tree,vLabel,rootLabel){return rootLabel.low<=vLabel.lim&&vLabel.lim<=rootLabel.lim}},{"../graphlib":7,"../lodash":10,"../util":29,"./feasible-tree":25,"./util":28}],28:[function(require,module,exports){"use strict";var _=require("../lodash");module.exports={longestPath:longestPath,slack:slack}; 439 /* 440 * Initializes ranks for the input graph using the longest path algorithm. This 441 * algorithm scales well and is fast in practice, it yields rather poor 442 * solutions. Nodes are pushed to the lowest layer possible, leaving the bottom 443 * ranks wide and leaving edges longer than necessary. However, due to its 444 * speed, this algorithm is good for getting an initial ranking that can be fed 445 * into other algorithms. 446 * 447 * This algorithm does not normalize layers because it will be used by other 448 * algorithms in most cases. If using this algorithm directly, be sure to 449 * run normalize at the end. 450 * 451 * Pre-conditions: 452 * 453 * 1. Input graph is a DAG. 454 * 2. Input graph node labels can be assigned properties. 455 * 456 * Post-conditions: 457 * 458 * 1. Each node will be assign an (unnormalized) "rank" property. 459 */function longestPath(g){var visited={};function dfs(v){var label=g.node(v);if(_.has(visited,v)){return label.rank}visited[v]=true;var rank=_.min(_.map(g.outEdges(v),function(e){return dfs(e.w)-g.edge(e).minlen}));if(rank===Number.POSITIVE_INFINITY||// return value of _.map([]) for Lodash 3 460 rank===undefined||// return value of _.map([]) for Lodash 4 461 rank===null){// return value of _.map([null]) 462 rank=0}return label.rank=rank}_.forEach(g.sources(),dfs)} 463 /* 464 * Returns the amount of slack for the given edge. The slack is defined as the 465 * difference between the length of the edge and its minimum length. 466 */function slack(g,e){return g.node(e.w).rank-g.node(e.v).rank-g.edge(e).minlen}},{"../lodash":10}],29:[function(require,module,exports){"use strict";var _=require("./lodash"),Graph=require("./graphlib").Graph;module.exports={addDummyNode:addDummyNode,simplify:simplify,asNonCompoundGraph:asNonCompoundGraph,successorWeights:successorWeights,predecessorWeights:predecessorWeights,intersectRect:intersectRect,buildLayerMatrix:buildLayerMatrix,normalizeRanks:normalizeRanks,removeEmptyRanks:removeEmptyRanks,addBorderNode:addBorderNode,maxRank:maxRank,partition:partition,time:time,notime:notime}; 467 /* 468 * Adds a dummy node to the graph and return v. 469 */function addDummyNode(g,type,attrs,name){var v;do{v=_.uniqueId(name)}while(g.hasNode(v));attrs.dummy=type;g.setNode(v,attrs);return v} 470 /* 471 * Returns a new graph with only simple edges. Handles aggregation of data 472 * associated with multi-edges. 473 */function simplify(g){var simplified=(new Graph).setGraph(g.graph());_.forEach(g.nodes(),function(v){simplified.setNode(v,g.node(v))});_.forEach(g.edges(),function(e){var simpleLabel=simplified.edge(e.v,e.w)||{weight:0,minlen:1},label=g.edge(e);simplified.setEdge(e.v,e.w,{weight:simpleLabel.weight+label.weight,minlen:Math.max(simpleLabel.minlen,label.minlen)})});return simplified}function asNonCompoundGraph(g){var simplified=new Graph({multigraph:g.isMultigraph()}).setGraph(g.graph());_.forEach(g.nodes(),function(v){if(!g.children(v).length){simplified.setNode(v,g.node(v))}});_.forEach(g.edges(),function(e){simplified.setEdge(e,g.edge(e))});return simplified}function successorWeights(g){var weightMap=_.map(g.nodes(),function(v){var sucs={};_.forEach(g.outEdges(v),function(e){sucs[e.w]=(sucs[e.w]||0)+g.edge(e).weight});return sucs});return _.zipObject(g.nodes(),weightMap)}function predecessorWeights(g){var weightMap=_.map(g.nodes(),function(v){var preds={};_.forEach(g.inEdges(v),function(e){preds[e.v]=(preds[e.v]||0)+g.edge(e).weight});return preds});return _.zipObject(g.nodes(),weightMap)} 474 /* 475 * Finds where a line starting at point ({x, y}) would intersect a rectangle 476 * ({x, y, width, height}) if it were pointing at the rectangle's center. 477 */function intersectRect(rect,point){var x=rect.x;var y=rect.y; 478 // Rectangle intersection algorithm from: 479 // http://math.stackexchange.com/questions/108113/find-edge-between-two-boxes 480 var dx=point.x-x;var dy=point.y-y;var w=rect.width/2;var h=rect.height/2;if(!dx&&!dy){throw new Error("Not possible to find intersection inside of the rectangle")}var sx,sy;if(Math.abs(dy)*w>Math.abs(dx)*h){ 481 // Intersection is top or bottom of rect. 482 if(dy<0){h=-h}sx=h*dx/dy;sy=h}else{ 483 // Intersection is left or right of rect. 484 if(dx<0){w=-w}sx=w;sy=w*dy/dx}return{x:x+sx,y:y+sy}} 485 /* 486 * Given a DAG with each node assigned "rank" and "order" properties, this 487 * function will produce a matrix with the ids of each node. 488 */function buildLayerMatrix(g){var layering=_.map(_.range(maxRank(g)+1),function(){return[]});_.forEach(g.nodes(),function(v){var node=g.node(v),rank=node.rank;if(!_.isUndefined(rank)){layering[rank][node.order]=v}});return layering} 489 /* 490 * Adjusts the ranks for all nodes in the graph such that all nodes v have 491 * rank(v) >= 0 and at least one node w has rank(w) = 0. 492 */function normalizeRanks(g){var min=_.min(_.map(g.nodes(),function(v){return g.node(v).rank}));_.forEach(g.nodes(),function(v){var node=g.node(v);if(_.has(node,"rank")){node.rank-=min}})}function removeEmptyRanks(g){ 493 // Ranks may not start at 0, so we need to offset them 494 var offset=_.min(_.map(g.nodes(),function(v){return g.node(v).rank}));var layers=[];_.forEach(g.nodes(),function(v){var rank=g.node(v).rank-offset;if(!layers[rank]){layers[rank]=[]}layers[rank].push(v)});var delta=0,nodeRankFactor=g.graph().nodeRankFactor;_.forEach(layers,function(vs,i){if(_.isUndefined(vs)&&i%nodeRankFactor!==0){--delta}else if(delta){_.forEach(vs,function(v){g.node(v).rank+=delta})}})}function addBorderNode(g,prefix,rank,order){var node={width:0,height:0};if(arguments.length>=4){node.rank=rank;node.order=order}return addDummyNode(g,"border",node,prefix)}function maxRank(g){return _.max(_.map(g.nodes(),function(v){var rank=g.node(v).rank;if(!_.isUndefined(rank)){return rank}}))} 495 /* 496 * Partition a collection into two groups: `lhs` and `rhs`. If the supplied 497 * function returns true for an entry it goes into `lhs`. Otherwise it goes 498 * into `rhs. 499 */function partition(collection,fn){var result={lhs:[],rhs:[]};_.forEach(collection,function(value){if(fn(value)){result.lhs.push(value)}else{result.rhs.push(value)}});return result} 500 /* 501 * Returns a new function that wraps `fn` with a timer. The wrapper logs the 502 * time it takes to execute the function. 503 */function time(name,fn){var start=_.now();try{return fn()}finally{console.log(name+" time: "+(_.now()-start)+"ms")}}function notime(name,fn){return fn()}},{"./graphlib":7,"./lodash":10}],30:[function(require,module,exports){module.exports="0.8.4"},{}],31:[function(require,module,exports){ 504 /** 505 * Copyright (c) 2014, Chris Pettitt 506 * All rights reserved. 507 * 508 * Redistribution and use in source and binary forms, with or without 509 * modification, are permitted provided that the following conditions are met: 510 * 511 * 1. Redistributions of source code must retain the above copyright notice, this 512 * list of conditions and the following disclaimer. 513 * 514 * 2. Redistributions in binary form must reproduce the above copyright notice, 515 * this list of conditions and the following disclaimer in the documentation 516 * and/or other materials provided with the distribution. 517 * 518 * 3. Neither the name of the copyright holder nor the names of its contributors 519 * may be used to endorse or promote products derived from this software without 520 * specific prior written permission. 521 * 522 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 523 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 524 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 525 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE 526 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 527 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 528 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 529 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 530 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 531 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 532 */ 533 var lib=require("./lib");module.exports={Graph:lib.Graph,json:require("./lib/json"),alg:require("./lib/alg"),version:lib.version}},{"./lib":47,"./lib/alg":38,"./lib/json":48}],32:[function(require,module,exports){var _=require("../lodash");module.exports=components;function components(g){var visited={},cmpts=[],cmpt;function dfs(v){if(_.has(visited,v))return;visited[v]=true;cmpt.push(v);_.each(g.successors(v),dfs);_.each(g.predecessors(v),dfs)}_.each(g.nodes(),function(v){cmpt=[];dfs(v);if(cmpt.length){cmpts.push(cmpt)}});return cmpts}},{"../lodash":49}],33:[function(require,module,exports){var _=require("../lodash");module.exports=dfs; 534 /* 535 * A helper that preforms a pre- or post-order traversal on the input graph 536 * and returns the nodes in the order they were visited. If the graph is 537 * undirected then this algorithm will navigate using neighbors. If the graph 538 * is directed then this algorithm will navigate using successors. 539 * 540 * Order must be one of "pre" or "post". 541 */function dfs(g,vs,order){if(!_.isArray(vs)){vs=[vs]}var navigation=(g.isDirected()?g.successors:g.neighbors).bind(g);var acc=[],visited={};_.each(vs,function(v){if(!g.hasNode(v)){throw new Error("Graph does not have node: "+v)}doDfs(g,v,order==="post",visited,navigation,acc)});return acc}function doDfs(g,v,postorder,visited,navigation,acc){if(!_.has(visited,v)){visited[v]=true;if(!postorder){acc.push(v)}_.each(navigation(v),function(w){doDfs(g,w,postorder,visited,navigation,acc)});if(postorder){acc.push(v)}}}},{"../lodash":49}],34:[function(require,module,exports){var dijkstra=require("./dijkstra"),_=require("../lodash");module.exports=dijkstraAll;function dijkstraAll(g,weightFunc,edgeFunc){return _.transform(g.nodes(),function(acc,v){acc[v]=dijkstra(g,v,weightFunc,edgeFunc)},{})}},{"../lodash":49,"./dijkstra":35}],35:[function(require,module,exports){var _=require("../lodash"),PriorityQueue=require("../data/priority-queue");module.exports=dijkstra;var DEFAULT_WEIGHT_FUNC=_.constant(1);function dijkstra(g,source,weightFn,edgeFn){return runDijkstra(g,String(source),weightFn||DEFAULT_WEIGHT_FUNC,edgeFn||function(v){return g.outEdges(v)})}function runDijkstra(g,source,weightFn,edgeFn){var results={},pq=new PriorityQueue,v,vEntry;var updateNeighbors=function(edge){var w=edge.v!==v?edge.v:edge.w,wEntry=results[w],weight=weightFn(edge),distance=vEntry.distance+weight;if(weight<0){throw new Error("dijkstra does not allow negative edge weights. "+"Bad edge: "+edge+" Weight: "+weight)}if(distance<wEntry.distance){wEntry.distance=distance;wEntry.predecessor=v;pq.decrease(w,distance)}};g.nodes().forEach(function(v){var distance=v===source?0:Number.POSITIVE_INFINITY;results[v]={distance:distance};pq.add(v,distance)});while(pq.size()>0){v=pq.removeMin();vEntry=results[v];if(vEntry.distance===Number.POSITIVE_INFINITY){break}edgeFn(v).forEach(updateNeighbors)}return results}},{"../data/priority-queue":45,"../lodash":49}],36:[function(require,module,exports){var _=require("../lodash"),tarjan=require("./tarjan");module.exports=findCycles;function findCycles(g){return _.filter(tarjan(g),function(cmpt){return cmpt.length>1||cmpt.length===1&&g.hasEdge(cmpt[0],cmpt[0])})}},{"../lodash":49,"./tarjan":43}],37:[function(require,module,exports){var _=require("../lodash");module.exports=floydWarshall;var DEFAULT_WEIGHT_FUNC=_.constant(1);function floydWarshall(g,weightFn,edgeFn){return runFloydWarshall(g,weightFn||DEFAULT_WEIGHT_FUNC,edgeFn||function(v){return g.outEdges(v)})}function runFloydWarshall(g,weightFn,edgeFn){var results={},nodes=g.nodes();nodes.forEach(function(v){results[v]={};results[v][v]={distance:0};nodes.forEach(function(w){if(v!==w){results[v][w]={distance:Number.POSITIVE_INFINITY}}});edgeFn(v).forEach(function(edge){var w=edge.v===v?edge.w:edge.v,d=weightFn(edge);results[v][w]={distance:d,predecessor:v}})});nodes.forEach(function(k){var rowK=results[k];nodes.forEach(function(i){var rowI=results[i];nodes.forEach(function(j){var ik=rowI[k];var kj=rowK[j];var ij=rowI[j];var altDistance=ik.distance+kj.distance;if(altDistance<ij.distance){ij.distance=altDistance;ij.predecessor=kj.predecessor}})})});return results}},{"../lodash":49}],38:[function(require,module,exports){module.exports={components:require("./components"),dijkstra:require("./dijkstra"),dijkstraAll:require("./dijkstra-all"),findCycles:require("./find-cycles"),floydWarshall:require("./floyd-warshall"),isAcyclic:require("./is-acyclic"),postorder:require("./postorder"),preorder:require("./preorder"),prim:require("./prim"),tarjan:require("./tarjan"),topsort:require("./topsort")}},{"./components":32,"./dijkstra":35,"./dijkstra-all":34,"./find-cycles":36,"./floyd-warshall":37,"./is-acyclic":39,"./postorder":40,"./preorder":41,"./prim":42,"./tarjan":43,"./topsort":44}],39:[function(require,module,exports){var topsort=require("./topsort");module.exports=isAcyclic;function isAcyclic(g){try{topsort(g)}catch(e){if(e instanceof topsort.CycleException){return false}throw e}return true}},{"./topsort":44}],40:[function(require,module,exports){var dfs=require("./dfs");module.exports=postorder;function postorder(g,vs){return dfs(g,vs,"post")}},{"./dfs":33}],41:[function(require,module,exports){var dfs=require("./dfs");module.exports=preorder;function preorder(g,vs){return dfs(g,vs,"pre")}},{"./dfs":33}],42:[function(require,module,exports){var _=require("../lodash"),Graph=require("../graph"),PriorityQueue=require("../data/priority-queue");module.exports=prim;function prim(g,weightFunc){var result=new Graph,parents={},pq=new PriorityQueue,v;function updateNeighbors(edge){var w=edge.v===v?edge.w:edge.v,pri=pq.priority(w);if(pri!==undefined){var edgeWeight=weightFunc(edge);if(edgeWeight<pri){parents[w]=v;pq.decrease(w,edgeWeight)}}}if(g.nodeCount()===0){return result}_.each(g.nodes(),function(v){pq.add(v,Number.POSITIVE_INFINITY);result.setNode(v)}); 542 // Start from an arbitrary node 543 pq.decrease(g.nodes()[0],0);var init=false;while(pq.size()>0){v=pq.removeMin();if(_.has(parents,v)){result.setEdge(v,parents[v])}else if(init){throw new Error("Input graph is not connected: "+g)}else{init=true}g.nodeEdges(v).forEach(updateNeighbors)}return result}},{"../data/priority-queue":45,"../graph":46,"../lodash":49}],43:[function(require,module,exports){var _=require("../lodash");module.exports=tarjan;function tarjan(g){var index=0,stack=[],visited={},// node id -> { onStack, lowlink, index } 544 results=[];function dfs(v){var entry=visited[v]={onStack:true,lowlink:index,index:index++};stack.push(v);g.successors(v).forEach(function(w){if(!_.has(visited,w)){dfs(w);entry.lowlink=Math.min(entry.lowlink,visited[w].lowlink)}else if(visited[w].onStack){entry.lowlink=Math.min(entry.lowlink,visited[w].index)}});if(entry.lowlink===entry.index){var cmpt=[],w;do{w=stack.pop();visited[w].onStack=false;cmpt.push(w)}while(v!==w);results.push(cmpt)}}g.nodes().forEach(function(v){if(!_.has(visited,v)){dfs(v)}});return results}},{"../lodash":49}],44:[function(require,module,exports){var _=require("../lodash");module.exports=topsort;topsort.CycleException=CycleException;function topsort(g){var visited={},stack={},results=[];function visit(node){if(_.has(stack,node)){throw new CycleException}if(!_.has(visited,node)){stack[node]=true;visited[node]=true;_.each(g.predecessors(node),visit);delete stack[node];results.push(node)}}_.each(g.sinks(),visit);if(_.size(visited)!==g.nodeCount()){throw new CycleException}return results}function CycleException(){}CycleException.prototype=new Error;// must be an instance of Error to pass testing 545 },{"../lodash":49}],45:[function(require,module,exports){var _=require("../lodash");module.exports=PriorityQueue; 546 /** 547 * A min-priority queue data structure. This algorithm is derived from Cormen, 548 * et al., "Introduction to Algorithms". The basic idea of a min-priority 549 * queue is that you can efficiently (in O(1) time) get the smallest key in 550 * the queue. Adding and removing elements takes O(log n) time. A key can 551 * have its priority decreased in O(log n) time. 552 */function PriorityQueue(){this._arr=[];this._keyIndices={}} 553 /** 554 * Returns the number of elements in the queue. Takes `O(1)` time. 555 */PriorityQueue.prototype.size=function(){return this._arr.length}; 556 /** 557 * Returns the keys that are in the queue. Takes `O(n)` time. 558 */PriorityQueue.prototype.keys=function(){return this._arr.map(function(x){return x.key})}; 559 /** 560 * Returns `true` if **key** is in the queue and `false` if not. 561 */PriorityQueue.prototype.has=function(key){return _.has(this._keyIndices,key)}; 562 /** 563 * Returns the priority for **key**. If **key** is not present in the queue 564 * then this function returns `undefined`. Takes `O(1)` time. 565 * 566 * @param {Object} key 567 */PriorityQueue.prototype.priority=function(key){var index=this._keyIndices[key];if(index!==undefined){return this._arr[index].priority}}; 568 /** 569 * Returns the key for the minimum element in this queue. If the queue is 570 * empty this function throws an Error. Takes `O(1)` time. 571 */PriorityQueue.prototype.min=function(){if(this.size()===0){throw new Error("Queue underflow")}return this._arr[0].key}; 572 /** 573 * Inserts a new key into the priority queue. If the key already exists in 574 * the queue this function returns `false`; otherwise it will return `true`. 575 * Takes `O(n)` time. 576 * 577 * @param {Object} key the key to add 578 * @param {Number} priority the initial priority for the key 579 */PriorityQueue.prototype.add=function(key,priority){var keyIndices=this._keyIndices;key=String(key);if(!_.has(keyIndices,key)){var arr=this._arr;var index=arr.length;keyIndices[key]=index;arr.push({key:key,priority:priority});this._decrease(index);return true}return false}; 580 /** 581 * Removes and returns the smallest key in the queue. Takes `O(log n)` time. 582 */PriorityQueue.prototype.removeMin=function(){this._swap(0,this._arr.length-1);var min=this._arr.pop();delete this._keyIndices[min.key];this._heapify(0);return min.key}; 583 /** 584 * Decreases the priority for **key** to **priority**. If the new priority is 585 * greater than the previous priority, this function will throw an Error. 586 * 587 * @param {Object} key the key for which to raise priority 588 * @param {Number} priority the new priority for the key 589 */PriorityQueue.prototype.decrease=function(key,priority){var index=this._keyIndices[key];if(priority>this._arr[index].priority){throw new Error("New priority is greater than current priority. "+"Key: "+key+" Old: "+this._arr[index].priority+" New: "+priority)}this._arr[index].priority=priority;this._decrease(index)};PriorityQueue.prototype._heapify=function(i){var arr=this._arr;var l=2*i,r=l+1,largest=i;if(l<arr.length){largest=arr[l].priority<arr[largest].priority?l:largest;if(r<arr.length){largest=arr[r].priority<arr[largest].priority?r:largest}if(largest!==i){this._swap(i,largest);this._heapify(largest)}}};PriorityQueue.prototype._decrease=function(index){var arr=this._arr;var priority=arr[index].priority;var parent;while(index!==0){parent=index>>1;if(arr[parent].priority<priority){break}this._swap(index,parent);index=parent}};PriorityQueue.prototype._swap=function(i,j){var arr=this._arr;var keyIndices=this._keyIndices;var origArrI=arr[i];var origArrJ=arr[j];arr[i]=origArrJ;arr[j]=origArrI;keyIndices[origArrJ.key]=i;keyIndices[origArrI.key]=j}},{"../lodash":49}],46:[function(require,module,exports){"use strict";var _=require("./lodash");module.exports=Graph;var DEFAULT_EDGE_NAME="\0",GRAPH_NODE="\0",EDGE_KEY_DELIM=""; 590 // Implementation notes: 591 // 592 // * Node id query functions should return string ids for the nodes 593 // * Edge id query functions should return an "edgeObj", edge object, that is 594 // composed of enough information to uniquely identify an edge: {v, w, name}. 595 // * Internally we use an "edgeId", a stringified form of the edgeObj, to 596 // reference edges. This is because we need a performant way to look these 597 // edges up and, object properties, which have string keys, are the closest 598 // we're going to get to a performant hashtable in JavaScript. 599 function Graph(opts){this._isDirected=_.has(opts,"directed")?opts.directed:true;this._isMultigraph=_.has(opts,"multigraph")?opts.multigraph:false;this._isCompound=_.has(opts,"compound")?opts.compound:false; 600 // Label for the graph itself 601 this._label=undefined; 602 // Defaults to be set when creating a new node 603 this._defaultNodeLabelFn=_.constant(undefined); 604 // Defaults to be set when creating a new edge 605 this._defaultEdgeLabelFn=_.constant(undefined); 606 // v -> label 607 this._nodes={};if(this._isCompound){ 608 // v -> parent 609 this._parent={}; 610 // v -> children 611 this._children={};this._children[GRAPH_NODE]={}} 612 // v -> edgeObj 613 this._in={}; 614 // u -> v -> Number 615 this._preds={}; 616 // v -> edgeObj 617 this._out={}; 618 // v -> w -> Number 619 this._sucs={}; 620 // e -> edgeObj 621 this._edgeObjs={}; 622 // e -> label 623 this._edgeLabels={}} 624 /* Number of nodes in the graph. Should only be changed by the implementation. */Graph.prototype._nodeCount=0; 625 /* Number of edges in the graph. Should only be changed by the implementation. */Graph.prototype._edgeCount=0; 626 /* === Graph functions ========= */Graph.prototype.isDirected=function(){return this._isDirected};Graph.prototype.isMultigraph=function(){return this._isMultigraph};Graph.prototype.isCompound=function(){return this._isCompound};Graph.prototype.setGraph=function(label){this._label=label;return this};Graph.prototype.graph=function(){return this._label}; 627 /* === Node functions ========== */Graph.prototype.setDefaultNodeLabel=function(newDefault){if(!_.isFunction(newDefault)){newDefault=_.constant(newDefault)}this._defaultNodeLabelFn=newDefault;return this};Graph.prototype.nodeCount=function(){return this._nodeCount};Graph.prototype.nodes=function(){return _.keys(this._nodes)};Graph.prototype.sources=function(){var self=this;return _.filter(this.nodes(),function(v){return _.isEmpty(self._in[v])})};Graph.prototype.sinks=function(){var self=this;return _.filter(this.nodes(),function(v){return _.isEmpty(self._out[v])})};Graph.prototype.setNodes=function(vs,value){var args=arguments;var self=this;_.each(vs,function(v){if(args.length>1){self.setNode(v,value)}else{self.setNode(v)}});return this};Graph.prototype.setNode=function(v,value){if(_.has(this._nodes,v)){if(arguments.length>1){this._nodes[v]=value}return this}this._nodes[v]=arguments.length>1?value:this._defaultNodeLabelFn(v);if(this._isCompound){this._parent[v]=GRAPH_NODE;this._children[v]={};this._children[GRAPH_NODE][v]=true}this._in[v]={};this._preds[v]={};this._out[v]={};this._sucs[v]={};++this._nodeCount;return this};Graph.prototype.node=function(v){return this._nodes[v]};Graph.prototype.hasNode=function(v){return _.has(this._nodes,v)};Graph.prototype.removeNode=function(v){var self=this;if(_.has(this._nodes,v)){var removeEdge=function(e){self.removeEdge(self._edgeObjs[e])};delete this._nodes[v];if(this._isCompound){this._removeFromParentsChildList(v);delete this._parent[v];_.each(this.children(v),function(child){self.setParent(child)});delete this._children[v]}_.each(_.keys(this._in[v]),removeEdge);delete this._in[v];delete this._preds[v];_.each(_.keys(this._out[v]),removeEdge);delete this._out[v];delete this._sucs[v];--this._nodeCount}return this};Graph.prototype.setParent=function(v,parent){if(!this._isCompound){throw new Error("Cannot set parent in a non-compound graph")}if(_.isUndefined(parent)){parent=GRAPH_NODE}else{ 628 // Coerce parent to string 629 parent+="";for(var ancestor=parent;!_.isUndefined(ancestor);ancestor=this.parent(ancestor)){if(ancestor===v){throw new Error("Setting "+parent+" as parent of "+v+" would create a cycle")}}this.setNode(parent)}this.setNode(v);this._removeFromParentsChildList(v);this._parent[v]=parent;this._children[parent][v]=true;return this};Graph.prototype._removeFromParentsChildList=function(v){delete this._children[this._parent[v]][v]};Graph.prototype.parent=function(v){if(this._isCompound){var parent=this._parent[v];if(parent!==GRAPH_NODE){return parent}}};Graph.prototype.children=function(v){if(_.isUndefined(v)){v=GRAPH_NODE}if(this._isCompound){var children=this._children[v];if(children){return _.keys(children)}}else if(v===GRAPH_NODE){return this.nodes()}else if(this.hasNode(v)){return[]}};Graph.prototype.predecessors=function(v){var predsV=this._preds[v];if(predsV){return _.keys(predsV)}};Graph.prototype.successors=function(v){var sucsV=this._sucs[v];if(sucsV){return _.keys(sucsV)}};Graph.prototype.neighbors=function(v){var preds=this.predecessors(v);if(preds){return _.union(preds,this.successors(v))}};Graph.prototype.isLeaf=function(v){var neighbors;if(this.isDirected()){neighbors=this.successors(v)}else{neighbors=this.neighbors(v)}return neighbors.length===0};Graph.prototype.filterNodes=function(filter){var copy=new this.constructor({directed:this._isDirected,multigraph:this._isMultigraph,compound:this._isCompound});copy.setGraph(this.graph());var self=this;_.each(this._nodes,function(value,v){if(filter(v)){copy.setNode(v,value)}});_.each(this._edgeObjs,function(e){if(copy.hasNode(e.v)&©.hasNode(e.w)){copy.setEdge(e,self.edge(e))}});var parents={};function findParent(v){var parent=self.parent(v);if(parent===undefined||copy.hasNode(parent)){parents[v]=parent;return parent}else if(parent in parents){return parents[parent]}else{return findParent(parent)}}if(this._isCompound){_.each(copy.nodes(),function(v){copy.setParent(v,findParent(v))})}return copy}; 630 /* === Edge functions ========== */Graph.prototype.setDefaultEdgeLabel=function(newDefault){if(!_.isFunction(newDefault)){newDefault=_.constant(newDefault)}this._defaultEdgeLabelFn=newDefault;return this};Graph.prototype.edgeCount=function(){return this._edgeCount};Graph.prototype.edges=function(){return _.values(this._edgeObjs)};Graph.prototype.setPath=function(vs,value){var self=this,args=arguments;_.reduce(vs,function(v,w){if(args.length>1){self.setEdge(v,w,value)}else{self.setEdge(v,w)}return w});return this}; 631 /* 632 * setEdge(v, w, [value, [name]]) 633 * setEdge({ v, w, [name] }, [value]) 634 */Graph.prototype.setEdge=function(){var v,w,name,value,valueSpecified=false,arg0=arguments[0];if(typeof arg0==="object"&&arg0!==null&&"v"in arg0){v=arg0.v;w=arg0.w;name=arg0.name;if(arguments.length===2){value=arguments[1];valueSpecified=true}}else{v=arg0;w=arguments[1];name=arguments[3];if(arguments.length>2){value=arguments[2];valueSpecified=true}}v=""+v;w=""+w;if(!_.isUndefined(name)){name=""+name}var e=edgeArgsToId(this._isDirected,v,w,name);if(_.has(this._edgeLabels,e)){if(valueSpecified){this._edgeLabels[e]=value}return this}if(!_.isUndefined(name)&&!this._isMultigraph){throw new Error("Cannot set a named edge when isMultigraph = false")} 635 // It didn't exist, so we need to create it. 636 // First ensure the nodes exist. 637 this.setNode(v);this.setNode(w);this._edgeLabels[e]=valueSpecified?value:this._defaultEdgeLabelFn(v,w,name);var edgeObj=edgeArgsToObj(this._isDirected,v,w,name); 638 // Ensure we add undirected edges in a consistent way. 639 v=edgeObj.v;w=edgeObj.w;Object.freeze(edgeObj);this._edgeObjs[e]=edgeObj;incrementOrInitEntry(this._preds[w],v);incrementOrInitEntry(this._sucs[v],w);this._in[w][e]=edgeObj;this._out[v][e]=edgeObj;this._edgeCount++;return this};Graph.prototype.edge=function(v,w,name){var e=arguments.length===1?edgeObjToId(this._isDirected,arguments[0]):edgeArgsToId(this._isDirected,v,w,name);return this._edgeLabels[e]};Graph.prototype.hasEdge=function(v,w,name){var e=arguments.length===1?edgeObjToId(this._isDirected,arguments[0]):edgeArgsToId(this._isDirected,v,w,name);return _.has(this._edgeLabels,e)};Graph.prototype.removeEdge=function(v,w,name){var e=arguments.length===1?edgeObjToId(this._isDirected,arguments[0]):edgeArgsToId(this._isDirected,v,w,name),edge=this._edgeObjs[e];if(edge){v=edge.v;w=edge.w;delete this._edgeLabels[e];delete this._edgeObjs[e];decrementOrRemoveEntry(this._preds[w],v);decrementOrRemoveEntry(this._sucs[v],w);delete this._in[w][e];delete this._out[v][e];this._edgeCount--}return this};Graph.prototype.inEdges=function(v,u){var inV=this._in[v];if(inV){var edges=_.values(inV);if(!u){return edges}return _.filter(edges,function(edge){return edge.v===u})}};Graph.prototype.outEdges=function(v,w){var outV=this._out[v];if(outV){var edges=_.values(outV);if(!w){return edges}return _.filter(edges,function(edge){return edge.w===w})}};Graph.prototype.nodeEdges=function(v,w){var inEdges=this.inEdges(v,w);if(inEdges){return inEdges.concat(this.outEdges(v,w))}};function incrementOrInitEntry(map,k){if(map[k]){map[k]++}else{map[k]=1}}function decrementOrRemoveEntry(map,k){if(!--map[k]){delete map[k]}}function edgeArgsToId(isDirected,v_,w_,name){var v=""+v_;var w=""+w_;if(!isDirected&&v>w){var tmp=v;v=w;w=tmp}return v+EDGE_KEY_DELIM+w+EDGE_KEY_DELIM+(_.isUndefined(name)?DEFAULT_EDGE_NAME:name)}function edgeArgsToObj(isDirected,v_,w_,name){var v=""+v_;var w=""+w_;if(!isDirected&&v>w){var tmp=v;v=w;w=tmp}var edgeObj={v:v,w:w};if(name){edgeObj.name=name}return edgeObj}function edgeObjToId(isDirected,edgeObj){return edgeArgsToId(isDirected,edgeObj.v,edgeObj.w,edgeObj.name)}},{"./lodash":49}],47:[function(require,module,exports){ 640 // Includes only the "core" of graphlib 641 module.exports={Graph:require("./graph"),version:require("./version")}},{"./graph":46,"./version":50}],48:[function(require,module,exports){var _=require("./lodash"),Graph=require("./graph");module.exports={write:write,read:read};function write(g){var json={options:{directed:g.isDirected(),multigraph:g.isMultigraph(),compound:g.isCompound()},nodes:writeNodes(g),edges:writeEdges(g)};if(!_.isUndefined(g.graph())){json.value=_.clone(g.graph())}return json}function writeNodes(g){return _.map(g.nodes(),function(v){var nodeValue=g.node(v),parent=g.parent(v),node={v:v};if(!_.isUndefined(nodeValue)){node.value=nodeValue}if(!_.isUndefined(parent)){node.parent=parent}return node})}function writeEdges(g){return _.map(g.edges(),function(e){var edgeValue=g.edge(e),edge={v:e.v,w:e.w};if(!_.isUndefined(e.name)){edge.name=e.name}if(!_.isUndefined(edgeValue)){edge.value=edgeValue}return edge})}function read(json){var g=new Graph(json.options).setGraph(json.value);_.each(json.nodes,function(entry){g.setNode(entry.v,entry.value);if(entry.parent){g.setParent(entry.v,entry.parent)}});_.each(json.edges,function(entry){g.setEdge({v:entry.v,w:entry.w,name:entry.name},entry.value)});return g}},{"./graph":46,"./lodash":49}],49:[function(require,module,exports){ 642 /* global window */ 643 var lodash;if(typeof require==="function"){try{lodash={clone:require("lodash/clone"),constant:require("lodash/constant"),each:require("lodash/each"),filter:require("lodash/filter"),has:require("lodash/has"),isArray:require("lodash/isArray"),isEmpty:require("lodash/isEmpty"),isFunction:require("lodash/isFunction"),isUndefined:require("lodash/isUndefined"),keys:require("lodash/keys"),map:require("lodash/map"),reduce:require("lodash/reduce"),size:require("lodash/size"),transform:require("lodash/transform"),union:require("lodash/union"),values:require("lodash/values")}}catch(e){}}if(!lodash){lodash=window._}module.exports=lodash},{"lodash/clone":226,"lodash/constant":228,"lodash/each":230,"lodash/filter":232,"lodash/has":239,"lodash/isArray":243,"lodash/isEmpty":247,"lodash/isFunction":248,"lodash/isUndefined":258,"lodash/keys":259,"lodash/map":262,"lodash/reduce":274,"lodash/size":275,"lodash/transform":284,"lodash/union":285,"lodash/values":287}],50:[function(require,module,exports){module.exports="2.1.7"},{}],51:[function(require,module,exports){var getNative=require("./_getNative"),root=require("./_root"); 644 /* Built-in method references that are verified to be native. */var DataView=getNative(root,"DataView");module.exports=DataView},{"./_getNative":163,"./_root":208}],52:[function(require,module,exports){var hashClear=require("./_hashClear"),hashDelete=require("./_hashDelete"),hashGet=require("./_hashGet"),hashHas=require("./_hashHas"),hashSet=require("./_hashSet"); 645 /** 646 * Creates a hash object. 647 * 648 * @private 649 * @constructor 650 * @param {Array} [entries] The key-value pairs to cache. 651 */function Hash(entries){var index=-1,length=entries==null?0:entries.length;this.clear();while(++index<length){var entry=entries[index];this.set(entry[0],entry[1])}} 652 // Add methods to `Hash`. 653 Hash.prototype.clear=hashClear;Hash.prototype["delete"]=hashDelete;Hash.prototype.get=hashGet;Hash.prototype.has=hashHas;Hash.prototype.set=hashSet;module.exports=Hash},{"./_hashClear":172,"./_hashDelete":173,"./_hashGet":174,"./_hashHas":175,"./_hashSet":176}],53:[function(require,module,exports){var listCacheClear=require("./_listCacheClear"),listCacheDelete=require("./_listCacheDelete"),listCacheGet=require("./_listCacheGet"),listCacheHas=require("./_listCacheHas"),listCacheSet=require("./_listCacheSet"); 654 /** 655 * Creates an list cache object. 656 * 657 * @private 658 * @constructor 659 * @param {Array} [entries] The key-value pairs to cache. 660 */function ListCache(entries){var index=-1,length=entries==null?0:entries.length;this.clear();while(++index<length){var entry=entries[index];this.set(entry[0],entry[1])}} 661 // Add methods to `ListCache`. 662 ListCache.prototype.clear=listCacheClear;ListCache.prototype["delete"]=listCacheDelete;ListCache.prototype.get=listCacheGet;ListCache.prototype.has=listCacheHas;ListCache.prototype.set=listCacheSet;module.exports=ListCache},{"./_listCacheClear":188,"./_listCacheDelete":189,"./_listCacheGet":190,"./_listCacheHas":191,"./_listCacheSet":192}],54:[function(require,module,exports){var getNative=require("./_getNative"),root=require("./_root"); 663 /* Built-in method references that are verified to be native. */var Map=getNative(root,"Map");module.exports=Map},{"./_getNative":163,"./_root":208}],55:[function(require,module,exports){var mapCacheClear=require("./_mapCacheClear"),mapCacheDelete=require("./_mapCacheDelete"),mapCacheGet=require("./_mapCacheGet"),mapCacheHas=require("./_mapCacheHas"),mapCacheSet=require("./_mapCacheSet"); 664 /** 665 * Creates a map cache object to store key-value pairs. 666 * 667 * @private 668 * @constructor 669 * @param {Array} [entries] The key-value pairs to cache. 670 */function MapCache(entries){var index=-1,length=entries==null?0:entries.length;this.clear();while(++index<length){var entry=entries[index];this.set(entry[0],entry[1])}} 671 // Add methods to `MapCache`. 672 MapCache.prototype.clear=mapCacheClear;MapCache.prototype["delete"]=mapCacheDelete;MapCache.prototype.get=mapCacheGet;MapCache.prototype.has=mapCacheHas;MapCache.prototype.set=mapCacheSet;module.exports=MapCache},{"./_mapCacheClear":193,"./_mapCacheDelete":194,"./_mapCacheGet":195,"./_mapCacheHas":196,"./_mapCacheSet":197}],56:[function(require,module,exports){var getNative=require("./_getNative"),root=require("./_root"); 673 /* Built-in method references that are verified to be native. */var Promise=getNative(root,"Promise");module.exports=Promise},{"./_getNative":163,"./_root":208}],57:[function(require,module,exports){var getNative=require("./_getNative"),root=require("./_root"); 674 /* Built-in method references that are verified to be native. */var Set=getNative(root,"Set");module.exports=Set},{"./_getNative":163,"./_root":208}],58:[function(require,module,exports){var MapCache=require("./_MapCache"),setCacheAdd=require("./_setCacheAdd"),setCacheHas=require("./_setCacheHas"); 675 /** 676 * 677 * Creates an array cache object to store unique values. 678 * 679 * @private 680 * @constructor 681 * @param {Array} [values] The values to cache. 682 */function SetCache(values){var index=-1,length=values==null?0:values.length;this.__data__=new MapCache;while(++index<length){this.add(values[index])}} 683 // Add methods to `SetCache`. 684 SetCache.prototype.add=SetCache.prototype.push=setCacheAdd;SetCache.prototype.has=setCacheHas;module.exports=SetCache},{"./_MapCache":55,"./_setCacheAdd":210,"./_setCacheHas":211}],59:[function(require,module,exports){var ListCache=require("./_ListCache"),stackClear=require("./_stackClear"),stackDelete=require("./_stackDelete"),stackGet=require("./_stackGet"),stackHas=require("./_stackHas"),stackSet=require("./_stackSet"); 685 /** 686 * Creates a stack cache object to store key-value pairs. 687 * 688 * @private 689 * @constructor 690 * @param {Array} [entries] The key-value pairs to cache. 691 */function Stack(entries){var data=this.__data__=new ListCache(entries);this.size=data.size} 692 // Add methods to `Stack`. 693 Stack.prototype.clear=stackClear;Stack.prototype["delete"]=stackDelete;Stack.prototype.get=stackGet;Stack.prototype.has=stackHas;Stack.prototype.set=stackSet;module.exports=Stack},{"./_ListCache":53,"./_stackClear":215,"./_stackDelete":216,"./_stackGet":217,"./_stackHas":218,"./_stackSet":219}],60:[function(require,module,exports){var root=require("./_root"); 694 /** Built-in value references. */var Symbol=root.Symbol;module.exports=Symbol},{"./_root":208}],61:[function(require,module,exports){var root=require("./_root"); 695 /** Built-in value references. */var Uint8Array=root.Uint8Array;module.exports=Uint8Array},{"./_root":208}],62:[function(require,module,exports){var getNative=require("./_getNative"),root=require("./_root"); 696 /* Built-in method references that are verified to be native. */var WeakMap=getNative(root,"WeakMap");module.exports=WeakMap},{"./_getNative":163,"./_root":208}],63:[function(require,module,exports){ 697 /** 698 * A faster alternative to `Function#apply`, this function invokes `func` 699 * with the `this` binding of `thisArg` and the arguments of `args`. 700 * 701 * @private 702 * @param {Function} func The function to invoke. 703 * @param {*} thisArg The `this` binding of `func`. 704 * @param {Array} args The arguments to invoke `func` with. 705 * @returns {*} Returns the result of `func`. 706 */ 707 function apply(func,thisArg,args){switch(args.length){case 0:return func.call(thisArg);case 1:return func.call(thisArg,args[0]);case 2:return func.call(thisArg,args[0],args[1]);case 3:return func.call(thisArg,args[0],args[1],args[2])}return func.apply(thisArg,args)}module.exports=apply},{}],64:[function(require,module,exports){ 708 /** 709 * A specialized version of `_.forEach` for arrays without support for 710 * iteratee shorthands. 711 * 712 * @private 713 * @param {Array} [array] The array to iterate over. 714 * @param {Function} iteratee The function invoked per iteration. 715 * @returns {Array} Returns `array`. 716 */ 717 function arrayEach(array,iteratee){var index=-1,length=array==null?0:array.length;while(++index<length){if(iteratee(array[index],index,array)===false){break}}return array}module.exports=arrayEach},{}],65:[function(require,module,exports){ 718 /** 719 * A specialized version of `_.filter` for arrays without support for 720 * iteratee shorthands. 721 * 722 * @private 723 * @param {Array} [array] The array to iterate over. 724 * @param {Function} predicate The function invoked per iteration. 725 * @returns {Array} Returns the new filtered array. 726 */ 727 function arrayFilter(array,predicate){var index=-1,length=array==null?0:array.length,resIndex=0,result=[];while(++index<length){var value=array[index];if(predicate(value,index,array)){result[resIndex++]=value}}return result}module.exports=arrayFilter},{}],66:[function(require,module,exports){var baseIndexOf=require("./_baseIndexOf"); 728 /** 729 * A specialized version of `_.includes` for arrays without support for 730 * specifying an index to search from. 731 * 732 * @private 733 * @param {Array} [array] The array to inspect. 734 * @param {*} target The value to search for. 735 * @returns {boolean} Returns `true` if `target` is found, else `false`. 736 */function arrayIncludes(array,value){var length=array==null?0:array.length;return!!length&&baseIndexOf(array,value,0)>-1}module.exports=arrayIncludes},{"./_baseIndexOf":95}],67:[function(require,module,exports){ 737 /** 738 * This function is like `arrayIncludes` except that it accepts a comparator. 739 * 740 * @private 741 * @param {Array} [array] The array to inspect. 742 * @param {*} target The value to search for. 743 * @param {Function} comparator The comparator invoked per element. 744 * @returns {boolean} Returns `true` if `target` is found, else `false`. 745 */ 746 function arrayIncludesWith(array,value,comparator){var index=-1,length=array==null?0:array.length;while(++index<length){if(comparator(value,array[index])){return true}}return false}module.exports=arrayIncludesWith},{}],68:[function(require,module,exports){var baseTimes=require("./_baseTimes"),isArguments=require("./isArguments"),isArray=require("./isArray"),isBuffer=require("./isBuffer"),isIndex=require("./_isIndex"),isTypedArray=require("./isTypedArray"); 747 /** Used for built-in method references. */var objectProto=Object.prototype; 748 /** Used to check objects for own properties. */var hasOwnProperty=objectProto.hasOwnProperty; 749 /** 750 * Creates an array of the enumerable property names of the array-like `value`. 751 * 752 * @private 753 * @param {*} value The value to query. 754 * @param {boolean} inherited Specify returning inherited property names. 755 * @returns {Array} Returns the array of property names. 756 */function arrayLikeKeys(value,inherited){var isArr=isArray(value),isArg=!isArr&&isArguments(value),isBuff=!isArr&&!isArg&&isBuffer(value),isType=!isArr&&!isArg&&!isBuff&&isTypedArray(value),skipIndexes=isArr||isArg||isBuff||isType,result=skipIndexes?baseTimes(value.length,String):[],length=result.length;for(var key in value){if((inherited||hasOwnProperty.call(value,key))&&!(skipIndexes&&( 757 // Safari 9 has enumerable `arguments.length` in strict mode. 758 key=="length"|| 759 // Node.js 0.10 has enumerable non-index properties on buffers. 760 isBuff&&(key=="offset"||key=="parent")|| 761 // PhantomJS 2 has enumerable non-index properties on typed arrays. 762 isType&&(key=="buffer"||key=="byteLength"||key=="byteOffset")|| 763 // Skip index properties. 764 isIndex(key,length)))){result.push(key)}}return result}module.exports=arrayLikeKeys},{"./_baseTimes":125,"./_isIndex":181,"./isArguments":242,"./isArray":243,"./isBuffer":246,"./isTypedArray":257}],69:[function(require,module,exports){ 765 /** 766 * A specialized version of `_.map` for arrays without support for iteratee 767 * shorthands. 768 * 769 * @private 770 * @param {Array} [array] The array to iterate over. 771 * @param {Function} iteratee The function invoked per iteration. 772 * @returns {Array} Returns the new mapped array. 773 */ 774 function arrayMap(array,iteratee){var index=-1,length=array==null?0:array.length,result=Array(length);while(++index<length){result[index]=iteratee(array[index],index,array)}return result}module.exports=arrayMap},{}],70:[function(require,module,exports){ 775 /** 776 * Appends the elements of `values` to `array`. 777 * 778 * @private 779 * @param {Array} array The array to modify. 780 * @param {Array} values The values to append. 781 * @returns {Array} Returns `array`. 782 */ 783 function arrayPush(array,values){var index=-1,length=values.length,offset=array.length;while(++index<length){array[offset+index]=values[index]}return array}module.exports=arrayPush},{}],71:[function(require,module,exports){ 784 /** 785 * A specialized version of `_.reduce` for arrays without support for 786 * iteratee shorthands. 787 * 788 * @private 789 * @param {Array} [array] The array to iterate over. 790 * @param {Function} iteratee The function invoked per iteration. 791 * @param {*} [accumulator] The initial value. 792 * @param {boolean} [initAccum] Specify using the first element of `array` as 793 * the initial value. 794 * @returns {*} Returns the accumulated value. 795 */ 796 function arrayReduce(array,iteratee,accumulator,initAccum){var index=-1,length=array==null?0:array.length;if(initAccum&&length){accumulator=array[++index]}while(++index<length){accumulator=iteratee(accumulator,array[index],index,array)}return accumulator}module.exports=arrayReduce},{}],72:[function(require,module,exports){ 797 /** 798 * A specialized version of `_.some` for arrays without support for iteratee 799 * shorthands. 800 * 801 * @private 802 * @param {Array} [array] The array to iterate over. 803 * @param {Function} predicate The function invoked per iteration. 804 * @returns {boolean} Returns `true` if any element passes the predicate check, 805 * else `false`. 806 */ 807 function arraySome(array,predicate){var index=-1,length=array==null?0:array.length;while(++index<length){if(predicate(array[index],index,array)){return true}}return false}module.exports=arraySome},{}],73:[function(require,module,exports){var baseProperty=require("./_baseProperty"); 808 /** 809 * Gets the size of an ASCII `string`. 810 * 811 * @private 812 * @param {string} string The string inspect. 813 * @returns {number} Returns the string size. 814 */var asciiSize=baseProperty("length");module.exports=asciiSize},{"./_baseProperty":117}],74:[function(require,module,exports){var baseAssignValue=require("./_baseAssignValue"),eq=require("./eq"); 815 /** 816 * This function is like `assignValue` except that it doesn't assign 817 * `undefined` values. 818 * 819 * @private 820 * @param {Object} object The object to modify. 821 * @param {string} key The key of the property to assign. 822 * @param {*} value The value to assign. 823 */function assignMergeValue(object,key,value){if(value!==undefined&&!eq(object[key],value)||value===undefined&&!(key in object)){baseAssignValue(object,key,value)}}module.exports=assignMergeValue},{"./_baseAssignValue":79,"./eq":231}],75:[function(require,module,exports){var baseAssignValue=require("./_baseAssignValue"),eq=require("./eq"); 824 /** Used for built-in method references. */var objectProto=Object.prototype; 825 /** Used to check objects for own properties. */var hasOwnProperty=objectProto.hasOwnProperty; 826 /** 827 * Assigns `value` to `key` of `object` if the existing value is not equivalent 828 * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) 829 * for equality comparisons. 830 * 831 * @private 832 * @param {Object} object The object to modify. 833 * @param {string} key The key of the property to assign. 834 * @param {*} value The value to assign. 835 */function assignValue(object,key,value){var objValue=object[key];if(!(hasOwnProperty.call(object,key)&&eq(objValue,value))||value===undefined&&!(key in object)){baseAssignValue(object,key,value)}}module.exports=assignValue},{"./_baseAssignValue":79,"./eq":231}],76:[function(require,module,exports){var eq=require("./eq"); 836 /** 837 * Gets the index at which the `key` is found in `array` of key-value pairs. 838 * 839 * @private 840 * @param {Array} array The array to inspect. 841 * @param {*} key The key to search for. 842 * @returns {number} Returns the index of the matched value, else `-1`. 843 */function assocIndexOf(array,key){var length=array.length;while(length--){if(eq(array[length][0],key)){return length}}return-1}module.exports=assocIndexOf},{"./eq":231}],77:[function(require,module,exports){var copyObject=require("./_copyObject"),keys=require("./keys"); 844 /** 845 * The base implementation of `_.assign` without support for multiple sources 846 * or `customizer` functions. 847 * 848 * @private 849 * @param {Object} object The destination object. 850 * @param {Object} source The source object. 851 * @returns {Object} Returns `object`. 852 */function baseAssign(object,source){return object&©Object(source,keys(source),object)}module.exports=baseAssign},{"./_copyObject":143,"./keys":259}],78:[function(require,module,exports){var copyObject=require("./_copyObject"),keysIn=require("./keysIn"); 853 /** 854 * The base implementation of `_.assignIn` without support for multiple sources 855 * or `customizer` functions. 856 * 857 * @private 858 * @param {Object} object The destination object. 859 * @param {Object} source The source object. 860 * @returns {Object} Returns `object`. 861 */function baseAssignIn(object,source){return object&©Object(source,keysIn(source),object)}module.exports=baseAssignIn},{"./_copyObject":143,"./keysIn":260}],79:[function(require,module,exports){var defineProperty=require("./_defineProperty"); 862 /** 863 * The base implementation of `assignValue` and `assignMergeValue` without 864 * value checks. 865 * 866 * @private 867 * @param {Object} object The object to modify. 868 * @param {string} key The key of the property to assign. 869 * @param {*} value The value to assign. 870 */function baseAssignValue(object,key,value){if(key=="__proto__"&&defineProperty){defineProperty(object,key,{configurable:true,enumerable:true,value:value,writable:true})}else{object[key]=value}}module.exports=baseAssignValue},{"./_defineProperty":153}],80:[function(require,module,exports){var Stack=require("./_Stack"),arrayEach=require("./_arrayEach"),assignValue=require("./_assignValue"),baseAssign=require("./_baseAssign"),baseAssignIn=require("./_baseAssignIn"),cloneBuffer=require("./_cloneBuffer"),copyArray=require("./_copyArray"),copySymbols=require("./_copySymbols"),copySymbolsIn=require("./_copySymbolsIn"),getAllKeys=require("./_getAllKeys"),getAllKeysIn=require("./_getAllKeysIn"),getTag=require("./_getTag"),initCloneArray=require("./_initCloneArray"),initCloneByTag=require("./_initCloneByTag"),initCloneObject=require("./_initCloneObject"),isArray=require("./isArray"),isBuffer=require("./isBuffer"),isMap=require("./isMap"),isObject=require("./isObject"),isSet=require("./isSet"),keys=require("./keys"); 871 /** Used to compose bitmasks for cloning. */var CLONE_DEEP_FLAG=1,CLONE_FLAT_FLAG=2,CLONE_SYMBOLS_FLAG=4; 872 /** `Object#toString` result references. */var argsTag="[object Arguments]",arrayTag="[object Array]",boolTag="[object Boolean]",dateTag="[object Date]",errorTag="[object Error]",funcTag="[object Function]",genTag="[object GeneratorFunction]",mapTag="[object Map]",numberTag="[object Number]",objectTag="[object Object]",regexpTag="[object RegExp]",setTag="[object Set]",stringTag="[object String]",symbolTag="[object Symbol]",weakMapTag="[object WeakMap]";var arrayBufferTag="[object ArrayBuffer]",dataViewTag="[object DataView]",float32Tag="[object Float32Array]",float64Tag="[object Float64Array]",int8Tag="[object Int8Array]",int16Tag="[object Int16Array]",int32Tag="[object Int32Array]",uint8Tag="[object Uint8Array]",uint8ClampedTag="[object Uint8ClampedArray]",uint16Tag="[object Uint16Array]",uint32Tag="[object Uint32Array]"; 873 /** Used to identify `toStringTag` values supported by `_.clone`. */var cloneableTags={};cloneableTags[argsTag]=cloneableTags[arrayTag]=cloneableTags[arrayBufferTag]=cloneableTags[dataViewTag]=cloneableTags[boolTag]=cloneableTags[dateTag]=cloneableTags[float32Tag]=cloneableTags[float64Tag]=cloneableTags[int8Tag]=cloneableTags[int16Tag]=cloneableTags[int32Tag]=cloneableTags[mapTag]=cloneableTags[numberTag]=cloneableTags[objectTag]=cloneableTags[regexpTag]=cloneableTags[setTag]=cloneableTags[stringTag]=cloneableTags[symbolTag]=cloneableTags[uint8Tag]=cloneableTags[uint8ClampedTag]=cloneableTags[uint16Tag]=cloneableTags[uint32Tag]=true;cloneableTags[errorTag]=cloneableTags[funcTag]=cloneableTags[weakMapTag]=false; 874 /** 875 * The base implementation of `_.clone` and `_.cloneDeep` which tracks 876 * traversed objects. 877 * 878 * @private 879 * @param {*} value The value to clone. 880 * @param {boolean} bitmask The bitmask flags. 881 * 1 - Deep clone 882 * 2 - Flatten inherited properties 883 * 4 - Clone symbols 884 * @param {Function} [customizer] The function to customize cloning. 885 * @param {string} [key] The key of `value`. 886 * @param {Object} [object] The parent object of `value`. 887 * @param {Object} [stack] Tracks traversed objects and their clone counterparts. 888 * @returns {*} Returns the cloned value. 889 */function baseClone(value,bitmask,customizer,key,object,stack){var result,isDeep=bitmask&CLONE_DEEP_FLAG,isFlat=bitmask&CLONE_FLAT_FLAG,isFull=bitmask&CLONE_SYMBOLS_FLAG;if(customizer){result=object?customizer(value,key,object,stack):customizer(value)}if(result!==undefined){return result}if(!isObject(value)){return value}var isArr=isArray(value);if(isArr){result=initCloneArray(value);if(!isDeep){return copyArray(value,result)}}else{var tag=getTag(value),isFunc=tag==funcTag||tag==genTag;if(isBuffer(value)){return cloneBuffer(value,isDeep)}if(tag==objectTag||tag==argsTag||isFunc&&!object){result=isFlat||isFunc?{}:initCloneObject(value);if(!isDeep){return isFlat?copySymbolsIn(value,baseAssignIn(result,value)):copySymbols(value,baseAssign(result,value))}}else{if(!cloneableTags[tag]){return object?value:{}}result=initCloneByTag(value,tag,isDeep)}} 890 // Check for circular references and return its corresponding clone. 891 stack||(stack=new Stack);var stacked=stack.get(value);if(stacked){return stacked}stack.set(value,result);if(isSet(value)){value.forEach(function(subValue){result.add(baseClone(subValue,bitmask,customizer,subValue,value,stack))});return result}if(isMap(value)){value.forEach(function(subValue,key){result.set(key,baseClone(subValue,bitmask,customizer,key,value,stack))});return result}var keysFunc=isFull?isFlat?getAllKeysIn:getAllKeys:isFlat?keysIn:keys;var props=isArr?undefined:keysFunc(value);arrayEach(props||value,function(subValue,key){if(props){key=subValue;subValue=value[key]} 892 // Recursively populate clone (susceptible to call stack limits). 893 assignValue(result,key,baseClone(subValue,bitmask,customizer,key,value,stack))});return result}module.exports=baseClone},{"./_Stack":59,"./_arrayEach":64,"./_assignValue":75,"./_baseAssign":77,"./_baseAssignIn":78,"./_cloneBuffer":135,"./_copyArray":142,"./_copySymbols":144,"./_copySymbolsIn":145,"./_getAllKeys":159,"./_getAllKeysIn":160,"./_getTag":168,"./_initCloneArray":177,"./_initCloneByTag":178,"./_initCloneObject":179,"./isArray":243,"./isBuffer":246,"./isMap":250,"./isObject":251,"./isSet":254,"./keys":259}],81:[function(require,module,exports){var isObject=require("./isObject"); 894 /** Built-in value references. */var objectCreate=Object.create; 895 /** 896 * The base implementation of `_.create` without support for assigning 897 * properties to the created object. 898 * 899 * @private 900 * @param {Object} proto The object to inherit from. 901 * @returns {Object} Returns the new object. 902 */var baseCreate=function(){function object(){}return function(proto){if(!isObject(proto)){return{}}if(objectCreate){return objectCreate(proto)}object.prototype=proto;var result=new object;object.prototype=undefined;return result}}();module.exports=baseCreate},{"./isObject":251}],82:[function(require,module,exports){var baseForOwn=require("./_baseForOwn"),createBaseEach=require("./_createBaseEach"); 903 /** 904 * The base implementation of `_.forEach` without support for iteratee shorthands. 905 * 906 * @private 907 * @param {Array|Object} collection The collection to iterate over. 908 * @param {Function} iteratee The function invoked per iteration. 909 * @returns {Array|Object} Returns `collection`. 910 */var baseEach=createBaseEach(baseForOwn);module.exports=baseEach},{"./_baseForOwn":88,"./_createBaseEach":148}],83:[function(require,module,exports){var isSymbol=require("./isSymbol"); 911 /** 912 * The base implementation of methods like `_.max` and `_.min` which accepts a 913 * `comparator` to determine the extremum value. 914 * 915 * @private 916 * @param {Array} array The array to iterate over. 917 * @param {Function} iteratee The iteratee invoked per iteration. 918 * @param {Function} comparator The comparator used to compare values. 919 * @returns {*} Returns the extremum value. 920 */function baseExtremum(array,iteratee,comparator){var index=-1,length=array.length;while(++index<length){var value=array[index],current=iteratee(value);if(current!=null&&(computed===undefined?current===current&&!isSymbol(current):comparator(current,computed))){var computed=current,result=value}}return result}module.exports=baseExtremum},{"./isSymbol":256}],84:[function(require,module,exports){var baseEach=require("./_baseEach"); 921 /** 922 * The base implementation of `_.filter` without support for iteratee shorthands. 923 * 924 * @private 925 * @param {Array|Object} collection The collection to iterate over. 926 * @param {Function} predicate The function invoked per iteration. 927 * @returns {Array} Returns the new filtered array. 928 */function baseFilter(collection,predicate){var result=[];baseEach(collection,function(value,index,collection){if(predicate(value,index,collection)){result.push(value)}});return result}module.exports=baseFilter},{"./_baseEach":82}],85:[function(require,module,exports){ 929 /** 930 * The base implementation of `_.findIndex` and `_.findLastIndex` without 931 * support for iteratee shorthands. 932 * 933 * @private 934 * @param {Array} array The array to inspect. 935 * @param {Function} predicate The function invoked per iteration. 936 * @param {number} fromIndex The index to search from. 937 * @param {boolean} [fromRight] Specify iterating from right to left. 938 * @returns {number} Returns the index of the matched value, else `-1`. 939 */ 940 function baseFindIndex(array,predicate,fromIndex,fromRight){var length=array.length,index=fromIndex+(fromRight?1:-1);while(fromRight?index--:++index<length){if(predicate(array[index],index,array)){return index}}return-1}module.exports=baseFindIndex},{}],86:[function(require,module,exports){var arrayPush=require("./_arrayPush"),isFlattenable=require("./_isFlattenable"); 941 /** 942 * The base implementation of `_.flatten` with support for restricting flattening. 943 * 944 * @private 945 * @param {Array} array The array to flatten. 946 * @param {number} depth The maximum recursion depth. 947 * @param {boolean} [predicate=isFlattenable] The function invoked per iteration. 948 * @param {boolean} [isStrict] Restrict to values that pass `predicate` checks. 949 * @param {Array} [result=[]] The initial result value. 950 * @returns {Array} Returns the new flattened array. 951 */function baseFlatten(array,depth,predicate,isStrict,result){var index=-1,length=array.length;predicate||(predicate=isFlattenable);result||(result=[]);while(++index<length){var value=array[index];if(depth>0&&predicate(value)){if(depth>1){ 952 // Recursively flatten arrays (susceptible to call stack limits). 953 baseFlatten(value,depth-1,predicate,isStrict,result)}else{arrayPush(result,value)}}else if(!isStrict){result[result.length]=value}}return result}module.exports=baseFlatten},{"./_arrayPush":70,"./_isFlattenable":180}],87:[function(require,module,exports){var createBaseFor=require("./_createBaseFor"); 954 /** 955 * The base implementation of `baseForOwn` which iterates over `object` 956 * properties returned by `keysFunc` and invokes `iteratee` for each property. 957 * Iteratee functions may exit iteration early by explicitly returning `false`. 958 * 959 * @private 960 * @param {Object} object The object to iterate over. 961 * @param {Function} iteratee The function invoked per iteration. 962 * @param {Function} keysFunc The function to get the keys of `object`. 963 * @returns {Object} Returns `object`. 964 */var baseFor=createBaseFor();module.exports=baseFor},{"./_createBaseFor":149}],88:[function(require,module,exports){var baseFor=require("./_baseFor"),keys=require("./keys"); 965 /** 966 * The base implementation of `_.forOwn` without support for iteratee shorthands. 967 * 968 * @private 969 * @param {Object} object The object to iterate over. 970 * @param {Function} iteratee The function invoked per iteration. 971 * @returns {Object} Returns `object`. 972 */function baseForOwn(object,iteratee){return object&&baseFor(object,iteratee,keys)}module.exports=baseForOwn},{"./_baseFor":87,"./keys":259}],89:[function(require,module,exports){var castPath=require("./_castPath"),toKey=require("./_toKey"); 973 /** 974 * The base implementation of `_.get` without support for default values. 975 * 976 * @private 977 * @param {Object} object The object to query. 978 * @param {Array|string} path The path of the property to get. 979 * @returns {*} Returns the resolved value. 980 */function baseGet(object,path){path=castPath(path,object);var index=0,length=path.length;while(object!=null&&index<length){object=object[toKey(path[index++])]}return index&&index==length?object:undefined}module.exports=baseGet},{"./_castPath":133,"./_toKey":223}],90:[function(require,module,exports){var arrayPush=require("./_arrayPush"),isArray=require("./isArray"); 981 /** 982 * The base implementation of `getAllKeys` and `getAllKeysIn` which uses 983 * `keysFunc` and `symbolsFunc` to get the enumerable property names and 984 * symbols of `object`. 985 * 986 * @private 987 * @param {Object} object The object to query. 988 * @param {Function} keysFunc The function to get the keys of `object`. 989 * @param {Function} symbolsFunc The function to get the symbols of `object`. 990 * @returns {Array} Returns the array of property names and symbols. 991 */function baseGetAllKeys(object,keysFunc,symbolsFunc){var result=keysFunc(object);return isArray(object)?result:arrayPush(result,symbolsFunc(object))}module.exports=baseGetAllKeys},{"./_arrayPush":70,"./isArray":243}],91:[function(require,module,exports){var Symbol=require("./_Symbol"),getRawTag=require("./_getRawTag"),objectToString=require("./_objectToString"); 992 /** `Object#toString` result references. */var nullTag="[object Null]",undefinedTag="[object Undefined]"; 993 /** Built-in value references. */var symToStringTag=Symbol?Symbol.toStringTag:undefined; 994 /** 995 * The base implementation of `getTag` without fallbacks for buggy environments. 996 * 997 * @private 998 * @param {*} value The value to query. 999 * @returns {string} Returns the `toStringTag`. 1000 */function baseGetTag(value){if(value==null){return value===undefined?undefinedTag:nullTag}return symToStringTag&&symToStringTag in Object(value)?getRawTag(value):objectToString(value)}module.exports=baseGetTag},{"./_Symbol":60,"./_getRawTag":165,"./_objectToString":205}],92:[function(require,module,exports){ 1001 /** 1002 * The base implementation of `_.gt` which doesn't coerce arguments. 1003 * 1004 * @private 1005 * @param {*} value The value to compare. 1006 * @param {*} other The other value to compare. 1007 * @returns {boolean} Returns `true` if `value` is greater than `other`, 1008 * else `false`. 1009 */ 1010 function baseGt(value,other){return value>other}module.exports=baseGt},{}],93:[function(require,module,exports){ 1011 /** Used for built-in method references. */ 1012 var objectProto=Object.prototype; 1013 /** Used to check objects for own properties. */var hasOwnProperty=objectProto.hasOwnProperty; 1014 /** 1015 * The base implementation of `_.has` without support for deep paths. 1016 * 1017 * @private 1018 * @param {Object} [object] The object to query. 1019 * @param {Array|string} key The key to check. 1020 * @returns {boolean} Returns `true` if `key` exists, else `false`. 1021 */function baseHas(object,key){return object!=null&&hasOwnProperty.call(object,key)}module.exports=baseHas},{}],94:[function(require,module,exports){ 1022 /** 1023 * The base implementation of `_.hasIn` without support for deep paths. 1024 * 1025 * @private 1026 * @param {Object} [object] The object to query. 1027 * @param {Array|string} key The key to check. 1028 * @returns {boolean} Returns `true` if `key` exists, else `false`. 1029 */ 1030 function baseHasIn(object,key){return object!=null&&key in Object(object)}module.exports=baseHasIn},{}],95:[function(require,module,exports){var baseFindIndex=require("./_baseFindIndex"),baseIsNaN=require("./_baseIsNaN"),strictIndexOf=require("./_strictIndexOf"); 1031 /** 1032 * The base implementation of `_.indexOf` without `fromIndex` bounds checks. 1033 * 1034 * @private 1035 * @param {Array} array The array to inspect. 1036 * @param {*} value The value to search for. 1037 * @param {number} fromIndex The index to search from. 1038 * @returns {number} Returns the index of the matched value, else `-1`. 1039 */function baseIndexOf(array,value,fromIndex){return value===value?strictIndexOf(array,value,fromIndex):baseFindIndex(array,baseIsNaN,fromIndex)}module.exports=baseIndexOf},{"./_baseFindIndex":85,"./_baseIsNaN":101,"./_strictIndexOf":220}],96:[function(require,module,exports){var baseGetTag=require("./_baseGetTag"),isObjectLike=require("./isObjectLike"); 1040 /** `Object#toString` result references. */var argsTag="[object Arguments]"; 1041 /** 1042 * The base implementation of `_.isArguments`. 1043 * 1044 * @private 1045 * @param {*} value The value to check. 1046 * @returns {boolean} Returns `true` if `value` is an `arguments` object, 1047 */function baseIsArguments(value){return isObjectLike(value)&&baseGetTag(value)==argsTag}module.exports=baseIsArguments},{"./_baseGetTag":91,"./isObjectLike":252}],97:[function(require,module,exports){var baseIsEqualDeep=require("./_baseIsEqualDeep"),isObjectLike=require("./isObjectLike"); 1048 /** 1049 * The base implementation of `_.isEqual` which supports partial comparisons 1050 * and tracks traversed objects. 1051 * 1052 * @private 1053 * @param {*} value The value to compare. 1054 * @param {*} other The other value to compare. 1055 * @param {boolean} bitmask The bitmask flags. 1056 * 1 - Unordered comparison 1057 * 2 - Partial comparison 1058 * @param {Function} [customizer] The function to customize comparisons. 1059 * @param {Object} [stack] Tracks traversed `value` and `other` objects. 1060 * @returns {boolean} Returns `true` if the values are equivalent, else `false`. 1061 */function baseIsEqual(value,other,bitmask,customizer,stack){if(value===other){return true}if(value==null||other==null||!isObjectLike(value)&&!isObjectLike(other)){return value!==value&&other!==other}return baseIsEqualDeep(value,other,bitmask,customizer,baseIsEqual,stack)}module.exports=baseIsEqual},{"./_baseIsEqualDeep":98,"./isObjectLike":252}],98:[function(require,module,exports){var Stack=require("./_Stack"),equalArrays=require("./_equalArrays"),equalByTag=require("./_equalByTag"),equalObjects=require("./_equalObjects"),getTag=require("./_getTag"),isArray=require("./isArray"),isBuffer=require("./isBuffer"),isTypedArray=require("./isTypedArray"); 1062 /** Used to compose bitmasks for value comparisons. */var COMPARE_PARTIAL_FLAG=1; 1063 /** `Object#toString` result references. */var argsTag="[object Arguments]",arrayTag="[object Array]",objectTag="[object Object]"; 1064 /** Used for built-in method references. */var objectProto=Object.prototype; 1065 /** Used to check objects for own properties. */var hasOwnProperty=objectProto.hasOwnProperty; 1066 /** 1067 * A specialized version of `baseIsEqual` for arrays and objects which performs 1068 * deep comparisons and tracks traversed objects enabling objects with circular 1069 * references to be compared. 1070 * 1071 * @private 1072 * @param {Object} object The object to compare. 1073 * @param {Object} other The other object to compare. 1074 * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. 1075 * @param {Function} customizer The function to customize comparisons. 1076 * @param {Function} equalFunc The function to determine equivalents of values. 1077 * @param {Object} [stack] Tracks traversed `object` and `other` objects. 1078 * @returns {boolean} Returns `true` if the objects are equivalent, else `false`. 1079 */function baseIsEqualDeep(object,other,bitmask,customizer,equalFunc,stack){var objIsArr=isArray(object),othIsArr=isArray(other),objTag=objIsArr?arrayTag:getTag(object),othTag=othIsArr?arrayTag:getTag(other);objTag=objTag==argsTag?objectTag:objTag;othTag=othTag==argsTag?objectTag:othTag;var objIsObj=objTag==objectTag,othIsObj=othTag==objectTag,isSameTag=objTag==othTag;if(isSameTag&&isBuffer(object)){if(!isBuffer(other)){return false}objIsArr=true;objIsObj=false}if(isSameTag&&!objIsObj){stack||(stack=new Stack);return objIsArr||isTypedArray(object)?equalArrays(object,other,bitmask,customizer,equalFunc,stack):equalByTag(object,other,objTag,bitmask,customizer,equalFunc,stack)}if(!(bitmask&COMPARE_PARTIAL_FLAG)){var objIsWrapped=objIsObj&&hasOwnProperty.call(object,"__wrapped__"),othIsWrapped=othIsObj&&hasOwnProperty.call(other,"__wrapped__");if(objIsWrapped||othIsWrapped){var objUnwrapped=objIsWrapped?object.value():object,othUnwrapped=othIsWrapped?other.value():other;stack||(stack=new Stack);return equalFunc(objUnwrapped,othUnwrapped,bitmask,customizer,stack)}}if(!isSameTag){return false}stack||(stack=new Stack);return equalObjects(object,other,bitmask,customizer,equalFunc,stack)}module.exports=baseIsEqualDeep},{"./_Stack":59,"./_equalArrays":154,"./_equalByTag":155,"./_equalObjects":156,"./_getTag":168,"./isArray":243,"./isBuffer":246,"./isTypedArray":257}],99:[function(require,module,exports){var getTag=require("./_getTag"),isObjectLike=require("./isObjectLike"); 1080 /** `Object#toString` result references. */var mapTag="[object Map]"; 1081 /** 1082 * The base implementation of `_.isMap` without Node.js optimizations. 1083 * 1084 * @private 1085 * @param {*} value The value to check. 1086 * @returns {boolean} Returns `true` if `value` is a map, else `false`. 1087 */function baseIsMap(value){return isObjectLike(value)&&getTag(value)==mapTag}module.exports=baseIsMap},{"./_getTag":168,"./isObjectLike":252}],100:[function(require,module,exports){var Stack=require("./_Stack"),baseIsEqual=require("./_baseIsEqual"); 1088 /** Used to compose bitmasks for value comparisons. */var COMPARE_PARTIAL_FLAG=1,COMPARE_UNORDERED_FLAG=2; 1089 /** 1090 * The base implementation of `_.isMatch` without support for iteratee shorthands. 1091 * 1092 * @private 1093 * @param {Object} object The object to inspect. 1094 * @param {Object} source The object of property values to match. 1095 * @param {Array} matchData The property names, values, and compare flags to match. 1096 * @param {Function} [customizer] The function to customize comparisons. 1097 * @returns {boolean} Returns `true` if `object` is a match, else `false`. 1098 */function baseIsMatch(object,source,matchData,customizer){var index=matchData.length,length=index,noCustomizer=!customizer;if(object==null){return!length}object=Object(object);while(index--){var data=matchData[index];if(noCustomizer&&data[2]?data[1]!==object[data[0]]:!(data[0]in object)){return false}}while(++index<length){data=matchData[index];var key=data[0],objValue=object[key],srcValue=data[1];if(noCustomizer&&data[2]){if(objValue===undefined&&!(key in object)){return false}}else{var stack=new Stack;if(customizer){var result=customizer(objValue,srcValue,key,object,source,stack)}if(!(result===undefined?baseIsEqual(srcValue,objValue,COMPARE_PARTIAL_FLAG|COMPARE_UNORDERED_FLAG,customizer,stack):result)){return false}}}return true}module.exports=baseIsMatch},{"./_Stack":59,"./_baseIsEqual":97}],101:[function(require,module,exports){ 1099 /** 1100 * The base implementation of `_.isNaN` without support for number objects. 1101 * 1102 * @private 1103 * @param {*} value The value to check. 1104 * @returns {boolean} Returns `true` if `value` is `NaN`, else `false`. 1105 */ 1106 function baseIsNaN(value){return value!==value}module.exports=baseIsNaN},{}],102:[function(require,module,exports){var isFunction=require("./isFunction"),isMasked=require("./_isMasked"),isObject=require("./isObject"),toSource=require("./_toSource"); 1107 /** 1108 * Used to match `RegExp` 1109 * [syntax characters](http://ecma-international.org/ecma-262/7.0/#sec-patterns). 1110 */var reRegExpChar=/[\\^$.*+?()[\]{}|]/g; 1111 /** Used to detect host constructors (Safari). */var reIsHostCtor=/^\[object .+?Constructor\]$/; 1112 /** Used for built-in method references. */var funcProto=Function.prototype,objectProto=Object.prototype; 1113 /** Used to resolve the decompiled source of functions. */var funcToString=funcProto.toString; 1114 /** Used to check objects for own properties. */var hasOwnProperty=objectProto.hasOwnProperty; 1115 /** Used to detect if a method is native. */var reIsNative=RegExp("^"+funcToString.call(hasOwnProperty).replace(reRegExpChar,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"); 1116 /** 1117 * The base implementation of `_.isNative` without bad shim checks. 1118 * 1119 * @private 1120 * @param {*} value The value to check. 1121 * @returns {boolean} Returns `true` if `value` is a native function, 1122 * else `false`. 1123 */function baseIsNative(value){if(!isObject(value)||isMasked(value)){return false}var pattern=isFunction(value)?reIsNative:reIsHostCtor;return pattern.test(toSource(value))}module.exports=baseIsNative},{"./_isMasked":185,"./_toSource":224,"./isFunction":248,"./isObject":251}],103:[function(require,module,exports){var getTag=require("./_getTag"),isObjectLike=require("./isObjectLike"); 1124 /** `Object#toString` result references. */var setTag="[object Set]"; 1125 /** 1126 * The base implementation of `_.isSet` without Node.js optimizations. 1127 * 1128 * @private 1129 * @param {*} value The value to check. 1130 * @returns {boolean} Returns `true` if `value` is a set, else `false`. 1131 */function baseIsSet(value){return isObjectLike(value)&&getTag(value)==setTag}module.exports=baseIsSet},{"./_getTag":168,"./isObjectLike":252}],104:[function(require,module,exports){var baseGetTag=require("./_baseGetTag"),isLength=require("./isLength"),isObjectLike=require("./isObjectLike"); 1132 /** `Object#toString` result references. */var argsTag="[object Arguments]",arrayTag="[object Array]",boolTag="[object Boolean]",dateTag="[object Date]",errorTag="[object Error]",funcTag="[object Function]",mapTag="[object Map]",numberTag="[object Number]",objectTag="[object Object]",regexpTag="[object RegExp]",setTag="[object Set]",stringTag="[object String]",weakMapTag="[object WeakMap]";var arrayBufferTag="[object ArrayBuffer]",dataViewTag="[object DataView]",float32Tag="[object Float32Array]",float64Tag="[object Float64Array]",int8Tag="[object Int8Array]",int16Tag="[object Int16Array]",int32Tag="[object Int32Array]",uint8Tag="[object Uint8Array]",uint8ClampedTag="[object Uint8ClampedArray]",uint16Tag="[object Uint16Array]",uint32Tag="[object Uint32Array]"; 1133 /** Used to identify `toStringTag` values of typed arrays. */var typedArrayTags={};typedArrayTags[float32Tag]=typedArrayTags[float64Tag]=typedArrayTags[int8Tag]=typedArrayTags[int16Tag]=typedArrayTags[int32Tag]=typedArrayTags[uint8Tag]=typedArrayTags[uint8ClampedTag]=typedArrayTags[uint16Tag]=typedArrayTags[uint32Tag]=true;typedArrayTags[argsTag]=typedArrayTags[arrayTag]=typedArrayTags[arrayBufferTag]=typedArrayTags[boolTag]=typedArrayTags[dataViewTag]=typedArrayTags[dateTag]=typedArrayTags[errorTag]=typedArrayTags[funcTag]=typedArrayTags[mapTag]=typedArrayTags[numberTag]=typedArrayTags[objectTag]=typedArrayTags[regexpTag]=typedArrayTags[setTag]=typedArrayTags[stringTag]=typedArrayTags[weakMapTag]=false; 1134 /** 1135 * The base implementation of `_.isTypedArray` without Node.js optimizations. 1136 * 1137 * @private 1138 * @param {*} value The value to check. 1139 * @returns {boolean} Returns `true` if `value` is a typed array, else `false`. 1140 */function baseIsTypedArray(value){return isObjectLike(value)&&isLength(value.length)&&!!typedArrayTags[baseGetTag(value)]}module.exports=baseIsTypedArray},{"./_baseGetTag":91,"./isLength":249,"./isObjectLike":252}],105:[function(require,module,exports){var baseMatches=require("./_baseMatches"),baseMatchesProperty=require("./_baseMatchesProperty"),identity=require("./identity"),isArray=require("./isArray"),property=require("./property"); 1141 /** 1142 * The base implementation of `_.iteratee`. 1143 * 1144 * @private 1145 * @param {*} [value=_.identity] The value to convert to an iteratee. 1146 * @returns {Function} Returns the iteratee. 1147 */function baseIteratee(value){ 1148 // Don't store the `typeof` result in a variable to avoid a JIT bug in Safari 9. 1149 // See https://bugs.webkit.org/show_bug.cgi?id=156034 for more details. 1150 if(typeof value=="function"){return value}if(value==null){return identity}if(typeof value=="object"){return isArray(value)?baseMatchesProperty(value[0],value[1]):baseMatches(value)}return property(value)}module.exports=baseIteratee},{"./_baseMatches":110,"./_baseMatchesProperty":111,"./identity":241,"./isArray":243,"./property":272}],106:[function(require,module,exports){var isPrototype=require("./_isPrototype"),nativeKeys=require("./_nativeKeys"); 1151 /** Used for built-in method references. */var objectProto=Object.prototype; 1152 /** Used to check objects for own properties. */var hasOwnProperty=objectProto.hasOwnProperty; 1153 /** 1154 * The base implementation of `_.keys` which doesn't treat sparse arrays as dense. 1155 * 1156 * @private 1157 * @param {Object} object The object to query. 1158 * @returns {Array} Returns the array of property names. 1159 */function baseKeys(object){if(!isPrototype(object)){return nativeKeys(object)}var result=[];for(var key in Object(object)){if(hasOwnProperty.call(object,key)&&key!="constructor"){result.push(key)}}return result}module.exports=baseKeys},{"./_isPrototype":186,"./_nativeKeys":202}],107:[function(require,module,exports){var isObject=require("./isObject"),isPrototype=require("./_isPrototype"),nativeKeysIn=require("./_nativeKeysIn"); 1160 /** Used for built-in method references. */var objectProto=Object.prototype; 1161 /** Used to check objects for own properties. */var hasOwnProperty=objectProto.hasOwnProperty; 1162 /** 1163 * The base implementation of `_.keysIn` which doesn't treat sparse arrays as dense. 1164 * 1165 * @private 1166 * @param {Object} object The object to query. 1167 * @returns {Array} Returns the array of property names. 1168 */function baseKeysIn(object){if(!isObject(object)){return nativeKeysIn(object)}var isProto=isPrototype(object),result=[];for(var key in object){if(!(key=="constructor"&&(isProto||!hasOwnProperty.call(object,key)))){result.push(key)}}return result}module.exports=baseKeysIn},{"./_isPrototype":186,"./_nativeKeysIn":203,"./isObject":251}],108:[function(require,module,exports){ 1169 /** 1170 * The base implementation of `_.lt` which doesn't coerce arguments. 1171 * 1172 * @private 1173 * @param {*} value The value to compare. 1174 * @param {*} other The other value to compare. 1175 * @returns {boolean} Returns `true` if `value` is less than `other`, 1176 * else `false`. 1177 */ 1178 function baseLt(value,other){return value<other}module.exports=baseLt},{}],109:[function(require,module,exports){var baseEach=require("./_baseEach"),isArrayLike=require("./isArrayLike"); 1179 /** 1180 * The base implementation of `_.map` without support for iteratee shorthands. 1181 * 1182 * @private 1183 * @param {Array|Object} collection The collection to iterate over. 1184 * @param {Function} iteratee The function invoked per iteration. 1185 * @returns {Array} Returns the new mapped array. 1186 */function baseMap(collection,iteratee){var index=-1,result=isArrayLike(collection)?Array(collection.length):[];baseEach(collection,function(value,key,collection){result[++index]=iteratee(value,key,collection)});return result}module.exports=baseMap},{"./_baseEach":82,"./isArrayLike":244}],110:[function(require,module,exports){var baseIsMatch=require("./_baseIsMatch"),getMatchData=require("./_getMatchData"),matchesStrictComparable=require("./_matchesStrictComparable"); 1187 /** 1188 * The base implementation of `_.matches` which doesn't clone `source`. 1189 * 1190 * @private 1191 * @param {Object} source The object of property values to match. 1192 * @returns {Function} Returns the new spec function. 1193 */function baseMatches(source){var matchData=getMatchData(source);if(matchData.length==1&&matchData[0][2]){return matchesStrictComparable(matchData[0][0],matchData[0][1])}return function(object){return object===source||baseIsMatch(object,source,matchData)}}module.exports=baseMatches},{"./_baseIsMatch":100,"./_getMatchData":162,"./_matchesStrictComparable":199}],111:[function(require,module,exports){var baseIsEqual=require("./_baseIsEqual"),get=require("./get"),hasIn=require("./hasIn"),isKey=require("./_isKey"),isStrictComparable=require("./_isStrictComparable"),matchesStrictComparable=require("./_matchesStrictComparable"),toKey=require("./_toKey"); 1194 /** Used to compose bitmasks for value comparisons. */var COMPARE_PARTIAL_FLAG=1,COMPARE_UNORDERED_FLAG=2; 1195 /** 1196 * The base implementation of `_.matchesProperty` which doesn't clone `srcValue`. 1197 * 1198 * @private 1199 * @param {string} path The path of the property to get. 1200 * @param {*} srcValue The value to match. 1201 * @returns {Function} Returns the new spec function. 1202 */function baseMatchesProperty(path,srcValue){if(isKey(path)&&isStrictComparable(srcValue)){return matchesStrictComparable(toKey(path),srcValue)}return function(object){var objValue=get(object,path);return objValue===undefined&&objValue===srcValue?hasIn(object,path):baseIsEqual(srcValue,objValue,COMPARE_PARTIAL_FLAG|COMPARE_UNORDERED_FLAG)}}module.exports=baseMatchesProperty},{"./_baseIsEqual":97,"./_isKey":183,"./_isStrictComparable":187,"./_matchesStrictComparable":199,"./_toKey":223,"./get":238,"./hasIn":240}],112:[function(require,module,exports){var Stack=require("./_Stack"),assignMergeValue=require("./_assignMergeValue"),baseFor=require("./_baseFor"),baseMergeDeep=require("./_baseMergeDeep"),isObject=require("./isObject"),keysIn=require("./keysIn"),safeGet=require("./_safeGet"); 1203 /** 1204 * The base implementation of `_.merge` without support for multiple sources. 1205 * 1206 * @private 1207 * @param {Object} object The destination object. 1208 * @param {Object} source The source object. 1209 * @param {number} srcIndex The index of `source`. 1210 * @param {Function} [customizer] The function to customize merged values. 1211 * @param {Object} [stack] Tracks traversed source values and their merged 1212 * counterparts. 1213 */function baseMerge(object,source,srcIndex,customizer,stack){if(object===source){return}baseFor(source,function(srcValue,key){if(isObject(srcValue)){stack||(stack=new Stack);baseMergeDeep(object,source,key,srcIndex,baseMerge,customizer,stack)}else{var newValue=customizer?customizer(safeGet(object,key),srcValue,key+"",object,source,stack):undefined;if(newValue===undefined){newValue=srcValue}assignMergeValue(object,key,newValue)}},keysIn)}module.exports=baseMerge},{"./_Stack":59,"./_assignMergeValue":74,"./_baseFor":87,"./_baseMergeDeep":113,"./_safeGet":209,"./isObject":251,"./keysIn":260}],113:[function(require,module,exports){var assignMergeValue=require("./_assignMergeValue"),cloneBuffer=require("./_cloneBuffer"),cloneTypedArray=require("./_cloneTypedArray"),copyArray=require("./_copyArray"),initCloneObject=require("./_initCloneObject"),isArguments=require("./isArguments"),isArray=require("./isArray"),isArrayLikeObject=require("./isArrayLikeObject"),isBuffer=require("./isBuffer"),isFunction=require("./isFunction"),isObject=require("./isObject"),isPlainObject=require("./isPlainObject"),isTypedArray=require("./isTypedArray"),safeGet=require("./_safeGet"),toPlainObject=require("./toPlainObject"); 1214 /** 1215 * A specialized version of `baseMerge` for arrays and objects which performs 1216 * deep merges and tracks traversed objects enabling objects with circular 1217 * references to be merged. 1218 * 1219 * @private 1220 * @param {Object} object The destination object. 1221 * @param {Object} source The source object. 1222 * @param {string} key The key of the value to merge. 1223 * @param {number} srcIndex The index of `source`. 1224 * @param {Function} mergeFunc The function to merge values. 1225 * @param {Function} [customizer] The function to customize assigned values. 1226 * @param {Object} [stack] Tracks traversed source values and their merged 1227 * counterparts. 1228 */function baseMergeDeep(object,source,key,srcIndex,mergeFunc,customizer,stack){var objValue=safeGet(object,key),srcValue=safeGet(source,key),stacked=stack.get(srcValue);if(stacked){assignMergeValue(object,key,stacked);return}var newValue=customizer?customizer(objValue,srcValue,key+"",object,source,stack):undefined;var isCommon=newValue===undefined;if(isCommon){var isArr=isArray(srcValue),isBuff=!isArr&&isBuffer(srcValue),isTyped=!isArr&&!isBuff&&isTypedArray(srcValue);newValue=srcValue;if(isArr||isBuff||isTyped){if(isArray(objValue)){newValue=objValue}else if(isArrayLikeObject(objValue)){newValue=copyArray(objValue)}else if(isBuff){isCommon=false;newValue=cloneBuffer(srcValue,true)}else if(isTyped){isCommon=false;newValue=cloneTypedArray(srcValue,true)}else{newValue=[]}}else if(isPlainObject(srcValue)||isArguments(srcValue)){newValue=objValue;if(isArguments(objValue)){newValue=toPlainObject(objValue)}else if(!isObject(objValue)||srcIndex&&isFunction(objValue)){newValue=initCloneObject(srcValue)}}else{isCommon=false}}if(isCommon){ 1229 // Recursively merge objects and arrays (susceptible to call stack limits). 1230 stack.set(srcValue,newValue);mergeFunc(newValue,srcValue,srcIndex,customizer,stack);stack["delete"](srcValue)}assignMergeValue(object,key,newValue)}module.exports=baseMergeDeep},{"./_assignMergeValue":74,"./_cloneBuffer":135,"./_cloneTypedArray":139,"./_copyArray":142,"./_initCloneObject":179,"./_safeGet":209,"./isArguments":242,"./isArray":243,"./isArrayLikeObject":245,"./isBuffer":246,"./isFunction":248,"./isObject":251,"./isPlainObject":253,"./isTypedArray":257,"./toPlainObject":282}],114:[function(require,module,exports){var arrayMap=require("./_arrayMap"),baseIteratee=require("./_baseIteratee"),baseMap=require("./_baseMap"),baseSortBy=require("./_baseSortBy"),baseUnary=require("./_baseUnary"),compareMultiple=require("./_compareMultiple"),identity=require("./identity"); 1231 /** 1232 * The base implementation of `_.orderBy` without param guards. 1233 * 1234 * @private 1235 * @param {Array|Object} collection The collection to iterate over. 1236 * @param {Function[]|Object[]|string[]} iteratees The iteratees to sort by. 1237 * @param {string[]} orders The sort orders of `iteratees`. 1238 * @returns {Array} Returns the new sorted array. 1239 */function baseOrderBy(collection,iteratees,orders){var index=-1;iteratees=arrayMap(iteratees.length?iteratees:[identity],baseUnary(baseIteratee));var result=baseMap(collection,function(value,key,collection){var criteria=arrayMap(iteratees,function(iteratee){return iteratee(value)});return{criteria:criteria,index:++index,value:value}});return baseSortBy(result,function(object,other){return compareMultiple(object,other,orders)})}module.exports=baseOrderBy},{"./_arrayMap":69,"./_baseIteratee":105,"./_baseMap":109,"./_baseSortBy":124,"./_baseUnary":127,"./_compareMultiple":141,"./identity":241}],115:[function(require,module,exports){var basePickBy=require("./_basePickBy"),hasIn=require("./hasIn"); 1240 /** 1241 * The base implementation of `_.pick` without support for individual 1242 * property identifiers. 1243 * 1244 * @private 1245 * @param {Object} object The source object. 1246 * @param {string[]} paths The property paths to pick. 1247 * @returns {Object} Returns the new object. 1248 */function basePick(object,paths){return basePickBy(object,paths,function(value,path){return hasIn(object,path)})}module.exports=basePick},{"./_basePickBy":116,"./hasIn":240}],116:[function(require,module,exports){var baseGet=require("./_baseGet"),baseSet=require("./_baseSet"),castPath=require("./_castPath"); 1249 /** 1250 * The base implementation of `_.pickBy` without support for iteratee shorthands. 1251 * 1252 * @private 1253 * @param {Object} object The source object. 1254 * @param {string[]} paths The property paths to pick. 1255 * @param {Function} predicate The function invoked per property. 1256 * @returns {Object} Returns the new object. 1257 */function basePickBy(object,paths,predicate){var index=-1,length=paths.length,result={};while(++index<length){var path=paths[index],value=baseGet(object,path);if(predicate(value,path)){baseSet(result,castPath(path,object),value)}}return result}module.exports=basePickBy},{"./_baseGet":89,"./_baseSet":122,"./_castPath":133}],117:[function(require,module,exports){ 1258 /** 1259 * The base implementation of `_.property` without support for deep paths. 1260 * 1261 * @private 1262 * @param {string} key The key of the property to get. 1263 * @returns {Function} Returns the new accessor function. 1264 */ 1265 function baseProperty(key){return function(object){return object==null?undefined:object[key]}}module.exports=baseProperty},{}],118:[function(require,module,exports){var baseGet=require("./_baseGet"); 1266 /** 1267 * A specialized version of `baseProperty` which supports deep paths. 1268 * 1269 * @private 1270 * @param {Array|string} path The path of the property to get. 1271 * @returns {Function} Returns the new accessor function. 1272 */function basePropertyDeep(path){return function(object){return baseGet(object,path)}}module.exports=basePropertyDeep},{"./_baseGet":89}],119:[function(require,module,exports){ 1273 /* Built-in method references for those with the same name as other `lodash` methods. */ 1274 var nativeCeil=Math.ceil,nativeMax=Math.max; 1275 /** 1276 * The base implementation of `_.range` and `_.rangeRight` which doesn't 1277 * coerce arguments. 1278 * 1279 * @private 1280 * @param {number} start The start of the range. 1281 * @param {number} end The end of the range. 1282 * @param {number} step The value to increment or decrement by. 1283 * @param {boolean} [fromRight] Specify iterating from right to left. 1284 * @returns {Array} Returns the range of numbers. 1285 */function baseRange(start,end,step,fromRight){var index=-1,length=nativeMax(nativeCeil((end-start)/(step||1)),0),result=Array(length);while(length--){result[fromRight?length:++index]=start;start+=step}return result}module.exports=baseRange},{}],120:[function(require,module,exports){ 1286 /** 1287 * The base implementation of `_.reduce` and `_.reduceRight`, without support 1288 * for iteratee shorthands, which iterates over `collection` using `eachFunc`. 1289 * 1290 * @private 1291 * @param {Array|Object} collection The collection to iterate over. 1292 * @param {Function} iteratee The function invoked per iteration. 1293 * @param {*} accumulator The initial value. 1294 * @param {boolean} initAccum Specify using the first or last element of 1295 * `collection` as the initial value. 1296 * @param {Function} eachFunc The function to iterate over `collection`. 1297 * @returns {*} Returns the accumulated value. 1298 */ 1299 function baseReduce(collection,iteratee,accumulator,initAccum,eachFunc){eachFunc(collection,function(value,index,collection){accumulator=initAccum?(initAccum=false,value):iteratee(accumulator,value,index,collection)});return accumulator}module.exports=baseReduce},{}],121:[function(require,module,exports){var identity=require("./identity"),overRest=require("./_overRest"),setToString=require("./_setToString"); 1300 /** 1301 * The base implementation of `_.rest` which doesn't validate or coerce arguments. 1302 * 1303 * @private 1304 * @param {Function} func The function to apply a rest parameter to. 1305 * @param {number} [start=func.length-1] The start position of the rest parameter. 1306 * @returns {Function} Returns the new function. 1307 */function baseRest(func,start){return setToString(overRest(func,start,identity),func+"")}module.exports=baseRest},{"./_overRest":207,"./_setToString":213,"./identity":241}],122:[function(require,module,exports){var assignValue=require("./_assignValue"),castPath=require("./_castPath"),isIndex=require("./_isIndex"),isObject=require("./isObject"),toKey=require("./_toKey"); 1308 /** 1309 * The base implementation of `_.set`. 1310 * 1311 * @private 1312 * @param {Object} object The object to modify. 1313 * @param {Array|string} path The path of the property to set. 1314 * @param {*} value The value to set. 1315 * @param {Function} [customizer] The function to customize path creation. 1316 * @returns {Object} Returns `object`. 1317 */function baseSet(object,path,value,customizer){if(!isObject(object)){return object}path=castPath(path,object);var index=-1,length=path.length,lastIndex=length-1,nested=object;while(nested!=null&&++index<length){var key=toKey(path[index]),newValue=value;if(index!=lastIndex){var objValue=nested[key];newValue=customizer?customizer(objValue,key,nested):undefined;if(newValue===undefined){newValue=isObject(objValue)?objValue:isIndex(path[index+1])?[]:{}}}assignValue(nested,key,newValue);nested=nested[key]}return object}module.exports=baseSet},{"./_assignValue":75,"./_castPath":133,"./_isIndex":181,"./_toKey":223,"./isObject":251}],123:[function(require,module,exports){var constant=require("./constant"),defineProperty=require("./_defineProperty"),identity=require("./identity"); 1318 /** 1319 * The base implementation of `setToString` without support for hot loop shorting. 1320 * 1321 * @private 1322 * @param {Function} func The function to modify. 1323 * @param {Function} string The `toString` result. 1324 * @returns {Function} Returns `func`. 1325 */var baseSetToString=!defineProperty?identity:function(func,string){return defineProperty(func,"toString",{configurable:true,enumerable:false,value:constant(string),writable:true})};module.exports=baseSetToString},{"./_defineProperty":153,"./constant":228,"./identity":241}],124:[function(require,module,exports){ 1326 /** 1327 * The base implementation of `_.sortBy` which uses `comparer` to define the 1328 * sort order of `array` and replaces criteria objects with their corresponding 1329 * values. 1330 * 1331 * @private 1332 * @param {Array} array The array to sort. 1333 * @param {Function} comparer The function to define sort order. 1334 * @returns {Array} Returns `array`. 1335 */ 1336 function baseSortBy(array,comparer){var length=array.length;array.sort(comparer);while(length--){array[length]=array[length].value}return array}module.exports=baseSortBy},{}],125:[function(require,module,exports){ 1337 /** 1338 * The base implementation of `_.times` without support for iteratee shorthands 1339 * or max array length checks. 1340 * 1341 * @private 1342 * @param {number} n The number of times to invoke `iteratee`. 1343 * @param {Function} iteratee The function invoked per iteration. 1344 * @returns {Array} Returns the array of results. 1345 */ 1346 function baseTimes(n,iteratee){var index=-1,result=Array(n);while(++index<n){result[index]=iteratee(index)}return result}module.exports=baseTimes},{}],126:[function(require,module,exports){var Symbol=require("./_Symbol"),arrayMap=require("./_arrayMap"),isArray=require("./isArray"),isSymbol=require("./isSymbol"); 1347 /** Used as references for various `Number` constants. */var INFINITY=1/0; 1348 /** Used to convert symbols to primitives and strings. */var symbolProto=Symbol?Symbol.prototype:undefined,symbolToString=symbolProto?symbolProto.toString:undefined; 1349 /** 1350 * The base implementation of `_.toString` which doesn't convert nullish 1351 * values to empty strings. 1352 * 1353 * @private 1354 * @param {*} value The value to process. 1355 * @returns {string} Returns the string. 1356 */function baseToString(value){ 1357 // Exit early for strings to avoid a performance hit in some environments. 1358 if(typeof value=="string"){return value}if(isArray(value)){ 1359 // Recursively convert values (susceptible to call stack limits). 1360 return arrayMap(value,baseToString)+""}if(isSymbol(value)){return symbolToString?symbolToString.call(value):""}var result=value+"";return result=="0"&&1/value==-INFINITY?"-0":result}module.exports=baseToString},{"./_Symbol":60,"./_arrayMap":69,"./isArray":243,"./isSymbol":256}],127:[function(require,module,exports){ 1361 /** 1362 * The base implementation of `_.unary` without support for storing metadata. 1363 * 1364 * @private 1365 * @param {Function} func The function to cap arguments for. 1366 * @returns {Function} Returns the new capped function. 1367 */ 1368 function baseUnary(func){return function(value){return func(value)}}module.exports=baseUnary},{}],128:[function(require,module,exports){var SetCache=require("./_SetCache"),arrayIncludes=require("./_arrayIncludes"),arrayIncludesWith=require("./_arrayIncludesWith"),cacheHas=require("./_cacheHas"),createSet=require("./_createSet"),setToArray=require("./_setToArray"); 1369 /** Used as the size to enable large array optimizations. */var LARGE_ARRAY_SIZE=200; 1370 /** 1371 * The base implementation of `_.uniqBy` without support for iteratee shorthands. 1372 * 1373 * @private 1374 * @param {Array} array The array to inspect. 1375 * @param {Function} [iteratee] The iteratee invoked per element. 1376 * @param {Function} [comparator] The comparator invoked per element. 1377 * @returns {Array} Returns the new duplicate free array. 1378 */function baseUniq(array,iteratee,comparator){var index=-1,includes=arrayIncludes,length=array.length,isCommon=true,result=[],seen=result;if(comparator){isCommon=false;includes=arrayIncludesWith}else if(length>=LARGE_ARRAY_SIZE){var set=iteratee?null:createSet(array);if(set){return setToArray(set)}isCommon=false;includes=cacheHas;seen=new SetCache}else{seen=iteratee?[]:result}outer:while(++index<length){var value=array[index],computed=iteratee?iteratee(value):value;value=comparator||value!==0?value:0;if(isCommon&&computed===computed){var seenIndex=seen.length;while(seenIndex--){if(seen[seenIndex]===computed){continue outer}}if(iteratee){seen.push(computed)}result.push(value)}else if(!includes(seen,computed,comparator)){if(seen!==result){seen.push(computed)}result.push(value)}}return result}module.exports=baseUniq},{"./_SetCache":58,"./_arrayIncludes":66,"./_arrayIncludesWith":67,"./_cacheHas":131,"./_createSet":152,"./_setToArray":212}],129:[function(require,module,exports){var arrayMap=require("./_arrayMap"); 1379 /** 1380 * The base implementation of `_.values` and `_.valuesIn` which creates an 1381 * array of `object` property values corresponding to the property names 1382 * of `props`. 1383 * 1384 * @private 1385 * @param {Object} object The object to query. 1386 * @param {Array} props The property names to get values for. 1387 * @returns {Object} Returns the array of property values. 1388 */function baseValues(object,props){return arrayMap(props,function(key){return object[key]})}module.exports=baseValues},{"./_arrayMap":69}],130:[function(require,module,exports){ 1389 /** 1390 * This base implementation of `_.zipObject` which assigns values using `assignFunc`. 1391 * 1392 * @private 1393 * @param {Array} props The property identifiers. 1394 * @param {Array} values The property values. 1395 * @param {Function} assignFunc The function to assign values. 1396 * @returns {Object} Returns the new object. 1397 */ 1398 function baseZipObject(props,values,assignFunc){var index=-1,length=props.length,valsLength=values.length,result={};while(++index<length){var value=index<valsLength?values[index]:undefined;assignFunc(result,props[index],value)}return result}module.exports=baseZipObject},{}],131:[function(require,module,exports){ 1399 /** 1400 * Checks if a `cache` value for `key` exists. 1401 * 1402 * @private 1403 * @param {Object} cache The cache to query. 1404 * @param {string} key The key of the entry to check. 1405 * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. 1406 */ 1407 function cacheHas(cache,key){return cache.has(key)}module.exports=cacheHas},{}],132:[function(require,module,exports){var identity=require("./identity"); 1408 /** 1409 * Casts `value` to `identity` if it's not a function. 1410 * 1411 * @private 1412 * @param {*} value The value to inspect. 1413 * @returns {Function} Returns cast function. 1414 */function castFunction(value){return typeof value=="function"?value:identity}module.exports=castFunction},{"./identity":241}],133:[function(require,module,exports){var isArray=require("./isArray"),isKey=require("./_isKey"),stringToPath=require("./_stringToPath"),toString=require("./toString"); 1415 /** 1416 * Casts `value` to a path array if it's not one. 1417 * 1418 * @private 1419 * @param {*} value The value to inspect. 1420 * @param {Object} [object] The object to query keys on. 1421 * @returns {Array} Returns the cast property path array. 1422 */function castPath(value,object){if(isArray(value)){return value}return isKey(value,object)?[value]:stringToPath(toString(value))}module.exports=castPath},{"./_isKey":183,"./_stringToPath":222,"./isArray":243,"./toString":283}],134:[function(require,module,exports){var Uint8Array=require("./_Uint8Array"); 1423 /** 1424 * Creates a clone of `arrayBuffer`. 1425 * 1426 * @private 1427 * @param {ArrayBuffer} arrayBuffer The array buffer to clone. 1428 * @returns {ArrayBuffer} Returns the cloned array buffer. 1429 */function cloneArrayBuffer(arrayBuffer){var result=new arrayBuffer.constructor(arrayBuffer.byteLength);new Uint8Array(result).set(new Uint8Array(arrayBuffer));return result}module.exports=cloneArrayBuffer},{"./_Uint8Array":61}],135:[function(require,module,exports){var root=require("./_root"); 1430 /** Detect free variable `exports`. */var freeExports=typeof exports=="object"&&exports&&!exports.nodeType&&exports; 1431 /** Detect free variable `module`. */var freeModule=freeExports&&typeof module=="object"&&module&&!module.nodeType&&module; 1432 /** Detect the popular CommonJS extension `module.exports`. */var moduleExports=freeModule&&freeModule.exports===freeExports; 1433 /** Built-in value references. */var Buffer=moduleExports?root.Buffer:undefined,allocUnsafe=Buffer?Buffer.allocUnsafe:undefined; 1434 /** 1435 * Creates a clone of `buffer`. 1436 * 1437 * @private 1438 * @param {Buffer} buffer The buffer to clone. 1439 * @param {boolean} [isDeep] Specify a deep clone. 1440 * @returns {Buffer} Returns the cloned buffer. 1441 */function cloneBuffer(buffer,isDeep){if(isDeep){return buffer.slice()}var length=buffer.length,result=allocUnsafe?allocUnsafe(length):new buffer.constructor(length);buffer.copy(result);return result}module.exports=cloneBuffer},{"./_root":208}],136:[function(require,module,exports){var cloneArrayBuffer=require("./_cloneArrayBuffer"); 1442 /** 1443 * Creates a clone of `dataView`. 1444 * 1445 * @private 1446 * @param {Object} dataView The data view to clone. 1447 * @param {boolean} [isDeep] Specify a deep clone. 1448 * @returns {Object} Returns the cloned data view. 1449 */function cloneDataView(dataView,isDeep){var buffer=isDeep?cloneArrayBuffer(dataView.buffer):dataView.buffer;return new dataView.constructor(buffer,dataView.byteOffset,dataView.byteLength)}module.exports=cloneDataView},{"./_cloneArrayBuffer":134}],137:[function(require,module,exports){ 1450 /** Used to match `RegExp` flags from their coerced string values. */ 1451 var reFlags=/\w*$/; 1452 /** 1453 * Creates a clone of `regexp`. 1454 * 1455 * @private 1456 * @param {Object} regexp The regexp to clone. 1457 * @returns {Object} Returns the cloned regexp. 1458 */function cloneRegExp(regexp){var result=new regexp.constructor(regexp.source,reFlags.exec(regexp));result.lastIndex=regexp.lastIndex;return result}module.exports=cloneRegExp},{}],138:[function(require,module,exports){var Symbol=require("./_Symbol"); 1459 /** Used to convert symbols to primitives and strings. */var symbolProto=Symbol?Symbol.prototype:undefined,symbolValueOf=symbolProto?symbolProto.valueOf:undefined; 1460 /** 1461 * Creates a clone of the `symbol` object. 1462 * 1463 * @private 1464 * @param {Object} symbol The symbol object to clone. 1465 * @returns {Object} Returns the cloned symbol object. 1466 */function cloneSymbol(symbol){return symbolValueOf?Object(symbolValueOf.call(symbol)):{}}module.exports=cloneSymbol},{"./_Symbol":60}],139:[function(require,module,exports){var cloneArrayBuffer=require("./_cloneArrayBuffer"); 1467 /** 1468 * Creates a clone of `typedArray`. 1469 * 1470 * @private 1471 * @param {Object} typedArray The typed array to clone. 1472 * @param {boolean} [isDeep] Specify a deep clone. 1473 * @returns {Object} Returns the cloned typed array. 1474 */function cloneTypedArray(typedArray,isDeep){var buffer=isDeep?cloneArrayBuffer(typedArray.buffer):typedArray.buffer;return new typedArray.constructor(buffer,typedArray.byteOffset,typedArray.length)}module.exports=cloneTypedArray},{"./_cloneArrayBuffer":134}],140:[function(require,module,exports){var isSymbol=require("./isSymbol"); 1475 /** 1476 * Compares values to sort them in ascending order. 1477 * 1478 * @private 1479 * @param {*} value The value to compare. 1480 * @param {*} other The other value to compare. 1481 * @returns {number} Returns the sort order indicator for `value`. 1482 */function compareAscending(value,other){if(value!==other){var valIsDefined=value!==undefined,valIsNull=value===null,valIsReflexive=value===value,valIsSymbol=isSymbol(value);var othIsDefined=other!==undefined,othIsNull=other===null,othIsReflexive=other===other,othIsSymbol=isSymbol(other);if(!othIsNull&&!othIsSymbol&&!valIsSymbol&&value>other||valIsSymbol&&othIsDefined&&othIsReflexive&&!othIsNull&&!othIsSymbol||valIsNull&&othIsDefined&&othIsReflexive||!valIsDefined&&othIsReflexive||!valIsReflexive){return 1}if(!valIsNull&&!valIsSymbol&&!othIsSymbol&&value<other||othIsSymbol&&valIsDefined&&valIsReflexive&&!valIsNull&&!valIsSymbol||othIsNull&&valIsDefined&&valIsReflexive||!othIsDefined&&valIsReflexive||!othIsReflexive){return-1}}return 0}module.exports=compareAscending},{"./isSymbol":256}],141:[function(require,module,exports){var compareAscending=require("./_compareAscending"); 1483 /** 1484 * Used by `_.orderBy` to compare multiple properties of a value to another 1485 * and stable sort them. 1486 * 1487 * If `orders` is unspecified, all values are sorted in ascending order. Otherwise, 1488 * specify an order of "desc" for descending or "asc" for ascending sort order 1489 * of corresponding values. 1490 * 1491 * @private 1492 * @param {Object} object The object to compare. 1493 * @param {Object} other The other object to compare. 1494 * @param {boolean[]|string[]} orders The order to sort by for each property. 1495 * @returns {number} Returns the sort order indicator for `object`. 1496 */function compareMultiple(object,other,orders){var index=-1,objCriteria=object.criteria,othCriteria=other.criteria,length=objCriteria.length,ordersLength=orders.length;while(++index<length){var result=compareAscending(objCriteria[index],othCriteria[index]);if(result){if(index>=ordersLength){return result}var order=orders[index];return result*(order=="desc"?-1:1)}} 1497 // Fixes an `Array#sort` bug in the JS engine embedded in Adobe applications 1498 // that causes it, under certain circumstances, to provide the same value for 1499 // `object` and `other`. See https://github.com/jashkenas/underscore/pull/1247 1500 // for more details. 1501 // 1502 // This also ensures a stable sort in V8 and other engines. 1503 // See https://bugs.chromium.org/p/v8/issues/detail?id=90 for more details. 1504 return object.index-other.index}module.exports=compareMultiple},{"./_compareAscending":140}],142:[function(require,module,exports){ 1505 /** 1506 * Copies the values of `source` to `array`. 1507 * 1508 * @private 1509 * @param {Array} source The array to copy values from. 1510 * @param {Array} [array=[]] The array to copy values to. 1511 * @returns {Array} Returns `array`. 1512 */ 1513 function copyArray(source,array){var index=-1,length=source.length;array||(array=Array(length));while(++index<length){array[index]=source[index]}return array}module.exports=copyArray},{}],143:[function(require,module,exports){var assignValue=require("./_assignValue"),baseAssignValue=require("./_baseAssignValue"); 1514 /** 1515 * Copies properties of `source` to `object`. 1516 * 1517 * @private 1518 * @param {Object} source The object to copy properties from. 1519 * @param {Array} props The property identifiers to copy. 1520 * @param {Object} [object={}] The object to copy properties to. 1521 * @param {Function} [customizer] The function to customize copied values. 1522 * @returns {Object} Returns `object`. 1523 */function copyObject(source,props,object,customizer){var isNew=!object;object||(object={});var index=-1,length=props.length;while(++index<length){var key=props[index];var newValue=customizer?customizer(object[key],source[key],key,object,source):undefined;if(newValue===undefined){newValue=source[key]}if(isNew){baseAssignValue(object,key,newValue)}else{assignValue(object,key,newValue)}}return object}module.exports=copyObject},{"./_assignValue":75,"./_baseAssignValue":79}],144:[function(require,module,exports){var copyObject=require("./_copyObject"),getSymbols=require("./_getSymbols"); 1524 /** 1525 * Copies own symbols of `source` to `object`. 1526 * 1527 * @private 1528 * @param {Object} source The object to copy symbols from. 1529 * @param {Object} [object={}] The object to copy symbols to. 1530 * @returns {Object} Returns `object`. 1531 */function copySymbols(source,object){return copyObject(source,getSymbols(source),object)}module.exports=copySymbols},{"./_copyObject":143,"./_getSymbols":166}],145:[function(require,module,exports){var copyObject=require("./_copyObject"),getSymbolsIn=require("./_getSymbolsIn"); 1532 /** 1533 * Copies own and inherited symbols of `source` to `object`. 1534 * 1535 * @private 1536 * @param {Object} source The object to copy symbols from. 1537 * @param {Object} [object={}] The object to copy symbols to. 1538 * @returns {Object} Returns `object`. 1539 */function copySymbolsIn(source,object){return copyObject(source,getSymbolsIn(source),object)}module.exports=copySymbolsIn},{"./_copyObject":143,"./_getSymbolsIn":167}],146:[function(require,module,exports){var root=require("./_root"); 1540 /** Used to detect overreaching core-js shims. */var coreJsData=root["__core-js_shared__"];module.exports=coreJsData},{"./_root":208}],147:[function(require,module,exports){var baseRest=require("./_baseRest"),isIterateeCall=require("./_isIterateeCall"); 1541 /** 1542 * Creates a function like `_.assign`. 1543 * 1544 * @private 1545 * @param {Function} assigner The function to assign values. 1546 * @returns {Function} Returns the new assigner function. 1547 */function createAssigner(assigner){return baseRest(function(object,sources){var index=-1,length=sources.length,customizer=length>1?sources[length-1]:undefined,guard=length>2?sources[2]:undefined;customizer=assigner.length>3&&typeof customizer=="function"?(length--,customizer):undefined;if(guard&&isIterateeCall(sources[0],sources[1],guard)){customizer=length<3?undefined:customizer;length=1}object=Object(object);while(++index<length){var source=sources[index];if(source){assigner(object,source,index,customizer)}}return object})}module.exports=createAssigner},{"./_baseRest":121,"./_isIterateeCall":182}],148:[function(require,module,exports){var isArrayLike=require("./isArrayLike"); 1548 /** 1549 * Creates a `baseEach` or `baseEachRight` function. 1550 * 1551 * @private 1552 * @param {Function} eachFunc The function to iterate over a collection. 1553 * @param {boolean} [fromRight] Specify iterating from right to left. 1554 * @returns {Function} Returns the new base function. 1555 */function createBaseEach(eachFunc,fromRight){return function(collection,iteratee){if(collection==null){return collection}if(!isArrayLike(collection)){return eachFunc(collection,iteratee)}var length=collection.length,index=fromRight?length:-1,iterable=Object(collection);while(fromRight?index--:++index<length){if(iteratee(iterable[index],index,iterable)===false){break}}return collection}}module.exports=createBaseEach},{"./isArrayLike":244}],149:[function(require,module,exports){ 1556 /** 1557 * Creates a base function for methods like `_.forIn` and `_.forOwn`. 1558 * 1559 * @private 1560 * @param {boolean} [fromRight] Specify iterating from right to left. 1561 * @returns {Function} Returns the new base function. 1562 */ 1563 function createBaseFor(fromRight){return function(object,iteratee,keysFunc){var index=-1,iterable=Object(object),props=keysFunc(object),length=props.length;while(length--){var key=props[fromRight?length:++index];if(iteratee(iterable[key],key,iterable)===false){break}}return object}}module.exports=createBaseFor},{}],150:[function(require,module,exports){var baseIteratee=require("./_baseIteratee"),isArrayLike=require("./isArrayLike"),keys=require("./keys"); 1564 /** 1565 * Creates a `_.find` or `_.findLast` function. 1566 * 1567 * @private 1568 * @param {Function} findIndexFunc The function to find the collection index. 1569 * @returns {Function} Returns the new find function. 1570 */function createFind(findIndexFunc){return function(collection,predicate,fromIndex){var iterable=Object(collection);if(!isArrayLike(collection)){var iteratee=baseIteratee(predicate,3);collection=keys(collection);predicate=function(key){return iteratee(iterable[key],key,iterable)}}var index=findIndexFunc(collection,predicate,fromIndex);return index>-1?iterable[iteratee?collection[index]:index]:undefined}}module.exports=createFind},{"./_baseIteratee":105,"./isArrayLike":244,"./keys":259}],151:[function(require,module,exports){var baseRange=require("./_baseRange"),isIterateeCall=require("./_isIterateeCall"),toFinite=require("./toFinite"); 1571 /** 1572 * Creates a `_.range` or `_.rangeRight` function. 1573 * 1574 * @private 1575 * @param {boolean} [fromRight] Specify iterating from right to left. 1576 * @returns {Function} Returns the new range function. 1577 */function createRange(fromRight){return function(start,end,step){if(step&&typeof step!="number"&&isIterateeCall(start,end,step)){end=step=undefined} 1578 // Ensure the sign of `-0` is preserved. 1579 start=toFinite(start);if(end===undefined){end=start;start=0}else{end=toFinite(end)}step=step===undefined?start<end?1:-1:toFinite(step);return baseRange(start,end,step,fromRight)}}module.exports=createRange},{"./_baseRange":119,"./_isIterateeCall":182,"./toFinite":279}],152:[function(require,module,exports){var Set=require("./_Set"),noop=require("./noop"),setToArray=require("./_setToArray"); 1580 /** Used as references for various `Number` constants. */var INFINITY=1/0; 1581 /** 1582 * Creates a set object of `values`. 1583 * 1584 * @private 1585 * @param {Array} values The values to add to the set. 1586 * @returns {Object} Returns the new set. 1587 */var createSet=!(Set&&1/setToArray(new Set([,-0]))[1]==INFINITY)?noop:function(values){return new Set(values)};module.exports=createSet},{"./_Set":57,"./_setToArray":212,"./noop":269}],153:[function(require,module,exports){var getNative=require("./_getNative");var defineProperty=function(){try{var func=getNative(Object,"defineProperty");func({},"",{});return func}catch(e){}}();module.exports=defineProperty},{"./_getNative":163}],154:[function(require,module,exports){var SetCache=require("./_SetCache"),arraySome=require("./_arraySome"),cacheHas=require("./_cacheHas"); 1588 /** Used to compose bitmasks for value comparisons. */var COMPARE_PARTIAL_FLAG=1,COMPARE_UNORDERED_FLAG=2; 1589 /** 1590 * A specialized version of `baseIsEqualDeep` for arrays with support for 1591 * partial deep comparisons. 1592 * 1593 * @private 1594 * @param {Array} array The array to compare. 1595 * @param {Array} other The other array to compare. 1596 * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. 1597 * @param {Function} customizer The function to customize comparisons. 1598 * @param {Function} equalFunc The function to determine equivalents of values. 1599 * @param {Object} stack Tracks traversed `array` and `other` objects. 1600 * @returns {boolean} Returns `true` if the arrays are equivalent, else `false`. 1601 */function equalArrays(array,other,bitmask,customizer,equalFunc,stack){var isPartial=bitmask&COMPARE_PARTIAL_FLAG,arrLength=array.length,othLength=other.length;if(arrLength!=othLength&&!(isPartial&&othLength>arrLength)){return false} 1602 // Assume cyclic values are equal. 1603 var stacked=stack.get(array);if(stacked&&stack.get(other)){return stacked==other}var index=-1,result=true,seen=bitmask&COMPARE_UNORDERED_FLAG?new SetCache:undefined;stack.set(array,other);stack.set(other,array); 1604 // Ignore non-index properties. 1605 while(++index<arrLength){var arrValue=array[index],othValue=other[index];if(customizer){var compared=isPartial?customizer(othValue,arrValue,index,other,array,stack):customizer(arrValue,othValue,index,array,other,stack)}if(compared!==undefined){if(compared){continue}result=false;break} 1606 // Recursively compare arrays (susceptible to call stack limits). 1607 if(seen){if(!arraySome(other,function(othValue,othIndex){if(!cacheHas(seen,othIndex)&&(arrValue===othValue||equalFunc(arrValue,othValue,bitmask,customizer,stack))){return seen.push(othIndex)}})){result=false;break}}else if(!(arrValue===othValue||equalFunc(arrValue,othValue,bitmask,customizer,stack))){result=false;break}}stack["delete"](array);stack["delete"](other);return result}module.exports=equalArrays},{"./_SetCache":58,"./_arraySome":72,"./_cacheHas":131}],155:[function(require,module,exports){var Symbol=require("./_Symbol"),Uint8Array=require("./_Uint8Array"),eq=require("./eq"),equalArrays=require("./_equalArrays"),mapToArray=require("./_mapToArray"),setToArray=require("./_setToArray"); 1608 /** Used to compose bitmasks for value comparisons. */var COMPARE_PARTIAL_FLAG=1,COMPARE_UNORDERED_FLAG=2; 1609 /** `Object#toString` result references. */var boolTag="[object Boolean]",dateTag="[object Date]",errorTag="[object Error]",mapTag="[object Map]",numberTag="[object Number]",regexpTag="[object RegExp]",setTag="[object Set]",stringTag="[object String]",symbolTag="[object Symbol]";var arrayBufferTag="[object ArrayBuffer]",dataViewTag="[object DataView]"; 1610 /** Used to convert symbols to primitives and strings. */var symbolProto=Symbol?Symbol.prototype:undefined,symbolValueOf=symbolProto?symbolProto.valueOf:undefined; 1611 /** 1612 * A specialized version of `baseIsEqualDeep` for comparing objects of 1613 * the same `toStringTag`. 1614 * 1615 * **Note:** This function only supports comparing values with tags of 1616 * `Boolean`, `Date`, `Error`, `Number`, `RegExp`, or `String`. 1617 * 1618 * @private 1619 * @param {Object} object The object to compare. 1620 * @param {Object} other The other object to compare. 1621 * @param {string} tag The `toStringTag` of the objects to compare. 1622 * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. 1623 * @param {Function} customizer The function to customize comparisons. 1624 * @param {Function} equalFunc The function to determine equivalents of values. 1625 * @param {Object} stack Tracks traversed `object` and `other` objects. 1626 * @returns {boolean} Returns `true` if the objects are equivalent, else `false`. 1627 */function equalByTag(object,other,tag,bitmask,customizer,equalFunc,stack){switch(tag){case dataViewTag:if(object.byteLength!=other.byteLength||object.byteOffset!=other.byteOffset){return false}object=object.buffer;other=other.buffer;case arrayBufferTag:if(object.byteLength!=other.byteLength||!equalFunc(new Uint8Array(object),new Uint8Array(other))){return false}return true;case boolTag:case dateTag:case numberTag: 1628 // Coerce booleans to `1` or `0` and dates to milliseconds. 1629 // Invalid dates are coerced to `NaN`. 1630 return eq(+object,+other);case errorTag:return object.name==other.name&&object.message==other.message;case regexpTag:case stringTag: 1631 // Coerce regexes to strings and treat strings, primitives and objects, 1632 // as equal. See http://www.ecma-international.org/ecma-262/7.0/#sec-regexp.prototype.tostring 1633 // for more details. 1634 return object==other+"";case mapTag:var convert=mapToArray;case setTag:var isPartial=bitmask&COMPARE_PARTIAL_FLAG;convert||(convert=setToArray);if(object.size!=other.size&&!isPartial){return false} 1635 // Assume cyclic values are equal. 1636 var stacked=stack.get(object);if(stacked){return stacked==other}bitmask|=COMPARE_UNORDERED_FLAG; 1637 // Recursively compare objects (susceptible to call stack limits). 1638 stack.set(object,other);var result=equalArrays(convert(object),convert(other),bitmask,customizer,equalFunc,stack);stack["delete"](object);return result;case symbolTag:if(symbolValueOf){return symbolValueOf.call(object)==symbolValueOf.call(other)}}return false}module.exports=equalByTag},{"./_Symbol":60,"./_Uint8Array":61,"./_equalArrays":154,"./_mapToArray":198,"./_setToArray":212,"./eq":231}],156:[function(require,module,exports){var getAllKeys=require("./_getAllKeys"); 1639 /** Used to compose bitmasks for value comparisons. */var COMPARE_PARTIAL_FLAG=1; 1640 /** Used for built-in method references. */var objectProto=Object.prototype; 1641 /** Used to check objects for own properties. */var hasOwnProperty=objectProto.hasOwnProperty; 1642 /** 1643 * A specialized version of `baseIsEqualDeep` for objects with support for 1644 * partial deep comparisons. 1645 * 1646 * @private 1647 * @param {Object} object The object to compare. 1648 * @param {Object} other The other object to compare. 1649 * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. 1650 * @param {Function} customizer The function to customize comparisons. 1651 * @param {Function} equalFunc The function to determine equivalents of values. 1652 * @param {Object} stack Tracks traversed `object` and `other` objects. 1653 * @returns {boolean} Returns `true` if the objects are equivalent, else `false`. 1654 */function equalObjects(object,other,bitmask,customizer,equalFunc,stack){var isPartial=bitmask&COMPARE_PARTIAL_FLAG,objProps=getAllKeys(object),objLength=objProps.length,othProps=getAllKeys(other),othLength=othProps.length;if(objLength!=othLength&&!isPartial){return false}var index=objLength;while(index--){var key=objProps[index];if(!(isPartial?key in other:hasOwnProperty.call(other,key))){return false}} 1655 // Assume cyclic values are equal. 1656 var stacked=stack.get(object);if(stacked&&stack.get(other)){return stacked==other}var result=true;stack.set(object,other);stack.set(other,object);var skipCtor=isPartial;while(++index<objLength){key=objProps[index];var objValue=object[key],othValue=other[key];if(customizer){var compared=isPartial?customizer(othValue,objValue,key,other,object,stack):customizer(objValue,othValue,key,object,other,stack)} 1657 // Recursively compare objects (susceptible to call stack limits). 1658 if(!(compared===undefined?objValue===othValue||equalFunc(objValue,othValue,bitmask,customizer,stack):compared)){result=false;break}skipCtor||(skipCtor=key=="constructor")}if(result&&!skipCtor){var objCtor=object.constructor,othCtor=other.constructor; 1659 // Non `Object` object instances with different constructors are not equal. 1660 if(objCtor!=othCtor&&("constructor"in object&&"constructor"in other)&&!(typeof objCtor=="function"&&objCtor instanceof objCtor&&typeof othCtor=="function"&&othCtor instanceof othCtor)){result=false}}stack["delete"](object);stack["delete"](other);return result}module.exports=equalObjects},{"./_getAllKeys":159}],157:[function(require,module,exports){var flatten=require("./flatten"),overRest=require("./_overRest"),setToString=require("./_setToString"); 1661 /** 1662 * A specialized version of `baseRest` which flattens the rest array. 1663 * 1664 * @private 1665 * @param {Function} func The function to apply a rest parameter to. 1666 * @returns {Function} Returns the new function. 1667 */function flatRest(func){return setToString(overRest(func,undefined,flatten),func+"")}module.exports=flatRest},{"./_overRest":207,"./_setToString":213,"./flatten":235}],158:[function(require,module,exports){(function(global){ 1668 /** Detect free variable `global` from Node.js. */ 1669 var freeGlobal=typeof global=="object"&&global&&global.Object===Object&&global;module.exports=freeGlobal}).call(this,typeof global!=="undefined"?global:typeof self!=="undefined"?self:typeof window!=="undefined"?window:{})},{}],159:[function(require,module,exports){var baseGetAllKeys=require("./_baseGetAllKeys"),getSymbols=require("./_getSymbols"),keys=require("./keys"); 1670 /** 1671 * Creates an array of own enumerable property names and symbols of `object`. 1672 * 1673 * @private 1674 * @param {Object} object The object to query. 1675 * @returns {Array} Returns the array of property names and symbols. 1676 */function getAllKeys(object){return baseGetAllKeys(object,keys,getSymbols)}module.exports=getAllKeys},{"./_baseGetAllKeys":90,"./_getSymbols":166,"./keys":259}],160:[function(require,module,exports){var baseGetAllKeys=require("./_baseGetAllKeys"),getSymbolsIn=require("./_getSymbolsIn"),keysIn=require("./keysIn"); 1677 /** 1678 * Creates an array of own and inherited enumerable property names and 1679 * symbols of `object`. 1680 * 1681 * @private 1682 * @param {Object} object The object to query. 1683 * @returns {Array} Returns the array of property names and symbols. 1684 */function getAllKeysIn(object){return baseGetAllKeys(object,keysIn,getSymbolsIn)}module.exports=getAllKeysIn},{"./_baseGetAllKeys":90,"./_getSymbolsIn":167,"./keysIn":260}],161:[function(require,module,exports){var isKeyable=require("./_isKeyable"); 1685 /** 1686 * Gets the data for `map`. 1687 * 1688 * @private 1689 * @param {Object} map The map to query. 1690 * @param {string} key The reference key. 1691 * @returns {*} Returns the map data. 1692 */function getMapData(map,key){var data=map.__data__;return isKeyable(key)?data[typeof key=="string"?"string":"hash"]:data.map}module.exports=getMapData},{"./_isKeyable":184}],162:[function(require,module,exports){var isStrictComparable=require("./_isStrictComparable"),keys=require("./keys"); 1693 /** 1694 * Gets the property names, values, and compare flags of `object`. 1695 * 1696 * @private 1697 * @param {Object} object The object to query. 1698 * @returns {Array} Returns the match data of `object`. 1699 */function getMatchData(object){var result=keys(object),length=result.length;while(length--){var key=result[length],value=object[key];result[length]=[key,value,isStrictComparable(value)]}return result}module.exports=getMatchData},{"./_isStrictComparable":187,"./keys":259}],163:[function(require,module,exports){var baseIsNative=require("./_baseIsNative"),getValue=require("./_getValue"); 1700 /** 1701 * Gets the native function at `key` of `object`. 1702 * 1703 * @private 1704 * @param {Object} object The object to query. 1705 * @param {string} key The key of the method to get. 1706 * @returns {*} Returns the function if it's native, else `undefined`. 1707 */function getNative(object,key){var value=getValue(object,key);return baseIsNative(value)?value:undefined}module.exports=getNative},{"./_baseIsNative":102,"./_getValue":169}],164:[function(require,module,exports){var overArg=require("./_overArg"); 1708 /** Built-in value references. */var getPrototype=overArg(Object.getPrototypeOf,Object);module.exports=getPrototype},{"./_overArg":206}],165:[function(require,module,exports){var Symbol=require("./_Symbol"); 1709 /** Used for built-in method references. */var objectProto=Object.prototype; 1710 /** Used to check objects for own properties. */var hasOwnProperty=objectProto.hasOwnProperty; 1711 /** 1712 * Used to resolve the 1713 * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring) 1714 * of values. 1715 */var nativeObjectToString=objectProto.toString; 1716 /** Built-in value references. */var symToStringTag=Symbol?Symbol.toStringTag:undefined; 1717 /** 1718 * A specialized version of `baseGetTag` which ignores `Symbol.toStringTag` values. 1719 * 1720 * @private 1721 * @param {*} value The value to query. 1722 * @returns {string} Returns the raw `toStringTag`. 1723 */function getRawTag(value){var isOwn=hasOwnProperty.call(value,symToStringTag),tag=value[symToStringTag];try{value[symToStringTag]=undefined;var unmasked=true}catch(e){}var result=nativeObjectToString.call(value);if(unmasked){if(isOwn){value[symToStringTag]=tag}else{delete value[symToStringTag]}}return result}module.exports=getRawTag},{"./_Symbol":60}],166:[function(require,module,exports){var arrayFilter=require("./_arrayFilter"),stubArray=require("./stubArray"); 1724 /** Used for built-in method references. */var objectProto=Object.prototype; 1725 /** Built-in value references. */var propertyIsEnumerable=objectProto.propertyIsEnumerable; 1726 /* Built-in method references for those with the same name as other `lodash` methods. */var nativeGetSymbols=Object.getOwnPropertySymbols; 1727 /** 1728 * Creates an array of the own enumerable symbols of `object`. 1729 * 1730 * @private 1731 * @param {Object} object The object to query. 1732 * @returns {Array} Returns the array of symbols. 1733 */var getSymbols=!nativeGetSymbols?stubArray:function(object){if(object==null){return[]}object=Object(object);return arrayFilter(nativeGetSymbols(object),function(symbol){return propertyIsEnumerable.call(object,symbol)})};module.exports=getSymbols},{"./_arrayFilter":65,"./stubArray":277}],167:[function(require,module,exports){var arrayPush=require("./_arrayPush"),getPrototype=require("./_getPrototype"),getSymbols=require("./_getSymbols"),stubArray=require("./stubArray"); 1734 /* Built-in method references for those with the same name as other `lodash` methods. */var nativeGetSymbols=Object.getOwnPropertySymbols; 1735 /** 1736 * Creates an array of the own and inherited enumerable symbols of `object`. 1737 * 1738 * @private 1739 * @param {Object} object The object to query. 1740 * @returns {Array} Returns the array of symbols. 1741 */var getSymbolsIn=!nativeGetSymbols?stubArray:function(object){var result=[];while(object){arrayPush(result,getSymbols(object));object=getPrototype(object)}return result};module.exports=getSymbolsIn},{"./_arrayPush":70,"./_getPrototype":164,"./_getSymbols":166,"./stubArray":277}],168:[function(require,module,exports){var DataView=require("./_DataView"),Map=require("./_Map"),Promise=require("./_Promise"),Set=require("./_Set"),WeakMap=require("./_WeakMap"),baseGetTag=require("./_baseGetTag"),toSource=require("./_toSource"); 1742 /** `Object#toString` result references. */var mapTag="[object Map]",objectTag="[object Object]",promiseTag="[object Promise]",setTag="[object Set]",weakMapTag="[object WeakMap]";var dataViewTag="[object DataView]"; 1743 /** Used to detect maps, sets, and weakmaps. */var dataViewCtorString=toSource(DataView),mapCtorString=toSource(Map),promiseCtorString=toSource(Promise),setCtorString=toSource(Set),weakMapCtorString=toSource(WeakMap); 1744 /** 1745 * Gets the `toStringTag` of `value`. 1746 * 1747 * @private 1748 * @param {*} value The value to query. 1749 * @returns {string} Returns the `toStringTag`. 1750 */var getTag=baseGetTag; 1751 // Fallback for data views, maps, sets, and weak maps in IE 11 and promises in Node.js < 6. 1752 if(DataView&&getTag(new DataView(new ArrayBuffer(1)))!=dataViewTag||Map&&getTag(new Map)!=mapTag||Promise&&getTag(Promise.resolve())!=promiseTag||Set&&getTag(new Set)!=setTag||WeakMap&&getTag(new WeakMap)!=weakMapTag){getTag=function(value){var result=baseGetTag(value),Ctor=result==objectTag?value.constructor:undefined,ctorString=Ctor?toSource(Ctor):"";if(ctorString){switch(ctorString){case dataViewCtorString:return dataViewTag;case mapCtorString:return mapTag;case promiseCtorString:return promiseTag;case setCtorString:return setTag;case weakMapCtorString:return weakMapTag}}return result}}module.exports=getTag},{"./_DataView":51,"./_Map":54,"./_Promise":56,"./_Set":57,"./_WeakMap":62,"./_baseGetTag":91,"./_toSource":224}],169:[function(require,module,exports){ 1753 /** 1754 * Gets the value at `key` of `object`. 1755 * 1756 * @private 1757 * @param {Object} [object] The object to query. 1758 * @param {string} key The key of the property to get. 1759 * @returns {*} Returns the property value. 1760 */ 1761 function getValue(object,key){return object==null?undefined:object[key]}module.exports=getValue},{}],170:[function(require,module,exports){var castPath=require("./_castPath"),isArguments=require("./isArguments"),isArray=require("./isArray"),isIndex=require("./_isIndex"),isLength=require("./isLength"),toKey=require("./_toKey"); 1762 /** 1763 * Checks if `path` exists on `object`. 1764 * 1765 * @private 1766 * @param {Object} object The object to query. 1767 * @param {Array|string} path The path to check. 1768 * @param {Function} hasFunc The function to check properties. 1769 * @returns {boolean} Returns `true` if `path` exists, else `false`. 1770 */function hasPath(object,path,hasFunc){path=castPath(path,object);var index=-1,length=path.length,result=false;while(++index<length){var key=toKey(path[index]);if(!(result=object!=null&&hasFunc(object,key))){break}object=object[key]}if(result||++index!=length){return result}length=object==null?0:object.length;return!!length&&isLength(length)&&isIndex(key,length)&&(isArray(object)||isArguments(object))}module.exports=hasPath},{"./_castPath":133,"./_isIndex":181,"./_toKey":223,"./isArguments":242,"./isArray":243,"./isLength":249}],171:[function(require,module,exports){ 1771 /** Used to compose unicode character classes. */ 1772 var rsAstralRange="\\ud800-\\udfff",rsComboMarksRange="\\u0300-\\u036f",reComboHalfMarksRange="\\ufe20-\\ufe2f",rsComboSymbolsRange="\\u20d0-\\u20ff",rsComboRange=rsComboMarksRange+reComboHalfMarksRange+rsComboSymbolsRange,rsVarRange="\\ufe0e\\ufe0f"; 1773 /** Used to compose unicode capture groups. */var rsZWJ="\\u200d"; 1774 /** Used to detect strings with [zero-width joiners or code points from the astral planes](http://eev.ee/blog/2015/09/12/dark-corners-of-unicode/). */var reHasUnicode=RegExp("["+rsZWJ+rsAstralRange+rsComboRange+rsVarRange+"]"); 1775 /** 1776 * Checks if `string` contains Unicode symbols. 1777 * 1778 * @private 1779 * @param {string} string The string to inspect. 1780 * @returns {boolean} Returns `true` if a symbol is found, else `false`. 1781 */function hasUnicode(string){return reHasUnicode.test(string)}module.exports=hasUnicode},{}],172:[function(require,module,exports){var nativeCreate=require("./_nativeCreate"); 1782 /** 1783 * Removes all key-value entries from the hash. 1784 * 1785 * @private 1786 * @name clear 1787 * @memberOf Hash 1788 */function hashClear(){this.__data__=nativeCreate?nativeCreate(null):{};this.size=0}module.exports=hashClear},{"./_nativeCreate":201}],173:[function(require,module,exports){ 1789 /** 1790 * Removes `key` and its value from the hash. 1791 * 1792 * @private 1793 * @name delete 1794 * @memberOf Hash 1795 * @param {Object} hash The hash to modify. 1796 * @param {string} key The key of the value to remove. 1797 * @returns {boolean} Returns `true` if the entry was removed, else `false`. 1798 */ 1799 function hashDelete(key){var result=this.has(key)&&delete this.__data__[key];this.size-=result?1:0;return result}module.exports=hashDelete},{}],174:[function(require,module,exports){var nativeCreate=require("./_nativeCreate"); 1800 /** Used to stand-in for `undefined` hash values. */var HASH_UNDEFINED="__lodash_hash_undefined__"; 1801 /** Used for built-in method references. */var objectProto=Object.prototype; 1802 /** Used to check objects for own properties. */var hasOwnProperty=objectProto.hasOwnProperty; 1803 /** 1804 * Gets the hash value for `key`. 1805 * 1806 * @private 1807 * @name get 1808 * @memberOf Hash 1809 * @param {string} key The key of the value to get. 1810 * @returns {*} Returns the entry value. 1811 */function hashGet(key){var data=this.__data__;if(nativeCreate){var result=data[key];return result===HASH_UNDEFINED?undefined:result}return hasOwnProperty.call(data,key)?data[key]:undefined}module.exports=hashGet},{"./_nativeCreate":201}],175:[function(require,module,exports){var nativeCreate=require("./_nativeCreate"); 1812 /** Used for built-in method references. */var objectProto=Object.prototype; 1813 /** Used to check objects for own properties. */var hasOwnProperty=objectProto.hasOwnProperty; 1814 /** 1815 * Checks if a hash value for `key` exists. 1816 * 1817 * @private 1818 * @name has 1819 * @memberOf Hash 1820 * @param {string} key The key of the entry to check. 1821 * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. 1822 */function hashHas(key){var data=this.__data__;return nativeCreate?data[key]!==undefined:hasOwnProperty.call(data,key)}module.exports=hashHas},{"./_nativeCreate":201}],176:[function(require,module,exports){var nativeCreate=require("./_nativeCreate"); 1823 /** Used to stand-in for `undefined` hash values. */var HASH_UNDEFINED="__lodash_hash_undefined__"; 1824 /** 1825 * Sets the hash `key` to `value`. 1826 * 1827 * @private 1828 * @name set 1829 * @memberOf Hash 1830 * @param {string} key The key of the value to set. 1831 * @param {*} value The value to set. 1832 * @returns {Object} Returns the hash instance. 1833 */function hashSet(key,value){var data=this.__data__;this.size+=this.has(key)?0:1;data[key]=nativeCreate&&value===undefined?HASH_UNDEFINED:value;return this}module.exports=hashSet},{"./_nativeCreate":201}],177:[function(require,module,exports){ 1834 /** Used for built-in method references. */ 1835 var objectProto=Object.prototype; 1836 /** Used to check objects for own properties. */var hasOwnProperty=objectProto.hasOwnProperty; 1837 /** 1838 * Initializes an array clone. 1839 * 1840 * @private 1841 * @param {Array} array The array to clone. 1842 * @returns {Array} Returns the initialized clone. 1843 */function initCloneArray(array){var length=array.length,result=new array.constructor(length); 1844 // Add properties assigned by `RegExp#exec`. 1845 if(length&&typeof array[0]=="string"&&hasOwnProperty.call(array,"index")){result.index=array.index;result.input=array.input}return result}module.exports=initCloneArray},{}],178:[function(require,module,exports){var cloneArrayBuffer=require("./_cloneArrayBuffer"),cloneDataView=require("./_cloneDataView"),cloneRegExp=require("./_cloneRegExp"),cloneSymbol=require("./_cloneSymbol"),cloneTypedArray=require("./_cloneTypedArray"); 1846 /** `Object#toString` result references. */var boolTag="[object Boolean]",dateTag="[object Date]",mapTag="[object Map]",numberTag="[object Number]",regexpTag="[object RegExp]",setTag="[object Set]",stringTag="[object String]",symbolTag="[object Symbol]";var arrayBufferTag="[object ArrayBuffer]",dataViewTag="[object DataView]",float32Tag="[object Float32Array]",float64Tag="[object Float64Array]",int8Tag="[object Int8Array]",int16Tag="[object Int16Array]",int32Tag="[object Int32Array]",uint8Tag="[object Uint8Array]",uint8ClampedTag="[object Uint8ClampedArray]",uint16Tag="[object Uint16Array]",uint32Tag="[object Uint32Array]"; 1847 /** 1848 * Initializes an object clone based on its `toStringTag`. 1849 * 1850 * **Note:** This function only supports cloning values with tags of 1851 * `Boolean`, `Date`, `Error`, `Map`, `Number`, `RegExp`, `Set`, or `String`. 1852 * 1853 * @private 1854 * @param {Object} object The object to clone. 1855 * @param {string} tag The `toStringTag` of the object to clone. 1856 * @param {boolean} [isDeep] Specify a deep clone. 1857 * @returns {Object} Returns the initialized clone. 1858 */function initCloneByTag(object,tag,isDeep){var Ctor=object.constructor;switch(tag){case arrayBufferTag:return cloneArrayBuffer(object);case boolTag:case dateTag:return new Ctor(+object);case dataViewTag:return cloneDataView(object,isDeep);case float32Tag:case float64Tag:case int8Tag:case int16Tag:case int32Tag:case uint8Tag:case uint8ClampedTag:case uint16Tag:case uint32Tag:return cloneTypedArray(object,isDeep);case mapTag:return new Ctor;case numberTag:case stringTag:return new Ctor(object);case regexpTag:return cloneRegExp(object);case setTag:return new Ctor;case symbolTag:return cloneSymbol(object)}}module.exports=initCloneByTag},{"./_cloneArrayBuffer":134,"./_cloneDataView":136,"./_cloneRegExp":137,"./_cloneSymbol":138,"./_cloneTypedArray":139}],179:[function(require,module,exports){var baseCreate=require("./_baseCreate"),getPrototype=require("./_getPrototype"),isPrototype=require("./_isPrototype"); 1859 /** 1860 * Initializes an object clone. 1861 * 1862 * @private 1863 * @param {Object} object The object to clone. 1864 * @returns {Object} Returns the initialized clone. 1865 */function initCloneObject(object){return typeof object.constructor=="function"&&!isPrototype(object)?baseCreate(getPrototype(object)):{}}module.exports=initCloneObject},{"./_baseCreate":81,"./_getPrototype":164,"./_isPrototype":186}],180:[function(require,module,exports){var Symbol=require("./_Symbol"),isArguments=require("./isArguments"),isArray=require("./isArray"); 1866 /** Built-in value references. */var spreadableSymbol=Symbol?Symbol.isConcatSpreadable:undefined; 1867 /** 1868 * Checks if `value` is a flattenable `arguments` object or array. 1869 * 1870 * @private 1871 * @param {*} value The value to check. 1872 * @returns {boolean} Returns `true` if `value` is flattenable, else `false`. 1873 */function isFlattenable(value){return isArray(value)||isArguments(value)||!!(spreadableSymbol&&value&&value[spreadableSymbol])}module.exports=isFlattenable},{"./_Symbol":60,"./isArguments":242,"./isArray":243}],181:[function(require,module,exports){ 1874 /** Used as references for various `Number` constants. */ 1875 var MAX_SAFE_INTEGER=9007199254740991; 1876 /** Used to detect unsigned integer values. */var reIsUint=/^(?:0|[1-9]\d*)$/; 1877 /** 1878 * Checks if `value` is a valid array-like index. 1879 * 1880 * @private 1881 * @param {*} value The value to check. 1882 * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index. 1883 * @returns {boolean} Returns `true` if `value` is a valid index, else `false`. 1884 */function isIndex(value,length){var type=typeof value;length=length==null?MAX_SAFE_INTEGER:length;return!!length&&(type=="number"||type!="symbol"&&reIsUint.test(value))&&(value>-1&&value%1==0&&value<length)}module.exports=isIndex},{}],182:[function(require,module,exports){var eq=require("./eq"),isArrayLike=require("./isArrayLike"),isIndex=require("./_isIndex"),isObject=require("./isObject"); 1885 /** 1886 * Checks if the given arguments are from an iteratee call. 1887 * 1888 * @private 1889 * @param {*} value The potential iteratee value argument. 1890 * @param {*} index The potential iteratee index or key argument. 1891 * @param {*} object The potential iteratee object argument. 1892 * @returns {boolean} Returns `true` if the arguments are from an iteratee call, 1893 * else `false`. 1894 */function isIterateeCall(value,index,object){if(!isObject(object)){return false}var type=typeof index;if(type=="number"?isArrayLike(object)&&isIndex(index,object.length):type=="string"&&index in object){return eq(object[index],value)}return false}module.exports=isIterateeCall},{"./_isIndex":181,"./eq":231,"./isArrayLike":244,"./isObject":251}],183:[function(require,module,exports){var isArray=require("./isArray"),isSymbol=require("./isSymbol"); 1895 /** Used to match property names within property paths. */var reIsDeepProp=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,reIsPlainProp=/^\w*$/; 1896 /** 1897 * Checks if `value` is a property name and not a property path. 1898 * 1899 * @private 1900 * @param {*} value The value to check. 1901 * @param {Object} [object] The object to query keys on. 1902 * @returns {boolean} Returns `true` if `value` is a property name, else `false`. 1903 */function isKey(value,object){if(isArray(value)){return false}var type=typeof value;if(type=="number"||type=="symbol"||type=="boolean"||value==null||isSymbol(value)){return true}return reIsPlainProp.test(value)||!reIsDeepProp.test(value)||object!=null&&value in Object(object)}module.exports=isKey},{"./isArray":243,"./isSymbol":256}],184:[function(require,module,exports){ 1904 /** 1905 * Checks if `value` is suitable for use as unique object key. 1906 * 1907 * @private 1908 * @param {*} value The value to check. 1909 * @returns {boolean} Returns `true` if `value` is suitable, else `false`. 1910 */ 1911 function isKeyable(value){var type=typeof value;return type=="string"||type=="number"||type=="symbol"||type=="boolean"?value!=="__proto__":value===null}module.exports=isKeyable},{}],185:[function(require,module,exports){var coreJsData=require("./_coreJsData"); 1912 /** Used to detect methods masquerading as native. */var maskSrcKey=function(){var uid=/[^.]+$/.exec(coreJsData&&coreJsData.keys&&coreJsData.keys.IE_PROTO||"");return uid?"Symbol(src)_1."+uid:""}(); 1913 /** 1914 * Checks if `func` has its source masked. 1915 * 1916 * @private 1917 * @param {Function} func The function to check. 1918 * @returns {boolean} Returns `true` if `func` is masked, else `false`. 1919 */function isMasked(func){return!!maskSrcKey&&maskSrcKey in func}module.exports=isMasked},{"./_coreJsData":146}],186:[function(require,module,exports){ 1920 /** Used for built-in method references. */ 1921 var objectProto=Object.prototype; 1922 /** 1923 * Checks if `value` is likely a prototype object. 1924 * 1925 * @private 1926 * @param {*} value The value to check. 1927 * @returns {boolean} Returns `true` if `value` is a prototype, else `false`. 1928 */function isPrototype(value){var Ctor=value&&value.constructor,proto=typeof Ctor=="function"&&Ctor.prototype||objectProto;return value===proto}module.exports=isPrototype},{}],187:[function(require,module,exports){var isObject=require("./isObject"); 1929 /** 1930 * Checks if `value` is suitable for strict equality comparisons, i.e. `===`. 1931 * 1932 * @private 1933 * @param {*} value The value to check. 1934 * @returns {boolean} Returns `true` if `value` if suitable for strict 1935 * equality comparisons, else `false`. 1936 */function isStrictComparable(value){return value===value&&!isObject(value)}module.exports=isStrictComparable},{"./isObject":251}],188:[function(require,module,exports){ 1937 /** 1938 * Removes all key-value entries from the list cache. 1939 * 1940 * @private 1941 * @name clear 1942 * @memberOf ListCache 1943 */ 1944 function listCacheClear(){this.__data__=[];this.size=0}module.exports=listCacheClear},{}],189:[function(require,module,exports){var assocIndexOf=require("./_assocIndexOf"); 1945 /** Used for built-in method references. */var arrayProto=Array.prototype; 1946 /** Built-in value references. */var splice=arrayProto.splice; 1947 /** 1948 * Removes `key` and its value from the list cache. 1949 * 1950 * @private 1951 * @name delete 1952 * @memberOf ListCache 1953 * @param {string} key The key of the value to remove. 1954 * @returns {boolean} Returns `true` if the entry was removed, else `false`. 1955 */function listCacheDelete(key){var data=this.__data__,index=assocIndexOf(data,key);if(index<0){return false}var lastIndex=data.length-1;if(index==lastIndex){data.pop()}else{splice.call(data,index,1)}--this.size;return true}module.exports=listCacheDelete},{"./_assocIndexOf":76}],190:[function(require,module,exports){var assocIndexOf=require("./_assocIndexOf"); 1956 /** 1957 * Gets the list cache value for `key`. 1958 * 1959 * @private 1960 * @name get 1961 * @memberOf ListCache 1962 * @param {string} key The key of the value to get. 1963 * @returns {*} Returns the entry value. 1964 */function listCacheGet(key){var data=this.__data__,index=assocIndexOf(data,key);return index<0?undefined:data[index][1]}module.exports=listCacheGet},{"./_assocIndexOf":76}],191:[function(require,module,exports){var assocIndexOf=require("./_assocIndexOf"); 1965 /** 1966 * Checks if a list cache value for `key` exists. 1967 * 1968 * @private 1969 * @name has 1970 * @memberOf ListCache 1971 * @param {string} key The key of the entry to check. 1972 * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. 1973 */function listCacheHas(key){return assocIndexOf(this.__data__,key)>-1}module.exports=listCacheHas},{"./_assocIndexOf":76}],192:[function(require,module,exports){var assocIndexOf=require("./_assocIndexOf"); 1974 /** 1975 * Sets the list cache `key` to `value`. 1976 * 1977 * @private 1978 * @name set 1979 * @memberOf ListCache 1980 * @param {string} key The key of the value to set. 1981 * @param {*} value The value to set. 1982 * @returns {Object} Returns the list cache instance. 1983 */function listCacheSet(key,value){var data=this.__data__,index=assocIndexOf(data,key);if(index<0){++this.size;data.push([key,value])}else{data[index][1]=value}return this}module.exports=listCacheSet},{"./_assocIndexOf":76}],193:[function(require,module,exports){var Hash=require("./_Hash"),ListCache=require("./_ListCache"),Map=require("./_Map"); 1984 /** 1985 * Removes all key-value entries from the map. 1986 * 1987 * @private 1988 * @name clear 1989 * @memberOf MapCache 1990 */function mapCacheClear(){this.size=0;this.__data__={hash:new Hash,map:new(Map||ListCache),string:new Hash}}module.exports=mapCacheClear},{"./_Hash":52,"./_ListCache":53,"./_Map":54}],194:[function(require,module,exports){var getMapData=require("./_getMapData"); 1991 /** 1992 * Removes `key` and its value from the map. 1993 * 1994 * @private 1995 * @name delete 1996 * @memberOf MapCache 1997 * @param {string} key The key of the value to remove. 1998 * @returns {boolean} Returns `true` if the entry was removed, else `false`. 1999 */function mapCacheDelete(key){var result=getMapData(this,key)["delete"](key);this.size-=result?1:0;return result}module.exports=mapCacheDelete},{"./_getMapData":161}],195:[function(require,module,exports){var getMapData=require("./_getMapData"); 2000 /** 2001 * Gets the map value for `key`. 2002 * 2003 * @private 2004 * @name get 2005 * @memberOf MapCache 2006 * @param {string} key The key of the value to get. 2007 * @returns {*} Returns the entry value. 2008 */function mapCacheGet(key){return getMapData(this,key).get(key)}module.exports=mapCacheGet},{"./_getMapData":161}],196:[function(require,module,exports){var getMapData=require("./_getMapData"); 2009 /** 2010 * Checks if a map value for `key` exists. 2011 * 2012 * @private 2013 * @name has 2014 * @memberOf MapCache 2015 * @param {string} key The key of the entry to check. 2016 * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. 2017 */function mapCacheHas(key){return getMapData(this,key).has(key)}module.exports=mapCacheHas},{"./_getMapData":161}],197:[function(require,module,exports){var getMapData=require("./_getMapData"); 2018 /** 2019 * Sets the map `key` to `value`. 2020 * 2021 * @private 2022 * @name set 2023 * @memberOf MapCache 2024 * @param {string} key The key of the value to set. 2025 * @param {*} value The value to set. 2026 * @returns {Object} Returns the map cache instance. 2027 */function mapCacheSet(key,value){var data=getMapData(this,key),size=data.size;data.set(key,value);this.size+=data.size==size?0:1;return this}module.exports=mapCacheSet},{"./_getMapData":161}],198:[function(require,module,exports){ 2028 /** 2029 * Converts `map` to its key-value pairs. 2030 * 2031 * @private 2032 * @param {Object} map The map to convert. 2033 * @returns {Array} Returns the key-value pairs. 2034 */ 2035 function mapToArray(map){var index=-1,result=Array(map.size);map.forEach(function(value,key){result[++index]=[key,value]});return result}module.exports=mapToArray},{}],199:[function(require,module,exports){ 2036 /** 2037 * A specialized version of `matchesProperty` for source values suitable 2038 * for strict equality comparisons, i.e. `===`. 2039 * 2040 * @private 2041 * @param {string} key The key of the property to get. 2042 * @param {*} srcValue The value to match. 2043 * @returns {Function} Returns the new spec function. 2044 */ 2045 function matchesStrictComparable(key,srcValue){return function(object){if(object==null){return false}return object[key]===srcValue&&(srcValue!==undefined||key in Object(object))}}module.exports=matchesStrictComparable},{}],200:[function(require,module,exports){var memoize=require("./memoize"); 2046 /** Used as the maximum memoize cache size. */var MAX_MEMOIZE_SIZE=500; 2047 /** 2048 * A specialized version of `_.memoize` which clears the memoized function's 2049 * cache when it exceeds `MAX_MEMOIZE_SIZE`. 2050 * 2051 * @private 2052 * @param {Function} func The function to have its output memoized. 2053 * @returns {Function} Returns the new memoized function. 2054 */function memoizeCapped(func){var result=memoize(func,function(key){if(cache.size===MAX_MEMOIZE_SIZE){cache.clear()}return key});var cache=result.cache;return result}module.exports=memoizeCapped},{"./memoize":265}],201:[function(require,module,exports){var getNative=require("./_getNative"); 2055 /* Built-in method references that are verified to be native. */var nativeCreate=getNative(Object,"create");module.exports=nativeCreate},{"./_getNative":163}],202:[function(require,module,exports){var overArg=require("./_overArg"); 2056 /* Built-in method references for those with the same name as other `lodash` methods. */var nativeKeys=overArg(Object.keys,Object);module.exports=nativeKeys},{"./_overArg":206}],203:[function(require,module,exports){ 2057 /** 2058 * This function is like 2059 * [`Object.keys`](http://ecma-international.org/ecma-262/7.0/#sec-object.keys) 2060 * except that it includes inherited enumerable properties. 2061 * 2062 * @private 2063 * @param {Object} object The object to query. 2064 * @returns {Array} Returns the array of property names. 2065 */ 2066 function nativeKeysIn(object){var result=[];if(object!=null){for(var key in Object(object)){result.push(key)}}return result}module.exports=nativeKeysIn},{}],204:[function(require,module,exports){var freeGlobal=require("./_freeGlobal"); 2067 /** Detect free variable `exports`. */var freeExports=typeof exports=="object"&&exports&&!exports.nodeType&&exports; 2068 /** Detect free variable `module`. */var freeModule=freeExports&&typeof module=="object"&&module&&!module.nodeType&&module; 2069 /** Detect the popular CommonJS extension `module.exports`. */var moduleExports=freeModule&&freeModule.exports===freeExports; 2070 /** Detect free variable `process` from Node.js. */var freeProcess=moduleExports&&freeGlobal.process; 2071 /** Used to access faster Node.js helpers. */var nodeUtil=function(){try{ 2072 // Use `util.types` for Node.js 10+. 2073 var types=freeModule&&freeModule.require&&freeModule.require("util").types;if(types){return types} 2074 // Legacy `process.binding('util')` for Node.js < 10. 2075 return freeProcess&&freeProcess.binding&&freeProcess.binding("util")}catch(e){}}();module.exports=nodeUtil},{"./_freeGlobal":158}],205:[function(require,module,exports){ 2076 /** Used for built-in method references. */ 2077 var objectProto=Object.prototype; 2078 /** 2079 * Used to resolve the 2080 * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring) 2081 * of values. 2082 */var nativeObjectToString=objectProto.toString; 2083 /** 2084 * Converts `value` to a string using `Object.prototype.toString`. 2085 * 2086 * @private 2087 * @param {*} value The value to convert. 2088 * @returns {string} Returns the converted string. 2089 */function objectToString(value){return nativeObjectToString.call(value)}module.exports=objectToString},{}],206:[function(require,module,exports){ 2090 /** 2091 * Creates a unary function that invokes `func` with its argument transformed. 2092 * 2093 * @private 2094 * @param {Function} func The function to wrap. 2095 * @param {Function} transform The argument transform. 2096 * @returns {Function} Returns the new function. 2097 */ 2098 function overArg(func,transform){return function(arg){return func(transform(arg))}}module.exports=overArg},{}],207:[function(require,module,exports){var apply=require("./_apply"); 2099 /* Built-in method references for those with the same name as other `lodash` methods. */var nativeMax=Math.max; 2100 /** 2101 * A specialized version of `baseRest` which transforms the rest array. 2102 * 2103 * @private 2104 * @param {Function} func The function to apply a rest parameter to. 2105 * @param {number} [start=func.length-1] The start position of the rest parameter. 2106 * @param {Function} transform The rest array transform. 2107 * @returns {Function} Returns the new function. 2108 */function overRest(func,start,transform){start=nativeMax(start===undefined?func.length-1:start,0);return function(){var args=arguments,index=-1,length=nativeMax(args.length-start,0),array=Array(length);while(++index<length){array[index]=args[start+index]}index=-1;var otherArgs=Array(start+1);while(++index<start){otherArgs[index]=args[index]}otherArgs[start]=transform(array);return apply(func,this,otherArgs)}}module.exports=overRest},{"./_apply":63}],208:[function(require,module,exports){var freeGlobal=require("./_freeGlobal"); 2109 /** Detect free variable `self`. */var freeSelf=typeof self=="object"&&self&&self.Object===Object&&self; 2110 /** Used as a reference to the global object. */var root=freeGlobal||freeSelf||Function("return this")();module.exports=root},{"./_freeGlobal":158}],209:[function(require,module,exports){ 2111 /** 2112 * Gets the value at `key`, unless `key` is "__proto__". 2113 * 2114 * @private 2115 * @param {Object} object The object to query. 2116 * @param {string} key The key of the property to get. 2117 * @returns {*} Returns the property value. 2118 */ 2119 function safeGet(object,key){return key=="__proto__"?undefined:object[key]}module.exports=safeGet},{}],210:[function(require,module,exports){ 2120 /** Used to stand-in for `undefined` hash values. */ 2121 var HASH_UNDEFINED="__lodash_hash_undefined__"; 2122 /** 2123 * Adds `value` to the array cache. 2124 * 2125 * @private 2126 * @name add 2127 * @memberOf SetCache 2128 * @alias push 2129 * @param {*} value The value to cache. 2130 * @returns {Object} Returns the cache instance. 2131 */function setCacheAdd(value){this.__data__.set(value,HASH_UNDEFINED);return this}module.exports=setCacheAdd},{}],211:[function(require,module,exports){ 2132 /** 2133 * Checks if `value` is in the array cache. 2134 * 2135 * @private 2136 * @name has 2137 * @memberOf SetCache 2138 * @param {*} value The value to search for. 2139 * @returns {number} Returns `true` if `value` is found, else `false`. 2140 */ 2141 function setCacheHas(value){return this.__data__.has(value)}module.exports=setCacheHas},{}],212:[function(require,module,exports){ 2142 /** 2143 * Converts `set` to an array of its values. 2144 * 2145 * @private 2146 * @param {Object} set The set to convert. 2147 * @returns {Array} Returns the values. 2148 */ 2149 function setToArray(set){var index=-1,result=Array(set.size);set.forEach(function(value){result[++index]=value});return result}module.exports=setToArray},{}],213:[function(require,module,exports){var baseSetToString=require("./_baseSetToString"),shortOut=require("./_shortOut"); 2150 /** 2151 * Sets the `toString` method of `func` to return `string`. 2152 * 2153 * @private 2154 * @param {Function} func The function to modify. 2155 * @param {Function} string The `toString` result. 2156 * @returns {Function} Returns `func`. 2157 */var setToString=shortOut(baseSetToString);module.exports=setToString},{"./_baseSetToString":123,"./_shortOut":214}],214:[function(require,module,exports){ 2158 /** Used to detect hot functions by number of calls within a span of milliseconds. */ 2159 var HOT_COUNT=800,HOT_SPAN=16; 2160 /* Built-in method references for those with the same name as other `lodash` methods. */var nativeNow=Date.now; 2161 /** 2162 * Creates a function that'll short out and invoke `identity` instead 2163 * of `func` when it's called `HOT_COUNT` or more times in `HOT_SPAN` 2164 * milliseconds. 2165 * 2166 * @private 2167 * @param {Function} func The function to restrict. 2168 * @returns {Function} Returns the new shortable function. 2169 */function shortOut(func){var count=0,lastCalled=0;return function(){var stamp=nativeNow(),remaining=HOT_SPAN-(stamp-lastCalled);lastCalled=stamp;if(remaining>0){if(++count>=HOT_COUNT){return arguments[0]}}else{count=0}return func.apply(undefined,arguments)}}module.exports=shortOut},{}],215:[function(require,module,exports){var ListCache=require("./_ListCache"); 2170 /** 2171 * Removes all key-value entries from the stack. 2172 * 2173 * @private 2174 * @name clear 2175 * @memberOf Stack 2176 */function stackClear(){this.__data__=new ListCache;this.size=0}module.exports=stackClear},{"./_ListCache":53}],216:[function(require,module,exports){ 2177 /** 2178 * Removes `key` and its value from the stack. 2179 * 2180 * @private 2181 * @name delete 2182 * @memberOf Stack 2183 * @param {string} key The key of the value to remove. 2184 * @returns {boolean} Returns `true` if the entry was removed, else `false`. 2185 */ 2186 function stackDelete(key){var data=this.__data__,result=data["delete"](key);this.size=data.size;return result}module.exports=stackDelete},{}],217:[function(require,module,exports){ 2187 /** 2188 * Gets the stack value for `key`. 2189 * 2190 * @private 2191 * @name get 2192 * @memberOf Stack 2193 * @param {string} key The key of the value to get. 2194 * @returns {*} Returns the entry value. 2195 */ 2196 function stackGet(key){return this.__data__.get(key)}module.exports=stackGet},{}],218:[function(require,module,exports){ 2197 /** 2198 * Checks if a stack value for `key` exists. 2199 * 2200 * @private 2201 * @name has 2202 * @memberOf Stack 2203 * @param {string} key The key of the entry to check. 2204 * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. 2205 */ 2206 function stackHas(key){return this.__data__.has(key)}module.exports=stackHas},{}],219:[function(require,module,exports){var ListCache=require("./_ListCache"),Map=require("./_Map"),MapCache=require("./_MapCache"); 2207 /** Used as the size to enable large array optimizations. */var LARGE_ARRAY_SIZE=200; 2208 /** 2209 * Sets the stack `key` to `value`. 2210 * 2211 * @private 2212 * @name set 2213 * @memberOf Stack 2214 * @param {string} key The key of the value to set. 2215 * @param {*} value The value to set. 2216 * @returns {Object} Returns the stack cache instance. 2217 */function stackSet(key,value){var data=this.__data__;if(data instanceof ListCache){var pairs=data.__data__;if(!Map||pairs.length<LARGE_ARRAY_SIZE-1){pairs.push([key,value]);this.size=++data.size;return this}data=this.__data__=new MapCache(pairs)}data.set(key,value);this.size=data.size;return this}module.exports=stackSet},{"./_ListCache":53,"./_Map":54,"./_MapCache":55}],220:[function(require,module,exports){ 2218 /** 2219 * A specialized version of `_.indexOf` which performs strict equality 2220 * comparisons of values, i.e. `===`. 2221 * 2222 * @private 2223 * @param {Array} array The array to inspect. 2224 * @param {*} value The value to search for. 2225 * @param {number} fromIndex The index to search from. 2226 * @returns {number} Returns the index of the matched value, else `-1`. 2227 */ 2228 function strictIndexOf(array,value,fromIndex){var index=fromIndex-1,length=array.length;while(++index<length){if(array[index]===value){return index}}return-1}module.exports=strictIndexOf},{}],221:[function(require,module,exports){var asciiSize=require("./_asciiSize"),hasUnicode=require("./_hasUnicode"),unicodeSize=require("./_unicodeSize"); 2229 /** 2230 * Gets the number of symbols in `string`. 2231 * 2232 * @private 2233 * @param {string} string The string to inspect. 2234 * @returns {number} Returns the string size. 2235 */function stringSize(string){return hasUnicode(string)?unicodeSize(string):asciiSize(string)}module.exports=stringSize},{"./_asciiSize":73,"./_hasUnicode":171,"./_unicodeSize":225}],222:[function(require,module,exports){var memoizeCapped=require("./_memoizeCapped"); 2236 /** Used to match property names within property paths. */var rePropName=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g; 2237 /** Used to match backslashes in property paths. */var reEscapeChar=/\\(\\)?/g; 2238 /** 2239 * Converts `string` to a property path array. 2240 * 2241 * @private 2242 * @param {string} string The string to convert. 2243 * @returns {Array} Returns the property path array. 2244 */var stringToPath=memoizeCapped(function(string){var result=[];if(string.charCodeAt(0)===46/* . */){result.push("")}string.replace(rePropName,function(match,number,quote,subString){result.push(quote?subString.replace(reEscapeChar,"$1"):number||match)});return result});module.exports=stringToPath},{"./_memoizeCapped":200}],223:[function(require,module,exports){var isSymbol=require("./isSymbol"); 2245 /** Used as references for various `Number` constants. */var INFINITY=1/0; 2246 /** 2247 * Converts `value` to a string key if it's not a string or symbol. 2248 * 2249 * @private 2250 * @param {*} value The value to inspect. 2251 * @returns {string|symbol} Returns the key. 2252 */function toKey(value){if(typeof value=="string"||isSymbol(value)){return value}var result=value+"";return result=="0"&&1/value==-INFINITY?"-0":result}module.exports=toKey},{"./isSymbol":256}],224:[function(require,module,exports){ 2253 /** Used for built-in method references. */ 2254 var funcProto=Function.prototype; 2255 /** Used to resolve the decompiled source of functions. */var funcToString=funcProto.toString; 2256 /** 2257 * Converts `func` to its source code. 2258 * 2259 * @private 2260 * @param {Function} func The function to convert. 2261 * @returns {string} Returns the source code. 2262 */function toSource(func){if(func!=null){try{return funcToString.call(func)}catch(e){}try{return func+""}catch(e){}}return""}module.exports=toSource},{}],225:[function(require,module,exports){ 2263 /** Used to compose unicode character classes. */ 2264 var rsAstralRange="\\ud800-\\udfff",rsComboMarksRange="\\u0300-\\u036f",reComboHalfMarksRange="\\ufe20-\\ufe2f",rsComboSymbolsRange="\\u20d0-\\u20ff",rsComboRange=rsComboMarksRange+reComboHalfMarksRange+rsComboSymbolsRange,rsVarRange="\\ufe0e\\ufe0f"; 2265 /** Used to compose unicode capture groups. */var rsAstral="["+rsAstralRange+"]",rsCombo="["+rsComboRange+"]",rsFitz="\\ud83c[\\udffb-\\udfff]",rsModifier="(?:"+rsCombo+"|"+rsFitz+")",rsNonAstral="[^"+rsAstralRange+"]",rsRegional="(?:\\ud83c[\\udde6-\\uddff]){2}",rsSurrPair="[\\ud800-\\udbff][\\udc00-\\udfff]",rsZWJ="\\u200d"; 2266 /** Used to compose unicode regexes. */var reOptMod=rsModifier+"?",rsOptVar="["+rsVarRange+"]?",rsOptJoin="(?:"+rsZWJ+"(?:"+[rsNonAstral,rsRegional,rsSurrPair].join("|")+")"+rsOptVar+reOptMod+")*",rsSeq=rsOptVar+reOptMod+rsOptJoin,rsSymbol="(?:"+[rsNonAstral+rsCombo+"?",rsCombo,rsRegional,rsSurrPair,rsAstral].join("|")+")"; 2267 /** Used to match [string symbols](https://mathiasbynens.be/notes/javascript-unicode). */var reUnicode=RegExp(rsFitz+"(?="+rsFitz+")|"+rsSymbol+rsSeq,"g"); 2268 /** 2269 * Gets the size of a Unicode `string`. 2270 * 2271 * @private 2272 * @param {string} string The string inspect. 2273 * @returns {number} Returns the string size. 2274 */function unicodeSize(string){var result=reUnicode.lastIndex=0;while(reUnicode.test(string)){++result}return result}module.exports=unicodeSize},{}],226:[function(require,module,exports){var baseClone=require("./_baseClone"); 2275 /** Used to compose bitmasks for cloning. */var CLONE_SYMBOLS_FLAG=4; 2276 /** 2277 * Creates a shallow clone of `value`. 2278 * 2279 * **Note:** This method is loosely based on the 2280 * [structured clone algorithm](https://mdn.io/Structured_clone_algorithm) 2281 * and supports cloning arrays, array buffers, booleans, date objects, maps, 2282 * numbers, `Object` objects, regexes, sets, strings, symbols, and typed 2283 * arrays. The own enumerable properties of `arguments` objects are cloned 2284 * as plain objects. An empty object is returned for uncloneable values such 2285 * as error objects, functions, DOM nodes, and WeakMaps. 2286 * 2287 * @static 2288 * @memberOf _ 2289 * @since 0.1.0 2290 * @category Lang 2291 * @param {*} value The value to clone. 2292 * @returns {*} Returns the cloned value. 2293 * @see _.cloneDeep 2294 * @example 2295 * 2296 * var objects = [{ 'a': 1 }, { 'b': 2 }]; 2297 * 2298 * var shallow = _.clone(objects); 2299 * console.log(shallow[0] === objects[0]); 2300 * // => true 2301 */function clone(value){return baseClone(value,CLONE_SYMBOLS_FLAG)}module.exports=clone},{"./_baseClone":80}],227:[function(require,module,exports){var baseClone=require("./_baseClone"); 2302 /** Used to compose bitmasks for cloning. */var CLONE_DEEP_FLAG=1,CLONE_SYMBOLS_FLAG=4; 2303 /** 2304 * This method is like `_.clone` except that it recursively clones `value`. 2305 * 2306 * @static 2307 * @memberOf _ 2308 * @since 1.0.0 2309 * @category Lang 2310 * @param {*} value The value to recursively clone. 2311 * @returns {*} Returns the deep cloned value. 2312 * @see _.clone 2313 * @example 2314 * 2315 * var objects = [{ 'a': 1 }, { 'b': 2 }]; 2316 * 2317 * var deep = _.cloneDeep(objects); 2318 * console.log(deep[0] === objects[0]); 2319 * // => false 2320 */function cloneDeep(value){return baseClone(value,CLONE_DEEP_FLAG|CLONE_SYMBOLS_FLAG)}module.exports=cloneDeep},{"./_baseClone":80}],228:[function(require,module,exports){ 2321 /** 2322 * Creates a function that returns `value`. 2323 * 2324 * @static 2325 * @memberOf _ 2326 * @since 2.4.0 2327 * @category Util 2328 * @param {*} value The value to return from the new function. 2329 * @returns {Function} Returns the new constant function. 2330 * @example 2331 * 2332 * var objects = _.times(2, _.constant({ 'a': 1 })); 2333 * 2334 * console.log(objects); 2335 * // => [{ 'a': 1 }, { 'a': 1 }] 2336 * 2337 * console.log(objects[0] === objects[1]); 2338 * // => true 2339 */ 2340 function constant(value){return function(){return value}}module.exports=constant},{}],229:[function(require,module,exports){var baseRest=require("./_baseRest"),eq=require("./eq"),isIterateeCall=require("./_isIterateeCall"),keysIn=require("./keysIn"); 2341 /** Used for built-in method references. */var objectProto=Object.prototype; 2342 /** Used to check objects for own properties. */var hasOwnProperty=objectProto.hasOwnProperty; 2343 /** 2344 * Assigns own and inherited enumerable string keyed properties of source 2345 * objects to the destination object for all destination properties that 2346 * resolve to `undefined`. Source objects are applied from left to right. 2347 * Once a property is set, additional values of the same property are ignored. 2348 * 2349 * **Note:** This method mutates `object`. 2350 * 2351 * @static 2352 * @since 0.1.0 2353 * @memberOf _ 2354 * @category Object 2355 * @param {Object} object The destination object. 2356 * @param {...Object} [sources] The source objects. 2357 * @returns {Object} Returns `object`. 2358 * @see _.defaultsDeep 2359 * @example 2360 * 2361 * _.defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 }); 2362 * // => { 'a': 1, 'b': 2 } 2363 */var defaults=baseRest(function(object,sources){object=Object(object);var index=-1;var length=sources.length;var guard=length>2?sources[2]:undefined;if(guard&&isIterateeCall(sources[0],sources[1],guard)){length=1}while(++index<length){var source=sources[index];var props=keysIn(source);var propsIndex=-1;var propsLength=props.length;while(++propsIndex<propsLength){var key=props[propsIndex];var value=object[key];if(value===undefined||eq(value,objectProto[key])&&!hasOwnProperty.call(object,key)){object[key]=source[key]}}}return object});module.exports=defaults},{"./_baseRest":121,"./_isIterateeCall":182,"./eq":231,"./keysIn":260}],230:[function(require,module,exports){module.exports=require("./forEach")},{"./forEach":236}],231:[function(require,module,exports){ 2364 /** 2365 * Performs a 2366 * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) 2367 * comparison between two values to determine if they are equivalent. 2368 * 2369 * @static 2370 * @memberOf _ 2371 * @since 4.0.0 2372 * @category Lang 2373 * @param {*} value The value to compare. 2374 * @param {*} other The other value to compare. 2375 * @returns {boolean} Returns `true` if the values are equivalent, else `false`. 2376 * @example 2377 * 2378 * var object = { 'a': 1 }; 2379 * var other = { 'a': 1 }; 2380 * 2381 * _.eq(object, object); 2382 * // => true 2383 * 2384 * _.eq(object, other); 2385 * // => false 2386 * 2387 * _.eq('a', 'a'); 2388 * // => true 2389 * 2390 * _.eq('a', Object('a')); 2391 * // => false 2392 * 2393 * _.eq(NaN, NaN); 2394 * // => true 2395 */ 2396 function eq(value,other){return value===other||value!==value&&other!==other}module.exports=eq},{}],232:[function(require,module,exports){var arrayFilter=require("./_arrayFilter"),baseFilter=require("./_baseFilter"),baseIteratee=require("./_baseIteratee"),isArray=require("./isArray"); 2397 /** 2398 * Iterates over elements of `collection`, returning an array of all elements 2399 * `predicate` returns truthy for. The predicate is invoked with three 2400 * arguments: (value, index|key, collection). 2401 * 2402 * **Note:** Unlike `_.remove`, this method returns a new array. 2403 * 2404 * @static 2405 * @memberOf _ 2406 * @since 0.1.0 2407 * @category Collection 2408 * @param {Array|Object} collection The collection to iterate over. 2409 * @param {Function} [predicate=_.identity] The function invoked per iteration. 2410 * @returns {Array} Returns the new filtered array. 2411 * @see _.reject 2412 * @example 2413 * 2414 * var users = [ 2415 * { 'user': 'barney', 'age': 36, 'active': true }, 2416 * { 'user': 'fred', 'age': 40, 'active': false } 2417 * ]; 2418 * 2419 * _.filter(users, function(o) { return !o.active; }); 2420 * // => objects for ['fred'] 2421 * 2422 * // The `_.matches` iteratee shorthand. 2423 * _.filter(users, { 'age': 36, 'active': true }); 2424 * // => objects for ['barney'] 2425 * 2426 * // The `_.matchesProperty` iteratee shorthand. 2427 * _.filter(users, ['active', false]); 2428 * // => objects for ['fred'] 2429 * 2430 * // The `_.property` iteratee shorthand. 2431 * _.filter(users, 'active'); 2432 * // => objects for ['barney'] 2433 */function filter(collection,predicate){var func=isArray(collection)?arrayFilter:baseFilter;return func(collection,baseIteratee(predicate,3))}module.exports=filter},{"./_arrayFilter":65,"./_baseFilter":84,"./_baseIteratee":105,"./isArray":243}],233:[function(require,module,exports){var createFind=require("./_createFind"),findIndex=require("./findIndex"); 2434 /** 2435 * Iterates over elements of `collection`, returning the first element 2436 * `predicate` returns truthy for. The predicate is invoked with three 2437 * arguments: (value, index|key, collection). 2438 * 2439 * @static 2440 * @memberOf _ 2441 * @since 0.1.0 2442 * @category Collection 2443 * @param {Array|Object} collection The collection to inspect. 2444 * @param {Function} [predicate=_.identity] The function invoked per iteration. 2445 * @param {number} [fromIndex=0] The index to search from. 2446 * @returns {*} Returns the matched element, else `undefined`. 2447 * @example 2448 * 2449 * var users = [ 2450 * { 'user': 'barney', 'age': 36, 'active': true }, 2451 * { 'user': 'fred', 'age': 40, 'active': false }, 2452 * { 'user': 'pebbles', 'age': 1, 'active': true } 2453 * ]; 2454 * 2455 * _.find(users, function(o) { return o.age < 40; }); 2456 * // => object for 'barney' 2457 * 2458 * // The `_.matches` iteratee shorthand. 2459 * _.find(users, { 'age': 1, 'active': true }); 2460 * // => object for 'pebbles' 2461 * 2462 * // The `_.matchesProperty` iteratee shorthand. 2463 * _.find(users, ['active', false]); 2464 * // => object for 'fred' 2465 * 2466 * // The `_.property` iteratee shorthand. 2467 * _.find(users, 'active'); 2468 * // => object for 'barney' 2469 */var find=createFind(findIndex);module.exports=find},{"./_createFind":150,"./findIndex":234}],234:[function(require,module,exports){var baseFindIndex=require("./_baseFindIndex"),baseIteratee=require("./_baseIteratee"),toInteger=require("./toInteger"); 2470 /* Built-in method references for those with the same name as other `lodash` methods. */var nativeMax=Math.max; 2471 /** 2472 * This method is like `_.find` except that it returns the index of the first 2473 * element `predicate` returns truthy for instead of the element itself. 2474 * 2475 * @static 2476 * @memberOf _ 2477 * @since 1.1.0 2478 * @category Array 2479 * @param {Array} array The array to inspect. 2480 * @param {Function} [predicate=_.identity] The function invoked per iteration. 2481 * @param {number} [fromIndex=0] The index to search from. 2482 * @returns {number} Returns the index of the found element, else `-1`. 2483 * @example 2484 * 2485 * var users = [ 2486 * { 'user': 'barney', 'active': false }, 2487 * { 'user': 'fred', 'active': false }, 2488 * { 'user': 'pebbles', 'active': true } 2489 * ]; 2490 * 2491 * _.findIndex(users, function(o) { return o.user == 'barney'; }); 2492 * // => 0 2493 * 2494 * // The `_.matches` iteratee shorthand. 2495 * _.findIndex(users, { 'user': 'fred', 'active': false }); 2496 * // => 1 2497 * 2498 * // The `_.matchesProperty` iteratee shorthand. 2499 * _.findIndex(users, ['active', false]); 2500 * // => 0 2501 * 2502 * // The `_.property` iteratee shorthand. 2503 * _.findIndex(users, 'active'); 2504 * // => 2 2505 */function findIndex(array,predicate,fromIndex){var length=array==null?0:array.length;if(!length){return-1}var index=fromIndex==null?0:toInteger(fromIndex);if(index<0){index=nativeMax(length+index,0)}return baseFindIndex(array,baseIteratee(predicate,3),index)}module.exports=findIndex},{"./_baseFindIndex":85,"./_baseIteratee":105,"./toInteger":280}],235:[function(require,module,exports){var baseFlatten=require("./_baseFlatten"); 2506 /** 2507 * Flattens `array` a single level deep. 2508 * 2509 * @static 2510 * @memberOf _ 2511 * @since 0.1.0 2512 * @category Array 2513 * @param {Array} array The array to flatten. 2514 * @returns {Array} Returns the new flattened array. 2515 * @example 2516 * 2517 * _.flatten([1, [2, [3, [4]], 5]]); 2518 * // => [1, 2, [3, [4]], 5] 2519 */function flatten(array){var length=array==null?0:array.length;return length?baseFlatten(array,1):[]}module.exports=flatten},{"./_baseFlatten":86}],236:[function(require,module,exports){var arrayEach=require("./_arrayEach"),baseEach=require("./_baseEach"),castFunction=require("./_castFunction"),isArray=require("./isArray"); 2520 /** 2521 * Iterates over elements of `collection` and invokes `iteratee` for each element. 2522 * The iteratee is invoked with three arguments: (value, index|key, collection). 2523 * Iteratee functions may exit iteration early by explicitly returning `false`. 2524 * 2525 * **Note:** As with other "Collections" methods, objects with a "length" 2526 * property are iterated like arrays. To avoid this behavior use `_.forIn` 2527 * or `_.forOwn` for object iteration. 2528 * 2529 * @static 2530 * @memberOf _ 2531 * @since 0.1.0 2532 * @alias each 2533 * @category Collection 2534 * @param {Array|Object} collection The collection to iterate over. 2535 * @param {Function} [iteratee=_.identity] The function invoked per iteration. 2536 * @returns {Array|Object} Returns `collection`. 2537 * @see _.forEachRight 2538 * @example 2539 * 2540 * _.forEach([1, 2], function(value) { 2541 * console.log(value); 2542 * }); 2543 * // => Logs `1` then `2`. 2544 * 2545 * _.forEach({ 'a': 1, 'b': 2 }, function(value, key) { 2546 * console.log(key); 2547 * }); 2548 * // => Logs 'a' then 'b' (iteration order is not guaranteed). 2549 */function forEach(collection,iteratee){var func=isArray(collection)?arrayEach:baseEach;return func(collection,castFunction(iteratee))}module.exports=forEach},{"./_arrayEach":64,"./_baseEach":82,"./_castFunction":132,"./isArray":243}],237:[function(require,module,exports){var baseFor=require("./_baseFor"),castFunction=require("./_castFunction"),keysIn=require("./keysIn"); 2550 /** 2551 * Iterates over own and inherited enumerable string keyed properties of an 2552 * object and invokes `iteratee` for each property. The iteratee is invoked 2553 * with three arguments: (value, key, object). Iteratee functions may exit 2554 * iteration early by explicitly returning `false`. 2555 * 2556 * @static 2557 * @memberOf _ 2558 * @since 0.3.0 2559 * @category Object 2560 * @param {Object} object The object to iterate over. 2561 * @param {Function} [iteratee=_.identity] The function invoked per iteration. 2562 * @returns {Object} Returns `object`. 2563 * @see _.forInRight 2564 * @example 2565 * 2566 * function Foo() { 2567 * this.a = 1; 2568 * this.b = 2; 2569 * } 2570 * 2571 * Foo.prototype.c = 3; 2572 * 2573 * _.forIn(new Foo, function(value, key) { 2574 * console.log(key); 2575 * }); 2576 * // => Logs 'a', 'b', then 'c' (iteration order is not guaranteed). 2577 */function forIn(object,iteratee){return object==null?object:baseFor(object,castFunction(iteratee),keysIn)}module.exports=forIn},{"./_baseFor":87,"./_castFunction":132,"./keysIn":260}],238:[function(require,module,exports){var baseGet=require("./_baseGet"); 2578 /** 2579 * Gets the value at `path` of `object`. If the resolved value is 2580 * `undefined`, the `defaultValue` is returned in its place. 2581 * 2582 * @static 2583 * @memberOf _ 2584 * @since 3.7.0 2585 * @category Object 2586 * @param {Object} object The object to query. 2587 * @param {Array|string} path The path of the property to get. 2588 * @param {*} [defaultValue] The value returned for `undefined` resolved values. 2589 * @returns {*} Returns the resolved value. 2590 * @example 2591 * 2592 * var object = { 'a': [{ 'b': { 'c': 3 } }] }; 2593 * 2594 * _.get(object, 'a[0].b.c'); 2595 * // => 3 2596 * 2597 * _.get(object, ['a', '0', 'b', 'c']); 2598 * // => 3 2599 * 2600 * _.get(object, 'a.b.c', 'default'); 2601 * // => 'default' 2602 */function get(object,path,defaultValue){var result=object==null?undefined:baseGet(object,path);return result===undefined?defaultValue:result}module.exports=get},{"./_baseGet":89}],239:[function(require,module,exports){var baseHas=require("./_baseHas"),hasPath=require("./_hasPath"); 2603 /** 2604 * Checks if `path` is a direct property of `object`. 2605 * 2606 * @static 2607 * @since 0.1.0 2608 * @memberOf _ 2609 * @category Object 2610 * @param {Object} object The object to query. 2611 * @param {Array|string} path The path to check. 2612 * @returns {boolean} Returns `true` if `path` exists, else `false`. 2613 * @example 2614 * 2615 * var object = { 'a': { 'b': 2 } }; 2616 * var other = _.create({ 'a': _.create({ 'b': 2 }) }); 2617 * 2618 * _.has(object, 'a'); 2619 * // => true 2620 * 2621 * _.has(object, 'a.b'); 2622 * // => true 2623 * 2624 * _.has(object, ['a', 'b']); 2625 * // => true 2626 * 2627 * _.has(other, 'a'); 2628 * // => false 2629 */function has(object,path){return object!=null&&hasPath(object,path,baseHas)}module.exports=has},{"./_baseHas":93,"./_hasPath":170}],240:[function(require,module,exports){var baseHasIn=require("./_baseHasIn"),hasPath=require("./_hasPath"); 2630 /** 2631 * Checks if `path` is a direct or inherited property of `object`. 2632 * 2633 * @static 2634 * @memberOf _ 2635 * @since 4.0.0 2636 * @category Object 2637 * @param {Object} object The object to query. 2638 * @param {Array|string} path The path to check. 2639 * @returns {boolean} Returns `true` if `path` exists, else `false`. 2640 * @example 2641 * 2642 * var object = _.create({ 'a': _.create({ 'b': 2 }) }); 2643 * 2644 * _.hasIn(object, 'a'); 2645 * // => true 2646 * 2647 * _.hasIn(object, 'a.b'); 2648 * // => true 2649 * 2650 * _.hasIn(object, ['a', 'b']); 2651 * // => true 2652 * 2653 * _.hasIn(object, 'b'); 2654 * // => false 2655 */function hasIn(object,path){return object!=null&&hasPath(object,path,baseHasIn)}module.exports=hasIn},{"./_baseHasIn":94,"./_hasPath":170}],241:[function(require,module,exports){ 2656 /** 2657 * This method returns the first argument it receives. 2658 * 2659 * @static 2660 * @since 0.1.0 2661 * @memberOf _ 2662 * @category Util 2663 * @param {*} value Any value. 2664 * @returns {*} Returns `value`. 2665 * @example 2666 * 2667 * var object = { 'a': 1 }; 2668 * 2669 * console.log(_.identity(object) === object); 2670 * // => true 2671 */ 2672 function identity(value){return value}module.exports=identity},{}],242:[function(require,module,exports){var baseIsArguments=require("./_baseIsArguments"),isObjectLike=require("./isObjectLike"); 2673 /** Used for built-in method references. */var objectProto=Object.prototype; 2674 /** Used to check objects for own properties. */var hasOwnProperty=objectProto.hasOwnProperty; 2675 /** Built-in value references. */var propertyIsEnumerable=objectProto.propertyIsEnumerable; 2676 /** 2677 * Checks if `value` is likely an `arguments` object. 2678 * 2679 * @static 2680 * @memberOf _ 2681 * @since 0.1.0 2682 * @category Lang 2683 * @param {*} value The value to check. 2684 * @returns {boolean} Returns `true` if `value` is an `arguments` object, 2685 * else `false`. 2686 * @example 2687 * 2688 * _.isArguments(function() { return arguments; }()); 2689 * // => true 2690 * 2691 * _.isArguments([1, 2, 3]); 2692 * // => false 2693 */var isArguments=baseIsArguments(function(){return arguments}())?baseIsArguments:function(value){return isObjectLike(value)&&hasOwnProperty.call(value,"callee")&&!propertyIsEnumerable.call(value,"callee")};module.exports=isArguments},{"./_baseIsArguments":96,"./isObjectLike":252}],243:[function(require,module,exports){ 2694 /** 2695 * Checks if `value` is classified as an `Array` object. 2696 * 2697 * @static 2698 * @memberOf _ 2699 * @since 0.1.0 2700 * @category Lang 2701 * @param {*} value The value to check. 2702 * @returns {boolean} Returns `true` if `value` is an array, else `false`. 2703 * @example 2704 * 2705 * _.isArray([1, 2, 3]); 2706 * // => true 2707 * 2708 * _.isArray(document.body.children); 2709 * // => false 2710 * 2711 * _.isArray('abc'); 2712 * // => false 2713 * 2714 * _.isArray(_.noop); 2715 * // => false 2716 */ 2717 var isArray=Array.isArray;module.exports=isArray},{}],244:[function(require,module,exports){var isFunction=require("./isFunction"),isLength=require("./isLength"); 2718 /** 2719 * Checks if `value` is array-like. A value is considered array-like if it's 2720 * not a function and has a `value.length` that's an integer greater than or 2721 * equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`. 2722 * 2723 * @static 2724 * @memberOf _ 2725 * @since 4.0.0 2726 * @category Lang 2727 * @param {*} value The value to check. 2728 * @returns {boolean} Returns `true` if `value` is array-like, else `false`. 2729 * @example 2730 * 2731 * _.isArrayLike([1, 2, 3]); 2732 * // => true 2733 * 2734 * _.isArrayLike(document.body.children); 2735 * // => true 2736 * 2737 * _.isArrayLike('abc'); 2738 * // => true 2739 * 2740 * _.isArrayLike(_.noop); 2741 * // => false 2742 */function isArrayLike(value){return value!=null&&isLength(value.length)&&!isFunction(value)}module.exports=isArrayLike},{"./isFunction":248,"./isLength":249}],245:[function(require,module,exports){var isArrayLike=require("./isArrayLike"),isObjectLike=require("./isObjectLike"); 2743 /** 2744 * This method is like `_.isArrayLike` except that it also checks if `value` 2745 * is an object. 2746 * 2747 * @static 2748 * @memberOf _ 2749 * @since 4.0.0 2750 * @category Lang 2751 * @param {*} value The value to check. 2752 * @returns {boolean} Returns `true` if `value` is an array-like object, 2753 * else `false`. 2754 * @example 2755 * 2756 * _.isArrayLikeObject([1, 2, 3]); 2757 * // => true 2758 * 2759 * _.isArrayLikeObject(document.body.children); 2760 * // => true 2761 * 2762 * _.isArrayLikeObject('abc'); 2763 * // => false 2764 * 2765 * _.isArrayLikeObject(_.noop); 2766 * // => false 2767 */function isArrayLikeObject(value){return isObjectLike(value)&&isArrayLike(value)}module.exports=isArrayLikeObject},{"./isArrayLike":244,"./isObjectLike":252}],246:[function(require,module,exports){var root=require("./_root"),stubFalse=require("./stubFalse"); 2768 /** Detect free variable `exports`. */var freeExports=typeof exports=="object"&&exports&&!exports.nodeType&&exports; 2769 /** Detect free variable `module`. */var freeModule=freeExports&&typeof module=="object"&&module&&!module.nodeType&&module; 2770 /** Detect the popular CommonJS extension `module.exports`. */var moduleExports=freeModule&&freeModule.exports===freeExports; 2771 /** Built-in value references. */var Buffer=moduleExports?root.Buffer:undefined; 2772 /* Built-in method references for those with the same name as other `lodash` methods. */var nativeIsBuffer=Buffer?Buffer.isBuffer:undefined; 2773 /** 2774 * Checks if `value` is a buffer. 2775 * 2776 * @static 2777 * @memberOf _ 2778 * @since 4.3.0 2779 * @category Lang 2780 * @param {*} value The value to check. 2781 * @returns {boolean} Returns `true` if `value` is a buffer, else `false`. 2782 * @example 2783 * 2784 * _.isBuffer(new Buffer(2)); 2785 * // => true 2786 * 2787 * _.isBuffer(new Uint8Array(2)); 2788 * // => false 2789 */var isBuffer=nativeIsBuffer||stubFalse;module.exports=isBuffer},{"./_root":208,"./stubFalse":278}],247:[function(require,module,exports){var baseKeys=require("./_baseKeys"),getTag=require("./_getTag"),isArguments=require("./isArguments"),isArray=require("./isArray"),isArrayLike=require("./isArrayLike"),isBuffer=require("./isBuffer"),isPrototype=require("./_isPrototype"),isTypedArray=require("./isTypedArray"); 2790 /** `Object#toString` result references. */var mapTag="[object Map]",setTag="[object Set]"; 2791 /** Used for built-in method references. */var objectProto=Object.prototype; 2792 /** Used to check objects for own properties. */var hasOwnProperty=objectProto.hasOwnProperty; 2793 /** 2794 * Checks if `value` is an empty object, collection, map, or set. 2795 * 2796 * Objects are considered empty if they have no own enumerable string keyed 2797 * properties. 2798 * 2799 * Array-like values such as `arguments` objects, arrays, buffers, strings, or 2800 * jQuery-like collections are considered empty if they have a `length` of `0`. 2801 * Similarly, maps and sets are considered empty if they have a `size` of `0`. 2802 * 2803 * @static 2804 * @memberOf _ 2805 * @since 0.1.0 2806 * @category Lang 2807 * @param {*} value The value to check. 2808 * @returns {boolean} Returns `true` if `value` is empty, else `false`. 2809 * @example 2810 * 2811 * _.isEmpty(null); 2812 * // => true 2813 * 2814 * _.isEmpty(true); 2815 * // => true 2816 * 2817 * _.isEmpty(1); 2818 * // => true 2819 * 2820 * _.isEmpty([1, 2, 3]); 2821 * // => false 2822 * 2823 * _.isEmpty({ 'a': 1 }); 2824 * // => false 2825 */function isEmpty(value){if(value==null){return true}if(isArrayLike(value)&&(isArray(value)||typeof value=="string"||typeof value.splice=="function"||isBuffer(value)||isTypedArray(value)||isArguments(value))){return!value.length}var tag=getTag(value);if(tag==mapTag||tag==setTag){return!value.size}if(isPrototype(value)){return!baseKeys(value).length}for(var key in value){if(hasOwnProperty.call(value,key)){return false}}return true}module.exports=isEmpty},{"./_baseKeys":106,"./_getTag":168,"./_isPrototype":186,"./isArguments":242,"./isArray":243,"./isArrayLike":244,"./isBuffer":246,"./isTypedArray":257}],248:[function(require,module,exports){var baseGetTag=require("./_baseGetTag"),isObject=require("./isObject"); 2826 /** `Object#toString` result references. */var asyncTag="[object AsyncFunction]",funcTag="[object Function]",genTag="[object GeneratorFunction]",proxyTag="[object Proxy]"; 2827 /** 2828 * Checks if `value` is classified as a `Function` object. 2829 * 2830 * @static 2831 * @memberOf _ 2832 * @since 0.1.0 2833 * @category Lang 2834 * @param {*} value The value to check. 2835 * @returns {boolean} Returns `true` if `value` is a function, else `false`. 2836 * @example 2837 * 2838 * _.isFunction(_); 2839 * // => true 2840 * 2841 * _.isFunction(/abc/); 2842 * // => false 2843 */function isFunction(value){if(!isObject(value)){return false} 2844 // The use of `Object#toString` avoids issues with the `typeof` operator 2845 // in Safari 9 which returns 'object' for typed arrays and other constructors. 2846 var tag=baseGetTag(value);return tag==funcTag||tag==genTag||tag==asyncTag||tag==proxyTag}module.exports=isFunction},{"./_baseGetTag":91,"./isObject":251}],249:[function(require,module,exports){ 2847 /** Used as references for various `Number` constants. */ 2848 var MAX_SAFE_INTEGER=9007199254740991; 2849 /** 2850 * Checks if `value` is a valid array-like length. 2851 * 2852 * **Note:** This method is loosely based on 2853 * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength). 2854 * 2855 * @static 2856 * @memberOf _ 2857 * @since 4.0.0 2858 * @category Lang 2859 * @param {*} value The value to check. 2860 * @returns {boolean} Returns `true` if `value` is a valid length, else `false`. 2861 * @example 2862 * 2863 * _.isLength(3); 2864 * // => true 2865 * 2866 * _.isLength(Number.MIN_VALUE); 2867 * // => false 2868 * 2869 * _.isLength(Infinity); 2870 * // => false 2871 * 2872 * _.isLength('3'); 2873 * // => false 2874 */function isLength(value){return typeof value=="number"&&value>-1&&value%1==0&&value<=MAX_SAFE_INTEGER}module.exports=isLength},{}],250:[function(require,module,exports){var baseIsMap=require("./_baseIsMap"),baseUnary=require("./_baseUnary"),nodeUtil=require("./_nodeUtil"); 2875 /* Node.js helper references. */var nodeIsMap=nodeUtil&&nodeUtil.isMap; 2876 /** 2877 * Checks if `value` is classified as a `Map` object. 2878 * 2879 * @static 2880 * @memberOf _ 2881 * @since 4.3.0 2882 * @category Lang 2883 * @param {*} value The value to check. 2884 * @returns {boolean} Returns `true` if `value` is a map, else `false`. 2885 * @example 2886 * 2887 * _.isMap(new Map); 2888 * // => true 2889 * 2890 * _.isMap(new WeakMap); 2891 * // => false 2892 */var isMap=nodeIsMap?baseUnary(nodeIsMap):baseIsMap;module.exports=isMap},{"./_baseIsMap":99,"./_baseUnary":127,"./_nodeUtil":204}],251:[function(require,module,exports){ 2893 /** 2894 * Checks if `value` is the 2895 * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types) 2896 * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`) 2897 * 2898 * @static 2899 * @memberOf _ 2900 * @since 0.1.0 2901 * @category Lang 2902 * @param {*} value The value to check. 2903 * @returns {boolean} Returns `true` if `value` is an object, else `false`. 2904 * @example 2905 * 2906 * _.isObject({}); 2907 * // => true 2908 * 2909 * _.isObject([1, 2, 3]); 2910 * // => true 2911 * 2912 * _.isObject(_.noop); 2913 * // => true 2914 * 2915 * _.isObject(null); 2916 * // => false 2917 */ 2918 function isObject(value){var type=typeof value;return value!=null&&(type=="object"||type=="function")}module.exports=isObject},{}],252:[function(require,module,exports){ 2919 /** 2920 * Checks if `value` is object-like. A value is object-like if it's not `null` 2921 * and has a `typeof` result of "object". 2922 * 2923 * @static 2924 * @memberOf _ 2925 * @since 4.0.0 2926 * @category Lang 2927 * @param {*} value The value to check. 2928 * @returns {boolean} Returns `true` if `value` is object-like, else `false`. 2929 * @example 2930 * 2931 * _.isObjectLike({}); 2932 * // => true 2933 * 2934 * _.isObjectLike([1, 2, 3]); 2935 * // => true 2936 * 2937 * _.isObjectLike(_.noop); 2938 * // => false 2939 * 2940 * _.isObjectLike(null); 2941 * // => false 2942 */ 2943 function isObjectLike(value){return value!=null&&typeof value=="object"}module.exports=isObjectLike},{}],253:[function(require,module,exports){var baseGetTag=require("./_baseGetTag"),getPrototype=require("./_getPrototype"),isObjectLike=require("./isObjectLike"); 2944 /** `Object#toString` result references. */var objectTag="[object Object]"; 2945 /** Used for built-in method references. */var funcProto=Function.prototype,objectProto=Object.prototype; 2946 /** Used to resolve the decompiled source of functions. */var funcToString=funcProto.toString; 2947 /** Used to check objects for own properties. */var hasOwnProperty=objectProto.hasOwnProperty; 2948 /** Used to infer the `Object` constructor. */var objectCtorString=funcToString.call(Object); 2949 /** 2950 * Checks if `value` is a plain object, that is, an object created by the 2951 * `Object` constructor or one with a `[[Prototype]]` of `null`. 2952 * 2953 * @static 2954 * @memberOf _ 2955 * @since 0.8.0 2956 * @category Lang 2957 * @param {*} value The value to check. 2958 * @returns {boolean} Returns `true` if `value` is a plain object, else `false`. 2959 * @example 2960 * 2961 * function Foo() { 2962 * this.a = 1; 2963 * } 2964 * 2965 * _.isPlainObject(new Foo); 2966 * // => false 2967 * 2968 * _.isPlainObject([1, 2, 3]); 2969 * // => false 2970 * 2971 * _.isPlainObject({ 'x': 0, 'y': 0 }); 2972 * // => true 2973 * 2974 * _.isPlainObject(Object.create(null)); 2975 * // => true 2976 */function isPlainObject(value){if(!isObjectLike(value)||baseGetTag(value)!=objectTag){return false}var proto=getPrototype(value);if(proto===null){return true}var Ctor=hasOwnProperty.call(proto,"constructor")&&proto.constructor;return typeof Ctor=="function"&&Ctor instanceof Ctor&&funcToString.call(Ctor)==objectCtorString}module.exports=isPlainObject},{"./_baseGetTag":91,"./_getPrototype":164,"./isObjectLike":252}],254:[function(require,module,exports){var baseIsSet=require("./_baseIsSet"),baseUnary=require("./_baseUnary"),nodeUtil=require("./_nodeUtil"); 2977 /* Node.js helper references. */var nodeIsSet=nodeUtil&&nodeUtil.isSet; 2978 /** 2979 * Checks if `value` is classified as a `Set` object. 2980 * 2981 * @static 2982 * @memberOf _ 2983 * @since 4.3.0 2984 * @category Lang 2985 * @param {*} value The value to check. 2986 * @returns {boolean} Returns `true` if `value` is a set, else `false`. 2987 * @example 2988 * 2989 * _.isSet(new Set); 2990 * // => true 2991 * 2992 * _.isSet(new WeakSet); 2993 * // => false 2994 */var isSet=nodeIsSet?baseUnary(nodeIsSet):baseIsSet;module.exports=isSet},{"./_baseIsSet":103,"./_baseUnary":127,"./_nodeUtil":204}],255:[function(require,module,exports){var baseGetTag=require("./_baseGetTag"),isArray=require("./isArray"),isObjectLike=require("./isObjectLike"); 2995 /** `Object#toString` result references. */var stringTag="[object String]"; 2996 /** 2997 * Checks if `value` is classified as a `String` primitive or object. 2998 * 2999 * @static 3000 * @since 0.1.0 3001 * @memberOf _ 3002 * @category Lang 3003 * @param {*} value The value to check. 3004 * @returns {boolean} Returns `true` if `value` is a string, else `false`. 3005 * @example 3006 * 3007 * _.isString('abc'); 3008 * // => true 3009 * 3010 * _.isString(1); 3011 * // => false 3012 */function isString(value){return typeof value=="string"||!isArray(value)&&isObjectLike(value)&&baseGetTag(value)==stringTag}module.exports=isString},{"./_baseGetTag":91,"./isArray":243,"./isObjectLike":252}],256:[function(require,module,exports){var baseGetTag=require("./_baseGetTag"),isObjectLike=require("./isObjectLike"); 3013 /** `Object#toString` result references. */var symbolTag="[object Symbol]"; 3014 /** 3015 * Checks if `value` is classified as a `Symbol` primitive or object. 3016 * 3017 * @static 3018 * @memberOf _ 3019 * @since 4.0.0 3020 * @category Lang 3021 * @param {*} value The value to check. 3022 * @returns {boolean} Returns `true` if `value` is a symbol, else `false`. 3023 * @example 3024 * 3025 * _.isSymbol(Symbol.iterator); 3026 * // => true 3027 * 3028 * _.isSymbol('abc'); 3029 * // => false 3030 */function isSymbol(value){return typeof value=="symbol"||isObjectLike(value)&&baseGetTag(value)==symbolTag}module.exports=isSymbol},{"./_baseGetTag":91,"./isObjectLike":252}],257:[function(require,module,exports){var baseIsTypedArray=require("./_baseIsTypedArray"),baseUnary=require("./_baseUnary"),nodeUtil=require("./_nodeUtil"); 3031 /* Node.js helper references. */var nodeIsTypedArray=nodeUtil&&nodeUtil.isTypedArray; 3032 /** 3033 * Checks if `value` is classified as a typed array. 3034 * 3035 * @static 3036 * @memberOf _ 3037 * @since 3.0.0 3038 * @category Lang 3039 * @param {*} value The value to check. 3040 * @returns {boolean} Returns `true` if `value` is a typed array, else `false`. 3041 * @example 3042 * 3043 * _.isTypedArray(new Uint8Array); 3044 * // => true 3045 * 3046 * _.isTypedArray([]); 3047 * // => false 3048 */var isTypedArray=nodeIsTypedArray?baseUnary(nodeIsTypedArray):baseIsTypedArray;module.exports=isTypedArray},{"./_baseIsTypedArray":104,"./_baseUnary":127,"./_nodeUtil":204}],258:[function(require,module,exports){ 3049 /** 3050 * Checks if `value` is `undefined`. 3051 * 3052 * @static 3053 * @since 0.1.0 3054 * @memberOf _ 3055 * @category Lang 3056 * @param {*} value The value to check. 3057 * @returns {boolean} Returns `true` if `value` is `undefined`, else `false`. 3058 * @example 3059 * 3060 * _.isUndefined(void 0); 3061 * // => true 3062 * 3063 * _.isUndefined(null); 3064 * // => false 3065 */ 3066 function isUndefined(value){return value===undefined}module.exports=isUndefined},{}],259:[function(require,module,exports){var arrayLikeKeys=require("./_arrayLikeKeys"),baseKeys=require("./_baseKeys"),isArrayLike=require("./isArrayLike"); 3067 /** 3068 * Creates an array of the own enumerable property names of `object`. 3069 * 3070 * **Note:** Non-object values are coerced to objects. See the 3071 * [ES spec](http://ecma-international.org/ecma-262/7.0/#sec-object.keys) 3072 * for more details. 3073 * 3074 * @static 3075 * @since 0.1.0 3076 * @memberOf _ 3077 * @category Object 3078 * @param {Object} object The object to query. 3079 * @returns {Array} Returns the array of property names. 3080 * @example 3081 * 3082 * function Foo() { 3083 * this.a = 1; 3084 * this.b = 2; 3085 * } 3086 * 3087 * Foo.prototype.c = 3; 3088 * 3089 * _.keys(new Foo); 3090 * // => ['a', 'b'] (iteration order is not guaranteed) 3091 * 3092 * _.keys('hi'); 3093 * // => ['0', '1'] 3094 */function keys(object){return isArrayLike(object)?arrayLikeKeys(object):baseKeys(object)}module.exports=keys},{"./_arrayLikeKeys":68,"./_baseKeys":106,"./isArrayLike":244}],260:[function(require,module,exports){var arrayLikeKeys=require("./_arrayLikeKeys"),baseKeysIn=require("./_baseKeysIn"),isArrayLike=require("./isArrayLike"); 3095 /** 3096 * Creates an array of the own and inherited enumerable property names of `object`. 3097 * 3098 * **Note:** Non-object values are coerced to objects. 3099 * 3100 * @static 3101 * @memberOf _ 3102 * @since 3.0.0 3103 * @category Object 3104 * @param {Object} object The object to query. 3105 * @returns {Array} Returns the array of property names. 3106 * @example 3107 * 3108 * function Foo() { 3109 * this.a = 1; 3110 * this.b = 2; 3111 * } 3112 * 3113 * Foo.prototype.c = 3; 3114 * 3115 * _.keysIn(new Foo); 3116 * // => ['a', 'b', 'c'] (iteration order is not guaranteed) 3117 */function keysIn(object){return isArrayLike(object)?arrayLikeKeys(object,true):baseKeysIn(object)}module.exports=keysIn},{"./_arrayLikeKeys":68,"./_baseKeysIn":107,"./isArrayLike":244}],261:[function(require,module,exports){ 3118 /** 3119 * Gets the last element of `array`. 3120 * 3121 * @static 3122 * @memberOf _ 3123 * @since 0.1.0 3124 * @category Array 3125 * @param {Array} array The array to query. 3126 * @returns {*} Returns the last element of `array`. 3127 * @example 3128 * 3129 * _.last([1, 2, 3]); 3130 * // => 3 3131 */ 3132 function last(array){var length=array==null?0:array.length;return length?array[length-1]:undefined}module.exports=last},{}],262:[function(require,module,exports){var arrayMap=require("./_arrayMap"),baseIteratee=require("./_baseIteratee"),baseMap=require("./_baseMap"),isArray=require("./isArray"); 3133 /** 3134 * Creates an array of values by running each element in `collection` thru 3135 * `iteratee`. The iteratee is invoked with three arguments: 3136 * (value, index|key, collection). 3137 * 3138 * Many lodash methods are guarded to work as iteratees for methods like 3139 * `_.every`, `_.filter`, `_.map`, `_.mapValues`, `_.reject`, and `_.some`. 3140 * 3141 * The guarded methods are: 3142 * `ary`, `chunk`, `curry`, `curryRight`, `drop`, `dropRight`, `every`, 3143 * `fill`, `invert`, `parseInt`, `random`, `range`, `rangeRight`, `repeat`, 3144 * `sampleSize`, `slice`, `some`, `sortBy`, `split`, `take`, `takeRight`, 3145 * `template`, `trim`, `trimEnd`, `trimStart`, and `words` 3146 * 3147 * @static 3148 * @memberOf _ 3149 * @since 0.1.0 3150 * @category Collection 3151 * @param {Array|Object} collection The collection to iterate over. 3152 * @param {Function} [iteratee=_.identity] The function invoked per iteration. 3153 * @returns {Array} Returns the new mapped array. 3154 * @example 3155 * 3156 * function square(n) { 3157 * return n * n; 3158 * } 3159 * 3160 * _.map([4, 8], square); 3161 * // => [16, 64] 3162 * 3163 * _.map({ 'a': 4, 'b': 8 }, square); 3164 * // => [16, 64] (iteration order is not guaranteed) 3165 * 3166 * var users = [ 3167 * { 'user': 'barney' }, 3168 * { 'user': 'fred' } 3169 * ]; 3170 * 3171 * // The `_.property` iteratee shorthand. 3172 * _.map(users, 'user'); 3173 * // => ['barney', 'fred'] 3174 */function map(collection,iteratee){var func=isArray(collection)?arrayMap:baseMap;return func(collection,baseIteratee(iteratee,3))}module.exports=map},{"./_arrayMap":69,"./_baseIteratee":105,"./_baseMap":109,"./isArray":243}],263:[function(require,module,exports){var baseAssignValue=require("./_baseAssignValue"),baseForOwn=require("./_baseForOwn"),baseIteratee=require("./_baseIteratee"); 3175 /** 3176 * Creates an object with the same keys as `object` and values generated 3177 * by running each own enumerable string keyed property of `object` thru 3178 * `iteratee`. The iteratee is invoked with three arguments: 3179 * (value, key, object). 3180 * 3181 * @static 3182 * @memberOf _ 3183 * @since 2.4.0 3184 * @category Object 3185 * @param {Object} object The object to iterate over. 3186 * @param {Function} [iteratee=_.identity] The function invoked per iteration. 3187 * @returns {Object} Returns the new mapped object. 3188 * @see _.mapKeys 3189 * @example 3190 * 3191 * var users = { 3192 * 'fred': { 'user': 'fred', 'age': 40 }, 3193 * 'pebbles': { 'user': 'pebbles', 'age': 1 } 3194 * }; 3195 * 3196 * _.mapValues(users, function(o) { return o.age; }); 3197 * // => { 'fred': 40, 'pebbles': 1 } (iteration order is not guaranteed) 3198 * 3199 * // The `_.property` iteratee shorthand. 3200 * _.mapValues(users, 'age'); 3201 * // => { 'fred': 40, 'pebbles': 1 } (iteration order is not guaranteed) 3202 */function mapValues(object,iteratee){var result={};iteratee=baseIteratee(iteratee,3);baseForOwn(object,function(value,key,object){baseAssignValue(result,key,iteratee(value,key,object))});return result}module.exports=mapValues},{"./_baseAssignValue":79,"./_baseForOwn":88,"./_baseIteratee":105}],264:[function(require,module,exports){var baseExtremum=require("./_baseExtremum"),baseGt=require("./_baseGt"),identity=require("./identity"); 3203 /** 3204 * Computes the maximum value of `array`. If `array` is empty or falsey, 3205 * `undefined` is returned. 3206 * 3207 * @static 3208 * @since 0.1.0 3209 * @memberOf _ 3210 * @category Math 3211 * @param {Array} array The array to iterate over. 3212 * @returns {*} Returns the maximum value. 3213 * @example 3214 * 3215 * _.max([4, 2, 8, 6]); 3216 * // => 8 3217 * 3218 * _.max([]); 3219 * // => undefined 3220 */function max(array){return array&&array.length?baseExtremum(array,identity,baseGt):undefined}module.exports=max},{"./_baseExtremum":83,"./_baseGt":92,"./identity":241}],265:[function(require,module,exports){var MapCache=require("./_MapCache"); 3221 /** Error message constants. */var FUNC_ERROR_TEXT="Expected a function"; 3222 /** 3223 * Creates a function that memoizes the result of `func`. If `resolver` is 3224 * provided, it determines the cache key for storing the result based on the 3225 * arguments provided to the memoized function. By default, the first argument 3226 * provided to the memoized function is used as the map cache key. The `func` 3227 * is invoked with the `this` binding of the memoized function. 3228 * 3229 * **Note:** The cache is exposed as the `cache` property on the memoized 3230 * function. Its creation may be customized by replacing the `_.memoize.Cache` 3231 * constructor with one whose instances implement the 3232 * [`Map`](http://ecma-international.org/ecma-262/7.0/#sec-properties-of-the-map-prototype-object) 3233 * method interface of `clear`, `delete`, `get`, `has`, and `set`. 3234 * 3235 * @static 3236 * @memberOf _ 3237 * @since 0.1.0 3238 * @category Function 3239 * @param {Function} func The function to have its output memoized. 3240 * @param {Function} [resolver] The function to resolve the cache key. 3241 * @returns {Function} Returns the new memoized function. 3242 * @example 3243 * 3244 * var object = { 'a': 1, 'b': 2 }; 3245 * var other = { 'c': 3, 'd': 4 }; 3246 * 3247 * var values = _.memoize(_.values); 3248 * values(object); 3249 * // => [1, 2] 3250 * 3251 * values(other); 3252 * // => [3, 4] 3253 * 3254 * object.a = 2; 3255 * values(object); 3256 * // => [1, 2] 3257 * 3258 * // Modify the result cache. 3259 * values.cache.set(object, ['a', 'b']); 3260 * values(object); 3261 * // => ['a', 'b'] 3262 * 3263 * // Replace `_.memoize.Cache`. 3264 * _.memoize.Cache = WeakMap; 3265 */function memoize(func,resolver){if(typeof func!="function"||resolver!=null&&typeof resolver!="function"){throw new TypeError(FUNC_ERROR_TEXT)}var memoized=function(){var args=arguments,key=resolver?resolver.apply(this,args):args[0],cache=memoized.cache;if(cache.has(key)){return cache.get(key)}var result=func.apply(this,args);memoized.cache=cache.set(key,result)||cache;return result};memoized.cache=new(memoize.Cache||MapCache);return memoized} 3266 // Expose `MapCache`. 3267 memoize.Cache=MapCache;module.exports=memoize},{"./_MapCache":55}],266:[function(require,module,exports){var baseMerge=require("./_baseMerge"),createAssigner=require("./_createAssigner"); 3268 /** 3269 * This method is like `_.assign` except that it recursively merges own and 3270 * inherited enumerable string keyed properties of source objects into the 3271 * destination object. Source properties that resolve to `undefined` are 3272 * skipped if a destination value exists. Array and plain object properties 3273 * are merged recursively. Other objects and value types are overridden by 3274 * assignment. Source objects are applied from left to right. Subsequent 3275 * sources overwrite property assignments of previous sources. 3276 * 3277 * **Note:** This method mutates `object`. 3278 * 3279 * @static 3280 * @memberOf _ 3281 * @since 0.5.0 3282 * @category Object 3283 * @param {Object} object The destination object. 3284 * @param {...Object} [sources] The source objects. 3285 * @returns {Object} Returns `object`. 3286 * @example 3287 * 3288 * var object = { 3289 * 'a': [{ 'b': 2 }, { 'd': 4 }] 3290 * }; 3291 * 3292 * var other = { 3293 * 'a': [{ 'c': 3 }, { 'e': 5 }] 3294 * }; 3295 * 3296 * _.merge(object, other); 3297 * // => { 'a': [{ 'b': 2, 'c': 3 }, { 'd': 4, 'e': 5 }] } 3298 */var merge=createAssigner(function(object,source,srcIndex){baseMerge(object,source,srcIndex)});module.exports=merge},{"./_baseMerge":112,"./_createAssigner":147}],267:[function(require,module,exports){var baseExtremum=require("./_baseExtremum"),baseLt=require("./_baseLt"),identity=require("./identity"); 3299 /** 3300 * Computes the minimum value of `array`. If `array` is empty or falsey, 3301 * `undefined` is returned. 3302 * 3303 * @static 3304 * @since 0.1.0 3305 * @memberOf _ 3306 * @category Math 3307 * @param {Array} array The array to iterate over. 3308 * @returns {*} Returns the minimum value. 3309 * @example 3310 * 3311 * _.min([4, 2, 8, 6]); 3312 * // => 2 3313 * 3314 * _.min([]); 3315 * // => undefined 3316 */function min(array){return array&&array.length?baseExtremum(array,identity,baseLt):undefined}module.exports=min},{"./_baseExtremum":83,"./_baseLt":108,"./identity":241}],268:[function(require,module,exports){var baseExtremum=require("./_baseExtremum"),baseIteratee=require("./_baseIteratee"),baseLt=require("./_baseLt"); 3317 /** 3318 * This method is like `_.min` except that it accepts `iteratee` which is 3319 * invoked for each element in `array` to generate the criterion by which 3320 * the value is ranked. The iteratee is invoked with one argument: (value). 3321 * 3322 * @static 3323 * @memberOf _ 3324 * @since 4.0.0 3325 * @category Math 3326 * @param {Array} array The array to iterate over. 3327 * @param {Function} [iteratee=_.identity] The iteratee invoked per element. 3328 * @returns {*} Returns the minimum value. 3329 * @example 3330 * 3331 * var objects = [{ 'n': 1 }, { 'n': 2 }]; 3332 * 3333 * _.minBy(objects, function(o) { return o.n; }); 3334 * // => { 'n': 1 } 3335 * 3336 * // The `_.property` iteratee shorthand. 3337 * _.minBy(objects, 'n'); 3338 * // => { 'n': 1 } 3339 */function minBy(array,iteratee){return array&&array.length?baseExtremum(array,baseIteratee(iteratee,2),baseLt):undefined}module.exports=minBy},{"./_baseExtremum":83,"./_baseIteratee":105,"./_baseLt":108}],269:[function(require,module,exports){ 3340 /** 3341 * This method returns `undefined`. 3342 * 3343 * @static 3344 * @memberOf _ 3345 * @since 2.3.0 3346 * @category Util 3347 * @example 3348 * 3349 * _.times(2, _.noop); 3350 * // => [undefined, undefined] 3351 */ 3352 function noop(){ 3353 // No operation performed. 3354 }module.exports=noop},{}],270:[function(require,module,exports){var root=require("./_root"); 3355 /** 3356 * Gets the timestamp of the number of milliseconds that have elapsed since 3357 * the Unix epoch (1 January 1970 00:00:00 UTC). 3358 * 3359 * @static 3360 * @memberOf _ 3361 * @since 2.4.0 3362 * @category Date 3363 * @returns {number} Returns the timestamp. 3364 * @example 3365 * 3366 * _.defer(function(stamp) { 3367 * console.log(_.now() - stamp); 3368 * }, _.now()); 3369 * // => Logs the number of milliseconds it took for the deferred invocation. 3370 */var now=function(){return root.Date.now()};module.exports=now},{"./_root":208}],271:[function(require,module,exports){var basePick=require("./_basePick"),flatRest=require("./_flatRest"); 3371 /** 3372 * Creates an object composed of the picked `object` properties. 3373 * 3374 * @static 3375 * @since 0.1.0 3376 * @memberOf _ 3377 * @category Object 3378 * @param {Object} object The source object. 3379 * @param {...(string|string[])} [paths] The property paths to pick. 3380 * @returns {Object} Returns the new object. 3381 * @example 3382 * 3383 * var object = { 'a': 1, 'b': '2', 'c': 3 }; 3384 * 3385 * _.pick(object, ['a', 'c']); 3386 * // => { 'a': 1, 'c': 3 } 3387 */var pick=flatRest(function(object,paths){return object==null?{}:basePick(object,paths)});module.exports=pick},{"./_basePick":115,"./_flatRest":157}],272:[function(require,module,exports){var baseProperty=require("./_baseProperty"),basePropertyDeep=require("./_basePropertyDeep"),isKey=require("./_isKey"),toKey=require("./_toKey"); 3388 /** 3389 * Creates a function that returns the value at `path` of a given object. 3390 * 3391 * @static 3392 * @memberOf _ 3393 * @since 2.4.0 3394 * @category Util 3395 * @param {Array|string} path The path of the property to get. 3396 * @returns {Function} Returns the new accessor function. 3397 * @example 3398 * 3399 * var objects = [ 3400 * { 'a': { 'b': 2 } }, 3401 * { 'a': { 'b': 1 } } 3402 * ]; 3403 * 3404 * _.map(objects, _.property('a.b')); 3405 * // => [2, 1] 3406 * 3407 * _.map(_.sortBy(objects, _.property(['a', 'b'])), 'a.b'); 3408 * // => [1, 2] 3409 */function property(path){return isKey(path)?baseProperty(toKey(path)):basePropertyDeep(path)}module.exports=property},{"./_baseProperty":117,"./_basePropertyDeep":118,"./_isKey":183,"./_toKey":223}],273:[function(require,module,exports){var createRange=require("./_createRange"); 3410 /** 3411 * Creates an array of numbers (positive and/or negative) progressing from 3412 * `start` up to, but not including, `end`. A step of `-1` is used if a negative 3413 * `start` is specified without an `end` or `step`. If `end` is not specified, 3414 * it's set to `start` with `start` then set to `0`. 3415 * 3416 * **Note:** JavaScript follows the IEEE-754 standard for resolving 3417 * floating-point values which can produce unexpected results. 3418 * 3419 * @static 3420 * @since 0.1.0 3421 * @memberOf _ 3422 * @category Util 3423 * @param {number} [start=0] The start of the range. 3424 * @param {number} end The end of the range. 3425 * @param {number} [step=1] The value to increment or decrement by. 3426 * @returns {Array} Returns the range of numbers. 3427 * @see _.inRange, _.rangeRight 3428 * @example 3429 * 3430 * _.range(4); 3431 * // => [0, 1, 2, 3] 3432 * 3433 * _.range(-4); 3434 * // => [0, -1, -2, -3] 3435 * 3436 * _.range(1, 5); 3437 * // => [1, 2, 3, 4] 3438 * 3439 * _.range(0, 20, 5); 3440 * // => [0, 5, 10, 15] 3441 * 3442 * _.range(0, -4, -1); 3443 * // => [0, -1, -2, -3] 3444 * 3445 * _.range(1, 4, 0); 3446 * // => [1, 1, 1] 3447 * 3448 * _.range(0); 3449 * // => [] 3450 */var range=createRange();module.exports=range},{"./_createRange":151}],274:[function(require,module,exports){var arrayReduce=require("./_arrayReduce"),baseEach=require("./_baseEach"),baseIteratee=require("./_baseIteratee"),baseReduce=require("./_baseReduce"),isArray=require("./isArray"); 3451 /** 3452 * Reduces `collection` to a value which is the accumulated result of running 3453 * each element in `collection` thru `iteratee`, where each successive 3454 * invocation is supplied the return value of the previous. If `accumulator` 3455 * is not given, the first element of `collection` is used as the initial 3456 * value. The iteratee is invoked with four arguments: 3457 * (accumulator, value, index|key, collection). 3458 * 3459 * Many lodash methods are guarded to work as iteratees for methods like 3460 * `_.reduce`, `_.reduceRight`, and `_.transform`. 3461 * 3462 * The guarded methods are: 3463 * `assign`, `defaults`, `defaultsDeep`, `includes`, `merge`, `orderBy`, 3464 * and `sortBy` 3465 * 3466 * @static 3467 * @memberOf _ 3468 * @since 0.1.0 3469 * @category Collection 3470 * @param {Array|Object} collection The collection to iterate over. 3471 * @param {Function} [iteratee=_.identity] The function invoked per iteration. 3472 * @param {*} [accumulator] The initial value. 3473 * @returns {*} Returns the accumulated value. 3474 * @see _.reduceRight 3475 * @example 3476 * 3477 * _.reduce([1, 2], function(sum, n) { 3478 * return sum + n; 3479 * }, 0); 3480 * // => 3 3481 * 3482 * _.reduce({ 'a': 1, 'b': 2, 'c': 1 }, function(result, value, key) { 3483 * (result[value] || (result[value] = [])).push(key); 3484 * return result; 3485 * }, {}); 3486 * // => { '1': ['a', 'c'], '2': ['b'] } (iteration order is not guaranteed) 3487 */function reduce(collection,iteratee,accumulator){var func=isArray(collection)?arrayReduce:baseReduce,initAccum=arguments.length<3;return func(collection,baseIteratee(iteratee,4),accumulator,initAccum,baseEach)}module.exports=reduce},{"./_arrayReduce":71,"./_baseEach":82,"./_baseIteratee":105,"./_baseReduce":120,"./isArray":243}],275:[function(require,module,exports){var baseKeys=require("./_baseKeys"),getTag=require("./_getTag"),isArrayLike=require("./isArrayLike"),isString=require("./isString"),stringSize=require("./_stringSize"); 3488 /** `Object#toString` result references. */var mapTag="[object Map]",setTag="[object Set]"; 3489 /** 3490 * Gets the size of `collection` by returning its length for array-like 3491 * values or the number of own enumerable string keyed properties for objects. 3492 * 3493 * @static 3494 * @memberOf _ 3495 * @since 0.1.0 3496 * @category Collection 3497 * @param {Array|Object|string} collection The collection to inspect. 3498 * @returns {number} Returns the collection size. 3499 * @example 3500 * 3501 * _.size([1, 2, 3]); 3502 * // => 3 3503 * 3504 * _.size({ 'a': 1, 'b': 2 }); 3505 * // => 2 3506 * 3507 * _.size('pebbles'); 3508 * // => 7 3509 */function size(collection){if(collection==null){return 0}if(isArrayLike(collection)){return isString(collection)?stringSize(collection):collection.length}var tag=getTag(collection);if(tag==mapTag||tag==setTag){return collection.size}return baseKeys(collection).length}module.exports=size},{"./_baseKeys":106,"./_getTag":168,"./_stringSize":221,"./isArrayLike":244,"./isString":255}],276:[function(require,module,exports){var baseFlatten=require("./_baseFlatten"),baseOrderBy=require("./_baseOrderBy"),baseRest=require("./_baseRest"),isIterateeCall=require("./_isIterateeCall"); 3510 /** 3511 * Creates an array of elements, sorted in ascending order by the results of 3512 * running each element in a collection thru each iteratee. This method 3513 * performs a stable sort, that is, it preserves the original sort order of 3514 * equal elements. The iteratees are invoked with one argument: (value). 3515 * 3516 * @static 3517 * @memberOf _ 3518 * @since 0.1.0 3519 * @category Collection 3520 * @param {Array|Object} collection The collection to iterate over. 3521 * @param {...(Function|Function[])} [iteratees=[_.identity]] 3522 * The iteratees to sort by. 3523 * @returns {Array} Returns the new sorted array. 3524 * @example 3525 * 3526 * var users = [ 3527 * { 'user': 'fred', 'age': 48 }, 3528 * { 'user': 'barney', 'age': 36 }, 3529 * { 'user': 'fred', 'age': 40 }, 3530 * { 'user': 'barney', 'age': 34 } 3531 * ]; 3532 * 3533 * _.sortBy(users, [function(o) { return o.user; }]); 3534 * // => objects for [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 40]] 3535 * 3536 * _.sortBy(users, ['user', 'age']); 3537 * // => objects for [['barney', 34], ['barney', 36], ['fred', 40], ['fred', 48]] 3538 */var sortBy=baseRest(function(collection,iteratees){if(collection==null){return[]}var length=iteratees.length;if(length>1&&isIterateeCall(collection,iteratees[0],iteratees[1])){iteratees=[]}else if(length>2&&isIterateeCall(iteratees[0],iteratees[1],iteratees[2])){iteratees=[iteratees[0]]}return baseOrderBy(collection,baseFlatten(iteratees,1),[])});module.exports=sortBy},{"./_baseFlatten":86,"./_baseOrderBy":114,"./_baseRest":121,"./_isIterateeCall":182}],277:[function(require,module,exports){ 3539 /** 3540 * This method returns a new empty array. 3541 * 3542 * @static 3543 * @memberOf _ 3544 * @since 4.13.0 3545 * @category Util 3546 * @returns {Array} Returns the new empty array. 3547 * @example 3548 * 3549 * var arrays = _.times(2, _.stubArray); 3550 * 3551 * console.log(arrays); 3552 * // => [[], []] 3553 * 3554 * console.log(arrays[0] === arrays[1]); 3555 * // => false 3556 */ 3557 function stubArray(){return[]}module.exports=stubArray},{}],278:[function(require,module,exports){ 3558 /** 3559 * This method returns `false`. 3560 * 3561 * @static 3562 * @memberOf _ 3563 * @since 4.13.0 3564 * @category Util 3565 * @returns {boolean} Returns `false`. 3566 * @example 3567 * 3568 * _.times(2, _.stubFalse); 3569 * // => [false, false] 3570 */ 3571 function stubFalse(){return false}module.exports=stubFalse},{}],279:[function(require,module,exports){var toNumber=require("./toNumber"); 3572 /** Used as references for various `Number` constants. */var INFINITY=1/0,MAX_INTEGER=17976931348623157e292; 3573 /** 3574 * Converts `value` to a finite number. 3575 * 3576 * @static 3577 * @memberOf _ 3578 * @since 4.12.0 3579 * @category Lang 3580 * @param {*} value The value to convert. 3581 * @returns {number} Returns the converted number. 3582 * @example 3583 * 3584 * _.toFinite(3.2); 3585 * // => 3.2 3586 * 3587 * _.toFinite(Number.MIN_VALUE); 3588 * // => 5e-324 3589 * 3590 * _.toFinite(Infinity); 3591 * // => 1.7976931348623157e+308 3592 * 3593 * _.toFinite('3.2'); 3594 * // => 3.2 3595 */function toFinite(value){if(!value){return value===0?value:0}value=toNumber(value);if(value===INFINITY||value===-INFINITY){var sign=value<0?-1:1;return sign*MAX_INTEGER}return value===value?value:0}module.exports=toFinite},{"./toNumber":281}],280:[function(require,module,exports){var toFinite=require("./toFinite"); 3596 /** 3597 * Converts `value` to an integer. 3598 * 3599 * **Note:** This method is loosely based on 3600 * [`ToInteger`](http://www.ecma-international.org/ecma-262/7.0/#sec-tointeger). 3601 * 3602 * @static 3603 * @memberOf _ 3604 * @since 4.0.0 3605 * @category Lang 3606 * @param {*} value The value to convert. 3607 * @returns {number} Returns the converted integer. 3608 * @example 3609 * 3610 * _.toInteger(3.2); 3611 * // => 3 3612 * 3613 * _.toInteger(Number.MIN_VALUE); 3614 * // => 0 3615 * 3616 * _.toInteger(Infinity); 3617 * // => 1.7976931348623157e+308 3618 * 3619 * _.toInteger('3.2'); 3620 * // => 3 3621 */function toInteger(value){var result=toFinite(value),remainder=result%1;return result===result?remainder?result-remainder:result:0}module.exports=toInteger},{"./toFinite":279}],281:[function(require,module,exports){var isObject=require("./isObject"),isSymbol=require("./isSymbol"); 3622 /** Used as references for various `Number` constants. */var NAN=0/0; 3623 /** Used to match leading and trailing whitespace. */var reTrim=/^\s+|\s+$/g; 3624 /** Used to detect bad signed hexadecimal string values. */var reIsBadHex=/^[-+]0x[0-9a-f]+$/i; 3625 /** Used to detect binary string values. */var reIsBinary=/^0b[01]+$/i; 3626 /** Used to detect octal string values. */var reIsOctal=/^0o[0-7]+$/i; 3627 /** Built-in method references without a dependency on `root`. */var freeParseInt=parseInt; 3628 /** 3629 * Converts `value` to a number. 3630 * 3631 * @static 3632 * @memberOf _ 3633 * @since 4.0.0 3634 * @category Lang 3635 * @param {*} value The value to process. 3636 * @returns {number} Returns the number. 3637 * @example 3638 * 3639 * _.toNumber(3.2); 3640 * // => 3.2 3641 * 3642 * _.toNumber(Number.MIN_VALUE); 3643 * // => 5e-324 3644 * 3645 * _.toNumber(Infinity); 3646 * // => Infinity 3647 * 3648 * _.toNumber('3.2'); 3649 * // => 3.2 3650 */function toNumber(value){if(typeof value=="number"){return value}if(isSymbol(value)){return NAN}if(isObject(value)){var other=typeof value.valueOf=="function"?value.valueOf():value;value=isObject(other)?other+"":other}if(typeof value!="string"){return value===0?value:+value}value=value.replace(reTrim,"");var isBinary=reIsBinary.test(value);return isBinary||reIsOctal.test(value)?freeParseInt(value.slice(2),isBinary?2:8):reIsBadHex.test(value)?NAN:+value}module.exports=toNumber},{"./isObject":251,"./isSymbol":256}],282:[function(require,module,exports){var copyObject=require("./_copyObject"),keysIn=require("./keysIn"); 3651 /** 3652 * Converts `value` to a plain object flattening inherited enumerable string 3653 * keyed properties of `value` to own properties of the plain object. 3654 * 3655 * @static 3656 * @memberOf _ 3657 * @since 3.0.0 3658 * @category Lang 3659 * @param {*} value The value to convert. 3660 * @returns {Object} Returns the converted plain object. 3661 * @example 3662 * 3663 * function Foo() { 3664 * this.b = 2; 3665 * } 3666 * 3667 * Foo.prototype.c = 3; 3668 * 3669 * _.assign({ 'a': 1 }, new Foo); 3670 * // => { 'a': 1, 'b': 2 } 3671 * 3672 * _.assign({ 'a': 1 }, _.toPlainObject(new Foo)); 3673 * // => { 'a': 1, 'b': 2, 'c': 3 } 3674 */function toPlainObject(value){return copyObject(value,keysIn(value))}module.exports=toPlainObject},{"./_copyObject":143,"./keysIn":260}],283:[function(require,module,exports){var baseToString=require("./_baseToString"); 3675 /** 3676 * Converts `value` to a string. An empty string is returned for `null` 3677 * and `undefined` values. The sign of `-0` is preserved. 3678 * 3679 * @static 3680 * @memberOf _ 3681 * @since 4.0.0 3682 * @category Lang 3683 * @param {*} value The value to convert. 3684 * @returns {string} Returns the converted string. 3685 * @example 3686 * 3687 * _.toString(null); 3688 * // => '' 3689 * 3690 * _.toString(-0); 3691 * // => '-0' 3692 * 3693 * _.toString([1, 2, 3]); 3694 * // => '1,2,3' 3695 */function toString(value){return value==null?"":baseToString(value)}module.exports=toString},{"./_baseToString":126}],284:[function(require,module,exports){var arrayEach=require("./_arrayEach"),baseCreate=require("./_baseCreate"),baseForOwn=require("./_baseForOwn"),baseIteratee=require("./_baseIteratee"),getPrototype=require("./_getPrototype"),isArray=require("./isArray"),isBuffer=require("./isBuffer"),isFunction=require("./isFunction"),isObject=require("./isObject"),isTypedArray=require("./isTypedArray"); 3696 /** 3697 * An alternative to `_.reduce`; this method transforms `object` to a new 3698 * `accumulator` object which is the result of running each of its own 3699 * enumerable string keyed properties thru `iteratee`, with each invocation 3700 * potentially mutating the `accumulator` object. If `accumulator` is not 3701 * provided, a new object with the same `[[Prototype]]` will be used. The 3702 * iteratee is invoked with four arguments: (accumulator, value, key, object). 3703 * Iteratee functions may exit iteration early by explicitly returning `false`. 3704 * 3705 * @static 3706 * @memberOf _ 3707 * @since 1.3.0 3708 * @category Object 3709 * @param {Object} object The object to iterate over. 3710 * @param {Function} [iteratee=_.identity] The function invoked per iteration. 3711 * @param {*} [accumulator] The custom accumulator value. 3712 * @returns {*} Returns the accumulated value. 3713 * @example 3714 * 3715 * _.transform([2, 3, 4], function(result, n) { 3716 * result.push(n *= n); 3717 * return n % 2 == 0; 3718 * }, []); 3719 * // => [4, 9] 3720 * 3721 * _.transform({ 'a': 1, 'b': 2, 'c': 1 }, function(result, value, key) { 3722 * (result[value] || (result[value] = [])).push(key); 3723 * }, {}); 3724 * // => { '1': ['a', 'c'], '2': ['b'] } 3725 */function transform(object,iteratee,accumulator){var isArr=isArray(object),isArrLike=isArr||isBuffer(object)||isTypedArray(object);iteratee=baseIteratee(iteratee,4);if(accumulator==null){var Ctor=object&&object.constructor;if(isArrLike){accumulator=isArr?new Ctor:[]}else if(isObject(object)){accumulator=isFunction(Ctor)?baseCreate(getPrototype(object)):{}}else{accumulator={}}}(isArrLike?arrayEach:baseForOwn)(object,function(value,index,object){return iteratee(accumulator,value,index,object)});return accumulator}module.exports=transform},{"./_arrayEach":64,"./_baseCreate":81,"./_baseForOwn":88,"./_baseIteratee":105,"./_getPrototype":164,"./isArray":243,"./isBuffer":246,"./isFunction":248,"./isObject":251,"./isTypedArray":257}],285:[function(require,module,exports){var baseFlatten=require("./_baseFlatten"),baseRest=require("./_baseRest"),baseUniq=require("./_baseUniq"),isArrayLikeObject=require("./isArrayLikeObject"); 3726 /** 3727 * Creates an array of unique values, in order, from all given arrays using 3728 * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) 3729 * for equality comparisons. 3730 * 3731 * @static 3732 * @memberOf _ 3733 * @since 0.1.0 3734 * @category Array 3735 * @param {...Array} [arrays] The arrays to inspect. 3736 * @returns {Array} Returns the new array of combined values. 3737 * @example 3738 * 3739 * _.union([2], [1, 2]); 3740 * // => [2, 1] 3741 */var union=baseRest(function(arrays){return baseUniq(baseFlatten(arrays,1,isArrayLikeObject,true))});module.exports=union},{"./_baseFlatten":86,"./_baseRest":121,"./_baseUniq":128,"./isArrayLikeObject":245}],286:[function(require,module,exports){var toString=require("./toString"); 3742 /** Used to generate unique IDs. */var idCounter=0; 3743 /** 3744 * Generates a unique ID. If `prefix` is given, the ID is appended to it. 3745 * 3746 * @static 3747 * @since 0.1.0 3748 * @memberOf _ 3749 * @category Util 3750 * @param {string} [prefix=''] The value to prefix the ID with. 3751 * @returns {string} Returns the unique ID. 3752 * @example 3753 * 3754 * _.uniqueId('contact_'); 3755 * // => 'contact_104' 3756 * 3757 * _.uniqueId(); 3758 * // => '105' 3759 */function uniqueId(prefix){var id=++idCounter;return toString(prefix)+id}module.exports=uniqueId},{"./toString":283}],287:[function(require,module,exports){var baseValues=require("./_baseValues"),keys=require("./keys"); 3760 /** 3761 * Creates an array of the own enumerable string keyed property values of `object`. 3762 * 3763 * **Note:** Non-object values are coerced to objects. 3764 * 3765 * @static 3766 * @since 0.1.0 3767 * @memberOf _ 3768 * @category Object 3769 * @param {Object} object The object to query. 3770 * @returns {Array} Returns the array of property values. 3771 * @example 3772 * 3773 * function Foo() { 3774 * this.a = 1; 3775 * this.b = 2; 3776 * } 3777 * 3778 * Foo.prototype.c = 3; 3779 * 3780 * _.values(new Foo); 3781 * // => [1, 2] (iteration order is not guaranteed) 3782 * 3783 * _.values('hi'); 3784 * // => ['h', 'i'] 3785 */function values(object){return object==null?[]:baseValues(object,keys(object))}module.exports=values},{"./_baseValues":129,"./keys":259}],288:[function(require,module,exports){var assignValue=require("./_assignValue"),baseZipObject=require("./_baseZipObject"); 3786 /** 3787 * This method is like `_.fromPairs` except that it accepts two arrays, 3788 * one of property identifiers and one of corresponding values. 3789 * 3790 * @static 3791 * @memberOf _ 3792 * @since 0.4.0 3793 * @category Array 3794 * @param {Array} [props=[]] The property identifiers. 3795 * @param {Array} [values=[]] The property values. 3796 * @returns {Object} Returns the new object. 3797 * @example 3798 * 3799 * _.zipObject(['a', 'b'], [1, 2]); 3800 * // => { 'a': 1, 'b': 2 } 3801 */function zipObject(props,values){return baseZipObject(props||[],values||[],assignValue)}module.exports=zipObject},{"./_assignValue":75,"./_baseZipObject":130}]},{},[1])(1)});