visjs-rails 4.16.1.0 → 4.21.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (388) hide show
  1. checksums.yaml +5 -5
  2. data/README.md +19 -19
  3. data/example/.gitignore +26 -0
  4. data/example/.ruby-version +1 -0
  5. data/example/Gemfile +64 -0
  6. data/example/Gemfile.lock +224 -0
  7. data/example/README.md +24 -0
  8. data/example/Rakefile +6 -0
  9. data/example/app/assets/config/manifest.js +3 -0
  10. data/example/app/assets/images/.keep +0 -0
  11. data/example/app/assets/javascripts/application.js +20 -0
  12. data/example/app/assets/javascripts/cable.js +13 -0
  13. data/example/app/assets/javascripts/channels/.keep +0 -0
  14. data/example/app/assets/javascripts/welcome.coffee +6 -0
  15. data/example/app/assets/stylesheets/application.scss +3 -0
  16. data/example/app/assets/stylesheets/welcome.scss +3 -0
  17. data/example/app/channels/application_cable/channel.rb +4 -0
  18. data/example/app/channels/application_cable/connection.rb +4 -0
  19. data/example/app/controllers/application_controller.rb +2 -0
  20. data/example/app/controllers/concerns/.keep +0 -0
  21. data/example/app/controllers/welcome_controller.rb +4 -0
  22. data/example/app/helpers/application_helper.rb +2 -0
  23. data/example/app/helpers/welcome_helper.rb +2 -0
  24. data/example/app/jobs/application_job.rb +2 -0
  25. data/example/app/mailers/application_mailer.rb +4 -0
  26. data/example/app/models/application_record.rb +3 -0
  27. data/example/app/models/concerns/.keep +0 -0
  28. data/example/app/views/layouts/application.html.erb +15 -0
  29. data/example/app/views/layouts/mailer.html.erb +13 -0
  30. data/example/app/views/layouts/mailer.text.erb +1 -0
  31. data/example/app/views/welcome/index.html.erb +48 -0
  32. data/example/bin/bundle +3 -0
  33. data/example/bin/rails +9 -0
  34. data/example/bin/rake +9 -0
  35. data/example/bin/setup +36 -0
  36. data/example/bin/spring +17 -0
  37. data/example/bin/update +31 -0
  38. data/example/bin/yarn +11 -0
  39. data/example/config.ru +5 -0
  40. data/example/config/application.rb +19 -0
  41. data/example/config/boot.rb +4 -0
  42. data/example/config/cable.yml +10 -0
  43. data/example/config/credentials.yml.enc +1 -0
  44. data/example/config/database.yml +85 -0
  45. data/example/config/environment.rb +5 -0
  46. data/example/config/environments/development.rb +61 -0
  47. data/example/config/environments/production.rb +94 -0
  48. data/example/config/environments/test.rb +46 -0
  49. data/example/config/initializers/application_controller_renderer.rb +8 -0
  50. data/example/config/initializers/assets.rb +14 -0
  51. data/example/config/initializers/backtrace_silencers.rb +7 -0
  52. data/example/config/initializers/content_security_policy.rb +25 -0
  53. data/example/config/initializers/cookies_serializer.rb +5 -0
  54. data/example/config/initializers/filter_parameter_logging.rb +4 -0
  55. data/example/config/initializers/inflections.rb +16 -0
  56. data/example/config/initializers/mime_types.rb +4 -0
  57. data/example/config/initializers/wrap_parameters.rb +14 -0
  58. data/example/config/locales/en.yml +33 -0
  59. data/example/config/puma.rb +34 -0
  60. data/example/config/routes.rb +5 -0
  61. data/example/config/spring.rb +6 -0
  62. data/example/config/storage.yml +34 -0
  63. data/example/db/seeds.rb +7 -0
  64. data/example/lib/assets/.keep +0 -0
  65. data/example/lib/tasks/.keep +0 -0
  66. data/example/log/.keep +0 -0
  67. data/example/package.json +5 -0
  68. data/example/public/404.html +67 -0
  69. data/example/public/422.html +67 -0
  70. data/example/public/500.html +66 -0
  71. data/example/public/apple-touch-icon-precomposed.png +0 -0
  72. data/example/public/apple-touch-icon.png +0 -0
  73. data/example/public/favicon.ico +0 -0
  74. data/example/public/robots.txt +1 -0
  75. data/example/test/application_system_test_case.rb +5 -0
  76. data/example/test/controllers/.keep +0 -0
  77. data/example/test/controllers/welcome_controller_test.rb +9 -0
  78. data/example/test/fixtures/.keep +0 -0
  79. data/example/test/fixtures/files/.keep +0 -0
  80. data/example/test/helpers/.keep +0 -0
  81. data/example/test/integration/.keep +0 -0
  82. data/example/test/mailers/.keep +0 -0
  83. data/example/test/models/.keep +0 -0
  84. data/example/test/system/.keep +0 -0
  85. data/example/test/test_helper.rb +10 -0
  86. data/example/tmp/.keep +0 -0
  87. data/example/vendor/.keep +0 -0
  88. data/examples_for_vis/graph2d/01_basic.html +71 -0
  89. data/examples_for_vis/graph2d/02_bars.html +80 -0
  90. data/examples_for_vis/graph2d/03_groups.html +112 -0
  91. data/examples_for_vis/graph2d/04_rightAxis.html +126 -0
  92. data/examples_for_vis/graph2d/05_bothAxis.html +228 -0
  93. data/examples_for_vis/graph2d/06_interpolation.html +160 -0
  94. data/examples_for_vis/graph2d/07_scrollingAndSorting.html +74 -0
  95. data/examples_for_vis/graph2d/08_performance.html +194 -0
  96. data/examples_for_vis/graph2d/09_external_legend.html +452 -0
  97. data/examples_for_vis/graph2d/10_barsSideBySide.html +75 -0
  98. data/examples_for_vis/graph2d/11_barsSideBySideGroups.html +181 -0
  99. data/examples_for_vis/graph2d/12_customRange.html +92 -0
  100. data/examples_for_vis/graph2d/13_localization.html +65 -0
  101. data/examples_for_vis/graph2d/14_toggleGroups.html +145 -0
  102. data/examples_for_vis/graph2d/15_streaming_data.html +122 -0
  103. data/examples_for_vis/graph2d/16_bothAxisTitles.html +201 -0
  104. data/examples_for_vis/graph2d/17_dynamicStyling.html +281 -0
  105. data/examples_for_vis/graph2d/18_scatterplot.html +63 -0
  106. data/examples_for_vis/graph2d/19_labels.html +213 -0
  107. data/examples_for_vis/graph2d/20_shading.html +218 -0
  108. data/examples_for_vis/graph2d/21_barsWithEnd.html +76 -0
  109. data/examples_for_vis/graph2d/default.css +87 -0
  110. data/examples_for_vis/graph3d/01_basics.html +71 -0
  111. data/examples_for_vis/graph3d/02_camera.html +110 -0
  112. data/examples_for_vis/graph3d/03_filter_data.html +64 -0
  113. data/examples_for_vis/graph3d/04_animation.html +70 -0
  114. data/examples_for_vis/graph3d/05_line.html +60 -0
  115. data/examples_for_vis/graph3d/06_moving_dots.html +78 -0
  116. data/examples_for_vis/graph3d/07_dot_cloud_colors.html +72 -0
  117. data/examples_for_vis/graph3d/08_dot_cloud_size.html +69 -0
  118. data/examples_for_vis/graph3d/09_mobile.html +79 -0
  119. data/examples_for_vis/graph3d/10_styling.html +121 -0
  120. data/examples_for_vis/graph3d/11_tooltips.html +132 -0
  121. data/examples_for_vis/graph3d/12_custom_labels.html +116 -0
  122. data/examples_for_vis/graph3d/default.css +87 -0
  123. data/examples_for_vis/graph3d/playground/csv2array.js +120 -0
  124. data/examples_for_vis/graph3d/playground/csv2datatable.html +80 -0
  125. data/examples_for_vis/graph3d/playground/datasource.html +173 -0
  126. data/examples_for_vis/graph3d/playground/datasource.php +155 -0
  127. data/examples_for_vis/graph3d/playground/index.html +196 -0
  128. data/examples_for_vis/graph3d/playground/playground.css +91 -0
  129. data/examples_for_vis/graph3d/playground/playground.js +550 -0
  130. data/examples_for_vis/graph3d/playground/prettify/lang-apollo.js +2 -0
  131. data/examples_for_vis/graph3d/playground/prettify/lang-css.js +2 -0
  132. data/examples_for_vis/graph3d/playground/prettify/lang-hs.js +2 -0
  133. data/examples_for_vis/graph3d/playground/prettify/lang-lisp.js +2 -0
  134. data/examples_for_vis/graph3d/playground/prettify/lang-lua.js +2 -0
  135. data/examples_for_vis/graph3d/playground/prettify/lang-ml.js +2 -0
  136. data/examples_for_vis/graph3d/playground/prettify/lang-proto.js +1 -0
  137. data/examples_for_vis/graph3d/playground/prettify/lang-scala.js +2 -0
  138. data/examples_for_vis/graph3d/playground/prettify/lang-sql.js +2 -0
  139. data/examples_for_vis/graph3d/playground/prettify/lang-vb.js +2 -0
  140. data/examples_for_vis/graph3d/playground/prettify/lang-vhdl.js +3 -0
  141. data/examples_for_vis/graph3d/playground/prettify/lang-wiki.js +2 -0
  142. data/examples_for_vis/graph3d/playground/prettify/lang-yaml.js +2 -0
  143. data/examples_for_vis/graph3d/playground/prettify/prettify.css +1 -0
  144. data/examples_for_vis/graph3d/playground/prettify/prettify.js +33 -0
  145. data/examples_for_vis/network/basicUsage.html +87 -0
  146. data/examples_for_vis/network/data/datasets.html +196 -0
  147. data/examples_for_vis/network/data/dotLanguage/data/cellular_automata.gv.txt +23 -0
  148. data/examples_for_vis/network/data/dotLanguage/data/computer_network.gv.txt +19 -0
  149. data/examples_for_vis/network/data/dotLanguage/data/simple.gv.txt +15 -0
  150. data/examples_for_vis/network/data/dotLanguage/dotEdgeStyles.html +197 -0
  151. data/examples_for_vis/network/data/dotLanguage/dotLanguage.html +22 -0
  152. data/examples_for_vis/network/data/dotLanguage/dotPlayground.html +216 -0
  153. data/examples_for_vis/network/data/dotLanguage/graphvizGallery/fsm.gv.txt +20 -0
  154. data/examples_for_vis/network/data/dotLanguage/graphvizGallery/hello.gv.txt +1 -0
  155. data/examples_for_vis/network/data/dotLanguage/graphvizGallery/process.gv.txt +15 -0
  156. data/examples_for_vis/network/data/dotLanguage/graphvizGallery/screenshots/fsm.png +0 -0
  157. data/examples_for_vis/network/data/dotLanguage/graphvizGallery/screenshots/hello.png +0 -0
  158. data/examples_for_vis/network/data/dotLanguage/graphvizGallery/screenshots/softmaint.png +0 -0
  159. data/examples_for_vis/network/data/dotLanguage/graphvizGallery/screenshots/traffic_lights.png +0 -0
  160. data/examples_for_vis/network/data/dotLanguage/graphvizGallery/siblings.gv.txt +512 -0
  161. data/examples_for_vis/network/data/dotLanguage/graphvizGallery/softmaint.gv.txt +377 -0
  162. data/examples_for_vis/network/data/dotLanguage/graphvizGallery/traffic_lights.gv.txt +29 -0
  163. data/examples_for_vis/network/data/dotLanguage/graphvizGallery/transparency.gv.txt +105 -0
  164. data/examples_for_vis/network/data/dotLanguage/graphvizGallery/twopi2.gv.txt +2212 -0
  165. data/examples_for_vis/network/data/dotLanguage/graphvizGallery/unix.gv.txt +55 -0
  166. data/examples_for_vis/network/data/dotLanguage/graphvizGallery/world.gv.txt +67 -0
  167. data/examples_for_vis/network/data/dynamicData.html +266 -0
  168. data/examples_for_vis/network/data/importingFromGephi.html +174 -0
  169. data/examples_for_vis/network/data/scalingCustom.html +86 -0
  170. data/examples_for_vis/network/data/scalingNodesEdges.html +79 -0
  171. data/examples_for_vis/network/data/scalingNodesEdgesLabels.html +85 -0
  172. data/examples_for_vis/network/datasources/WorldCup2014.js +9970 -0
  173. data/examples_for_vis/network/datasources/WorldCup2014.json +1 -0
  174. data/examples_for_vis/network/datasources/largeHierarchicalDataset.js +2 -0
  175. data/examples_for_vis/network/edgeStyles/arrowTypes.html +103 -0
  176. data/examples_for_vis/network/edgeStyles/arrows.html +61 -0
  177. data/examples_for_vis/network/edgeStyles/colors.html +71 -0
  178. data/examples_for_vis/network/edgeStyles/dashes.html +57 -0
  179. data/examples_for_vis/network/edgeStyles/smooth.html +78 -0
  180. data/examples_for_vis/network/edgeStyles/smoothWorldCup.html +97 -0
  181. data/examples_for_vis/network/events/interactionEvents.html +132 -0
  182. data/examples_for_vis/network/events/physicsEvents.html +73 -0
  183. data/examples_for_vis/network/events/renderEvents.html +83 -0
  184. data/examples_for_vis/network/exampleApplications/disassemblerExample.html +24 -0
  185. data/examples_for_vis/network/exampleApplications/disassemblerExample.js +53 -0
  186. data/examples_for_vis/network/exampleApplications/lesMiserables.html +396 -0
  187. data/examples_for_vis/network/exampleApplications/loadingBar.html +504 -0
  188. data/examples_for_vis/network/exampleApplications/neighbourhoodHighlight.html +162 -0
  189. data/examples_for_vis/network/exampleApplications/nodeLegend.html +163 -0
  190. data/examples_for_vis/network/exampleApplications/worldCupPerformance.html +98 -0
  191. data/examples_for_vis/network/exampleUtil.js +133 -0
  192. data/examples_for_vis/network/imageSelected/broken-image.png +0 -0
  193. data/examples_for_vis/network/imageSelected/imageSelected.html +82 -0
  194. data/examples_for_vis/network/imageSelected/selected.svg +53 -0
  195. data/examples_for_vis/network/imageSelected/unselected.svg +6 -0
  196. data/examples_for_vis/network/img/indonesia/1.png +0 -0
  197. data/examples_for_vis/network/img/indonesia/10.png +0 -0
  198. data/examples_for_vis/network/img/indonesia/11.png +0 -0
  199. data/examples_for_vis/network/img/indonesia/12.png +0 -0
  200. data/examples_for_vis/network/img/indonesia/13.png +0 -0
  201. data/examples_for_vis/network/img/indonesia/14.png +0 -0
  202. data/examples_for_vis/network/img/indonesia/2.png +0 -0
  203. data/examples_for_vis/network/img/indonesia/3.png +0 -0
  204. data/examples_for_vis/network/img/indonesia/4.png +0 -0
  205. data/examples_for_vis/network/img/indonesia/5.png +0 -0
  206. data/examples_for_vis/network/img/indonesia/6.png +0 -0
  207. data/examples_for_vis/network/img/indonesia/7.png +0 -0
  208. data/examples_for_vis/network/img/indonesia/8.png +0 -0
  209. data/examples_for_vis/network/img/indonesia/9.png +0 -0
  210. data/examples_for_vis/network/img/refresh-cl/Hardware-Fax-icon.png +0 -0
  211. data/examples_for_vis/network/img/refresh-cl/Hardware-Laptop-1-icon.png +0 -0
  212. data/examples_for_vis/network/img/refresh-cl/Hardware-Mobile-Phone-icon.png +0 -0
  213. data/examples_for_vis/network/img/refresh-cl/Hardware-My-Computer-3-icon.png +0 -0
  214. data/examples_for_vis/network/img/refresh-cl/Hardware-My-PDA-02-icon.png +0 -0
  215. data/examples_for_vis/network/img/refresh-cl/Hardware-My-PDA-04-icon.png +0 -0
  216. data/examples_for_vis/network/img/refresh-cl/Hardware-My-PDA-05-icon.png +0 -0
  217. data/examples_for_vis/network/img/refresh-cl/Hardware-My-Phone-Picture-icon.png +0 -0
  218. data/examples_for_vis/network/img/refresh-cl/Hardware-Printer-Blue-icon.png +0 -0
  219. data/examples_for_vis/network/img/refresh-cl/Misc-Scanner-default-icon.png +0 -0
  220. data/examples_for_vis/network/img/refresh-cl/Network-Drive-icon.png +0 -0
  221. data/examples_for_vis/network/img/refresh-cl/Network-Internet-Connection-icon.png +0 -0
  222. data/examples_for_vis/network/img/refresh-cl/Network-Pipe-icon.png +0 -0
  223. data/examples_for_vis/network/img/refresh-cl/System-Firewall-2-icon.png +0 -0
  224. data/examples_for_vis/network/img/refresh-cl/System-Globe-icon.png +0 -0
  225. data/examples_for_vis/network/img/refresh-cl/license.txt +14 -0
  226. data/examples_for_vis/network/img/soft-scraps-icons/Document-icon24.png +0 -0
  227. data/examples_for_vis/network/img/soft-scraps-icons/Document-icon32.png +0 -0
  228. data/examples_for_vis/network/img/soft-scraps-icons/Document-icon48.png +0 -0
  229. data/examples_for_vis/network/img/soft-scraps-icons/Email-icon24.png +0 -0
  230. data/examples_for_vis/network/img/soft-scraps-icons/Email-icon32.png +0 -0
  231. data/examples_for_vis/network/img/soft-scraps-icons/Email-icon48.png +0 -0
  232. data/examples_for_vis/network/img/soft-scraps-icons/Folder-icon24.png +0 -0
  233. data/examples_for_vis/network/img/soft-scraps-icons/Folder-icon32.png +0 -0
  234. data/examples_for_vis/network/img/soft-scraps-icons/Folder-icon48.png +0 -0
  235. data/examples_for_vis/network/img/soft-scraps-icons/Folder-icon64.png +0 -0
  236. data/examples_for_vis/network/img/soft-scraps-icons/Smiley-Angry-icon.png +0 -0
  237. data/examples_for_vis/network/img/soft-scraps-icons/Smiley-Grin-icon.png +0 -0
  238. data/examples_for_vis/network/img/soft-scraps-icons/User-Administrator-Blue-icon.png +0 -0
  239. data/examples_for_vis/network/img/soft-scraps-icons/User-Administrator-Green-icon.png +0 -0
  240. data/examples_for_vis/network/img/soft-scraps-icons/User-Coat-Blue-icon.png +0 -0
  241. data/examples_for_vis/network/img/soft-scraps-icons/User-Coat-Green-icon.png +0 -0
  242. data/examples_for_vis/network/img/soft-scraps-icons/User-Coat-Red-icon.png +0 -0
  243. data/examples_for_vis/network/img/soft-scraps-icons/User-Executive-Green-icon.png +0 -0
  244. data/examples_for_vis/network/img/soft-scraps-icons/User-Preppy-Blue-icon.png +0 -0
  245. data/examples_for_vis/network/img/soft-scraps-icons/User-Preppy-Red-icon.png +0 -0
  246. data/examples_for_vis/network/img/soft-scraps-icons/license.txt +12 -0
  247. data/examples_for_vis/network/labels/labelAlignment.html +70 -0
  248. data/examples_for_vis/network/labels/labelBackground.html +57 -0
  249. data/examples_for_vis/network/labels/labelColorAndSize.html +61 -0
  250. data/examples_for_vis/network/labels/labelMargins.html +63 -0
  251. data/examples_for_vis/network/labels/labelMultifont.html +115 -0
  252. data/examples_for_vis/network/labels/labelStroke.html +61 -0
  253. data/examples_for_vis/network/labels/multilineText.html +52 -0
  254. data/examples_for_vis/network/layout/demo.jsonp +1894 -0
  255. data/examples_for_vis/network/layout/demo_big.jsonp +3762 -0
  256. data/examples_for_vis/network/layout/hierarchicalLayout.html +114 -0
  257. data/examples_for_vis/network/layout/hierarchicalLayoutBigUserDefined.html +46 -0
  258. data/examples_for_vis/network/layout/hierarchicalLayoutMethods.html +108 -0
  259. data/examples_for_vis/network/layout/hierarchicalLayoutUserdefined.html +152 -0
  260. data/examples_for_vis/network/layout/hierarchicalLayoutWithoutPhysics.html +111 -0
  261. data/examples_for_vis/network/layout/randomSeed.html +60 -0
  262. data/examples_for_vis/network/nodeStyles/HTMLInNodes.html +83 -0
  263. data/examples_for_vis/network/nodeStyles/circularImages.html +219 -0
  264. data/examples_for_vis/network/nodeStyles/colors.html +140 -0
  265. data/examples_for_vis/network/nodeStyles/customGroups.html +132 -0
  266. data/examples_for_vis/network/nodeStyles/groups.html +119 -0
  267. data/examples_for_vis/network/nodeStyles/icons.html +196 -0
  268. data/examples_for_vis/network/nodeStyles/images.html +82 -0
  269. data/examples_for_vis/network/nodeStyles/imagesWithBorders.html +105 -0
  270. data/examples_for_vis/network/nodeStyles/shadows.html +119 -0
  271. data/examples_for_vis/network/nodeStyles/shapes.html +73 -0
  272. data/examples_for_vis/network/nodeStyles/shapesWithDashedBorders.html +61 -0
  273. data/examples_for_vis/network/nodeStyles/widthHeight.html +121 -0
  274. data/examples_for_vis/network/other/animationShowcase.html +279 -0
  275. data/examples_for_vis/network/other/changingClusteredEdgesNodes.html +107 -0
  276. data/examples_for_vis/network/other/chosen.html +466 -0
  277. data/examples_for_vis/network/other/clustering.html +141 -0
  278. data/examples_for_vis/network/other/clusteringByZoom.html +160 -0
  279. data/examples_for_vis/network/other/clustersOfclusters.html +88 -0
  280. data/examples_for_vis/network/other/configuration.html +83 -0
  281. data/examples_for_vis/network/other/cursorChange.html +140 -0
  282. data/examples_for_vis/network/other/manipulation.html +193 -0
  283. data/examples_for_vis/network/other/manipulationEditEdgeNoDrag.html +255 -0
  284. data/examples_for_vis/network/other/navigation.html +135 -0
  285. data/examples_for_vis/network/other/onLoadAnimation.html +85 -0
  286. data/examples_for_vis/network/other/performance.html +91 -0
  287. data/examples_for_vis/network/other/saveAndLoad.html +202 -0
  288. data/examples_for_vis/network/physics/physicsConfiguration.html +85 -0
  289. data/examples_for_vis/timeline/basicUsage.html +45 -0
  290. data/examples_for_vis/timeline/dataHandling/dataSerialization.html +123 -0
  291. data/examples_for_vis/timeline/dataHandling/loadExternalData.html +61 -0
  292. data/examples_for_vis/timeline/editing/customSnappingOfItems.html +76 -0
  293. data/examples_for_vis/timeline/editing/editingItems.html +109 -0
  294. data/examples_for_vis/timeline/editing/editingItemsCallbacks.html +172 -0
  295. data/examples_for_vis/timeline/editing/individualEditableItems.html +131 -0
  296. data/examples_for_vis/timeline/editing/itemsAlwaysDraggable.html +44 -0
  297. data/examples_for_vis/timeline/editing/overrideEditingItems.html +166 -0
  298. data/examples_for_vis/timeline/editing/tooltipOnItemChange.html +133 -0
  299. data/examples_for_vis/timeline/editing/updateDataOnEvent.html +87 -0
  300. data/examples_for_vis/timeline/groups/groups.html +79 -0
  301. data/examples_for_vis/timeline/groups/groupsEditable.html +2001 -0
  302. data/examples_for_vis/timeline/groups/groupsOrdering.html +117 -0
  303. data/examples_for_vis/timeline/groups/nestedGroups.html +113 -0
  304. data/examples_for_vis/timeline/groups/subgroups.html +326 -0
  305. data/examples_for_vis/timeline/groups/verticalItemsHide.html +196 -0
  306. data/examples_for_vis/timeline/interaction/animateWindow.html +143 -0
  307. data/examples_for_vis/timeline/interaction/clickToUse.html +107 -0
  308. data/examples_for_vis/timeline/interaction/eventListeners.html +166 -0
  309. data/examples_for_vis/timeline/interaction/limitMoveAndZoom.html +70 -0
  310. data/examples_for_vis/timeline/interaction/navigationMenu.html +121 -0
  311. data/examples_for_vis/timeline/interaction/rollingMode.html +50 -0
  312. data/examples_for_vis/timeline/interaction/setSelection.html +223 -0
  313. data/examples_for_vis/timeline/items/backgroundAreas.html +92 -0
  314. data/examples_for_vis/timeline/items/backgroundAreasWithGroups.html +123 -0
  315. data/examples_for_vis/timeline/items/expectedVsActualTimesItems.html +136 -0
  316. data/examples_for_vis/timeline/items/htmlContents.html +109 -0
  317. data/examples_for_vis/timeline/items/itemOrdering.html +88 -0
  318. data/examples_for_vis/timeline/items/pointItems.html +124 -0
  319. data/examples_for_vis/timeline/items/rangeOverflowItem.html +88 -0
  320. data/examples_for_vis/timeline/items/tooltip.html +120 -0
  321. data/examples_for_vis/timeline/items/visibleFrameTemplateContent.html +67 -0
  322. data/examples_for_vis/timeline/other/customTimeBars.html +99 -0
  323. data/examples_for_vis/timeline/other/customTimeBarsTooltip.html +105 -0
  324. data/examples_for_vis/timeline/other/dataAttributes.html +79 -0
  325. data/examples_for_vis/timeline/other/dataAttributesAll.html +78 -0
  326. data/examples_for_vis/timeline/other/drag&drop.html +201 -0
  327. data/examples_for_vis/timeline/other/functionLabelFormats.html +147 -0
  328. data/examples_for_vis/timeline/other/groupsPerformance.html +124 -0
  329. data/examples_for_vis/timeline/other/hidingPeriods.html +92 -0
  330. data/examples_for_vis/timeline/other/horizontalScroll.html +77 -0
  331. data/examples_for_vis/timeline/other/localization.html +81 -0
  332. data/examples_for_vis/timeline/other/performance.html +79 -0
  333. data/examples_for_vis/timeline/other/requirejs/requirejs_example.html +17 -0
  334. data/examples_for_vis/timeline/other/requirejs/scripts/main.js +19 -0
  335. data/examples_for_vis/timeline/other/requirejs/scripts/require.js +35 -0
  336. data/examples_for_vis/timeline/other/rtl.html +82 -0
  337. data/examples_for_vis/timeline/other/stressPerformance.html +66 -0
  338. data/examples_for_vis/timeline/other/timezone.html +98 -0
  339. data/examples_for_vis/timeline/other/usingReact.html +68 -0
  340. data/examples_for_vis/timeline/other/verticalScroll.html +91 -0
  341. data/examples_for_vis/timeline/resources/data/basic.json +34 -0
  342. data/examples_for_vis/timeline/resources/data/wk2014.json +152 -0
  343. data/examples_for_vis/timeline/resources/img/Hardware-Mobile-Phone-icon.png +0 -0
  344. data/examples_for_vis/timeline/resources/img/attachment-icon.png +0 -0
  345. data/examples_for_vis/timeline/resources/img/blog-post-edit-icon.png +0 -0
  346. data/examples_for_vis/timeline/resources/img/comments-icon.png +0 -0
  347. data/examples_for_vis/timeline/resources/img/community-users-icon.png +0 -0
  348. data/examples_for_vis/timeline/resources/img/license.txt +17 -0
  349. data/examples_for_vis/timeline/resources/img/license_aesthetica-2.txt +36 -0
  350. data/examples_for_vis/timeline/resources/img/license_refresh-cl.txt +26 -0
  351. data/examples_for_vis/timeline/resources/img/mail-icon.png +0 -0
  352. data/examples_for_vis/timeline/resources/img/notes-edit-icon.png +0 -0
  353. data/examples_for_vis/timeline/resources/img/product-icon.png +0 -0
  354. data/examples_for_vis/timeline/resources/img/truck-icon.png +0 -0
  355. data/examples_for_vis/timeline/styling/axisOrientation.html +113 -0
  356. data/examples_for_vis/timeline/styling/customCss.html +128 -0
  357. data/examples_for_vis/timeline/styling/gridStyling.html +80 -0
  358. data/examples_for_vis/timeline/styling/itemClassNames.html +125 -0
  359. data/examples_for_vis/timeline/styling/itemTemplates.html +264 -0
  360. data/examples_for_vis/timeline/styling/weekStyling.html +129 -0
  361. data/lib/visjs/rails/version.rb +1 -1
  362. data/vendor/assets/images/network/acceptDeleteIcon.png +0 -0
  363. data/vendor/assets/images/network/addNodeIcon.png +0 -0
  364. data/vendor/assets/images/network/backIcon.png +0 -0
  365. data/vendor/assets/images/network/connectIcon.png +0 -0
  366. data/vendor/assets/images/network/cross.png +0 -0
  367. data/vendor/assets/images/network/cross2.png +0 -0
  368. data/vendor/assets/images/network/deleteIcon.png +0 -0
  369. data/vendor/assets/images/network/downArrow.png +0 -0
  370. data/vendor/assets/images/network/editIcon.png +0 -0
  371. data/vendor/assets/images/network/leftArrow.png +0 -0
  372. data/vendor/assets/images/network/minus.png +0 -0
  373. data/vendor/assets/images/network/plus.png +0 -0
  374. data/vendor/assets/images/network/rightArrow.png +0 -0
  375. data/vendor/assets/images/network/upArrow.png +0 -0
  376. data/vendor/assets/images/network/zoomExtends.png +0 -0
  377. data/vendor/assets/javascripts/vis-graph3d.min.js +9 -12
  378. data/vendor/assets/javascripts/vis-network.min.js +9 -20
  379. data/vendor/assets/javascripts/vis-timeline-graph2d.min.js +9 -18
  380. data/vendor/assets/javascripts/vis.js +53293 -39579
  381. data/vendor/assets/javascripts/vis.min.js +26 -23
  382. data/vendor/assets/stylesheets/vis-network.min.css +1 -0
  383. data/vendor/assets/stylesheets/vis-timeline-graph2d.min.css +1 -0
  384. data/vendor/assets/stylesheets/{vis.scss → vis.css} +764 -640
  385. data/vendor/assets/stylesheets/vis.min.css +1 -0
  386. metadata +365 -6
  387. data/vendor/assets/images/timeline/delete.png +0 -0
  388. data/vendor/assets/stylesheets/vis.min.scss +0 -1
@@ -0,0 +1,3762 @@
1
+ p( {
2
+ "nodes": [
3
+ {
4
+ "level": 0,
5
+ "id": "0",
6
+ "label": "0"
7
+ },
8
+ {
9
+ "level": 1,
10
+ "id": "1",
11
+ "label": "1"
12
+ },
13
+ {
14
+ "level": 2,
15
+ "id": "2",
16
+ "label": "2"
17
+ },
18
+ {
19
+ "level": 3,
20
+ "id": "3",
21
+ "label": "3"
22
+ },
23
+ {
24
+ "level": 4,
25
+ "id": "4",
26
+ "label": "4"
27
+ },
28
+ {
29
+ "level": 5,
30
+ "id": "5",
31
+ "label": "5"
32
+ },
33
+ {
34
+ "level": 6,
35
+ "id": "6",
36
+ "label": "6"
37
+ },
38
+ {
39
+ "level": 7,
40
+ "id": "7",
41
+ "label": "7"
42
+ },
43
+ {
44
+ "level": 8,
45
+ "id": "8",
46
+ "label": "8"
47
+ },
48
+ {
49
+ "level": 0,
50
+ "id": "9",
51
+ "label": "9"
52
+ },
53
+ {
54
+ "level": 9,
55
+ "id": "10",
56
+ "label": "10"
57
+ },
58
+ {
59
+ "level": 10,
60
+ "id": "11",
61
+ "label": "11"
62
+ },
63
+ {
64
+ "level": 11,
65
+ "id": "12",
66
+ "label": "12"
67
+ },
68
+ {
69
+ "level": 12,
70
+ "id": "13",
71
+ "label": "13"
72
+ },
73
+ {
74
+ "level": 13,
75
+ "id": "14",
76
+ "label": "14"
77
+ },
78
+ {
79
+ "level": 13,
80
+ "id": "15",
81
+ "label": "15"
82
+ },
83
+ {
84
+ "level": 14,
85
+ "id": "16",
86
+ "label": "16"
87
+ },
88
+ {
89
+ "level": 15,
90
+ "id": "17",
91
+ "label": "17"
92
+ },
93
+ {
94
+ "level": 16,
95
+ "id": "18",
96
+ "label": "18"
97
+ },
98
+ {
99
+ "level": 17,
100
+ "id": "19",
101
+ "label": "19"
102
+ },
103
+ {
104
+ "level": 18,
105
+ "id": "20",
106
+ "label": "20"
107
+ },
108
+ {
109
+ "level": 19,
110
+ "id": "21",
111
+ "label": "21"
112
+ },
113
+ {
114
+ "level": 20,
115
+ "id": "22",
116
+ "label": "22"
117
+ },
118
+ {
119
+ "level": 21,
120
+ "id": "23",
121
+ "label": "23"
122
+ },
123
+ {
124
+ "level": 22,
125
+ "id": "24",
126
+ "label": "24"
127
+ },
128
+ {
129
+ "level": 23,
130
+ "id": "25",
131
+ "label": "25"
132
+ },
133
+ {
134
+ "level": 24,
135
+ "id": "26",
136
+ "label": "26"
137
+ },
138
+ {
139
+ "level": 25,
140
+ "id": "27",
141
+ "label": "27"
142
+ },
143
+ {
144
+ "level": 26,
145
+ "id": "28",
146
+ "label": "28"
147
+ },
148
+ {
149
+ "level": 27,
150
+ "id": "29",
151
+ "label": "29"
152
+ },
153
+ {
154
+ "level": 28,
155
+ "id": "30",
156
+ "label": "30"
157
+ },
158
+ {
159
+ "level": 29,
160
+ "id": "31",
161
+ "label": "31"
162
+ },
163
+ {
164
+ "level": 30,
165
+ "id": "32",
166
+ "label": "32"
167
+ },
168
+ {
169
+ "level": 31,
170
+ "id": "33",
171
+ "label": "33"
172
+ },
173
+ {
174
+ "level": 32,
175
+ "id": "34",
176
+ "label": "34"
177
+ },
178
+ {
179
+ "level": 32,
180
+ "id": "35",
181
+ "label": "35"
182
+ },
183
+ {
184
+ "level": 33,
185
+ "id": "36",
186
+ "label": "36"
187
+ },
188
+ {
189
+ "level": 32,
190
+ "id": "37",
191
+ "label": "37"
192
+ },
193
+ {
194
+ "level": 34,
195
+ "id": "38",
196
+ "label": "38"
197
+ },
198
+ {
199
+ "level": 35,
200
+ "id": "39",
201
+ "label": "39"
202
+ },
203
+ {
204
+ "level": 36,
205
+ "id": "40",
206
+ "label": "40"
207
+ },
208
+ {
209
+ "level": 37,
210
+ "id": "41",
211
+ "label": "41"
212
+ },
213
+ {
214
+ "level": 38,
215
+ "id": "42",
216
+ "label": "42"
217
+ },
218
+ {
219
+ "level": 33,
220
+ "id": "43",
221
+ "label": "43"
222
+ },
223
+ {
224
+ "level": 39,
225
+ "id": "44",
226
+ "label": "44"
227
+ },
228
+ {
229
+ "level": 40,
230
+ "id": "45",
231
+ "label": "45"
232
+ },
233
+ {
234
+ "level": 41,
235
+ "id": "46",
236
+ "label": "46"
237
+ },
238
+ {
239
+ "level": 42,
240
+ "id": "47",
241
+ "label": "47"
242
+ },
243
+ {
244
+ "level": 43,
245
+ "id": "48",
246
+ "label": "48"
247
+ },
248
+ {
249
+ "level": 44,
250
+ "id": "49",
251
+ "label": "49"
252
+ },
253
+ {
254
+ "level": 45,
255
+ "id": "50",
256
+ "label": "50"
257
+ },
258
+ {
259
+ "level": 46,
260
+ "id": "51",
261
+ "label": "51"
262
+ },
263
+ {
264
+ "level": 47,
265
+ "id": "52",
266
+ "label": "52"
267
+ },
268
+ {
269
+ "level": 48,
270
+ "id": "53",
271
+ "label": "53"
272
+ },
273
+ {
274
+ "level": 49,
275
+ "id": "54",
276
+ "label": "54"
277
+ },
278
+ {
279
+ "level": 50,
280
+ "id": "55",
281
+ "label": "55"
282
+ },
283
+ {
284
+ "level": 51,
285
+ "id": "56",
286
+ "label": "56"
287
+ },
288
+ {
289
+ "level": 52,
290
+ "id": "57",
291
+ "label": "57"
292
+ },
293
+ {
294
+ "level": 53,
295
+ "id": "58",
296
+ "label": "58"
297
+ },
298
+ {
299
+ "level": 54,
300
+ "id": "59",
301
+ "label": "59"
302
+ },
303
+ {
304
+ "level": 55,
305
+ "id": "60",
306
+ "label": "60"
307
+ },
308
+ {
309
+ "level": 56,
310
+ "id": "61",
311
+ "label": "61"
312
+ },
313
+ {
314
+ "level": 57,
315
+ "id": "62",
316
+ "label": "62"
317
+ },
318
+ {
319
+ "level": 58,
320
+ "id": "63",
321
+ "label": "63"
322
+ },
323
+ {
324
+ "level": 59,
325
+ "id": "64",
326
+ "label": "64"
327
+ },
328
+ {
329
+ "level": 55,
330
+ "id": "65",
331
+ "label": "65"
332
+ },
333
+ {
334
+ "level": 60,
335
+ "id": "66",
336
+ "label": "66"
337
+ },
338
+ {
339
+ "level": 61,
340
+ "id": "67",
341
+ "label": "67"
342
+ },
343
+ {
344
+ "level": 62,
345
+ "id": "68",
346
+ "label": "68"
347
+ },
348
+ {
349
+ "level": 63,
350
+ "id": "69",
351
+ "label": "69"
352
+ },
353
+ {
354
+ "level": 64,
355
+ "id": "70",
356
+ "label": "70"
357
+ },
358
+ {
359
+ "level": 65,
360
+ "id": "71",
361
+ "label": "71"
362
+ },
363
+ {
364
+ "level": 66,
365
+ "id": "72",
366
+ "label": "72"
367
+ },
368
+ {
369
+ "level": 67,
370
+ "id": "73",
371
+ "label": "73"
372
+ },
373
+ {
374
+ "level": 68,
375
+ "id": "74",
376
+ "label": "74"
377
+ },
378
+ {
379
+ "level": 69,
380
+ "id": "75",
381
+ "label": "75"
382
+ },
383
+ {
384
+ "level": 70,
385
+ "id": "76",
386
+ "label": "76"
387
+ },
388
+ {
389
+ "level": 71,
390
+ "id": "77",
391
+ "label": "77"
392
+ },
393
+ {
394
+ "level": 72,
395
+ "id": "78",
396
+ "label": "78"
397
+ },
398
+ {
399
+ "level": 73,
400
+ "id": "79",
401
+ "label": "79"
402
+ },
403
+ {
404
+ "level": 74,
405
+ "id": "80",
406
+ "label": "80"
407
+ },
408
+ {
409
+ "level": 75,
410
+ "id": "81",
411
+ "label": "81"
412
+ },
413
+ {
414
+ "level": 76,
415
+ "id": "82",
416
+ "label": "82"
417
+ },
418
+ {
419
+ "level": 77,
420
+ "id": "83",
421
+ "label": "83"
422
+ },
423
+ {
424
+ "level": 78,
425
+ "id": "84",
426
+ "label": "84"
427
+ },
428
+ {
429
+ "level": 79,
430
+ "id": "85",
431
+ "label": "85"
432
+ },
433
+ {
434
+ "level": 80,
435
+ "id": "86",
436
+ "label": "86"
437
+ },
438
+ {
439
+ "level": 81,
440
+ "id": "87",
441
+ "label": "87"
442
+ },
443
+ {
444
+ "level": 82,
445
+ "id": "88",
446
+ "label": "88"
447
+ },
448
+ {
449
+ "level": 83,
450
+ "id": "89",
451
+ "label": "89"
452
+ },
453
+ {
454
+ "level": 84,
455
+ "id": "90",
456
+ "label": "90"
457
+ },
458
+ {
459
+ "level": 80,
460
+ "id": "91",
461
+ "label": "91"
462
+ },
463
+ {
464
+ "level": 85,
465
+ "id": "92",
466
+ "label": "92"
467
+ },
468
+ {
469
+ "level": 86,
470
+ "id": "93",
471
+ "label": "93"
472
+ },
473
+ {
474
+ "level": 87,
475
+ "id": "94",
476
+ "label": "94"
477
+ },
478
+ {
479
+ "level": 88,
480
+ "id": "95",
481
+ "label": "95"
482
+ },
483
+ {
484
+ "level": 89,
485
+ "id": "96",
486
+ "label": "96"
487
+ },
488
+ {
489
+ "level": 90,
490
+ "id": "97",
491
+ "label": "97"
492
+ },
493
+ {
494
+ "level": 91,
495
+ "id": "98",
496
+ "label": "98"
497
+ },
498
+ {
499
+ "level": 92,
500
+ "id": "99",
501
+ "label": "99"
502
+ },
503
+ {
504
+ "level": 93,
505
+ "id": "100",
506
+ "label": "100"
507
+ },
508
+ {
509
+ "level": 94,
510
+ "id": "101",
511
+ "label": "101"
512
+ },
513
+ {
514
+ "level": 95,
515
+ "id": "102",
516
+ "label": "102"
517
+ },
518
+ {
519
+ "level": 96,
520
+ "id": "103",
521
+ "label": "103"
522
+ },
523
+ {
524
+ "level": 97,
525
+ "id": "104",
526
+ "label": "104"
527
+ },
528
+ {
529
+ "level": 98,
530
+ "id": "105",
531
+ "label": "105"
532
+ },
533
+ {
534
+ "level": 99,
535
+ "id": "106",
536
+ "label": "106"
537
+ },
538
+ {
539
+ "level": 100,
540
+ "id": "107",
541
+ "label": "107"
542
+ },
543
+ {
544
+ "level": 101,
545
+ "id": "108",
546
+ "label": "108"
547
+ },
548
+ {
549
+ "level": 102,
550
+ "id": "109",
551
+ "label": "109"
552
+ },
553
+ {
554
+ "level": 103,
555
+ "id": "110",
556
+ "label": "110"
557
+ },
558
+ {
559
+ "level": 104,
560
+ "id": "111",
561
+ "label": "111"
562
+ },
563
+ {
564
+ "level": 105,
565
+ "id": "112",
566
+ "label": "112"
567
+ },
568
+ {
569
+ "level": 106,
570
+ "id": "113",
571
+ "label": "113"
572
+ },
573
+ {
574
+ "level": 107,
575
+ "id": "114",
576
+ "label": "114"
577
+ },
578
+ {
579
+ "level": 108,
580
+ "id": "115",
581
+ "label": "115"
582
+ },
583
+ {
584
+ "level": 109,
585
+ "id": "116",
586
+ "label": "116"
587
+ },
588
+ {
589
+ "level": 110,
590
+ "id": "117",
591
+ "label": "117"
592
+ },
593
+ {
594
+ "level": 111,
595
+ "id": "118",
596
+ "label": "118"
597
+ },
598
+ {
599
+ "level": 112,
600
+ "id": "119",
601
+ "label": "119"
602
+ },
603
+ {
604
+ "level": 113,
605
+ "id": "120",
606
+ "label": "120"
607
+ },
608
+ {
609
+ "level": 114,
610
+ "id": "121",
611
+ "label": "121"
612
+ },
613
+ {
614
+ "level": 115,
615
+ "id": "122",
616
+ "label": "122"
617
+ },
618
+ {
619
+ "level": 116,
620
+ "id": "123",
621
+ "label": "123"
622
+ },
623
+ {
624
+ "level": 117,
625
+ "id": "124",
626
+ "label": "124"
627
+ },
628
+ {
629
+ "level": 118,
630
+ "id": "125",
631
+ "label": "125"
632
+ },
633
+ {
634
+ "level": 119,
635
+ "id": "126",
636
+ "label": "126"
637
+ },
638
+ {
639
+ "level": 120,
640
+ "id": "127",
641
+ "label": "127"
642
+ },
643
+ {
644
+ "level": 121,
645
+ "id": "128",
646
+ "label": "128"
647
+ },
648
+ {
649
+ "level": 122,
650
+ "id": "129",
651
+ "label": "129"
652
+ },
653
+ {
654
+ "level": 123,
655
+ "id": "130",
656
+ "label": "130"
657
+ },
658
+ {
659
+ "level": 124,
660
+ "id": "131",
661
+ "label": "131"
662
+ },
663
+ {
664
+ "level": 125,
665
+ "id": "132",
666
+ "label": "132"
667
+ },
668
+ {
669
+ "level": 126,
670
+ "id": "133",
671
+ "label": "133"
672
+ },
673
+ {
674
+ "level": 126,
675
+ "id": "134",
676
+ "label": "134"
677
+ },
678
+ {
679
+ "level": 127,
680
+ "id": "135",
681
+ "label": "135"
682
+ },
683
+ {
684
+ "level": 128,
685
+ "id": "136",
686
+ "label": "136"
687
+ },
688
+ {
689
+ "level": 129,
690
+ "id": "137",
691
+ "label": "137"
692
+ },
693
+ {
694
+ "level": 130,
695
+ "id": "138",
696
+ "label": "138"
697
+ },
698
+ {
699
+ "level": 131,
700
+ "id": "139",
701
+ "label": "139"
702
+ },
703
+ {
704
+ "level": 131,
705
+ "id": "140",
706
+ "label": "140"
707
+ },
708
+ {
709
+ "level": 132,
710
+ "id": "141",
711
+ "label": "141"
712
+ },
713
+ {
714
+ "level": 133,
715
+ "id": "142",
716
+ "label": "142"
717
+ },
718
+ {
719
+ "level": 134,
720
+ "id": "143",
721
+ "label": "143"
722
+ },
723
+ {
724
+ "level": 135,
725
+ "id": "144",
726
+ "label": "144"
727
+ },
728
+ {
729
+ "level": 136,
730
+ "id": "145",
731
+ "label": "145"
732
+ },
733
+ {
734
+ "level": 137,
735
+ "id": "146",
736
+ "label": "146"
737
+ },
738
+ {
739
+ "level": 138,
740
+ "id": "147",
741
+ "label": "147"
742
+ },
743
+ {
744
+ "level": 139,
745
+ "id": "148",
746
+ "label": "148"
747
+ },
748
+ {
749
+ "level": 140,
750
+ "id": "149",
751
+ "label": "149"
752
+ },
753
+ {
754
+ "level": 141,
755
+ "id": "150",
756
+ "label": "150"
757
+ },
758
+ {
759
+ "level": 142,
760
+ "id": "151",
761
+ "label": "151"
762
+ },
763
+ {
764
+ "level": 143,
765
+ "id": "152",
766
+ "label": "152"
767
+ },
768
+ {
769
+ "level": 144,
770
+ "id": "153",
771
+ "label": "153"
772
+ },
773
+ {
774
+ "level": 145,
775
+ "id": "154",
776
+ "label": "154"
777
+ },
778
+ {
779
+ "level": 146,
780
+ "id": "155",
781
+ "label": "155"
782
+ },
783
+ {
784
+ "level": 147,
785
+ "id": "156",
786
+ "label": "156"
787
+ },
788
+ {
789
+ "level": 147,
790
+ "id": "157",
791
+ "label": "157"
792
+ },
793
+ {
794
+ "level": 148,
795
+ "id": "158",
796
+ "label": "158"
797
+ },
798
+ {
799
+ "level": 149,
800
+ "id": "159",
801
+ "label": "159"
802
+ },
803
+ {
804
+ "level": 150,
805
+ "id": "160",
806
+ "label": "160"
807
+ },
808
+ {
809
+ "level": 151,
810
+ "id": "161",
811
+ "label": "161"
812
+ },
813
+ {
814
+ "level": 150,
815
+ "id": "162",
816
+ "label": "162"
817
+ },
818
+ {
819
+ "level": 152,
820
+ "id": "163",
821
+ "label": "163"
822
+ },
823
+ {
824
+ "level": 151,
825
+ "id": "164",
826
+ "label": "164"
827
+ },
828
+ {
829
+ "level": 153,
830
+ "id": "165",
831
+ "label": "165"
832
+ },
833
+ {
834
+ "level": 154,
835
+ "id": "166",
836
+ "label": "166"
837
+ },
838
+ {
839
+ "level": 155,
840
+ "id": "167",
841
+ "label": "167"
842
+ },
843
+ {
844
+ "level": 156,
845
+ "id": "168",
846
+ "label": "168"
847
+ },
848
+ {
849
+ "level": 157,
850
+ "id": "169",
851
+ "label": "169"
852
+ },
853
+ {
854
+ "level": 157,
855
+ "id": "170",
856
+ "label": "170"
857
+ },
858
+ {
859
+ "level": 158,
860
+ "id": "171",
861
+ "label": "171"
862
+ },
863
+ {
864
+ "level": 159,
865
+ "id": "172",
866
+ "label": "172"
867
+ },
868
+ {
869
+ "level": 160,
870
+ "id": "173",
871
+ "label": "173"
872
+ },
873
+ {
874
+ "level": 161,
875
+ "id": "174",
876
+ "label": "174"
877
+ },
878
+ {
879
+ "level": 162,
880
+ "id": "175",
881
+ "label": "175"
882
+ },
883
+ {
884
+ "level": 163,
885
+ "id": "176",
886
+ "label": "176"
887
+ },
888
+ {
889
+ "level": 164,
890
+ "id": "177",
891
+ "label": "177"
892
+ },
893
+ {
894
+ "level": 165,
895
+ "id": "178",
896
+ "label": "178"
897
+ },
898
+ {
899
+ "level": 166,
900
+ "id": "179",
901
+ "label": "179"
902
+ },
903
+ {
904
+ "level": 166,
905
+ "id": "180",
906
+ "label": "180"
907
+ },
908
+ {
909
+ "level": 167,
910
+ "id": "181",
911
+ "label": "181"
912
+ },
913
+ {
914
+ "level": 168,
915
+ "id": "182",
916
+ "label": "182"
917
+ },
918
+ {
919
+ "level": 168,
920
+ "id": "183",
921
+ "label": "183"
922
+ },
923
+ {
924
+ "level": 169,
925
+ "id": "184",
926
+ "label": "184"
927
+ },
928
+ {
929
+ "level": 170,
930
+ "id": "185",
931
+ "label": "185"
932
+ },
933
+ {
934
+ "level": 170,
935
+ "id": "186",
936
+ "label": "186"
937
+ },
938
+ {
939
+ "level": 171,
940
+ "id": "187",
941
+ "label": "187"
942
+ },
943
+ {
944
+ "level": 172,
945
+ "id": "188",
946
+ "label": "188"
947
+ },
948
+ {
949
+ "level": 172,
950
+ "id": "189",
951
+ "label": "189"
952
+ },
953
+ {
954
+ "level": 173,
955
+ "id": "190",
956
+ "label": "190"
957
+ },
958
+ {
959
+ "level": 174,
960
+ "id": "191",
961
+ "label": "191"
962
+ },
963
+ {
964
+ "level": 175,
965
+ "id": "192",
966
+ "label": "192"
967
+ },
968
+ {
969
+ "level": 176,
970
+ "id": "193",
971
+ "label": "193"
972
+ },
973
+ {
974
+ "level": 177,
975
+ "id": "194",
976
+ "label": "194"
977
+ },
978
+ {
979
+ "level": 178,
980
+ "id": "195",
981
+ "label": "195"
982
+ },
983
+ {
984
+ "level": 179,
985
+ "id": "196",
986
+ "label": "196"
987
+ },
988
+ {
989
+ "level": 179,
990
+ "id": "197",
991
+ "label": "197"
992
+ },
993
+ {
994
+ "level": 180,
995
+ "id": "198",
996
+ "label": "198"
997
+ },
998
+ {
999
+ "level": 181,
1000
+ "id": "199",
1001
+ "label": "199"
1002
+ },
1003
+ {
1004
+ "level": 182,
1005
+ "id": "200",
1006
+ "label": "200"
1007
+ },
1008
+ {
1009
+ "level": 183,
1010
+ "id": "201",
1011
+ "label": "201"
1012
+ },
1013
+ {
1014
+ "level": 184,
1015
+ "id": "202",
1016
+ "label": "202"
1017
+ },
1018
+ {
1019
+ "level": 185,
1020
+ "id": "203",
1021
+ "label": "203"
1022
+ },
1023
+ {
1024
+ "level": 186,
1025
+ "id": "204",
1026
+ "label": "204"
1027
+ },
1028
+ {
1029
+ "level": 187,
1030
+ "id": "205",
1031
+ "label": "205"
1032
+ },
1033
+ {
1034
+ "level": 188,
1035
+ "id": "206",
1036
+ "label": "206"
1037
+ },
1038
+ {
1039
+ "level": 189,
1040
+ "id": "207",
1041
+ "label": "207"
1042
+ },
1043
+ {
1044
+ "level": 190,
1045
+ "id": "208",
1046
+ "label": "208"
1047
+ },
1048
+ {
1049
+ "level": 191,
1050
+ "id": "209",
1051
+ "label": "209"
1052
+ },
1053
+ {
1054
+ "level": 192,
1055
+ "id": "210",
1056
+ "label": "210"
1057
+ },
1058
+ {
1059
+ "level": 193,
1060
+ "id": "211",
1061
+ "label": "211"
1062
+ },
1063
+ {
1064
+ "level": 194,
1065
+ "id": "212",
1066
+ "label": "212"
1067
+ },
1068
+ {
1069
+ "level": 195,
1070
+ "id": "213",
1071
+ "label": "213"
1072
+ },
1073
+ {
1074
+ "level": 196,
1075
+ "id": "214",
1076
+ "label": "214"
1077
+ },
1078
+ {
1079
+ "level": 197,
1080
+ "id": "215",
1081
+ "label": "215"
1082
+ },
1083
+ {
1084
+ "level": 198,
1085
+ "id": "216",
1086
+ "label": "216"
1087
+ },
1088
+ {
1089
+ "level": 199,
1090
+ "id": "217",
1091
+ "label": "217"
1092
+ },
1093
+ {
1094
+ "level": 200,
1095
+ "id": "218",
1096
+ "label": "218"
1097
+ },
1098
+ {
1099
+ "level": 201,
1100
+ "id": "219",
1101
+ "label": "219"
1102
+ },
1103
+ {
1104
+ "level": 202,
1105
+ "id": "220",
1106
+ "label": "220"
1107
+ },
1108
+ {
1109
+ "level": 203,
1110
+ "id": "221",
1111
+ "label": "221"
1112
+ },
1113
+ {
1114
+ "level": 204,
1115
+ "id": "222",
1116
+ "label": "222"
1117
+ },
1118
+ {
1119
+ "level": 205,
1120
+ "id": "223",
1121
+ "label": "223"
1122
+ },
1123
+ {
1124
+ "level": 206,
1125
+ "id": "224",
1126
+ "label": "224"
1127
+ },
1128
+ {
1129
+ "level": 207,
1130
+ "id": "225",
1131
+ "label": "225"
1132
+ },
1133
+ {
1134
+ "level": 208,
1135
+ "id": "226",
1136
+ "label": "226"
1137
+ },
1138
+ {
1139
+ "level": 209,
1140
+ "id": "227",
1141
+ "label": "227"
1142
+ },
1143
+ {
1144
+ "level": 210,
1145
+ "id": "228",
1146
+ "label": "228"
1147
+ },
1148
+ {
1149
+ "level": 211,
1150
+ "id": "229",
1151
+ "label": "229"
1152
+ },
1153
+ {
1154
+ "level": 212,
1155
+ "id": "230",
1156
+ "label": "230"
1157
+ },
1158
+ {
1159
+ "level": 213,
1160
+ "id": "231",
1161
+ "label": "231"
1162
+ },
1163
+ {
1164
+ "level": 214,
1165
+ "id": "232",
1166
+ "label": "232"
1167
+ },
1168
+ {
1169
+ "level": 215,
1170
+ "id": "233",
1171
+ "label": "233"
1172
+ },
1173
+ {
1174
+ "level": 216,
1175
+ "id": "234",
1176
+ "label": "234"
1177
+ },
1178
+ {
1179
+ "level": 217,
1180
+ "id": "235",
1181
+ "label": "235"
1182
+ },
1183
+ {
1184
+ "level": 218,
1185
+ "id": "236",
1186
+ "label": "236"
1187
+ },
1188
+ {
1189
+ "level": 219,
1190
+ "id": "237",
1191
+ "label": "237"
1192
+ },
1193
+ {
1194
+ "level": 220,
1195
+ "id": "238",
1196
+ "label": "238"
1197
+ },
1198
+ {
1199
+ "level": 221,
1200
+ "id": "239",
1201
+ "label": "239"
1202
+ },
1203
+ {
1204
+ "level": 222,
1205
+ "id": "240",
1206
+ "label": "240"
1207
+ },
1208
+ {
1209
+ "level": 223,
1210
+ "id": "241",
1211
+ "label": "241"
1212
+ },
1213
+ {
1214
+ "level": 212,
1215
+ "id": "242",
1216
+ "label": "242"
1217
+ },
1218
+ {
1219
+ "level": 213,
1220
+ "id": "243",
1221
+ "label": "243"
1222
+ },
1223
+ {
1224
+ "level": 214,
1225
+ "id": "244",
1226
+ "label": "244"
1227
+ },
1228
+ {
1229
+ "level": 215,
1230
+ "id": "245",
1231
+ "label": "245"
1232
+ },
1233
+ {
1234
+ "level": 215,
1235
+ "id": "246",
1236
+ "label": "246"
1237
+ },
1238
+ {
1239
+ "level": 216,
1240
+ "id": "247",
1241
+ "label": "247"
1242
+ },
1243
+ {
1244
+ "level": 217,
1245
+ "id": "248",
1246
+ "label": "248"
1247
+ },
1248
+ {
1249
+ "level": 218,
1250
+ "id": "249",
1251
+ "label": "249"
1252
+ },
1253
+ {
1254
+ "level": 219,
1255
+ "id": "250",
1256
+ "label": "250"
1257
+ },
1258
+ {
1259
+ "level": 220,
1260
+ "id": "251",
1261
+ "label": "251"
1262
+ },
1263
+ {
1264
+ "level": 221,
1265
+ "id": "252",
1266
+ "label": "252"
1267
+ },
1268
+ {
1269
+ "level": 222,
1270
+ "id": "253",
1271
+ "label": "253"
1272
+ },
1273
+ {
1274
+ "level": 223,
1275
+ "id": "254",
1276
+ "label": "254"
1277
+ },
1278
+ {
1279
+ "level": 223,
1280
+ "id": "255",
1281
+ "label": "255"
1282
+ },
1283
+ {
1284
+ "level": 224,
1285
+ "id": "256",
1286
+ "label": "256"
1287
+ },
1288
+ {
1289
+ "level": 225,
1290
+ "id": "257",
1291
+ "label": "257"
1292
+ },
1293
+ {
1294
+ "level": 226,
1295
+ "id": "258",
1296
+ "label": "258"
1297
+ },
1298
+ {
1299
+ "level": 227,
1300
+ "id": "259",
1301
+ "label": "259"
1302
+ },
1303
+ {
1304
+ "level": 228,
1305
+ "id": "260",
1306
+ "label": "260"
1307
+ },
1308
+ {
1309
+ "level": 229,
1310
+ "id": "261",
1311
+ "label": "261"
1312
+ },
1313
+ {
1314
+ "level": 230,
1315
+ "id": "262",
1316
+ "label": "262"
1317
+ },
1318
+ {
1319
+ "level": 231,
1320
+ "id": "263",
1321
+ "label": "263"
1322
+ },
1323
+ {
1324
+ "level": 232,
1325
+ "id": "264",
1326
+ "label": "264"
1327
+ },
1328
+ {
1329
+ "level": 233,
1330
+ "id": "265",
1331
+ "label": "265"
1332
+ },
1333
+ {
1334
+ "level": 234,
1335
+ "id": "266",
1336
+ "label": "266"
1337
+ },
1338
+ {
1339
+ "level": 235,
1340
+ "id": "267",
1341
+ "label": "267"
1342
+ },
1343
+ {
1344
+ "level": 234,
1345
+ "id": "268",
1346
+ "label": "268"
1347
+ },
1348
+ {
1349
+ "level": 236,
1350
+ "id": "269",
1351
+ "label": "269"
1352
+ },
1353
+ {
1354
+ "level": 237,
1355
+ "id": "270",
1356
+ "label": "270"
1357
+ },
1358
+ {
1359
+ "level": 238,
1360
+ "id": "271",
1361
+ "label": "271"
1362
+ },
1363
+ {
1364
+ "level": 239,
1365
+ "id": "272",
1366
+ "label": "272"
1367
+ },
1368
+ {
1369
+ "level": 240,
1370
+ "id": "273",
1371
+ "label": "273"
1372
+ },
1373
+ {
1374
+ "level": 241,
1375
+ "id": "274",
1376
+ "label": "274"
1377
+ },
1378
+ {
1379
+ "level": 242,
1380
+ "id": "275",
1381
+ "label": "275"
1382
+ },
1383
+ {
1384
+ "level": 243,
1385
+ "id": "276",
1386
+ "label": "276"
1387
+ },
1388
+ {
1389
+ "level": 244,
1390
+ "id": "277",
1391
+ "label": "277"
1392
+ },
1393
+ {
1394
+ "level": 245,
1395
+ "id": "278",
1396
+ "label": "278"
1397
+ },
1398
+ {
1399
+ "level": 246,
1400
+ "id": "279",
1401
+ "label": "279"
1402
+ },
1403
+ {
1404
+ "level": 246,
1405
+ "id": "280",
1406
+ "label": "280"
1407
+ },
1408
+ {
1409
+ "level": 247,
1410
+ "id": "281",
1411
+ "label": "281"
1412
+ },
1413
+ {
1414
+ "level": 247,
1415
+ "id": "282",
1416
+ "label": "282"
1417
+ },
1418
+ {
1419
+ "level": 248,
1420
+ "id": "283",
1421
+ "label": "283"
1422
+ },
1423
+ {
1424
+ "level": 248,
1425
+ "id": "284",
1426
+ "label": "284"
1427
+ },
1428
+ {
1429
+ "level": 249,
1430
+ "id": "285",
1431
+ "label": "285"
1432
+ },
1433
+ {
1434
+ "level": 249,
1435
+ "id": "286",
1436
+ "label": "286"
1437
+ },
1438
+ {
1439
+ "level": 250,
1440
+ "id": "287",
1441
+ "label": "287"
1442
+ },
1443
+ {
1444
+ "level": 251,
1445
+ "id": "288",
1446
+ "label": "288"
1447
+ },
1448
+ {
1449
+ "level": 252,
1450
+ "id": "289",
1451
+ "label": "289"
1452
+ },
1453
+ {
1454
+ "level": 253,
1455
+ "id": "290",
1456
+ "label": "290"
1457
+ },
1458
+ {
1459
+ "level": 254,
1460
+ "id": "291",
1461
+ "label": "291"
1462
+ },
1463
+ {
1464
+ "level": 255,
1465
+ "id": "292",
1466
+ "label": "292"
1467
+ },
1468
+ {
1469
+ "level": 256,
1470
+ "id": "293",
1471
+ "label": "293"
1472
+ },
1473
+ {
1474
+ "level": 257,
1475
+ "id": "294",
1476
+ "label": "294"
1477
+ },
1478
+ {
1479
+ "level": 258,
1480
+ "id": "295",
1481
+ "label": "295"
1482
+ },
1483
+ {
1484
+ "level": 259,
1485
+ "id": "296",
1486
+ "label": "296"
1487
+ },
1488
+ {
1489
+ "level": 260,
1490
+ "id": "297",
1491
+ "label": "297"
1492
+ },
1493
+ {
1494
+ "level": 261,
1495
+ "id": "298",
1496
+ "label": "298"
1497
+ },
1498
+ {
1499
+ "level": 262,
1500
+ "id": "299",
1501
+ "label": "299"
1502
+ },
1503
+ {
1504
+ "level": 263,
1505
+ "id": "300",
1506
+ "label": "300"
1507
+ },
1508
+ {
1509
+ "level": 264,
1510
+ "id": "301",
1511
+ "label": "301"
1512
+ },
1513
+ {
1514
+ "level": 265,
1515
+ "id": "302",
1516
+ "label": "302"
1517
+ },
1518
+ {
1519
+ "level": 266,
1520
+ "id": "303",
1521
+ "label": "303"
1522
+ },
1523
+ {
1524
+ "level": 267,
1525
+ "id": "304",
1526
+ "label": "304"
1527
+ },
1528
+ {
1529
+ "level": 268,
1530
+ "id": "305",
1531
+ "label": "305"
1532
+ },
1533
+ {
1534
+ "level": 269,
1535
+ "id": "306",
1536
+ "label": "306"
1537
+ },
1538
+ {
1539
+ "level": 270,
1540
+ "id": "307",
1541
+ "label": "307"
1542
+ },
1543
+ {
1544
+ "level": 271,
1545
+ "id": "308",
1546
+ "label": "308"
1547
+ },
1548
+ {
1549
+ "level": 272,
1550
+ "id": "309",
1551
+ "label": "309"
1552
+ },
1553
+ {
1554
+ "level": 273,
1555
+ "id": "310",
1556
+ "label": "310"
1557
+ },
1558
+ {
1559
+ "level": 274,
1560
+ "id": "311",
1561
+ "label": "311"
1562
+ },
1563
+ {
1564
+ "level": 275,
1565
+ "id": "312",
1566
+ "label": "312"
1567
+ },
1568
+ {
1569
+ "level": 276,
1570
+ "id": "313",
1571
+ "label": "313"
1572
+ },
1573
+ {
1574
+ "level": 277,
1575
+ "id": "314",
1576
+ "label": "314"
1577
+ },
1578
+ {
1579
+ "level": 278,
1580
+ "id": "315",
1581
+ "label": "315"
1582
+ },
1583
+ {
1584
+ "level": 279,
1585
+ "id": "316",
1586
+ "label": "316"
1587
+ },
1588
+ {
1589
+ "level": 280,
1590
+ "id": "317",
1591
+ "label": "317"
1592
+ },
1593
+ {
1594
+ "level": 280,
1595
+ "id": "318",
1596
+ "label": "318"
1597
+ },
1598
+ {
1599
+ "level": 281,
1600
+ "id": "319",
1601
+ "label": "319"
1602
+ },
1603
+ {
1604
+ "level": 282,
1605
+ "id": "320",
1606
+ "label": "320"
1607
+ },
1608
+ {
1609
+ "level": 283,
1610
+ "id": "321",
1611
+ "label": "321"
1612
+ },
1613
+ {
1614
+ "level": 284,
1615
+ "id": "322",
1616
+ "label": "322"
1617
+ },
1618
+ {
1619
+ "level": 285,
1620
+ "id": "323",
1621
+ "label": "323"
1622
+ },
1623
+ {
1624
+ "level": 286,
1625
+ "id": "324",
1626
+ "label": "324"
1627
+ },
1628
+ {
1629
+ "level": 287,
1630
+ "id": "325",
1631
+ "label": "325"
1632
+ },
1633
+ {
1634
+ "level": 288,
1635
+ "id": "326",
1636
+ "label": "326"
1637
+ },
1638
+ {
1639
+ "level": 289,
1640
+ "id": "327",
1641
+ "label": "327"
1642
+ },
1643
+ {
1644
+ "level": 290,
1645
+ "id": "328",
1646
+ "label": "328"
1647
+ },
1648
+ {
1649
+ "level": 291,
1650
+ "id": "329",
1651
+ "label": "329"
1652
+ },
1653
+ {
1654
+ "level": 292,
1655
+ "id": "330",
1656
+ "label": "330"
1657
+ },
1658
+ {
1659
+ "level": 293,
1660
+ "id": "331",
1661
+ "label": "331"
1662
+ },
1663
+ {
1664
+ "level": 281,
1665
+ "id": "332",
1666
+ "label": "332"
1667
+ },
1668
+ {
1669
+ "level": 282,
1670
+ "id": "333",
1671
+ "label": "333"
1672
+ },
1673
+ {
1674
+ "level": 283,
1675
+ "id": "334",
1676
+ "label": "334"
1677
+ },
1678
+ {
1679
+ "level": 284,
1680
+ "id": "335",
1681
+ "label": "335"
1682
+ },
1683
+ {
1684
+ "level": 285,
1685
+ "id": "336",
1686
+ "label": "336"
1687
+ },
1688
+ {
1689
+ "level": 286,
1690
+ "id": "337",
1691
+ "label": "337"
1692
+ },
1693
+ {
1694
+ "level": 287,
1695
+ "id": "338",
1696
+ "label": "338"
1697
+ },
1698
+ {
1699
+ "level": 288,
1700
+ "id": "339",
1701
+ "label": "339"
1702
+ },
1703
+ {
1704
+ "level": 289,
1705
+ "id": "340",
1706
+ "label": "340"
1707
+ },
1708
+ {
1709
+ "level": 290,
1710
+ "id": "341",
1711
+ "label": "341"
1712
+ },
1713
+ {
1714
+ "level": 291,
1715
+ "id": "342",
1716
+ "label": "342"
1717
+ },
1718
+ {
1719
+ "level": 292,
1720
+ "id": "343",
1721
+ "label": "343"
1722
+ },
1723
+ {
1724
+ "level": 293,
1725
+ "id": "344",
1726
+ "label": "344"
1727
+ },
1728
+ {
1729
+ "level": 294,
1730
+ "id": "345",
1731
+ "label": "345"
1732
+ },
1733
+ {
1734
+ "level": 295,
1735
+ "id": "346",
1736
+ "label": "346"
1737
+ },
1738
+ {
1739
+ "level": 296,
1740
+ "id": "347",
1741
+ "label": "347"
1742
+ },
1743
+ {
1744
+ "level": 297,
1745
+ "id": "348",
1746
+ "label": "348"
1747
+ },
1748
+ {
1749
+ "level": 298,
1750
+ "id": "349",
1751
+ "label": "349"
1752
+ },
1753
+ {
1754
+ "level": 299,
1755
+ "id": "350",
1756
+ "label": "350"
1757
+ },
1758
+ {
1759
+ "level": 300,
1760
+ "id": "351",
1761
+ "label": "351"
1762
+ },
1763
+ {
1764
+ "level": 301,
1765
+ "id": "352",
1766
+ "label": "352"
1767
+ },
1768
+ {
1769
+ "level": 302,
1770
+ "id": "353",
1771
+ "label": "353"
1772
+ },
1773
+ {
1774
+ "level": 303,
1775
+ "id": "354",
1776
+ "label": "354"
1777
+ },
1778
+ {
1779
+ "level": 304,
1780
+ "id": "355",
1781
+ "label": "355"
1782
+ },
1783
+ {
1784
+ "level": 305,
1785
+ "id": "356",
1786
+ "label": "356"
1787
+ },
1788
+ {
1789
+ "level": 306,
1790
+ "id": "357",
1791
+ "label": "357"
1792
+ },
1793
+ {
1794
+ "level": 307,
1795
+ "id": "358",
1796
+ "label": "358"
1797
+ },
1798
+ {
1799
+ "level": 308,
1800
+ "id": "359",
1801
+ "label": "359"
1802
+ },
1803
+ {
1804
+ "level": 309,
1805
+ "id": "360",
1806
+ "label": "360"
1807
+ },
1808
+ {
1809
+ "level": 310,
1810
+ "id": "361",
1811
+ "label": "361"
1812
+ },
1813
+ {
1814
+ "level": 311,
1815
+ "id": "362",
1816
+ "label": "362"
1817
+ },
1818
+ {
1819
+ "level": 312,
1820
+ "id": "363",
1821
+ "label": "363"
1822
+ },
1823
+ {
1824
+ "level": 313,
1825
+ "id": "364",
1826
+ "label": "364"
1827
+ },
1828
+ {
1829
+ "level": 314,
1830
+ "id": "365",
1831
+ "label": "365"
1832
+ },
1833
+ {
1834
+ "level": 315,
1835
+ "id": "366",
1836
+ "label": "366"
1837
+ },
1838
+ {
1839
+ "level": 316,
1840
+ "id": "367",
1841
+ "label": "367"
1842
+ },
1843
+ {
1844
+ "level": 317,
1845
+ "id": "368",
1846
+ "label": "368"
1847
+ },
1848
+ {
1849
+ "level": 318,
1850
+ "id": "369",
1851
+ "label": "369"
1852
+ },
1853
+ {
1854
+ "level": 319,
1855
+ "id": "370",
1856
+ "label": "370"
1857
+ },
1858
+ {
1859
+ "level": 320,
1860
+ "id": "371",
1861
+ "label": "371"
1862
+ },
1863
+ {
1864
+ "level": 321,
1865
+ "id": "372",
1866
+ "label": "372"
1867
+ },
1868
+ {
1869
+ "level": 322,
1870
+ "id": "373",
1871
+ "label": "373"
1872
+ },
1873
+ {
1874
+ "level": 323,
1875
+ "id": "374",
1876
+ "label": "374"
1877
+ },
1878
+ {
1879
+ "level": 324,
1880
+ "id": "375",
1881
+ "label": "375"
1882
+ },
1883
+ {
1884
+ "level": 325,
1885
+ "id": "376",
1886
+ "label": "376"
1887
+ },
1888
+ {
1889
+ "level": 326,
1890
+ "id": "377",
1891
+ "label": "377"
1892
+ },
1893
+ {
1894
+ "level": 327,
1895
+ "id": "378",
1896
+ "label": "378"
1897
+ },
1898
+ {
1899
+ "level": 328,
1900
+ "id": "379",
1901
+ "label": "379"
1902
+ },
1903
+ {
1904
+ "level": 329,
1905
+ "id": "380",
1906
+ "label": "380"
1907
+ },
1908
+ {
1909
+ "level": 330,
1910
+ "id": "381",
1911
+ "label": "381"
1912
+ },
1913
+ {
1914
+ "level": 331,
1915
+ "id": "382",
1916
+ "label": "382"
1917
+ },
1918
+ {
1919
+ "level": 332,
1920
+ "id": "383",
1921
+ "label": "383"
1922
+ },
1923
+ {
1924
+ "level": 333,
1925
+ "id": "384",
1926
+ "label": "384"
1927
+ },
1928
+ {
1929
+ "level": 334,
1930
+ "id": "385",
1931
+ "label": "385"
1932
+ },
1933
+ {
1934
+ "level": 14,
1935
+ "id": "386",
1936
+ "label": "386"
1937
+ },
1938
+ {
1939
+ "level": 335,
1940
+ "id": "387",
1941
+ "label": "387"
1942
+ },
1943
+ {
1944
+ "level": 15,
1945
+ "id": "388",
1946
+ "label": "388"
1947
+ },
1948
+ {
1949
+ "level": 336,
1950
+ "id": "389",
1951
+ "label": "389"
1952
+ },
1953
+ {
1954
+ "level": 337,
1955
+ "id": "390",
1956
+ "label": "390"
1957
+ },
1958
+ {
1959
+ "level": 338,
1960
+ "id": "391",
1961
+ "label": "391"
1962
+ },
1963
+ {
1964
+ "level": 339,
1965
+ "id": "392",
1966
+ "label": "392"
1967
+ },
1968
+ {
1969
+ "level": 340,
1970
+ "id": "393",
1971
+ "label": "393"
1972
+ },
1973
+ {
1974
+ "level": 341,
1975
+ "id": "394",
1976
+ "label": "394"
1977
+ },
1978
+ {
1979
+ "level": 342,
1980
+ "id": "395",
1981
+ "label": "395"
1982
+ },
1983
+ {
1984
+ "level": 343,
1985
+ "id": "396",
1986
+ "label": "396"
1987
+ },
1988
+ {
1989
+ "level": 344,
1990
+ "id": "397",
1991
+ "label": "397"
1992
+ },
1993
+ {
1994
+ "level": 345,
1995
+ "id": "398",
1996
+ "label": "398"
1997
+ },
1998
+ {
1999
+ "level": 346,
2000
+ "id": "399",
2001
+ "label": "399"
2002
+ }
2003
+ ],
2004
+ "edges": [
2005
+ {
2006
+ "to": "0",
2007
+ "from": "1"
2008
+ },
2009
+ {
2010
+ "to": "1",
2011
+ "from": "2"
2012
+ },
2013
+ {
2014
+ "to": "2",
2015
+ "from": "3"
2016
+ },
2017
+ {
2018
+ "to": "3",
2019
+ "from": "4"
2020
+ },
2021
+ {
2022
+ "to": "4",
2023
+ "from": "5"
2024
+ },
2025
+ {
2026
+ "to": "5",
2027
+ "from": "6"
2028
+ },
2029
+ {
2030
+ "to": "6",
2031
+ "from": "7"
2032
+ },
2033
+ {
2034
+ "to": "7",
2035
+ "from": "8"
2036
+ },
2037
+ {
2038
+ "to": "8",
2039
+ "from": "10"
2040
+ },
2041
+ {
2042
+ "to": "9",
2043
+ "from": "11"
2044
+ },
2045
+ {
2046
+ "to": "10",
2047
+ "from": "11"
2048
+ },
2049
+ {
2050
+ "to": "11",
2051
+ "from": "12"
2052
+ },
2053
+ {
2054
+ "to": "12",
2055
+ "from": "13"
2056
+ },
2057
+ {
2058
+ "to": "13",
2059
+ "from": "15"
2060
+ },
2061
+ {
2062
+ "to": "13",
2063
+ "from": "14"
2064
+ },
2065
+ {
2066
+ "to": "14",
2067
+ "from": "386"
2068
+ },
2069
+ {
2070
+ "to": "14",
2071
+ "from": "16"
2072
+ },
2073
+ {
2074
+ "to": "15",
2075
+ "from": "386"
2076
+ },
2077
+ {
2078
+ "to": "15",
2079
+ "from": "16"
2080
+ },
2081
+ {
2082
+ "to": "16",
2083
+ "from": "17"
2084
+ },
2085
+ {
2086
+ "to": "17",
2087
+ "from": "18"
2088
+ },
2089
+ {
2090
+ "to": "18",
2091
+ "from": "19"
2092
+ },
2093
+ {
2094
+ "to": "19",
2095
+ "from": "20"
2096
+ },
2097
+ {
2098
+ "to": "20",
2099
+ "from": "21"
2100
+ },
2101
+ {
2102
+ "to": "21",
2103
+ "from": "22"
2104
+ },
2105
+ {
2106
+ "to": "22",
2107
+ "from": "23"
2108
+ },
2109
+ {
2110
+ "to": "23",
2111
+ "from": "24"
2112
+ },
2113
+ {
2114
+ "to": "24",
2115
+ "from": "25"
2116
+ },
2117
+ {
2118
+ "to": "25",
2119
+ "from": "26"
2120
+ },
2121
+ {
2122
+ "to": "26",
2123
+ "from": "27"
2124
+ },
2125
+ {
2126
+ "to": "27",
2127
+ "from": "28"
2128
+ },
2129
+ {
2130
+ "to": "28",
2131
+ "from": "29"
2132
+ },
2133
+ {
2134
+ "to": "29",
2135
+ "from": "30"
2136
+ },
2137
+ {
2138
+ "to": "30",
2139
+ "from": "31"
2140
+ },
2141
+ {
2142
+ "to": "31",
2143
+ "from": "32"
2144
+ },
2145
+ {
2146
+ "to": "32",
2147
+ "from": "33"
2148
+ },
2149
+ {
2150
+ "to": "33",
2151
+ "from": "34"
2152
+ },
2153
+ {
2154
+ "to": "33",
2155
+ "from": "35"
2156
+ },
2157
+ {
2158
+ "to": "33",
2159
+ "from": "37"
2160
+ },
2161
+ {
2162
+ "to": "34",
2163
+ "from": "36"
2164
+ },
2165
+ {
2166
+ "to": "34",
2167
+ "from": "43"
2168
+ },
2169
+ {
2170
+ "to": "35",
2171
+ "from": "36"
2172
+ },
2173
+ {
2174
+ "to": "35",
2175
+ "from": "43"
2176
+ },
2177
+ {
2178
+ "to": "36",
2179
+ "from": "38"
2180
+ },
2181
+ {
2182
+ "to": "37",
2183
+ "from": "39"
2184
+ },
2185
+ {
2186
+ "to": "37",
2187
+ "from": "43"
2188
+ },
2189
+ {
2190
+ "to": "38",
2191
+ "from": "39"
2192
+ },
2193
+ {
2194
+ "to": "39",
2195
+ "from": "40"
2196
+ },
2197
+ {
2198
+ "to": "40",
2199
+ "from": "41"
2200
+ },
2201
+ {
2202
+ "to": "41",
2203
+ "from": "42"
2204
+ },
2205
+ {
2206
+ "to": "42",
2207
+ "from": "44"
2208
+ },
2209
+ {
2210
+ "to": "43",
2211
+ "from": "45"
2212
+ },
2213
+ {
2214
+ "to": "44",
2215
+ "from": "45"
2216
+ },
2217
+ {
2218
+ "to": "45",
2219
+ "from": "46"
2220
+ },
2221
+ {
2222
+ "to": "46",
2223
+ "from": "47"
2224
+ },
2225
+ {
2226
+ "to": "47",
2227
+ "from": "48"
2228
+ },
2229
+ {
2230
+ "to": "48",
2231
+ "from": "49"
2232
+ },
2233
+ {
2234
+ "to": "49",
2235
+ "from": "50"
2236
+ },
2237
+ {
2238
+ "to": "50",
2239
+ "from": "51"
2240
+ },
2241
+ {
2242
+ "to": "51",
2243
+ "from": "52"
2244
+ },
2245
+ {
2246
+ "to": "52",
2247
+ "from": "53"
2248
+ },
2249
+ {
2250
+ "to": "53",
2251
+ "from": "54"
2252
+ },
2253
+ {
2254
+ "to": "54",
2255
+ "from": "55"
2256
+ },
2257
+ {
2258
+ "to": "55",
2259
+ "from": "56"
2260
+ },
2261
+ {
2262
+ "to": "56",
2263
+ "from": "57"
2264
+ },
2265
+ {
2266
+ "to": "57",
2267
+ "from": "58"
2268
+ },
2269
+ {
2270
+ "to": "58",
2271
+ "from": "59"
2272
+ },
2273
+ {
2274
+ "to": "59",
2275
+ "from": "60"
2276
+ },
2277
+ {
2278
+ "to": "59",
2279
+ "from": "65"
2280
+ },
2281
+ {
2282
+ "to": "60",
2283
+ "from": "61"
2284
+ },
2285
+ {
2286
+ "to": "61",
2287
+ "from": "62"
2288
+ },
2289
+ {
2290
+ "to": "62",
2291
+ "from": "63"
2292
+ },
2293
+ {
2294
+ "to": "63",
2295
+ "from": "64"
2296
+ },
2297
+ {
2298
+ "to": "64",
2299
+ "from": "66"
2300
+ },
2301
+ {
2302
+ "to": "65",
2303
+ "from": "67"
2304
+ },
2305
+ {
2306
+ "to": "65",
2307
+ "from": "124"
2308
+ },
2309
+ {
2310
+ "to": "65",
2311
+ "from": "229"
2312
+ },
2313
+ {
2314
+ "to": "65",
2315
+ "from": "322"
2316
+ },
2317
+ {
2318
+ "to": "65",
2319
+ "from": "363"
2320
+ },
2321
+ {
2322
+ "to": "66",
2323
+ "from": "67"
2324
+ },
2325
+ {
2326
+ "to": "67",
2327
+ "from": "68"
2328
+ },
2329
+ {
2330
+ "to": "68",
2331
+ "from": "69"
2332
+ },
2333
+ {
2334
+ "to": "69",
2335
+ "from": "70"
2336
+ },
2337
+ {
2338
+ "to": "70",
2339
+ "from": "71"
2340
+ },
2341
+ {
2342
+ "to": "71",
2343
+ "from": "72"
2344
+ },
2345
+ {
2346
+ "to": "72",
2347
+ "from": "73"
2348
+ },
2349
+ {
2350
+ "to": "73",
2351
+ "from": "74"
2352
+ },
2353
+ {
2354
+ "to": "74",
2355
+ "from": "75"
2356
+ },
2357
+ {
2358
+ "to": "75",
2359
+ "from": "76"
2360
+ },
2361
+ {
2362
+ "to": "76",
2363
+ "from": "77"
2364
+ },
2365
+ {
2366
+ "to": "77",
2367
+ "from": "78"
2368
+ },
2369
+ {
2370
+ "to": "78",
2371
+ "from": "79"
2372
+ },
2373
+ {
2374
+ "to": "79",
2375
+ "from": "80"
2376
+ },
2377
+ {
2378
+ "to": "80",
2379
+ "from": "81"
2380
+ },
2381
+ {
2382
+ "to": "81",
2383
+ "from": "82"
2384
+ },
2385
+ {
2386
+ "to": "82",
2387
+ "from": "83"
2388
+ },
2389
+ {
2390
+ "to": "83",
2391
+ "from": "84"
2392
+ },
2393
+ {
2394
+ "to": "84",
2395
+ "from": "85"
2396
+ },
2397
+ {
2398
+ "to": "85",
2399
+ "from": "91"
2400
+ },
2401
+ {
2402
+ "to": "85",
2403
+ "from": "86"
2404
+ },
2405
+ {
2406
+ "to": "86",
2407
+ "from": "87"
2408
+ },
2409
+ {
2410
+ "to": "87",
2411
+ "from": "88"
2412
+ },
2413
+ {
2414
+ "to": "88",
2415
+ "from": "89"
2416
+ },
2417
+ {
2418
+ "to": "89",
2419
+ "from": "90"
2420
+ },
2421
+ {
2422
+ "to": "90",
2423
+ "from": "92"
2424
+ },
2425
+ {
2426
+ "to": "91",
2427
+ "from": "195"
2428
+ },
2429
+ {
2430
+ "to": "91",
2431
+ "from": "93"
2432
+ },
2433
+ {
2434
+ "to": "91",
2435
+ "from": "397"
2436
+ },
2437
+ {
2438
+ "to": "91",
2439
+ "from": "233"
2440
+ },
2441
+ {
2442
+ "to": "91",
2443
+ "from": "125"
2444
+ },
2445
+ {
2446
+ "to": "92",
2447
+ "from": "93"
2448
+ },
2449
+ {
2450
+ "to": "93",
2451
+ "from": "94"
2452
+ },
2453
+ {
2454
+ "to": "94",
2455
+ "from": "95"
2456
+ },
2457
+ {
2458
+ "to": "95",
2459
+ "from": "96"
2460
+ },
2461
+ {
2462
+ "to": "96",
2463
+ "from": "97"
2464
+ },
2465
+ {
2466
+ "to": "97",
2467
+ "from": "98"
2468
+ },
2469
+ {
2470
+ "to": "98",
2471
+ "from": "99"
2472
+ },
2473
+ {
2474
+ "to": "99",
2475
+ "from": "100"
2476
+ },
2477
+ {
2478
+ "to": "100",
2479
+ "from": "101"
2480
+ },
2481
+ {
2482
+ "to": "101",
2483
+ "from": "102"
2484
+ },
2485
+ {
2486
+ "to": "102",
2487
+ "from": "103"
2488
+ },
2489
+ {
2490
+ "to": "103",
2491
+ "from": "104"
2492
+ },
2493
+ {
2494
+ "to": "104",
2495
+ "from": "105"
2496
+ },
2497
+ {
2498
+ "to": "105",
2499
+ "from": "106"
2500
+ },
2501
+ {
2502
+ "to": "106",
2503
+ "from": "107"
2504
+ },
2505
+ {
2506
+ "to": "107",
2507
+ "from": "108"
2508
+ },
2509
+ {
2510
+ "to": "108",
2511
+ "from": "109"
2512
+ },
2513
+ {
2514
+ "to": "109",
2515
+ "from": "110"
2516
+ },
2517
+ {
2518
+ "to": "110",
2519
+ "from": "111"
2520
+ },
2521
+ {
2522
+ "to": "111",
2523
+ "from": "112"
2524
+ },
2525
+ {
2526
+ "to": "112",
2527
+ "from": "113"
2528
+ },
2529
+ {
2530
+ "to": "113",
2531
+ "from": "114"
2532
+ },
2533
+ {
2534
+ "to": "114",
2535
+ "from": "115"
2536
+ },
2537
+ {
2538
+ "to": "115",
2539
+ "from": "116"
2540
+ },
2541
+ {
2542
+ "to": "116",
2543
+ "from": "117"
2544
+ },
2545
+ {
2546
+ "to": "117",
2547
+ "from": "118"
2548
+ },
2549
+ {
2550
+ "to": "118",
2551
+ "from": "119"
2552
+ },
2553
+ {
2554
+ "to": "119",
2555
+ "from": "120"
2556
+ },
2557
+ {
2558
+ "to": "120",
2559
+ "from": "121"
2560
+ },
2561
+ {
2562
+ "to": "121",
2563
+ "from": "122"
2564
+ },
2565
+ {
2566
+ "to": "122",
2567
+ "from": "123"
2568
+ },
2569
+ {
2570
+ "to": "123",
2571
+ "from": "124"
2572
+ },
2573
+ {
2574
+ "to": "124",
2575
+ "from": "125"
2576
+ },
2577
+ {
2578
+ "to": "125",
2579
+ "from": "126"
2580
+ },
2581
+ {
2582
+ "to": "126",
2583
+ "from": "127"
2584
+ },
2585
+ {
2586
+ "to": "127",
2587
+ "from": "128"
2588
+ },
2589
+ {
2590
+ "to": "128",
2591
+ "from": "129"
2592
+ },
2593
+ {
2594
+ "to": "129",
2595
+ "from": "130"
2596
+ },
2597
+ {
2598
+ "to": "130",
2599
+ "from": "131"
2600
+ },
2601
+ {
2602
+ "to": "131",
2603
+ "from": "132"
2604
+ },
2605
+ {
2606
+ "to": "132",
2607
+ "from": "134"
2608
+ },
2609
+ {
2610
+ "to": "132",
2611
+ "from": "133"
2612
+ },
2613
+ {
2614
+ "to": "133",
2615
+ "from": "135"
2616
+ },
2617
+ {
2618
+ "to": "134",
2619
+ "from": "135"
2620
+ },
2621
+ {
2622
+ "to": "135",
2623
+ "from": "136"
2624
+ },
2625
+ {
2626
+ "to": "136",
2627
+ "from": "137"
2628
+ },
2629
+ {
2630
+ "to": "137",
2631
+ "from": "138"
2632
+ },
2633
+ {
2634
+ "to": "138",
2635
+ "from": "139"
2636
+ },
2637
+ {
2638
+ "to": "138",
2639
+ "from": "140"
2640
+ },
2641
+ {
2642
+ "to": "139",
2643
+ "from": "141"
2644
+ },
2645
+ {
2646
+ "to": "140",
2647
+ "from": "141"
2648
+ },
2649
+ {
2650
+ "to": "141",
2651
+ "from": "142"
2652
+ },
2653
+ {
2654
+ "to": "142",
2655
+ "from": "143"
2656
+ },
2657
+ {
2658
+ "to": "143",
2659
+ "from": "144"
2660
+ },
2661
+ {
2662
+ "to": "144",
2663
+ "from": "145"
2664
+ },
2665
+ {
2666
+ "to": "145",
2667
+ "from": "146"
2668
+ },
2669
+ {
2670
+ "to": "146",
2671
+ "from": "147"
2672
+ },
2673
+ {
2674
+ "to": "147",
2675
+ "from": "148"
2676
+ },
2677
+ {
2678
+ "to": "148",
2679
+ "from": "149"
2680
+ },
2681
+ {
2682
+ "to": "149",
2683
+ "from": "150"
2684
+ },
2685
+ {
2686
+ "to": "150",
2687
+ "from": "151"
2688
+ },
2689
+ {
2690
+ "to": "151",
2691
+ "from": "152"
2692
+ },
2693
+ {
2694
+ "to": "152",
2695
+ "from": "153"
2696
+ },
2697
+ {
2698
+ "to": "153",
2699
+ "from": "154"
2700
+ },
2701
+ {
2702
+ "to": "154",
2703
+ "from": "155"
2704
+ },
2705
+ {
2706
+ "to": "155",
2707
+ "from": "157"
2708
+ },
2709
+ {
2710
+ "to": "155",
2711
+ "from": "156"
2712
+ },
2713
+ {
2714
+ "to": "156",
2715
+ "from": "158"
2716
+ },
2717
+ {
2718
+ "to": "157",
2719
+ "from": "158"
2720
+ },
2721
+ {
2722
+ "to": "158",
2723
+ "from": "159"
2724
+ },
2725
+ {
2726
+ "to": "159",
2727
+ "from": "162"
2728
+ },
2729
+ {
2730
+ "to": "159",
2731
+ "from": "160"
2732
+ },
2733
+ {
2734
+ "to": "160",
2735
+ "from": "164"
2736
+ },
2737
+ {
2738
+ "to": "160",
2739
+ "from": "161"
2740
+ },
2741
+ {
2742
+ "to": "161",
2743
+ "from": "163"
2744
+ },
2745
+ {
2746
+ "to": "162",
2747
+ "from": "164"
2748
+ },
2749
+ {
2750
+ "to": "163",
2751
+ "from": "165"
2752
+ },
2753
+ {
2754
+ "to": "164",
2755
+ "from": "166"
2756
+ },
2757
+ {
2758
+ "to": "165",
2759
+ "from": "166"
2760
+ },
2761
+ {
2762
+ "to": "166",
2763
+ "from": "167"
2764
+ },
2765
+ {
2766
+ "to": "167",
2767
+ "from": "168"
2768
+ },
2769
+ {
2770
+ "to": "168",
2771
+ "from": "170"
2772
+ },
2773
+ {
2774
+ "to": "168",
2775
+ "from": "169"
2776
+ },
2777
+ {
2778
+ "to": "169",
2779
+ "from": "171"
2780
+ },
2781
+ {
2782
+ "to": "170",
2783
+ "from": "171"
2784
+ },
2785
+ {
2786
+ "to": "171",
2787
+ "from": "172"
2788
+ },
2789
+ {
2790
+ "to": "172",
2791
+ "from": "173"
2792
+ },
2793
+ {
2794
+ "to": "173",
2795
+ "from": "174"
2796
+ },
2797
+ {
2798
+ "to": "174",
2799
+ "from": "175"
2800
+ },
2801
+ {
2802
+ "to": "175",
2803
+ "from": "176"
2804
+ },
2805
+ {
2806
+ "to": "176",
2807
+ "from": "177"
2808
+ },
2809
+ {
2810
+ "to": "177",
2811
+ "from": "178"
2812
+ },
2813
+ {
2814
+ "to": "178",
2815
+ "from": "180"
2816
+ },
2817
+ {
2818
+ "to": "178",
2819
+ "from": "179"
2820
+ },
2821
+ {
2822
+ "to": "179",
2823
+ "from": "181"
2824
+ },
2825
+ {
2826
+ "to": "180",
2827
+ "from": "181"
2828
+ },
2829
+ {
2830
+ "to": "181",
2831
+ "from": "183"
2832
+ },
2833
+ {
2834
+ "to": "181",
2835
+ "from": "182"
2836
+ },
2837
+ {
2838
+ "to": "182",
2839
+ "from": "184"
2840
+ },
2841
+ {
2842
+ "to": "183",
2843
+ "from": "184"
2844
+ },
2845
+ {
2846
+ "to": "184",
2847
+ "from": "186"
2848
+ },
2849
+ {
2850
+ "to": "184",
2851
+ "from": "185"
2852
+ },
2853
+ {
2854
+ "to": "185",
2855
+ "from": "187"
2856
+ },
2857
+ {
2858
+ "to": "186",
2859
+ "from": "189"
2860
+ },
2861
+ {
2862
+ "to": "186",
2863
+ "from": "188"
2864
+ },
2865
+ {
2866
+ "to": "187",
2867
+ "from": "188"
2868
+ },
2869
+ {
2870
+ "to": "187",
2871
+ "from": "189"
2872
+ },
2873
+ {
2874
+ "to": "188",
2875
+ "from": "190"
2876
+ },
2877
+ {
2878
+ "to": "189",
2879
+ "from": "191"
2880
+ },
2881
+ {
2882
+ "to": "190",
2883
+ "from": "191"
2884
+ },
2885
+ {
2886
+ "to": "191",
2887
+ "from": "192"
2888
+ },
2889
+ {
2890
+ "to": "192",
2891
+ "from": "193"
2892
+ },
2893
+ {
2894
+ "to": "193",
2895
+ "from": "194"
2896
+ },
2897
+ {
2898
+ "to": "194",
2899
+ "from": "195"
2900
+ },
2901
+ {
2902
+ "to": "195",
2903
+ "from": "197"
2904
+ },
2905
+ {
2906
+ "to": "195",
2907
+ "from": "196"
2908
+ },
2909
+ {
2910
+ "to": "196",
2911
+ "from": "198"
2912
+ },
2913
+ {
2914
+ "to": "197",
2915
+ "from": "198"
2916
+ },
2917
+ {
2918
+ "to": "198",
2919
+ "from": "199"
2920
+ },
2921
+ {
2922
+ "to": "199",
2923
+ "from": "200"
2924
+ },
2925
+ {
2926
+ "to": "200",
2927
+ "from": "201"
2928
+ },
2929
+ {
2930
+ "to": "201",
2931
+ "from": "202"
2932
+ },
2933
+ {
2934
+ "to": "202",
2935
+ "from": "203"
2936
+ },
2937
+ {
2938
+ "to": "203",
2939
+ "from": "204"
2940
+ },
2941
+ {
2942
+ "to": "204",
2943
+ "from": "205"
2944
+ },
2945
+ {
2946
+ "to": "205",
2947
+ "from": "206"
2948
+ },
2949
+ {
2950
+ "to": "206",
2951
+ "from": "207"
2952
+ },
2953
+ {
2954
+ "to": "207",
2955
+ "from": "208"
2956
+ },
2957
+ {
2958
+ "to": "208",
2959
+ "from": "209"
2960
+ },
2961
+ {
2962
+ "to": "209",
2963
+ "from": "210"
2964
+ },
2965
+ {
2966
+ "to": "210",
2967
+ "from": "211"
2968
+ },
2969
+ {
2970
+ "to": "211",
2971
+ "from": "212"
2972
+ },
2973
+ {
2974
+ "to": "212",
2975
+ "from": "213"
2976
+ },
2977
+ {
2978
+ "to": "213",
2979
+ "from": "214"
2980
+ },
2981
+ {
2982
+ "to": "214",
2983
+ "from": "215"
2984
+ },
2985
+ {
2986
+ "to": "215",
2987
+ "from": "216"
2988
+ },
2989
+ {
2990
+ "to": "216",
2991
+ "from": "217"
2992
+ },
2993
+ {
2994
+ "to": "217",
2995
+ "from": "218"
2996
+ },
2997
+ {
2998
+ "to": "218",
2999
+ "from": "219"
3000
+ },
3001
+ {
3002
+ "to": "219",
3003
+ "from": "220"
3004
+ },
3005
+ {
3006
+ "to": "220",
3007
+ "from": "221"
3008
+ },
3009
+ {
3010
+ "to": "221",
3011
+ "from": "222"
3012
+ },
3013
+ {
3014
+ "to": "222",
3015
+ "from": "223"
3016
+ },
3017
+ {
3018
+ "to": "223",
3019
+ "from": "224"
3020
+ },
3021
+ {
3022
+ "to": "224",
3023
+ "from": "225"
3024
+ },
3025
+ {
3026
+ "to": "225",
3027
+ "from": "226"
3028
+ },
3029
+ {
3030
+ "to": "226",
3031
+ "from": "227"
3032
+ },
3033
+ {
3034
+ "to": "227",
3035
+ "from": "228"
3036
+ },
3037
+ {
3038
+ "to": "228",
3039
+ "from": "229"
3040
+ },
3041
+ {
3042
+ "to": "229",
3043
+ "from": "230"
3044
+ },
3045
+ {
3046
+ "to": "229",
3047
+ "from": "242"
3048
+ },
3049
+ {
3050
+ "to": "230",
3051
+ "from": "231"
3052
+ },
3053
+ {
3054
+ "to": "231",
3055
+ "from": "232"
3056
+ },
3057
+ {
3058
+ "to": "232",
3059
+ "from": "233"
3060
+ },
3061
+ {
3062
+ "to": "233",
3063
+ "from": "234"
3064
+ },
3065
+ {
3066
+ "to": "234",
3067
+ "from": "235"
3068
+ },
3069
+ {
3070
+ "to": "235",
3071
+ "from": "236"
3072
+ },
3073
+ {
3074
+ "to": "236",
3075
+ "from": "237"
3076
+ },
3077
+ {
3078
+ "to": "237",
3079
+ "from": "238"
3080
+ },
3081
+ {
3082
+ "to": "238",
3083
+ "from": "239"
3084
+ },
3085
+ {
3086
+ "to": "239",
3087
+ "from": "240"
3088
+ },
3089
+ {
3090
+ "to": "240",
3091
+ "from": "241"
3092
+ },
3093
+ {
3094
+ "to": "242",
3095
+ "from": "243"
3096
+ },
3097
+ {
3098
+ "to": "243",
3099
+ "from": "244"
3100
+ },
3101
+ {
3102
+ "to": "244",
3103
+ "from": "246"
3104
+ },
3105
+ {
3106
+ "to": "244",
3107
+ "from": "245"
3108
+ },
3109
+ {
3110
+ "to": "245",
3111
+ "from": "247"
3112
+ },
3113
+ {
3114
+ "to": "246",
3115
+ "from": "247"
3116
+ },
3117
+ {
3118
+ "to": "247",
3119
+ "from": "248"
3120
+ },
3121
+ {
3122
+ "to": "248",
3123
+ "from": "249"
3124
+ },
3125
+ {
3126
+ "to": "249",
3127
+ "from": "250"
3128
+ },
3129
+ {
3130
+ "to": "250",
3131
+ "from": "251"
3132
+ },
3133
+ {
3134
+ "to": "251",
3135
+ "from": "252"
3136
+ },
3137
+ {
3138
+ "to": "252",
3139
+ "from": "253"
3140
+ },
3141
+ {
3142
+ "to": "253",
3143
+ "from": "254"
3144
+ },
3145
+ {
3146
+ "to": "253",
3147
+ "from": "255"
3148
+ },
3149
+ {
3150
+ "to": "254",
3151
+ "from": "256"
3152
+ },
3153
+ {
3154
+ "to": "255",
3155
+ "from": "256"
3156
+ },
3157
+ {
3158
+ "to": "256",
3159
+ "from": "257"
3160
+ },
3161
+ {
3162
+ "to": "257",
3163
+ "from": "258"
3164
+ },
3165
+ {
3166
+ "to": "258",
3167
+ "from": "259"
3168
+ },
3169
+ {
3170
+ "to": "259",
3171
+ "from": "260"
3172
+ },
3173
+ {
3174
+ "to": "260",
3175
+ "from": "261"
3176
+ },
3177
+ {
3178
+ "to": "261",
3179
+ "from": "262"
3180
+ },
3181
+ {
3182
+ "to": "262",
3183
+ "from": "263"
3184
+ },
3185
+ {
3186
+ "to": "263",
3187
+ "from": "264"
3188
+ },
3189
+ {
3190
+ "to": "264",
3191
+ "from": "265"
3192
+ },
3193
+ {
3194
+ "to": "265",
3195
+ "from": "268"
3196
+ },
3197
+ {
3198
+ "to": "265",
3199
+ "from": "266"
3200
+ },
3201
+ {
3202
+ "to": "266",
3203
+ "from": "267"
3204
+ },
3205
+ {
3206
+ "to": "267",
3207
+ "from": "269"
3208
+ },
3209
+ {
3210
+ "to": "268",
3211
+ "from": "269"
3212
+ },
3213
+ {
3214
+ "to": "269",
3215
+ "from": "270"
3216
+ },
3217
+ {
3218
+ "to": "270",
3219
+ "from": "271"
3220
+ },
3221
+ {
3222
+ "to": "271",
3223
+ "from": "272"
3224
+ },
3225
+ {
3226
+ "to": "272",
3227
+ "from": "273"
3228
+ },
3229
+ {
3230
+ "to": "273",
3231
+ "from": "274"
3232
+ },
3233
+ {
3234
+ "to": "274",
3235
+ "from": "275"
3236
+ },
3237
+ {
3238
+ "to": "275",
3239
+ "from": "276"
3240
+ },
3241
+ {
3242
+ "to": "276",
3243
+ "from": "277"
3244
+ },
3245
+ {
3246
+ "to": "277",
3247
+ "from": "278"
3248
+ },
3249
+ {
3250
+ "to": "278",
3251
+ "from": "280"
3252
+ },
3253
+ {
3254
+ "to": "278",
3255
+ "from": "279"
3256
+ },
3257
+ {
3258
+ "to": "279",
3259
+ "from": "282"
3260
+ },
3261
+ {
3262
+ "to": "280",
3263
+ "from": "281"
3264
+ },
3265
+ {
3266
+ "to": "280",
3267
+ "from": "282"
3268
+ },
3269
+ {
3270
+ "to": "281",
3271
+ "from": "284"
3272
+ },
3273
+ {
3274
+ "to": "281",
3275
+ "from": "283"
3276
+ },
3277
+ {
3278
+ "to": "282",
3279
+ "from": "284"
3280
+ },
3281
+ {
3282
+ "to": "282",
3283
+ "from": "283"
3284
+ },
3285
+ {
3286
+ "to": "283",
3287
+ "from": "286"
3288
+ },
3289
+ {
3290
+ "to": "283",
3291
+ "from": "285"
3292
+ },
3293
+ {
3294
+ "to": "284",
3295
+ "from": "286"
3296
+ },
3297
+ {
3298
+ "to": "284",
3299
+ "from": "285"
3300
+ },
3301
+ {
3302
+ "to": "285",
3303
+ "from": "287"
3304
+ },
3305
+ {
3306
+ "to": "286",
3307
+ "from": "287"
3308
+ },
3309
+ {
3310
+ "to": "287",
3311
+ "from": "288"
3312
+ },
3313
+ {
3314
+ "to": "288",
3315
+ "from": "289"
3316
+ },
3317
+ {
3318
+ "to": "289",
3319
+ "from": "290"
3320
+ },
3321
+ {
3322
+ "to": "290",
3323
+ "from": "291"
3324
+ },
3325
+ {
3326
+ "to": "291",
3327
+ "from": "292"
3328
+ },
3329
+ {
3330
+ "to": "292",
3331
+ "from": "293"
3332
+ },
3333
+ {
3334
+ "to": "293",
3335
+ "from": "294"
3336
+ },
3337
+ {
3338
+ "to": "294",
3339
+ "from": "295"
3340
+ },
3341
+ {
3342
+ "to": "295",
3343
+ "from": "296"
3344
+ },
3345
+ {
3346
+ "to": "296",
3347
+ "from": "297"
3348
+ },
3349
+ {
3350
+ "to": "297",
3351
+ "from": "298"
3352
+ },
3353
+ {
3354
+ "to": "298",
3355
+ "from": "299"
3356
+ },
3357
+ {
3358
+ "to": "299",
3359
+ "from": "300"
3360
+ },
3361
+ {
3362
+ "to": "300",
3363
+ "from": "301"
3364
+ },
3365
+ {
3366
+ "to": "301",
3367
+ "from": "302"
3368
+ },
3369
+ {
3370
+ "to": "302",
3371
+ "from": "303"
3372
+ },
3373
+ {
3374
+ "to": "303",
3375
+ "from": "304"
3376
+ },
3377
+ {
3378
+ "to": "304",
3379
+ "from": "305"
3380
+ },
3381
+ {
3382
+ "to": "305",
3383
+ "from": "306"
3384
+ },
3385
+ {
3386
+ "to": "306",
3387
+ "from": "307"
3388
+ },
3389
+ {
3390
+ "to": "307",
3391
+ "from": "308"
3392
+ },
3393
+ {
3394
+ "to": "308",
3395
+ "from": "309"
3396
+ },
3397
+ {
3398
+ "to": "309",
3399
+ "from": "310"
3400
+ },
3401
+ {
3402
+ "to": "310",
3403
+ "from": "311"
3404
+ },
3405
+ {
3406
+ "to": "311",
3407
+ "from": "312"
3408
+ },
3409
+ {
3410
+ "to": "312",
3411
+ "from": "313"
3412
+ },
3413
+ {
3414
+ "to": "313",
3415
+ "from": "314"
3416
+ },
3417
+ {
3418
+ "to": "314",
3419
+ "from": "315"
3420
+ },
3421
+ {
3422
+ "to": "315",
3423
+ "from": "316"
3424
+ },
3425
+ {
3426
+ "to": "316",
3427
+ "from": "317"
3428
+ },
3429
+ {
3430
+ "to": "316",
3431
+ "from": "318"
3432
+ },
3433
+ {
3434
+ "to": "317",
3435
+ "from": "332"
3436
+ },
3437
+ {
3438
+ "to": "317",
3439
+ "from": "319"
3440
+ },
3441
+ {
3442
+ "to": "318",
3443
+ "from": "319"
3444
+ },
3445
+ {
3446
+ "to": "319",
3447
+ "from": "320"
3448
+ },
3449
+ {
3450
+ "to": "320",
3451
+ "from": "321"
3452
+ },
3453
+ {
3454
+ "to": "321",
3455
+ "from": "322"
3456
+ },
3457
+ {
3458
+ "to": "322",
3459
+ "from": "323"
3460
+ },
3461
+ {
3462
+ "to": "323",
3463
+ "from": "324"
3464
+ },
3465
+ {
3466
+ "to": "324",
3467
+ "from": "325"
3468
+ },
3469
+ {
3470
+ "to": "325",
3471
+ "from": "326"
3472
+ },
3473
+ {
3474
+ "to": "326",
3475
+ "from": "327"
3476
+ },
3477
+ {
3478
+ "to": "327",
3479
+ "from": "328"
3480
+ },
3481
+ {
3482
+ "to": "328",
3483
+ "from": "329"
3484
+ },
3485
+ {
3486
+ "to": "329",
3487
+ "from": "330"
3488
+ },
3489
+ {
3490
+ "to": "330",
3491
+ "from": "331"
3492
+ },
3493
+ {
3494
+ "to": "332",
3495
+ "from": "333"
3496
+ },
3497
+ {
3498
+ "to": "333",
3499
+ "from": "334"
3500
+ },
3501
+ {
3502
+ "to": "334",
3503
+ "from": "335"
3504
+ },
3505
+ {
3506
+ "to": "335",
3507
+ "from": "336"
3508
+ },
3509
+ {
3510
+ "to": "336",
3511
+ "from": "337"
3512
+ },
3513
+ {
3514
+ "to": "337",
3515
+ "from": "338"
3516
+ },
3517
+ {
3518
+ "to": "338",
3519
+ "from": "339"
3520
+ },
3521
+ {
3522
+ "to": "339",
3523
+ "from": "340"
3524
+ },
3525
+ {
3526
+ "to": "340",
3527
+ "from": "341"
3528
+ },
3529
+ {
3530
+ "to": "341",
3531
+ "from": "342"
3532
+ },
3533
+ {
3534
+ "to": "342",
3535
+ "from": "343"
3536
+ },
3537
+ {
3538
+ "to": "343",
3539
+ "from": "344"
3540
+ },
3541
+ {
3542
+ "to": "344",
3543
+ "from": "345"
3544
+ },
3545
+ {
3546
+ "to": "345",
3547
+ "from": "346"
3548
+ },
3549
+ {
3550
+ "to": "346",
3551
+ "from": "347"
3552
+ },
3553
+ {
3554
+ "to": "347",
3555
+ "from": "348"
3556
+ },
3557
+ {
3558
+ "to": "348",
3559
+ "from": "349"
3560
+ },
3561
+ {
3562
+ "to": "349",
3563
+ "from": "350"
3564
+ },
3565
+ {
3566
+ "to": "350",
3567
+ "from": "351"
3568
+ },
3569
+ {
3570
+ "to": "351",
3571
+ "from": "352"
3572
+ },
3573
+ {
3574
+ "to": "352",
3575
+ "from": "353"
3576
+ },
3577
+ {
3578
+ "to": "353",
3579
+ "from": "354"
3580
+ },
3581
+ {
3582
+ "to": "354",
3583
+ "from": "355"
3584
+ },
3585
+ {
3586
+ "to": "355",
3587
+ "from": "356"
3588
+ },
3589
+ {
3590
+ "to": "356",
3591
+ "from": "357"
3592
+ },
3593
+ {
3594
+ "to": "357",
3595
+ "from": "358"
3596
+ },
3597
+ {
3598
+ "to": "358",
3599
+ "from": "359"
3600
+ },
3601
+ {
3602
+ "to": "359",
3603
+ "from": "360"
3604
+ },
3605
+ {
3606
+ "to": "360",
3607
+ "from": "361"
3608
+ },
3609
+ {
3610
+ "to": "361",
3611
+ "from": "362"
3612
+ },
3613
+ {
3614
+ "to": "362",
3615
+ "from": "363"
3616
+ },
3617
+ {
3618
+ "to": "363",
3619
+ "from": "364"
3620
+ },
3621
+ {
3622
+ "to": "364",
3623
+ "from": "365"
3624
+ },
3625
+ {
3626
+ "to": "365",
3627
+ "from": "366"
3628
+ },
3629
+ {
3630
+ "to": "366",
3631
+ "from": "367"
3632
+ },
3633
+ {
3634
+ "to": "367",
3635
+ "from": "368"
3636
+ },
3637
+ {
3638
+ "to": "368",
3639
+ "from": "369"
3640
+ },
3641
+ {
3642
+ "to": "369",
3643
+ "from": "370"
3644
+ },
3645
+ {
3646
+ "to": "370",
3647
+ "from": "371"
3648
+ },
3649
+ {
3650
+ "to": "371",
3651
+ "from": "372"
3652
+ },
3653
+ {
3654
+ "to": "372",
3655
+ "from": "373"
3656
+ },
3657
+ {
3658
+ "to": "373",
3659
+ "from": "374"
3660
+ },
3661
+ {
3662
+ "to": "374",
3663
+ "from": "375"
3664
+ },
3665
+ {
3666
+ "to": "375",
3667
+ "from": "376"
3668
+ },
3669
+ {
3670
+ "to": "376",
3671
+ "from": "377"
3672
+ },
3673
+ {
3674
+ "to": "377",
3675
+ "from": "378"
3676
+ },
3677
+ {
3678
+ "to": "378",
3679
+ "from": "379"
3680
+ },
3681
+ {
3682
+ "to": "379",
3683
+ "from": "380"
3684
+ },
3685
+ {
3686
+ "to": "380",
3687
+ "from": "381"
3688
+ },
3689
+ {
3690
+ "to": "381",
3691
+ "from": "382"
3692
+ },
3693
+ {
3694
+ "to": "382",
3695
+ "from": "383"
3696
+ },
3697
+ {
3698
+ "to": "383",
3699
+ "from": "384"
3700
+ },
3701
+ {
3702
+ "to": "384",
3703
+ "from": "385"
3704
+ },
3705
+ {
3706
+ "to": "385",
3707
+ "from": "387"
3708
+ },
3709
+ {
3710
+ "to": "386",
3711
+ "from": "388"
3712
+ },
3713
+ {
3714
+ "to": "387",
3715
+ "from": "389"
3716
+ },
3717
+ {
3718
+ "to": "388",
3719
+ "from": "390"
3720
+ },
3721
+ {
3722
+ "to": "389",
3723
+ "from": "390"
3724
+ },
3725
+ {
3726
+ "to": "390",
3727
+ "from": "391"
3728
+ },
3729
+ {
3730
+ "to": "391",
3731
+ "from": "392"
3732
+ },
3733
+ {
3734
+ "to": "392",
3735
+ "from": "393"
3736
+ },
3737
+ {
3738
+ "to": "393",
3739
+ "from": "394"
3740
+ },
3741
+ {
3742
+ "to": "394",
3743
+ "from": "395"
3744
+ },
3745
+ {
3746
+ "to": "395",
3747
+ "from": "396"
3748
+ },
3749
+ {
3750
+ "to": "396",
3751
+ "from": "397"
3752
+ },
3753
+ {
3754
+ "to": "397",
3755
+ "from": "398"
3756
+ },
3757
+ {
3758
+ "to": "398",
3759
+ "from": "399"
3760
+ }
3761
+ ]
3762
+ } );