xl-infinite-tree
Version:
A browser-ready tree library that can efficiently display a large amount of data using infinite scrolling.
13 lines • 640 kB
JavaScript
webpackJsonp([0],[function(module,exports,__webpack_require__){var __WEBPACK_AMD_DEFINE_ARRAY__,__WEBPACK_AMD_DEFINE_RESULT__;/*!
Copyright (c) 2017 Jed Watson.
Licensed under the MIT License (MIT), see
http://jedwatson.github.io/classnames
*/
!function(){"use strict";function classNames(){for(var classes=[],i=0;i<arguments.length;i++){var arg=arguments[i];if(arg){var argType=typeof arg;if("string"===argType||"number"===argType)classes.push(arg);else if(Array.isArray(arg)&&arg.length){var inner=classNames.apply(null,arg);inner&&classes.push(inner)}else if("object"===argType)for(var key in arg)hasOwn.call(arg,key)&&arg[key]&&classes.push(key)}}return classes.join(" ")}var hasOwn={}.hasOwnProperty;void 0!==module&&module.exports?(classNames.default=classNames,module.exports=classNames):(__WEBPACK_AMD_DEFINE_ARRAY__=[],void 0!==(__WEBPACK_AMD_DEFINE_RESULT__=function(){return classNames}.apply(exports,__WEBPACK_AMD_DEFINE_ARRAY__))&&(module.exports=__WEBPACK_AMD_DEFINE_RESULT__))}()},function(module,exports,__webpack_require__){"use strict";function escapeHtml(string){var str=""+string,match=matchHtmlRegExp.exec(str);if(!match)return str;var escape,html="",index=0,lastIndex=0;for(index=match.index;index<str.length;index++){switch(str.charCodeAt(index)){case 34:escape=""";break;case 38:escape="&";break;case 39:escape="'";break;case 60:escape="<";break;case 62:escape=">";break;default:continue}lastIndex!==index&&(html+=str.substring(lastIndex,index)),lastIndex=index+1,html+=escape}return lastIndex!==index?html+str.substring(lastIndex,index):html}/*!
* escape-html
* Copyright(c) 2012-2013 TJ Holowaychuk
* Copyright(c) 2015 Andreas Lubbe
* Copyright(c) 2015 Tiancheng "Timothy" Gu
* MIT Licensed
*/
var matchHtmlRegExp=/["'&<>]/;module.exports=escapeHtml},,function(module,exports){function cssWithMappingToString(item,useSourceMap){var content=item[1]||"",cssMapping=item[3];if(!cssMapping)return content;if(useSourceMap&&"function"==typeof btoa){var sourceMapping=toComment(cssMapping);return[content].concat(cssMapping.sources.map(function(source){return"/*# sourceURL="+cssMapping.sourceRoot+source+" */"})).concat([sourceMapping]).join("\n")}return[content].join("\n")}function toComment(sourceMap){return"/*# sourceMappingURL=data:application/json;charset=utf-8;base64,"+btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap))))+" */"}module.exports=function(useSourceMap){var list=[];return list.toString=function(){return this.map(function(item){var content=cssWithMappingToString(item,useSourceMap);return item[2]?"@media "+item[2]+"{"+content+"}":content}).join("")},list.i=function(modules,mediaQuery){"string"==typeof modules&&(modules=[[null,modules,""]]);for(var alreadyImportedModules={},i=0;i<this.length;i++){var id=this[i][0];"number"==typeof id&&(alreadyImportedModules[id]=!0)}for(i=0;i<modules.length;i++){var item=modules[i];"number"==typeof item[0]&&alreadyImportedModules[item[0]]||(mediaQuery&&!item[2]?item[2]=mediaQuery:mediaQuery&&(item[2]="("+item[2]+") and ("+mediaQuery+")"),list.push(item))}},list}},function(module,exports,__webpack_require__){function addStylesToDom(styles,options){for(var i=0;i<styles.length;i++){var item=styles[i],domStyle=stylesInDom[item.id];if(domStyle){domStyle.refs++;for(var j=0;j<domStyle.parts.length;j++)domStyle.parts[j](item.parts[j]);for(;j<item.parts.length;j++)domStyle.parts.push(addStyle(item.parts[j],options))}else{for(var parts=[],j=0;j<item.parts.length;j++)parts.push(addStyle(item.parts[j],options));stylesInDom[item.id]={id:item.id,refs:1,parts:parts}}}}function listToStyles(list,options){for(var styles=[],newStyles={},i=0;i<list.length;i++){var item=list[i],id=options.base?item[0]+options.base:item[0],css=item[1],media=item[2],sourceMap=item[3],part={css:css,media:media,sourceMap:sourceMap};newStyles[id]?newStyles[id].parts.push(part):styles.push(newStyles[id]={id:id,parts:[part]})}return styles}function insertStyleElement(options,style){var target=getElement(options.insertInto);if(!target)throw new Error("Couldn't find a style target. This probably means that the value for the 'insertInto' parameter is invalid.");var lastStyleElementInsertedAtTop=stylesInsertedAtTop[stylesInsertedAtTop.length-1];if("top"===options.insertAt)lastStyleElementInsertedAtTop?lastStyleElementInsertedAtTop.nextSibling?target.insertBefore(style,lastStyleElementInsertedAtTop.nextSibling):target.appendChild(style):target.insertBefore(style,target.firstChild),stylesInsertedAtTop.push(style);else if("bottom"===options.insertAt)target.appendChild(style);else{if("object"!=typeof options.insertAt||!options.insertAt.before)throw new Error("[Style Loader]\n\n Invalid value for parameter 'insertAt' ('options.insertAt') found.\n Must be 'top', 'bottom', or Object.\n (https://github.com/webpack-contrib/style-loader#insertat)\n");var nextSibling=getElement(options.insertInto+" "+options.insertAt.before);target.insertBefore(style,nextSibling)}}function removeStyleElement(style){if(null===style.parentNode)return!1;style.parentNode.removeChild(style);var idx=stylesInsertedAtTop.indexOf(style);idx>=0&&stylesInsertedAtTop.splice(idx,1)}function createStyleElement(options){var style=document.createElement("style");return options.attrs.type="text/css",addAttrs(style,options.attrs),insertStyleElement(options,style),style}function createLinkElement(options){var link=document.createElement("link");return options.attrs.type="text/css",options.attrs.rel="stylesheet",addAttrs(link,options.attrs),insertStyleElement(options,link),link}function addAttrs(el,attrs){Object.keys(attrs).forEach(function(key){el.setAttribute(key,attrs[key])})}function addStyle(obj,options){var style,update,remove,result;if(options.transform&&obj.css){if(!(result=options.transform(obj.css)))return function(){};obj.css=result}if(options.singleton){var styleIndex=singletonCounter++;style=singleton||(singleton=createStyleElement(options)),update=applyToSingletonTag.bind(null,style,styleIndex,!1),remove=applyToSingletonTag.bind(null,style,styleIndex,!0)}else obj.sourceMap&&"function"==typeof URL&&"function"==typeof URL.createObjectURL&&"function"==typeof URL.revokeObjectURL&&"function"==typeof Blob&&"function"==typeof btoa?(style=createLinkElement(options),update=updateLink.bind(null,style,options),remove=function(){removeStyleElement(style),style.href&&URL.revokeObjectURL(style.href)}):(style=createStyleElement(options),update=applyToTag.bind(null,style),remove=function(){removeStyleElement(style)});return update(obj),function(newObj){if(newObj){if(newObj.css===obj.css&&newObj.media===obj.media&&newObj.sourceMap===obj.sourceMap)return;update(obj=newObj)}else remove()}}function applyToSingletonTag(style,index,remove,obj){var css=remove?"":obj.css;if(style.styleSheet)style.styleSheet.cssText=replaceText(index,css);else{var cssNode=document.createTextNode(css),childNodes=style.childNodes;childNodes[index]&&style.removeChild(childNodes[index]),childNodes.length?style.insertBefore(cssNode,childNodes[index]):style.appendChild(cssNode)}}function applyToTag(style,obj){var css=obj.css,media=obj.media;if(media&&style.setAttribute("media",media),style.styleSheet)style.styleSheet.cssText=css;else{for(;style.firstChild;)style.removeChild(style.firstChild);style.appendChild(document.createTextNode(css))}}function updateLink(link,options,obj){var css=obj.css,sourceMap=obj.sourceMap,autoFixUrls=void 0===options.convertToAbsoluteUrls&&sourceMap;(options.convertToAbsoluteUrls||autoFixUrls)&&(css=fixUrls(css)),sourceMap&&(css+="\n/*# sourceMappingURL=data:application/json;base64,"+btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap))))+" */");var blob=new Blob([css],{type:"text/css"}),oldSrc=link.href;link.href=URL.createObjectURL(blob),oldSrc&&URL.revokeObjectURL(oldSrc)}var stylesInDom={},isOldIE=function(fn){var memo;return function(){return void 0===memo&&(memo=fn.apply(this,arguments)),memo}}(function(){return window&&document&&document.all&&!window.atob}),getElement=function(fn){var memo={};return function(selector){if(void 0===memo[selector]){var styleTarget=fn.call(this,selector);if(styleTarget instanceof window.HTMLIFrameElement)try{styleTarget=styleTarget.contentDocument.head}catch(e){styleTarget=null}memo[selector]=styleTarget}return memo[selector]}}(function(target){return document.querySelector(target)}),singleton=null,singletonCounter=0,stylesInsertedAtTop=[],fixUrls=__webpack_require__(21);module.exports=function(list,options){if("undefined"!=typeof DEBUG&&DEBUG&&"object"!=typeof document)throw new Error("The style-loader cannot be used in a non-browser environment");options=options||{},options.attrs="object"==typeof options.attrs?options.attrs:{},options.singleton||"boolean"==typeof options.singleton||(options.singleton=isOldIE()),options.insertInto||(options.insertInto="head"),options.insertAt||(options.insertAt="bottom");var styles=listToStyles(list,options);return addStylesToDom(styles,options),function(newList){for(var mayRemove=[],i=0;i<styles.length;i++){var item=styles[i],domStyle=stylesInDom[item.id];domStyle.refs--,mayRemove.push(domStyle)}if(newList){addStylesToDom(listToStyles(newList,options),options)}for(var i=0;i<mayRemove.length;i++){var domStyle=mayRemove[i];if(0===domStyle.refs){for(var j=0;j<domStyle.parts.length;j++)domStyle.parts[j]();delete stylesInDom[domStyle.id]}}}};var replaceText=function(){var textStore=[];return function(index,replacement){return textStore[index]=replacement,textStore.filter(Boolean).join("\n")}}()},,function(module,exports,__webpack_require__){"use strict";var _extends=Object.assign||function(target){for(var i=1;i<arguments.length;i++){var source=arguments[i];for(var key in source)Object.prototype.hasOwnProperty.call(source,key)&&(target[key]=source[key])}return target},_typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(obj){return typeof obj}:function(obj){return obj&&"function"==typeof Symbol&&obj.constructor===Symbol?"symbol":typeof obj},_escapeHtml=__webpack_require__(1),_escapeHtml2=function(obj){return obj&&obj.__esModule?obj:{default:obj}}(_escapeHtml),voidElements=["area","base","br","col","embed","hr","img","input","keygen","link","meta","param","source","track","wbr"];module.exports=function(tag,attrs,text){"object"===(void 0===tag?"undefined":_typeof(tag))&&(text=attrs,attrs=tag,tag="div");var voidElement=voidElements.indexOf((""+tag).toLowerCase())>=0,html="<"+tag;return attrs=_extends({},attrs),Object.keys(attrs).forEach(function(name){var value=attrs[name];"string"==typeof value?(value=(0,_escapeHtml2.default)(""+value),html+=" "+name+'="'+value+'"'):value&&(html+=" "+name)}),html+=voidElement?">":void 0!==text?">"+text+"</"+tag+">":"/>"}},function(module,exports,__webpack_require__){"use strict";var _infiniteTree=__webpack_require__(25),_infiniteTree2=function(obj){return obj&&obj.__esModule?obj:{default:obj}}(_infiniteTree);module.exports=_infiniteTree2.default},function(module,exports){var g;g=function(){return this}();try{g=g||Function("return this")()||(0,eval)("this")}catch(e){"object"==typeof window&&(g=window)}module.exports=g},function(module,exports,__webpack_require__){"use strict";function ProcessEmitWarning(warning){console&&console.warn&&console.warn(warning)}function EventEmitter(){EventEmitter.init.call(this)}function checkListener(listener){if("function"!=typeof listener)throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof listener)}function _getMaxListeners(that){return void 0===that._maxListeners?EventEmitter.defaultMaxListeners:that._maxListeners}function _addListener(target,type,listener,prepend){var m,events,existing;if(checkListener(listener),events=target._events,void 0===events?(events=target._events=Object.create(null),target._eventsCount=0):(void 0!==events.newListener&&(target.emit("newListener",type,listener.listener?listener.listener:listener),events=target._events),existing=events[type]),void 0===existing)existing=events[type]=listener,++target._eventsCount;else if("function"==typeof existing?existing=events[type]=prepend?[listener,existing]:[existing,listener]:prepend?existing.unshift(listener):existing.push(listener),(m=_getMaxListeners(target))>0&&existing.length>m&&!existing.warned){existing.warned=!0;var w=new Error("Possible EventEmitter memory leak detected. "+existing.length+" "+String(type)+" listeners added. Use emitter.setMaxListeners() to increase limit");w.name="MaxListenersExceededWarning",w.emitter=target,w.type=type,w.count=existing.length,ProcessEmitWarning(w)}return target}function onceWrapper(){if(!this.fired)return this.target.removeListener(this.type,this.wrapFn),this.fired=!0,0===arguments.length?this.listener.call(this.target):this.listener.apply(this.target,arguments)}function _onceWrap(target,type,listener){var state={fired:!1,wrapFn:void 0,target:target,type:type,listener:listener},wrapped=onceWrapper.bind(state);return wrapped.listener=listener,state.wrapFn=wrapped,wrapped}function _listeners(target,type,unwrap){var events=target._events;if(void 0===events)return[];var evlistener=events[type];return void 0===evlistener?[]:"function"==typeof evlistener?unwrap?[evlistener.listener||evlistener]:[evlistener]:unwrap?unwrapListeners(evlistener):arrayClone(evlistener,evlistener.length)}function listenerCount(type){var events=this._events;if(void 0!==events){var evlistener=events[type];if("function"==typeof evlistener)return 1;if(void 0!==evlistener)return evlistener.length}return 0}function arrayClone(arr,n){for(var copy=new Array(n),i=0;i<n;++i)copy[i]=arr[i];return copy}function spliceOne(list,index){for(;index+1<list.length;index++)list[index]=list[index+1];list.pop()}function unwrapListeners(arr){for(var ret=new Array(arr.length),i=0;i<ret.length;++i)ret[i]=arr[i].listener||arr[i];return ret}var ReflectOwnKeys,R="object"==typeof Reflect?Reflect:null,ReflectApply=R&&"function"==typeof R.apply?R.apply:function(target,receiver,args){return Function.prototype.apply.call(target,receiver,args)};ReflectOwnKeys=R&&"function"==typeof R.ownKeys?R.ownKeys:Object.getOwnPropertySymbols?function(target){return Object.getOwnPropertyNames(target).concat(Object.getOwnPropertySymbols(target))}:function(target){return Object.getOwnPropertyNames(target)};var NumberIsNaN=Number.isNaN||function(value){return value!==value};module.exports=EventEmitter,EventEmitter.EventEmitter=EventEmitter,EventEmitter.prototype._events=void 0,EventEmitter.prototype._eventsCount=0,EventEmitter.prototype._maxListeners=void 0;var defaultMaxListeners=10;Object.defineProperty(EventEmitter,"defaultMaxListeners",{enumerable:!0,get:function(){return defaultMaxListeners},set:function(arg){if("number"!=typeof arg||arg<0||NumberIsNaN(arg))throw new RangeError('The value of "defaultMaxListeners" is out of range. It must be a non-negative number. Received '+arg+".");defaultMaxListeners=arg}}),EventEmitter.init=function(){void 0!==this._events&&this._events!==Object.getPrototypeOf(this)._events||(this._events=Object.create(null),this._eventsCount=0),this._maxListeners=this._maxListeners||void 0},EventEmitter.prototype.setMaxListeners=function(n){if("number"!=typeof n||n<0||NumberIsNaN(n))throw new RangeError('The value of "n" is out of range. It must be a non-negative number. Received '+n+".");return this._maxListeners=n,this},EventEmitter.prototype.getMaxListeners=function(){return _getMaxListeners(this)},EventEmitter.prototype.emit=function(type){for(var args=[],i=1;i<arguments.length;i++)args.push(arguments[i]);var doError="error"===type,events=this._events;if(void 0!==events)doError=doError&&void 0===events.error;else if(!doError)return!1;if(doError){var er;if(args.length>0&&(er=args[0]),er instanceof Error)throw er;var err=new Error("Unhandled error."+(er?" ("+er.message+")":""));throw err.context=er,err}var handler=events[type];if(void 0===handler)return!1;if("function"==typeof handler)ReflectApply(handler,this,args);else for(var len=handler.length,listeners=arrayClone(handler,len),i=0;i<len;++i)ReflectApply(listeners[i],this,args);return!0},EventEmitter.prototype.addListener=function(type,listener){return _addListener(this,type,listener,!1)},EventEmitter.prototype.on=EventEmitter.prototype.addListener,EventEmitter.prototype.prependListener=function(type,listener){return _addListener(this,type,listener,!0)},EventEmitter.prototype.once=function(type,listener){return checkListener(listener),this.on(type,_onceWrap(this,type,listener)),this},EventEmitter.prototype.prependOnceListener=function(type,listener){return checkListener(listener),this.prependListener(type,_onceWrap(this,type,listener)),this},EventEmitter.prototype.removeListener=function(type,listener){var list,events,position,i,originalListener;if(checkListener(listener),void 0===(events=this._events))return this;if(void 0===(list=events[type]))return this;if(list===listener||list.listener===listener)0==--this._eventsCount?this._events=Object.create(null):(delete events[type],events.removeListener&&this.emit("removeListener",type,list.listener||listener));else if("function"!=typeof list){for(position=-1,i=list.length-1;i>=0;i--)if(list[i]===listener||list[i].listener===listener){originalListener=list[i].listener,position=i;break}if(position<0)return this;0===position?list.shift():spliceOne(list,position),1===list.length&&(events[type]=list[0]),void 0!==events.removeListener&&this.emit("removeListener",type,originalListener||listener)}return this},EventEmitter.prototype.off=EventEmitter.prototype.removeListener,EventEmitter.prototype.removeAllListeners=function(type){var listeners,events,i;if(void 0===(events=this._events))return this;if(void 0===events.removeListener)return 0===arguments.length?(this._events=Object.create(null),this._eventsCount=0):void 0!==events[type]&&(0==--this._eventsCount?this._events=Object.create(null):delete events[type]),this;if(0===arguments.length){var key,keys=Object.keys(events);for(i=0;i<keys.length;++i)"removeListener"!==(key=keys[i])&&this.removeAllListeners(key);return this.removeAllListeners("removeListener"),this._events=Object.create(null),this._eventsCount=0,this}if("function"==typeof(listeners=events[type]))this.removeListener(type,listeners);else if(void 0!==listeners)for(i=listeners.length-1;i>=0;i--)this.removeListener(type,listeners[i]);return this},EventEmitter.prototype.listeners=function(type){return _listeners(this,type,!0)},EventEmitter.prototype.rawListeners=function(type){return _listeners(this,type,!1)},EventEmitter.listenerCount=function(emitter,type){return"function"==typeof emitter.listenerCount?emitter.listenerCount(type):listenerCount.call(emitter,type)},EventEmitter.prototype.listenerCount=listenerCount,EventEmitter.prototype.eventNames=function(){return this._eventsCount>0?ReflectOwnKeys(this._events):[]}},function(module,exports,__webpack_require__){"use strict";exports.__esModule=!0;var extend=function(target){for(var _len=arguments.length,sources=Array(_len>1?_len-1:0),_key=1;_key<_len;_key++)sources[_key-1]=arguments[_key];if(void 0===target||null===target)throw new TypeError("Cannot convert undefined or null to object");for(var output=Object(target),index=0;index<sources.length;index++){var source=sources[index];if(void 0!==source&&null!==source)for(var key in source)source.hasOwnProperty(key)&&(output[key]=source[key])}return output};exports.default=extend},function(module,exports,__webpack_require__){"use strict";function _classCallCheck(instance,Constructor){if(!(instance instanceof Constructor))throw new TypeError("Cannot call a class as a function")}exports.__esModule=!0;var _extend=__webpack_require__(10),_extend2=function(obj){return obj&&obj.__esModule?obj:{default:obj}}(_extend),Node=function(){function Node(node){_classCallCheck(this,Node),this.id=null,this.parent=null,this.children=[],this.state={},(0,_extend2.default)(this,node),this.children=this.children||[]}return Node.prototype.contains=function(node){for(;node instanceof Node&&node!==this;){if(node.parent===this)return!0;node=node.parent}return!1},Node.prototype.getChildAt=function(index){var node=null;return this.children.length>0&&index>=0&&index<this.children.length&&(node=this.children[index]),node},Node.prototype.getChildren=function(){return this.children},Node.prototype.getFirstChild=function(){var node=null;return this.children.length>0&&(node=this.children[0]),node},Node.prototype.getLastChild=function(){var node=null;return this.children.length>0&&(node=this.children[this.children.length-1]),node},Node.prototype.getNextSibling=function(){var node=null;if(this.parent){var index=this.parent.children.indexOf(this);index>=0&&index<this.parent.children.length-1&&(node=this.parent.children[index+1])}return node},Node.prototype.getParent=function(){return this.parent},Node.prototype.getPreviousSibling=function(){var node=null;if(this.parent){var index=this.parent.children.indexOf(this);index>0&&index<this.parent.children.length&&(node=this.parent.children[index-1])}return node},Node.prototype.hasChildren=function(){return this.children.length>0},Node.prototype.isLastChild=function(){return!this.getNextSibling()},Node}();exports.default=Node},function(module,exports,__webpack_require__){"use strict";exports.__esModule=!0;var ensureArray=function(){for(var _len=arguments.length,args=Array(_len),_key=0;_key<_len;_key++)args[_key]=arguments[_key];return 0===args.length||void 0===args[0]||null===args[0]?[]:[].concat(1===args.length?args[0]:args)};exports.default=ensureArray},function(module,exports){module.exports=[{id:"<root>.0",name:"<root>.0",props:{droppable:!0},children:[{id:"alpha.0",name:"Alpha.0",props:{droppable:!0}},{id:"bravo.0",name:"Bravo.0",props:{droppable:!0},children:[{id:"charlie.0",name:"Charlie.0",props:{droppable:!0},children:[{id:"delta.0",name:"Delta.0",props:{droppable:!0},children:[{id:"echo.0",name:"Echo.0",props:{droppable:!0}},{id:"foxtrot.0",name:"Foxtrot.0",props:{droppable:!0}}]},{id:"golf.0",name:"Golf.0",props:{droppable:!0}}]},{id:"hotel.0",name:"Hotel.0",props:{droppable:!0},children:[{id:"india.0",name:"India.0",props:{droppable:!0},children:[{id:"juliet.0",name:"Juliet.0",props:{droppable:!0}}]}]},{id:"kilo.0",name:"Kilo.0",loadOnDemand:!0,props:{droppable:!0}}]}]},{id:"<root>.1",name:"<root>.1",props:{droppable:!0},children:[{id:"alpha.1",name:"Alpha.1",props:{droppable:!0}},{id:"bravo.1",name:"Bravo.1",props:{droppable:!0},children:[{id:"charlie.1",name:"Charlie.1",props:{droppable:!0},children:[{id:"delta.1",name:"Delta.1",props:{droppable:!0},children:[{id:"echo.1",name:"Echo.1",props:{droppable:!0}},{id:"foxtrot.1",name:"Foxtrot.1",props:{droppable:!0}}]},{id:"golf.1",name:"Golf.1",props:{droppable:!0}}]},{id:"hotel.1",name:"Hotel.1",props:{droppable:!0},children:[{id:"india.1",name:"India.1",props:{droppable:!0},children:[{id:"juliet.1",name:"Juliet.1",props:{droppable:!0}}]}]},{id:"kilo.1",name:"Kilo.1",loadOnDemand:!0,props:{droppable:!0}}]}]},{id:"<root>.2",name:"<root>.2",props:{droppable:!0},children:[{id:"alpha.2",name:"Alpha.2",props:{droppable:!0}},{id:"bravo.2",name:"Bravo.2",props:{droppable:!0},children:[{id:"charlie.2",name:"Charlie.2",props:{droppable:!0},children:[{id:"delta.2",name:"Delta.2",props:{droppable:!0},children:[{id:"echo.2",name:"Echo.2",props:{droppable:!0}},{id:"foxtrot.2",name:"Foxtrot.2",props:{droppable:!0}}]},{id:"golf.2",name:"Golf.2",props:{droppable:!0}}]},{id:"hotel.2",name:"Hotel.2",props:{droppable:!0},children:[{id:"india.2",name:"India.2",props:{droppable:!0},children:[{id:"juliet.2",name:"Juliet.2",props:{droppable:!0}}]}]},{id:"kilo.2",name:"Kilo.2",loadOnDemand:!0,props:{droppable:!0}}]}]},{id:"<root>.3",name:"<root>.3",props:{droppable:!0},children:[{id:"alpha.3",name:"Alpha.3",props:{droppable:!0}},{id:"bravo.3",name:"Bravo.3",props:{droppable:!0},children:[{id:"charlie.3",name:"Charlie.3",props:{droppable:!0},children:[{id:"delta.3",name:"Delta.3",props:{droppable:!0},children:[{id:"echo.3",name:"Echo.3",props:{droppable:!0}},{id:"foxtrot.3",name:"Foxtrot.3",props:{droppable:!0}}]},{id:"golf.3",name:"Golf.3",props:{droppable:!0}}]},{id:"hotel.3",name:"Hotel.3",props:{droppable:!0},children:[{id:"india.3",name:"India.3",props:{droppable:!0},children:[{id:"juliet.3",name:"Juliet.3",props:{droppable:!0}}]}]},{id:"kilo.3",name:"Kilo.3",loadOnDemand:!0,props:{droppable:!0}}]}]},{id:"<root>.4",name:"<root>.4",props:{droppable:!0},children:[{id:"alpha.4",name:"Alpha.4",props:{droppable:!0}},{id:"bravo.4",name:"Bravo.4",props:{droppable:!0},children:[{id:"charlie.4",name:"Charlie.4",props:{droppable:!0},children:[{id:"delta.4",name:"Delta.4",props:{droppable:!0},children:[{id:"echo.4",name:"Echo.4",props:{droppable:!0}},{id:"foxtrot.4",name:"Foxtrot.4",props:{droppable:!0}}]},{id:"golf.4",name:"Golf.4",props:{droppable:!0}}]},{id:"hotel.4",name:"Hotel.4",props:{droppable:!0},children:[{id:"india.4",name:"India.4",props:{droppable:!0},children:[{id:"juliet.4",name:"Juliet.4",props:{droppable:!0}}]}]},{id:"kilo.4",name:"Kilo.4",loadOnDemand:!0,props:{droppable:!0}}]}]},{id:"<root>.5",name:"<root>.5",props:{droppable:!0},children:[{id:"alpha.5",name:"Alpha.5",props:{droppable:!0}},{id:"bravo.5",name:"Bravo.5",props:{droppable:!0},children:[{id:"charlie.5",name:"Charlie.5",props:{droppable:!0},children:[{id:"delta.5",name:"Delta.5",props:{droppable:!0},children:[{id:"echo.5",name:"Echo.5",props:{droppable:!0}},{id:"foxtrot.5",name:"Foxtrot.5",props:{droppable:!0}}]},{id:"golf.5",name:"Golf.5",props:{droppable:!0}}]},{id:"hotel.5",name:"Hotel.5",props:{droppable:!0},children:[{id:"india.5",name:"India.5",props:{droppable:!0},children:[{id:"juliet.5",name:"Juliet.5",props:{droppable:!0}}]}]},{id:"kilo.5",name:"Kilo.5",loadOnDemand:!0,props:{droppable:!0}}]}]},{id:"<root>.6",name:"<root>.6",props:{droppable:!0},children:[{id:"alpha.6",name:"Alpha.6",props:{droppable:!0}},{id:"bravo.6",name:"Bravo.6",props:{droppable:!0},children:[{id:"charlie.6",name:"Charlie.6",props:{droppable:!0},children:[{id:"delta.6",name:"Delta.6",props:{droppable:!0},children:[{id:"echo.6",name:"Echo.6",props:{droppable:!0}},{id:"foxtrot.6",name:"Foxtrot.6",props:{droppable:!0}}]},{id:"golf.6",name:"Golf.6",props:{droppable:!0}}]},{id:"hotel.6",name:"Hotel.6",props:{droppable:!0},children:[{id:"india.6",name:"India.6",props:{droppable:!0},children:[{id:"juliet.6",name:"Juliet.6",props:{droppable:!0}}]}]},{id:"kilo.6",name:"Kilo.6",loadOnDemand:!0,props:{droppable:!0}}]}]},{id:"<root>.7",name:"<root>.7",props:{droppable:!0},children:[{id:"alpha.7",name:"Alpha.7",props:{droppable:!0}},{id:"bravo.7",name:"Bravo.7",props:{droppable:!0},children:[{id:"charlie.7",name:"Charlie.7",props:{droppable:!0},children:[{id:"delta.7",name:"Delta.7",props:{droppable:!0},children:[{id:"echo.7",name:"Echo.7",props:{droppable:!0}},{id:"foxtrot.7",name:"Foxtrot.7",props:{droppable:!0}}]},{id:"golf.7",name:"Golf.7",props:{droppable:!0}}]},{id:"hotel.7",name:"Hotel.7",props:{droppable:!0},children:[{id:"india.7",name:"India.7",props:{droppable:!0},children:[{id:"juliet.7",name:"Juliet.7",props:{droppable:!0}}]}]},{id:"kilo.7",name:"Kilo.7",loadOnDemand:!0,props:{droppable:!0}}]}]},{id:"<root>.8",name:"<root>.8",props:{droppable:!0},children:[{id:"alpha.8",name:"Alpha.8",props:{droppable:!0}},{id:"bravo.8",name:"Bravo.8",props:{droppable:!0},children:[{id:"charlie.8",name:"Charlie.8",props:{droppable:!0},children:[{id:"delta.8",name:"Delta.8",props:{droppable:!0},children:[{id:"echo.8",name:"Echo.8",props:{droppable:!0}},{id:"foxtrot.8",name:"Foxtrot.8",props:{droppable:!0}}]},{id:"golf.8",name:"Golf.8",props:{droppable:!0}}]},{id:"hotel.8",name:"Hotel.8",props:{droppable:!0},children:[{id:"india.8",name:"India.8",props:{droppable:!0},children:[{id:"juliet.8",name:"Juliet.8",props:{droppable:!0}}]}]},{id:"kilo.8",name:"Kilo.8",loadOnDemand:!0,props:{droppable:!0}}]}]},{id:"<root>.9",name:"<root>.9",props:{droppable:!0},children:[{id:"alpha.9",name:"Alpha.9",props:{droppable:!0}},{id:"bravo.9",name:"Bravo.9",props:{droppable:!0},children:[{id:"charlie.9",name:"Charlie.9",props:{droppable:!0},children:[{id:"delta.9",name:"Delta.9",props:{droppable:!0},children:[{id:"echo.9",name:"Echo.9",props:{droppable:!0}},{id:"foxtrot.9",name:"Foxtrot.9",props:{droppable:!0}}]},{id:"golf.9",name:"Golf.9",props:{droppable:!0}}]},{id:"hotel.9",name:"Hotel.9",props:{droppable:!0},children:[{id:"india.9",name:"India.9",props:{droppable:!0},children:[{id:"juliet.9",name:"Juliet.9",props:{droppable:!0}}]}]},{id:"kilo.9",name:"Kilo.9",loadOnDemand:!0,props:{droppable:!0}}]}]},{id:"<root>.10",name:"<root>.10",props:{droppable:!0},children:[{id:"alpha.10",name:"Alpha.10",props:{droppable:!0}},{id:"bravo.10",name:"Bravo.10",props:{droppable:!0},children:[{id:"charlie.10",name:"Charlie.10",props:{droppable:!0},children:[{id:"delta.10",name:"Delta.10",props:{droppable:!0},children:[{id:"echo.10",name:"Echo.10",props:{droppable:!0}},{id:"foxtrot.10",name:"Foxtrot.10",props:{droppable:!0}}]},{id:"golf.10",name:"Golf.10",props:{droppable:!0}}]},{id:"hotel.10",name:"Hotel.10",props:{droppable:!0},children:[{id:"india.10",name:"India.10",props:{droppable:!0},children:[{id:"juliet.10",name:"Juliet.10",props:{droppable:!0}}]}]},{id:"kilo.10",name:"Kilo.10",loadOnDemand:!0,props:{droppable:!0}}]}]},{id:"<root>.11",name:"<root>.11",props:{droppable:!0},children:[{id:"alpha.11",name:"Alpha.11",props:{droppable:!0}},{id:"bravo.11",name:"Bravo.11",props:{droppable:!0},children:[{id:"charlie.11",name:"Charlie.11",props:{droppable:!0},children:[{id:"delta.11",name:"Delta.11",props:{droppable:!0},children:[{id:"echo.11",name:"Echo.11",props:{droppable:!0}},{id:"foxtrot.11",name:"Foxtrot.11",props:{droppable:!0}}]},{id:"golf.11",name:"Golf.11",props:{droppable:!0}}]},{id:"hotel.11",name:"Hotel.11",props:{droppable:!0},children:[{id:"india.11",name:"India.11",props:{droppable:!0},children:[{id:"juliet.11",name:"Juliet.11",props:{droppable:!0}}]}]},{id:"kilo.11",name:"Kilo.11",loadOnDemand:!0,props:{droppable:!0}}]}]},{id:"<root>.12",name:"<root>.12",props:{droppable:!0},children:[{id:"alpha.12",name:"Alpha.12",props:{droppable:!0}},{id:"bravo.12",name:"Bravo.12",props:{droppable:!0},children:[{id:"charlie.12",name:"Charlie.12",props:{droppable:!0},children:[{id:"delta.12",name:"Delta.12",props:{droppable:!0},children:[{id:"echo.12",name:"Echo.12",props:{droppable:!0}},{id:"foxtrot.12",name:"Foxtrot.12",props:{droppable:!0}}]},{id:"golf.12",name:"Golf.12",props:{droppable:!0}}]},{id:"hotel.12",name:"Hotel.12",props:{droppable:!0},children:[{id:"india.12",name:"India.12",props:{droppable:!0},children:[{id:"juliet.12",name:"Juliet.12",props:{droppable:!0}}]}]},{id:"kilo.12",name:"Kilo.12",loadOnDemand:!0,props:{droppable:!0}}]}]},{id:"<root>.13",name:"<root>.13",props:{droppable:!0},children:[{id:"alpha.13",name:"Alpha.13",props:{droppable:!0}},{id:"bravo.13",name:"Bravo.13",props:{droppable:!0},children:[{id:"charlie.13",name:"Charlie.13",props:{droppable:!0},children:[{id:"delta.13",name:"Delta.13",props:{droppable:!0},children:[{id:"echo.13",name:"Echo.13",props:{droppable:!0}},{id:"foxtrot.13",name:"Foxtrot.13",props:{droppable:!0}}]},{id:"golf.13",name:"Golf.13",props:{droppable:!0}}]},{id:"hotel.13",name:"Hotel.13",props:{droppable:!0},children:[{id:"india.13",name:"India.13",props:{droppable:!0},children:[{id:"juliet.13",name:"Juliet.13",props:{droppable:!0}}]}]},{id:"kilo.13",name:"Kilo.13",loadOnDemand:!0,props:{droppable:!0}}]}]},{id:"<root>.14",name:"<root>.14",props:{droppable:!0},children:[{id:"alpha.14",name:"Alpha.14",props:{droppable:!0}},{id:"bravo.14",name:"Bravo.14",props:{droppable:!0},children:[{id:"charlie.14",name:"Charlie.14",props:{droppable:!0},children:[{id:"delta.14",name:"Delta.14",props:{droppable:!0},children:[{id:"echo.14",name:"Echo.14",props:{droppable:!0}},{id:"foxtrot.14",name:"Foxtrot.14",props:{droppable:!0}}]},{id:"golf.14",name:"Golf.14",props:{droppable:!0}}]},{id:"hotel.14",name:"Hotel.14",props:{droppable:!0},children:[{id:"india.14",name:"India.14",props:{droppable:!0},children:[{id:"juliet.14",name:"Juliet.14",props:{droppable:!0}}]}]},{id:"kilo.14",name:"Kilo.14",loadOnDemand:!0,props:{droppable:!0}}]}]},{id:"<root>.15",name:"<root>.15",props:{droppable:!0},children:[{id:"alpha.15",name:"Alpha.15",props:{droppable:!0}},{id:"bravo.15",name:"Bravo.15",props:{droppable:!0},children:[{id:"charlie.15",name:"Charlie.15",props:{droppable:!0},children:[{id:"delta.15",name:"Delta.15",props:{droppable:!0},children:[{id:"echo.15",name:"Echo.15",props:{droppable:!0}},{id:"foxtrot.15",name:"Foxtrot.15",props:{droppable:!0}}]},{id:"golf.15",name:"Golf.15",props:{droppable:!0}}]},{id:"hotel.15",name:"Hotel.15",props:{droppable:!0},children:[{id:"india.15",name:"India.15",props:{droppable:!0},children:[{id:"juliet.15",name:"Juliet.15",props:{droppable:!0}}]}]},{id:"kilo.15",name:"Kilo.15",loadOnDemand:!0,props:{droppable:!0}}]}]},{id:"<root>.16",name:"<root>.16",props:{droppable:!0},children:[{id:"alpha.16",name:"Alpha.16",props:{droppable:!0}},{id:"bravo.16",name:"Bravo.16",props:{droppable:!0},children:[{id:"charlie.16",name:"Charlie.16",props:{droppable:!0},children:[{id:"delta.16",name:"Delta.16",props:{droppable:!0},children:[{id:"echo.16",name:"Echo.16",props:{droppable:!0}},{id:"foxtrot.16",name:"Foxtrot.16",props:{droppable:!0}}]},{id:"golf.16",name:"Golf.16",props:{droppable:!0}}]},{id:"hotel.16",name:"Hotel.16",props:{droppable:!0},children:[{id:"india.16",name:"India.16",props:{droppable:!0},children:[{id:"juliet.16",name:"Juliet.16",props:{droppable:!0}}]}]},{id:"kilo.16",name:"Kilo.16",loadOnDemand:!0,props:{droppable:!0}}]}]},{id:"<root>.17",name:"<root>.17",props:{droppable:!0},children:[{id:"alpha.17",name:"Alpha.17",props:{droppable:!0}},{id:"bravo.17",name:"Bravo.17",props:{droppable:!0},children:[{id:"charlie.17",name:"Charlie.17",props:{droppable:!0},children:[{id:"delta.17",name:"Delta.17",props:{droppable:!0},children:[{id:"echo.17",name:"Echo.17",props:{droppable:!0}},{id:"foxtrot.17",name:"Foxtrot.17",props:{droppable:!0}}]},{id:"golf.17",name:"Golf.17",props:{droppable:!0}}]},{id:"hotel.17",name:"Hotel.17",props:{droppable:!0},children:[{id:"india.17",name:"India.17",props:{droppable:!0},children:[{id:"juliet.17",name:"Juliet.17",props:{droppable:!0}}]}]},{id:"kilo.17",name:"Kilo.17",loadOnDemand:!0,props:{droppable:!0}}]}]},{id:"<root>.18",name:"<root>.18",props:{droppable:!0},children:[{id:"alpha.18",name:"Alpha.18",props:{droppable:!0}},{id:"bravo.18",name:"Bravo.18",props:{droppable:!0},children:[{id:"charlie.18",name:"Charlie.18",props:{droppable:!0},children:[{id:"delta.18",name:"Delta.18",props:{droppable:!0},children:[{id:"echo.18",name:"Echo.18",props:{droppable:!0}},{id:"foxtrot.18",name:"Foxtrot.18",props:{droppable:!0}}]},{id:"golf.18",name:"Golf.18",props:{droppable:!0}}]},{id:"hotel.18",name:"Hotel.18",props:{droppable:!0},children:[{id:"india.18",name:"India.18",props:{droppable:!0},children:[{id:"juliet.18",name:"Juliet.18",props:{droppable:!0}}]}]},{id:"kilo.18",name:"Kilo.18",loadOnDemand:!0,props:{droppable:!0}}]}]},{id:"<root>.19",name:"<root>.19",props:{droppable:!0},children:[{id:"alpha.19",name:"Alpha.19",props:{droppable:!0}},{id:"bravo.19",name:"Bravo.19",props:{droppable:!0},children:[{id:"charlie.19",name:"Charlie.19",props:{droppable:!0},children:[{id:"delta.19",name:"Delta.19",props:{droppable:!0},children:[{id:"echo.19",name:"Echo.19",props:{droppable:!0}},{id:"foxtrot.19",name:"Foxtrot.19",props:{droppable:!0}}]},{id:"golf.19",name:"Golf.19",props:{droppable:!0}}]},{id:"hotel.19",name:"Hotel.19",props:{droppable:!0},children:[{id:"india.19",name:"India.19",props:{droppable:!0},children:[{id:"juliet.19",name:"Juliet.19",props:{droppable:!0}}]}]},{id:"kilo.19",name:"Kilo.19",loadOnDemand:!0,props:{droppable:!0}}]}]},{id:"<root>.20",name:"<root>.20",props:{droppable:!0},children:[{id:"alpha.20",name:"Alpha.20",props:{droppable:!0}},{id:"bravo.20",name:"Bravo.20",props:{droppable:!0},children:[{id:"charlie.20",name:"Charlie.20",props:{droppable:!0},children:[{id:"delta.20",name:"Delta.20",props:{droppable:!0},children:[{id:"echo.20",name:"Echo.20",props:{droppable:!0}},{id:"foxtrot.20",name:"Foxtrot.20",props:{droppable:!0}}]},{id:"golf.20",name:"Golf.20",props:{droppable:!0}}]},{id:"hotel.20",name:"Hotel.20",props:{droppable:!0},children:[{id:"india.20",name:"India.20",props:{droppable:!0},children:[{id:"juliet.20",name:"Juliet.20",props:{droppable:!0}}]}]},{id:"kilo.20",name:"Kilo.20",loadOnDemand:!0,props:{droppable:!0}}]}]},{id:"<root>.21",name:"<root>.21",props:{droppable:!0},children:[{id:"alpha.21",name:"Alpha.21",props:{droppable:!0}},{id:"bravo.21",name:"Bravo.21",props:{droppable:!0},children:[{id:"charlie.21",name:"Charlie.21",props:{droppable:!0},children:[{id:"delta.21",name:"Delta.21",props:{droppable:!0},children:[{id:"echo.21",name:"Echo.21",props:{droppable:!0}},{id:"foxtrot.21",name:"Foxtrot.21",props:{droppable:!0}}]},{id:"golf.21",name:"Golf.21",props:{droppable:!0}}]},{id:"hotel.21",name:"Hotel.21",props:{droppable:!0},children:[{id:"india.21",name:"India.21",props:{droppable:!0},children:[{id:"juliet.21",name:"Juliet.21",props:{droppable:!0}}]}]},{id:"kilo.21",name:"Kilo.21",loadOnDemand:!0,props:{droppable:!0}}]}]},{id:"<root>.22",name:"<root>.22",props:{droppable:!0},children:[{id:"alpha.22",name:"Alpha.22",props:{droppable:!0}},{id:"bravo.22",name:"Bravo.22",props:{droppable:!0},children:[{id:"charlie.22",name:"Charlie.22",props:{droppable:!0},children:[{id:"delta.22",name:"Delta.22",props:{droppable:!0},children:[{id:"echo.22",name:"Echo.22",props:{droppable:!0}},{id:"foxtrot.22",name:"Foxtrot.22",props:{droppable:!0}}]},{id:"golf.22",name:"Golf.22",props:{droppable:!0}}]},{id:"hotel.22",name:"Hotel.22",props:{droppable:!0},children:[{id:"india.22",name:"India.22",props:{droppable:!0},children:[{id:"juliet.22",name:"Juliet.22",props:{droppable:!0}}]}]},{id:"kilo.22",name:"Kilo.22",loadOnDemand:!0,props:{droppable:!0}}]}]},{id:"<root>.23",name:"<root>.23",props:{droppable:!0},children:[{id:"alpha.23",name:"Alpha.23",props:{droppable:!0}},{id:"bravo.23",name:"Bravo.23",props:{droppable:!0},children:[{id:"charlie.23",name:"Charlie.23",props:{droppable:!0},children:[{id:"delta.23",name:"Delta.23",props:{droppable:!0},children:[{id:"echo.23",name:"Echo.23",props:{droppable:!0}},{id:"foxtrot.23",name:"Foxtrot.23",props:{droppable:!0}}]},{id:"golf.23",name:"Golf.23",props:{droppable:!0}}]},{id:"hotel.23",name:"Hotel.23",props:{droppable:!0},children:[{id:"india.23",name:"India.23",props:{droppable:!0},children:[{id:"juliet.23",name:"Juliet.23",props:{droppable:!0}}]}]},{id:"kilo.23",name:"Kilo.23",loadOnDemand:!0,props:{droppable:!0}}]}]},{id:"<root>.24",name:"<root>.24",props:{droppable:!0},children:[{id:"alpha.24",name:"Alpha.24",props:{droppable:!0}},{id:"bravo.24",name:"Bravo.24",props:{droppable:!0},children:[{id:"charlie.24",name:"Charlie.24",props:{droppable:!0},children:[{id:"delta.24",name:"Delta.24",props:{droppable:!0},children:[{id:"echo.24",name:"Echo.24",props:{droppable:!0}},{id:"foxtrot.24",name:"Foxtrot.24",props:{droppable:!0}}]},{id:"golf.24",name:"Golf.24",props:{droppable:!0}}]},{id:"hotel.24",name:"Hotel.24",props:{droppable:!0},children:[{id:"india.24",name:"India.24",props:{droppable:!0},children:[{id:"juliet.24",name:"Juliet.24",props:{droppable:!0}}]}]},{id:"kilo.24",name:"Kilo.24",loadOnDemand:!0,props:{droppable:!0}}]}]},{id:"<root>.25",name:"<root>.25",props:{droppable:!0},children:[{id:"alpha.25",name:"Alpha.25",props:{droppable:!0}},{id:"bravo.25",name:"Bravo.25",props:{droppable:!0},children:[{id:"charlie.25",name:"Charlie.25",props:{droppable:!0},children:[{id:"delta.25",name:"Delta.25",props:{droppable:!0},children:[{id:"echo.25",name:"Echo.25",props:{droppable:!0}},{id:"foxtrot.25",name:"Foxtrot.25",props:{droppable:!0}}]},{id:"golf.25",name:"Golf.25",props:{droppable:!0}}]},{id:"hotel.25",name:"Hotel.25",props:{droppable:!0},children:[{id:"india.25",name:"India.25",props:{droppable:!0},children:[{id:"juliet.25",name:"Juliet.25",props:{droppable:!0}}]}]},{id:"kilo.25",name:"Kilo.25",loadOnDemand:!0,props:{droppable:!0}}]}]},{id:"<root>.26",name:"<root>.26",props:{droppable:!0},children:[{id:"alpha.26",name:"Alpha.26",props:{droppable:!0}},{id:"bravo.26",name:"Bravo.26",props:{droppable:!0},children:[{id:"charlie.26",name:"Charlie.26",props:{droppable:!0},children:[{id:"delta.26",name:"Delta.26",props:{droppable:!0},children:[{id:"echo.26",name:"Echo.26",props:{droppable:!0}},{id:"foxtrot.26",name:"Foxtrot.26",props:{droppable:!0}}]},{id:"golf.26",name:"Golf.26",props:{droppable:!0}}]},{id:"hotel.26",name:"Hotel.26",props:{droppable:!0},children:[{id:"india.26",name:"India.26",props:{droppable:!0},children:[{id:"juliet.26",name:"Juliet.26",props:{droppable:!0}}]}]},{id:"kilo.26",name:"Kilo.26",loadOnDemand:!0,props:{droppable:!0}}]}]},{id:"<root>.27",name:"<root>.27",props:{droppable:!0},children:[{id:"alpha.27",name:"Alpha.27",props:{droppable:!0}},{id:"bravo.27",name:"Bravo.27",props:{droppable:!0},children:[{id:"charlie.27",name:"Charlie.27",props:{droppable:!0},children:[{id:"delta.27",name:"Delta.27",props:{droppable:!0},children:[{id:"echo.27",name:"Echo.27",props:{droppable:!0}},{id:"foxtrot.27",name:"Foxtrot.27",props:{droppable:!0}}]},{id:"golf.27",name:"Golf.27",props:{droppable:!0}}]},{id:"hotel.27",name:"Hotel.27",props:{droppable:!0},children:[{id:"india.27",name:"India.27",props:{droppable:!0},children:[{id:"juliet.27",name:"Juliet.27",props:{droppable:!0}}]}]},{id:"kilo.27",name:"Kilo.27",loadOnDemand:!0,props:{droppable:!0}}]}]},{id:"<root>.28",name:"<root>.28",props:{droppable:!0},children:[{id:"alpha.28",name:"Alpha.28",props:{droppable:!0}},{id:"bravo.28",name:"Bravo.28",props:{droppable:!0},children:[{id:"charlie.28",name:"Charlie.28",props:{droppable:!0},children:[{id:"delta.28",name:"Delta.28",props:{droppable:!0},children:[{id:"echo.28",name:"Echo.28",props:{droppable:!0}},{id:"foxtrot.28",name:"Foxtrot.28",props:{droppable:!0}}]},{id:"golf.28",name:"Golf.28",props:{droppable:!0}}]},{id:"hotel.28",name:"Hotel.28",props:{droppable:!0},children:[{id:"india.28",name:"India.28",props:{droppable:!0},children:[{id:"juliet.28",name:"Juliet.28",props:{droppable:!0}}]}]},{id:"kilo.28",name:"Kilo.28",loadOnDemand:!0,props:{droppable:!0}}]}]},{id:"<root>.29",name:"<root>.29",props:{droppable:!0},children:[{id:"alpha.29",name:"Alpha.29",props:{droppable:!0}},{id:"bravo.29",name:"Bravo.29",props:{droppable:!0},children:[{id:"charlie.29",name:"Charlie.29",props:{droppable:!0},children:[{id:"delta.29",name:"Delta.29",props:{droppable:!0},children:[{id:"echo.29",name:"Echo.29",props:{droppable:!0}},{id:"foxtrot.29",name:"Foxtrot.29",props:{droppable:!0}}]},{id:"golf.29",name:"Golf.29",props:{droppable:!0}}]},{id:"hotel.29",name:"Hotel.29",props:{droppable:!0},children:[{id:"india.29",name:"India.29",props:{droppable:!0},children:[{id:"juliet.29",name:"Juliet.29",props:{droppable:!0}}]}]},{id:"kilo.29",name:"Kilo.29",loadOnDemand:!0,props:{droppable:!0}}]}]},{id:"<root>.30",name:"<root>.30",props:{droppable:!0},children:[{id:"alpha.30",name:"Alpha.30",props:{droppable:!0}},{id:"bravo.30",name:"Bravo.30",props:{droppable:!0},children:[{id:"charlie.30",name:"Charlie.30",props:{droppable:!0},children:[{id:"delta.30",name:"Delta.30",props:{droppable:!0},children:[{id:"echo.30",name:"Echo.30",props:{droppable:!0}},{id:"foxtrot.30",name:"Foxtrot.30",props:{droppable:!0}}]},{id:"golf.30",name:"Golf.30",props:{droppable:!0}}]},{id:"hotel.30",name:"Hotel.30",props:{droppable:!0},children:[{id:"india.30",name:"India.30",props:{droppable:!0},children:[{id:"juliet.30",name:"Juliet.30",props:{droppable:!0}}]}]},{id:"kilo.30",name:"Kilo.30",loadOnDemand:!0,props:{droppable:!0}}]}]},{id:"<root>.31",name:"<root>.31",props:{droppable:!0},children:[{id:"alpha.31",name:"Alpha.31",props:{droppable:!0}},{id:"bravo.31",name:"Bravo.31",props:{droppable:!0},children:[{id:"charlie.31",name:"Charlie.31",props:{droppable:!0},children:[{id:"delta.31",name:"Delta.31",props:{droppable:!0},children:[{id:"echo.31",name:"Echo.31",props:{droppable:!0}},{id:"foxtrot.31",name:"Foxtrot.31",props:{droppable:!0}}]},{id:"golf.31",name:"Golf.31",props:{droppable:!0}}]},{id:"hotel.31",name:"Hotel.31",props:{droppable:!0},children:[{id:"india.31",name:"India.31",props:{droppable:!0},children:[{id:"juliet.31",name:"Juliet.31",props:{droppable:!0}}]}]},{id:"kilo.31",name:"Kilo.31",loadOnDemand:!0,props:{droppable:!0}}]}]},{id:"<root>.32",name:"<root>.32",props:{droppable:!0},children:[{id:"alpha.32",name:"Alpha.32",props:{droppable:!0}},{id:"bravo.32",name:"Bravo.32",props:{droppable:!0},children:[{id:"charlie.32",name:"Charlie.32",props:{droppable:!0},children:[{id:"delta.32",name:"Delta.32",props:{droppable:!0},children:[{id:"echo.32",name:"Echo.32",props:{droppable:!0}},{id:"foxtrot.32",name:"Foxtrot.32",props:{droppable:!0}}]},{id:"golf.32",name:"Golf.32",props:{droppable:!0}}]},{id:"hotel.32",name:"Hotel.32",props:{droppable:!0},children:[{id:"india.32",name:"India.32",props:{droppable:!0},children:[{id:"juliet.32",name:"Juliet.32",props:{droppable:!0}}]}]},{id:"kilo.32",name:"Kilo.32",loadOnDemand:!0,props:{droppable:!0}}]}]},{id:"<root>.33",name:"<root>.33",props:{droppable:!0},children:[{id:"alpha.33",name:"Alpha.33",props:{droppable:!0}},{id:"bravo.33",name:"Bravo.33",props:{droppable:!0},children:[{id:"charlie.33",name:"Charlie.33",props:{droppable:!0},children:[{id:"delta.33",name:"Delta.33",props:{droppable:!0},children:[{id:"echo.33",name:"Echo.33",props:{droppable:!0}},{id:"foxtrot.33",name:"Foxtrot.33",props:{droppable:!0}}]},{id:"golf.33",name:"Golf.33",props:{droppable:!0}}]},{id:"hotel.33",name:"Hotel.33",props:{droppable:!0},children:[{id:"india.33",name:"India.33",props:{droppable:!0},children:[{id:"juliet.33",name:"Juliet.33",props:{droppable:!0}}]}]},{id:"kilo.33",name:"Kilo.33",loadOnDemand:!0,props:{droppable:!0}}]}]},{id:"<root>.34",name:"<root>.34",props:{droppable:!0},children:[{id:"alpha.34",name:"Alpha.34",props:{droppable:!0}},{id:"bravo.34",name:"Bravo.34",props:{droppable:!0},children:[{id:"charlie.34",name:"Charlie.34",props:{droppable:!0},children:[{id:"delta.34",name:"Delta.34",props:{droppable:!0},children:[{id:"echo.34",name:"Echo.34",props:{droppable:!0}},{id:"foxtrot.34",name:"Foxtrot.34",props:{droppable:!0}}]},{id:"golf.34",name:"Golf.34",props:{droppable:!0}}]},{id:"hotel.34",name:"Hotel.34",props:{droppable:!0},children:[{id:"india.34",name:"India.34",props:{droppable:!0},children:[{id:"juliet.34",name:"Juliet.34",props:{droppable:!0}}]}]},{id:"kilo.34",name:"Kilo.34",loadOnDemand:!0,props:{droppable:!0}}]}]},{id:"<root>.35",name:"<root>.35",props:{droppable:!0},children:[{id:"alpha.35",name:"Alpha.35",props:{droppable:!0}},{id:"bravo.35",name:"Bravo.35",props:{droppable:!0},children:[{id:"charlie.35",name:"Charlie.35",props:{droppable:!0},children:[{id:"delta.35",name:"Delta.35",props:{droppable:!0},children:[{id:"echo.35",name:"Echo.35",props:{droppable:!0}},{id:"foxtrot.35",name:"Foxtrot.35",props:{droppable:!0}}]},{id:"golf.35",name:"Golf.35",props:{droppable:!0}}]},{id:"hotel.35",name:"Hotel.35",props:{droppable:!0},children:[{id:"india.35",name:"India.35",props:{droppable:!0},children:[{id:"juliet.35",name:"Juliet.35",props:{droppable:!0}}]}]},{id:"kilo.35",name:"Kilo.35",loadOnDemand:!0,props:{droppable:!0}}]}]},{id:"<root>.36",name:"<root>.36",props:{droppable:!0},children:[{id:"alpha.36",name:"Alpha.36",props:{droppable:!0}},{id:"bravo.36",name:"Bravo.36",props:{droppable:!0},children:[{id:"charlie.36",name:"Charlie.36",props:{droppable:!0},children:[{id:"delta.36",name:"Delta.36",props:{droppable:!0},children:[{id:"echo.36",name:"Echo.36",props:{droppable:!0}},{id:"foxtrot.36",name:"Foxtrot.36",props:{droppable:!0}}]},{id:"golf.36",name:"Golf.36",props:{droppable:!0}}]},{id:"hotel.36",name:"Hotel.36",props:{droppable:!0},children:[{id:"india.36",name:"India.36",props:{droppable:!0},children:[{id:"juliet.36",name:"Juliet.36",props:{droppable:!0}}]}]},{id:"kilo.36",name:"Kilo.36",loadOnDemand:!0,props:{droppable:!0}}]}]},{id:"<root>.37",name:"<root>.37",props:{droppable:!0},children:[{id:"alpha.37",name:"Alpha.37",props:{droppable:!0}},{id:"bravo.37",name:"Bravo.37",props:{droppable:!0},children:[{id:"charlie.37",name:"Charlie.37",props:{droppable:!0},children:[{id:"delta.37",name:"Delta.37",props:{droppable:!0},children:[{id:"echo.37",name:"Echo.37",props:{droppable:!0}},{id:"foxtrot.37",name:"Foxtrot.37",props:{droppable:!0}}]},{id:"golf.37",name:"Golf.37",props:{droppable:!0}}]},{id:"hotel.37",name:"Hotel.37",props:{droppable:!0},children:[{id:"india.37",name:"India.37",props:{droppable:!0},children:[{id:"juliet.37",name:"Juliet.37",props:{droppable:!0}}]}]},{id:"kilo.37",name:"Kilo.37",loadOnDemand:!0,props:{droppable:!0}}]}]},{id:"<root>.38",name:"<root>.38",props:{droppable:!0},children:[{id:"alpha.38",name:"Alpha.38",props:{droppable:!0}},{id:"bravo.38",name:"Bravo.38",props:{droppable:!0},children:[{id:"charlie.38",name:"Charlie.38",props:{droppable:!0},children:[{id:"delta.38",name:"Delta.38",props:{droppable:!0},children:[{id:"echo.38",name:"Echo.38",props:{droppable:!0}},{id:"foxtrot.38",name:"Foxtrot.38",props:{droppable:!0}}]},{id:"golf.38",name:"Golf.38",props:{droppable:!0}}]},{id:"hotel.38",name:"Hotel.38",props:{droppable:!0},children:[{id:"india.38",name:"India.38",props:{droppable:!0},children:[{id:"juliet.38",name:"Juliet.38",props:{droppable:!0}}]}]},{id:"kilo.38",name:"Kilo.38",loadOnDemand:!0,props:{droppable:!0}}]}]},{id:"<root>.39",name:"<root>.39",props:{droppable:!0},children:[{id:"alpha.39",name:"Alpha.39",props:{droppable:!0}},{id:"bravo.39",name:"Bravo.39",props:{droppable:!0},children:[{id:"charlie.39",name:"Charlie.39",props:{droppable:!0},children:[{id:"delta.39",name:"Delta.39",props:{droppable:!0},children:[{id:"echo.39",name:"Echo.39",props:{droppable:!0}},{id:"foxtrot.39",name:"Foxtrot.39",props:{droppable:!0}}]},{id:"golf.39",name:"Golf.39",props:{droppable: