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,63 @@
1
+ <!doctype html>
2
+ <html>
3
+ <head>
4
+ <title>Network | Label margins</title>
5
+
6
+ <script type="text/javascript" src="../../../vendor/assets/javascripts/vis.js"></script>
7
+ <link href="../../../vendor/assets/stylesheets/vis-network.min.css" rel="stylesheet" type="text/css" />
8
+
9
+ <style type="text/css">
10
+ #mynetwork {
11
+ width: 600px;
12
+ height: 600px;
13
+ border: 1px solid lightgray;
14
+ }
15
+ p {
16
+ max-width:600px;
17
+ }
18
+ </style>
19
+
20
+ </head>
21
+
22
+ <body>
23
+
24
+ <p>The labels of box, circle, database, icon and text nodes may have different margin values.
25
+ Top, right, bottom and left margins may be different for each node.</p>
26
+ <p>Setting the margin value in the network's nodes property sets it as the default.</p>
27
+ <p>Setting a the value to a number uses that number for the margins. If the value is an object, a different value for each margin will be set.</p>
28
+ <p>Note that negative values appropriately push labels outside the node.
29
+
30
+ <div id="mynetwork"></div>
31
+
32
+ <script type="text/javascript">
33
+ // create an array with nodes
34
+ var nodes = [
35
+ { id: 1, label: 'Default Value\n(5)', x: -150, y: -150 },
36
+ { id: 2, label: 'Single Value\n(25)', margin: 20, x: 0, y: 0 },
37
+ { id: 3, label: 'Different Values\n(10, 20, 40, 30)', margin: { top: 10, right: 20, bottom: 40, left: 30 }, x: 120, y: 120},
38
+ { id: 4, label: 'A Negative Value\n(10, 20, 40, -50)', margin: { top: 10, right: 20, bottom: 30, left: -20 }, x: 300, y: -300}
39
+ ];
40
+
41
+ // create an array with edges
42
+ var edges = [
43
+ {from: 1, to: 2},
44
+ {from: 2, to: 3},
45
+ {from: 3, to: 4}
46
+ ];
47
+
48
+ // create a network
49
+ var container = document.getElementById('mynetwork');
50
+ var data = {
51
+ nodes: nodes,
52
+ edges: edges
53
+ };
54
+ var options = {
55
+ nodes: {
56
+ shape: 'box'
57
+ }
58
+ };
59
+ var network = new vis.Network(container, data, options);
60
+ </script>
61
+
62
+ </body>
63
+ </html>
@@ -0,0 +1,115 @@
1
+ <!doctype html>
2
+ <html>
3
+ <head>
4
+ <title>Network | Multifont Labels</title>
5
+
6
+ <script type="text/javascript" src="../../../vendor/assets/javascripts/vis.js"></script>
7
+ <link href="../../../vendor/assets/stylesheets/vis-network.min.css" rel="stylesheet" type="text/css" />
8
+
9
+ <style type="text/css">
10
+ #mynetwork {
11
+ width: 600px;
12
+ height: 400px;
13
+ border: 1px solid lightgray;
14
+ }
15
+ code {
16
+ font-size: 15px;
17
+ }
18
+ p {
19
+ max-width: 600px;
20
+ }
21
+ .indented {
22
+ margin-left: 30px;
23
+ }
24
+ table {
25
+ border-collapse: collapse;
26
+ font-family: sans-serif;
27
+ }
28
+ table code {
29
+ background: #dddddd;
30
+ }
31
+ th, td {
32
+ border: 1px solid #aaaaaa;
33
+ text-align: center;
34
+ padding: 5px;
35
+ font-weight: normal;
36
+ }
37
+ </style>
38
+
39
+ </head>
40
+
41
+ <body>
42
+
43
+ <p>Node and edge labels may be marked up to be drawn with multiple fonts.</p>
44
+
45
+ <div id="mynetwork"></div>
46
+
47
+ <p>The value of the <code>font.multi</code> property may be set to <code>'html'</code>, <code>'markdown'</code> or a boolean.</p>
48
+ <table class="indented">
49
+ <tr><th colspan='4'>Embedded Font Markup</th></tr>
50
+ <tr><th rowspan=2>font mod</th><th colspan=3><code>font.multi</code> setting</th></tr>
51
+ <tr><th><code>'html'</code> or <code>true</code></th><th><code>'markdown'</code> or <code>'md'</code></th><th><code>false<code></th></tr>
52
+ <tr><th>bold</th><td><code>&lt;b&gt;</code> ... <code>&lt;/b></code></td><td><code>&nbsp;*</code> ... <code>*&nbsp;</code></td><td>n/a</td></tr>
53
+ <tr><th>italic</th><td><code>&lt;i&gt;</code> ... <code>&lt;/i></code></td><td><code>&nbsp;_</code> ... <code>_&nbsp;</code></td><td>n/a</td></tr>
54
+ <tr><th>mono-spaced</th><td><code>&lt;code&gt;</code> ... <code>&lt;/code&gt;</code></td><td><code>&nbsp;`</code> ... <code>`&nbsp;</code></td><td>n/a</td></tr>
55
+ </table>
56
+
57
+ <p>
58
+ The <code>html</code> and <code>markdown</code> rendering is limited: bolds may be embedded in italics, italics may be embedded in bolds, and mono-spaced may be embedded in bold or italic, but will not be altered by those font mods, nor will embedded bolds or italics be handled.
59
+ The only entities that will be observed in html are <code>&amp;lt;</code> and <code>&amp;amp;</code> and in <code>markdown</code> a backslash will escape the following character (including a backslash) from special processing.
60
+ Any font mod that is started in a label line will be implicitly terminated at the end of that line.
61
+ While this interpretation may not exactly match <i>official</i> rendering standards, it is a consistent compromise for drawing multifont strings in the non-multifont html canvas element underlying vis.
62
+ </p>
63
+
64
+ <p>This implies that four additional sets of font properties will be recognized in label processing.</p>
65
+ <p class="indented"><code>font.bold</code> designates the font used for rendering bold font mods.
66
+ <br/><code>font.ital</code> designates the font used for rendering italic font mods.
67
+ <br/><code>font.boldital</code> designates the font used for rendering bold-<b><i>and</i></b>-italic font mods.
68
+ <br/><code>font.mono</code> designates the font used for rendering monospaced font mods.</p>
69
+ <p>Any font mod without a matching font will be rendered using the normal <code>font</code> (or default) value.</p>
70
+
71
+ <p>The <code>font.multi</code> and extended font settings may be set in the network's <code>nodes</code> or <code>edges</code> properties, or on individual nodes and edges.
72
+ Node and edge label fonts are separate.</p>
73
+
74
+ <script type="text/javascript">
75
+ var nodes = [
76
+ { id: 1, label: 'This is a\nsingle-font label', x: -120, y: -120 },
77
+ { id: 2, font: { multi: true }, label: '<b>This</b> is a\n<i>default</i> <b><i>multi-</i>font</b> <code>label</code>', x: -40, y: -40 },
78
+ { id: 3, font: { multi: 'html', size: 20 }, label: '<b>This</b> is an\n<i>html</i> <b><i>multi-</i>font</b> <code>label</code>', x: 40, y: 40 },
79
+ { id: 4, font: { multi: 'md', face: 'georgia' }, label: '*This* is a\n_markdown_ *_multi-_ font* `label`', x: 120, y: 120},
80
+ ];
81
+
82
+ var edges = [
83
+ {from: 1, to: 2, label: "single to default"},
84
+ {from: 2, to: 3, font: { multi: true }, label: "default to <b>html</b>" },
85
+ {from: 3, to: 4, font: { multi: "md" }, label: "*html* to _md_" }
86
+ ];
87
+
88
+ var container = document.getElementById('mynetwork');
89
+ var data = {
90
+ nodes: nodes,
91
+ edges: edges
92
+ };
93
+ var options = {
94
+ edges: {
95
+ font: {
96
+ size: 12
97
+ }
98
+ },
99
+ nodes: {
100
+ shape: 'box',
101
+ font: {
102
+ bold: {
103
+ color: '#0077aa'
104
+ }
105
+ }
106
+ },
107
+ physics: {
108
+ enabled: false
109
+ }
110
+ };
111
+ var network = new vis.Network(container, data, options);
112
+ </script>
113
+
114
+ </body>
115
+ </html>
@@ -0,0 +1,61 @@
1
+ <!doctype html>
2
+ <html>
3
+ <head>
4
+ <title>Network | Label stroke</title>
5
+ <script type="text/javascript" src="../../../vendor/assets/javascripts/vis.js"></script>
6
+ <link href="../../../vendor/assets/stylesheets/vis-network.min.css" rel="stylesheet" type="text/css" />
7
+
8
+ <style type="text/css">
9
+ #mynetwork {
10
+ width: 600px;
11
+ height: 600px;
12
+ border: 1px solid lightgray;
13
+ background:#d1d1d1;
14
+ }
15
+ p {
16
+ max-width:600px;
17
+ }
18
+ </style>
19
+
20
+ </head>
21
+
22
+ <body>
23
+ <p>The stroke of labels is fully can have a width and color. Edgelabels by default have a white stroke for clarity.</p>
24
+
25
+ <div id="mynetwork"></div>
26
+
27
+ <script type="text/javascript">
28
+ // create an array with nodes
29
+ var nodes = [
30
+ {id: 1, label: 'Node 1', font: {strokeWidth: 3, strokeColor: 'white'}},
31
+ {id: 2, label: 'Node 2'},
32
+ {id: 3, label: 'Node 3'},
33
+ {id: 4, label: 'Node 4'},
34
+ {id: 5, label: 'Node 5'}
35
+ ];
36
+
37
+ // create an array with edges
38
+ var edges = [
39
+ {from: 1, to: 2, label: 'edgeLabel', font: {strokeWidth: 2, strokeColor : '#00ff00'}},
40
+ {from: 1, to: 3, label: 'edgeLabel'},
41
+ {from: 2, to: 4},
42
+ {from: 2, to: 5}
43
+ ];
44
+
45
+ // create a network
46
+ var container = document.getElementById('mynetwork');
47
+ var data = {
48
+ nodes: nodes,
49
+ edges: edges
50
+ };
51
+ var options = {
52
+ nodes : {
53
+ shape: 'dot',
54
+ size: 10
55
+ }
56
+ };
57
+ var network = new vis.Network(container, data, options);
58
+ </script>
59
+
60
+ </body>
61
+ </html>
@@ -0,0 +1,52 @@
1
+ <!doctype html>
2
+ <html>
3
+ <head>
4
+ <title>Network | Multiline text</title>
5
+
6
+ <style type="text/css">
7
+ #mynetwork {
8
+ width: 600px;
9
+ height: 600px;
10
+ border: 1px solid lightgray;
11
+ }
12
+ </style>
13
+
14
+ <script type="text/javascript" src="../../../vendor/assets/javascripts/vis.js"></script>
15
+ <link href="../../../vendor/assets/stylesheets/vis-network.min.css" rel="stylesheet" type="text/css" />
16
+
17
+ <script type="text/javascript">
18
+ function draw() {
19
+ // create some nodes
20
+ var nodes = [
21
+ {id: 1, label: 'Node in\nthe center', shape: 'text', font:{strokeWidth:4}},
22
+ {id: 2, label: 'Node\nwith\nmultiple\nlines', shape: 'circle'},
23
+ {id: 3, label: 'This is a lot of text\nbut luckily we can spread\nover multiple lines', shape: 'database'},
24
+ {id: 4, label: 'This is text\non multiple lines', shape: 'box'},
25
+ {id: 5, label: 'Little text', shape: 'ellipse'}
26
+ ];
27
+
28
+ // create some edges
29
+ var edges = [
30
+ {from: 1, to: 2, color: 'red', width: 3, length: 200}, // individual length definition is possible
31
+ {from: 1, to: 3, dashes:true, width: 1, length: 200},
32
+ {from: 1, to: 4, width: 1, length: 200, label:'I\'m an edge!'},
33
+ {from: 1, to: 5, arrows:'to', width: 3, length: 200, label:'arrows\nare cool'}
34
+ ];
35
+
36
+ // create a network
37
+ var container = document.getElementById('mynetwork');
38
+ var data = {
39
+ nodes: nodes,
40
+ edges: edges
41
+ };
42
+ var options = {};
43
+ var network = new vis.Network(container, data, options);
44
+ }
45
+ </script>
46
+
47
+ </head>
48
+
49
+ <body onload="draw()">
50
+ <div id="mynetwork"></div>
51
+ </body>
52
+ </html>
@@ -0,0 +1,1894 @@
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
+ "edges": [
1005
+ {
1006
+ "to": "0",
1007
+ "from": "1"
1008
+ },
1009
+ {
1010
+ "to": "1",
1011
+ "from": "2"
1012
+ },
1013
+ {
1014
+ "to": "2",
1015
+ "from": "3"
1016
+ },
1017
+ {
1018
+ "to": "3",
1019
+ "from": "4"
1020
+ },
1021
+ {
1022
+ "to": "4",
1023
+ "from": "5"
1024
+ },
1025
+ {
1026
+ "to": "5",
1027
+ "from": "6"
1028
+ },
1029
+ {
1030
+ "to": "6",
1031
+ "from": "7"
1032
+ },
1033
+ {
1034
+ "to": "7",
1035
+ "from": "8"
1036
+ },
1037
+ {
1038
+ "to": "8",
1039
+ "from": "10"
1040
+ },
1041
+ {
1042
+ "to": "9",
1043
+ "from": "11"
1044
+ },
1045
+ {
1046
+ "to": "10",
1047
+ "from": "11"
1048
+ },
1049
+ {
1050
+ "to": "11",
1051
+ "from": "12"
1052
+ },
1053
+ {
1054
+ "to": "12",
1055
+ "from": "13"
1056
+ },
1057
+ {
1058
+ "to": "13",
1059
+ "from": "15"
1060
+ },
1061
+ {
1062
+ "to": "13",
1063
+ "from": "14"
1064
+ },
1065
+ {
1066
+ "to": "14",
1067
+ "from": "16"
1068
+ },
1069
+ {
1070
+ "to": "15",
1071
+ "from": "16"
1072
+ },
1073
+ {
1074
+ "to": "16",
1075
+ "from": "17"
1076
+ },
1077
+ {
1078
+ "to": "17",
1079
+ "from": "18"
1080
+ },
1081
+ {
1082
+ "to": "18",
1083
+ "from": "19"
1084
+ },
1085
+ {
1086
+ "to": "19",
1087
+ "from": "20"
1088
+ },
1089
+ {
1090
+ "to": "20",
1091
+ "from": "21"
1092
+ },
1093
+ {
1094
+ "to": "21",
1095
+ "from": "22"
1096
+ },
1097
+ {
1098
+ "to": "22",
1099
+ "from": "23"
1100
+ },
1101
+ {
1102
+ "to": "23",
1103
+ "from": "24"
1104
+ },
1105
+ {
1106
+ "to": "24",
1107
+ "from": "25"
1108
+ },
1109
+ {
1110
+ "to": "25",
1111
+ "from": "26"
1112
+ },
1113
+ {
1114
+ "to": "26",
1115
+ "from": "27"
1116
+ },
1117
+ {
1118
+ "to": "27",
1119
+ "from": "28"
1120
+ },
1121
+ {
1122
+ "to": "28",
1123
+ "from": "29"
1124
+ },
1125
+ {
1126
+ "to": "29",
1127
+ "from": "30"
1128
+ },
1129
+ {
1130
+ "to": "30",
1131
+ "from": "31"
1132
+ },
1133
+ {
1134
+ "to": "31",
1135
+ "from": "32"
1136
+ },
1137
+ {
1138
+ "to": "32",
1139
+ "from": "33"
1140
+ },
1141
+ {
1142
+ "to": "33",
1143
+ "from": "34"
1144
+ },
1145
+ {
1146
+ "to": "33",
1147
+ "from": "35"
1148
+ },
1149
+ {
1150
+ "to": "33",
1151
+ "from": "37"
1152
+ },
1153
+ {
1154
+ "to": "34",
1155
+ "from": "36"
1156
+ },
1157
+ {
1158
+ "to": "34",
1159
+ "from": "43"
1160
+ },
1161
+ {
1162
+ "to": "35",
1163
+ "from": "36"
1164
+ },
1165
+ {
1166
+ "to": "35",
1167
+ "from": "43"
1168
+ },
1169
+ {
1170
+ "to": "36",
1171
+ "from": "38"
1172
+ },
1173
+ {
1174
+ "to": "37",
1175
+ "from": "39"
1176
+ },
1177
+ {
1178
+ "to": "37",
1179
+ "from": "43"
1180
+ },
1181
+ {
1182
+ "to": "38",
1183
+ "from": "39"
1184
+ },
1185
+ {
1186
+ "to": "39",
1187
+ "from": "40"
1188
+ },
1189
+ {
1190
+ "to": "40",
1191
+ "from": "41"
1192
+ },
1193
+ {
1194
+ "to": "41",
1195
+ "from": "42"
1196
+ },
1197
+ {
1198
+ "to": "42",
1199
+ "from": "44"
1200
+ },
1201
+ {
1202
+ "to": "43",
1203
+ "from": "45"
1204
+ },
1205
+ {
1206
+ "to": "44",
1207
+ "from": "45"
1208
+ },
1209
+ {
1210
+ "to": "45",
1211
+ "from": "46"
1212
+ },
1213
+ {
1214
+ "to": "46",
1215
+ "from": "47"
1216
+ },
1217
+ {
1218
+ "to": "47",
1219
+ "from": "48"
1220
+ },
1221
+ {
1222
+ "to": "48",
1223
+ "from": "49"
1224
+ },
1225
+ {
1226
+ "to": "49",
1227
+ "from": "50"
1228
+ },
1229
+ {
1230
+ "to": "50",
1231
+ "from": "51"
1232
+ },
1233
+ {
1234
+ "to": "51",
1235
+ "from": "52"
1236
+ },
1237
+ {
1238
+ "to": "52",
1239
+ "from": "53"
1240
+ },
1241
+ {
1242
+ "to": "53",
1243
+ "from": "54"
1244
+ },
1245
+ {
1246
+ "to": "54",
1247
+ "from": "55"
1248
+ },
1249
+ {
1250
+ "to": "55",
1251
+ "from": "56"
1252
+ },
1253
+ {
1254
+ "to": "56",
1255
+ "from": "57"
1256
+ },
1257
+ {
1258
+ "to": "57",
1259
+ "from": "58"
1260
+ },
1261
+ {
1262
+ "to": "58",
1263
+ "from": "59"
1264
+ },
1265
+ {
1266
+ "to": "59",
1267
+ "from": "60"
1268
+ },
1269
+ {
1270
+ "to": "59",
1271
+ "from": "65"
1272
+ },
1273
+ {
1274
+ "to": "60",
1275
+ "from": "61"
1276
+ },
1277
+ {
1278
+ "to": "61",
1279
+ "from": "62"
1280
+ },
1281
+ {
1282
+ "to": "62",
1283
+ "from": "63"
1284
+ },
1285
+ {
1286
+ "to": "63",
1287
+ "from": "64"
1288
+ },
1289
+ {
1290
+ "to": "64",
1291
+ "from": "66"
1292
+ },
1293
+ {
1294
+ "to": "65",
1295
+ "from": "67"
1296
+ },
1297
+ {
1298
+ "to": "65",
1299
+ "from": "124"
1300
+ },
1301
+ {
1302
+ "to": "66",
1303
+ "from": "67"
1304
+ },
1305
+ {
1306
+ "to": "67",
1307
+ "from": "68"
1308
+ },
1309
+ {
1310
+ "to": "68",
1311
+ "from": "69"
1312
+ },
1313
+ {
1314
+ "to": "69",
1315
+ "from": "70"
1316
+ },
1317
+ {
1318
+ "to": "70",
1319
+ "from": "71"
1320
+ },
1321
+ {
1322
+ "to": "71",
1323
+ "from": "72"
1324
+ },
1325
+ {
1326
+ "to": "72",
1327
+ "from": "73"
1328
+ },
1329
+ {
1330
+ "to": "73",
1331
+ "from": "74"
1332
+ },
1333
+ {
1334
+ "to": "74",
1335
+ "from": "75"
1336
+ },
1337
+ {
1338
+ "to": "75",
1339
+ "from": "76"
1340
+ },
1341
+ {
1342
+ "to": "76",
1343
+ "from": "77"
1344
+ },
1345
+ {
1346
+ "to": "77",
1347
+ "from": "78"
1348
+ },
1349
+ {
1350
+ "to": "78",
1351
+ "from": "79"
1352
+ },
1353
+ {
1354
+ "to": "79",
1355
+ "from": "80"
1356
+ },
1357
+ {
1358
+ "to": "80",
1359
+ "from": "81"
1360
+ },
1361
+ {
1362
+ "to": "81",
1363
+ "from": "82"
1364
+ },
1365
+ {
1366
+ "to": "82",
1367
+ "from": "83"
1368
+ },
1369
+ {
1370
+ "to": "83",
1371
+ "from": "84"
1372
+ },
1373
+ {
1374
+ "to": "84",
1375
+ "from": "85"
1376
+ },
1377
+ {
1378
+ "to": "85",
1379
+ "from": "91"
1380
+ },
1381
+ {
1382
+ "to": "85",
1383
+ "from": "86"
1384
+ },
1385
+ {
1386
+ "to": "86",
1387
+ "from": "87"
1388
+ },
1389
+ {
1390
+ "to": "87",
1391
+ "from": "88"
1392
+ },
1393
+ {
1394
+ "to": "88",
1395
+ "from": "89"
1396
+ },
1397
+ {
1398
+ "to": "89",
1399
+ "from": "90"
1400
+ },
1401
+ {
1402
+ "to": "90",
1403
+ "from": "92"
1404
+ },
1405
+ {
1406
+ "to": "91",
1407
+ "from": "195"
1408
+ },
1409
+ {
1410
+ "to": "91",
1411
+ "from": "93"
1412
+ },
1413
+ {
1414
+ "to": "91",
1415
+ "from": "125"
1416
+ },
1417
+ {
1418
+ "to": "92",
1419
+ "from": "93"
1420
+ },
1421
+ {
1422
+ "to": "93",
1423
+ "from": "94"
1424
+ },
1425
+ {
1426
+ "to": "94",
1427
+ "from": "95"
1428
+ },
1429
+ {
1430
+ "to": "95",
1431
+ "from": "96"
1432
+ },
1433
+ {
1434
+ "to": "96",
1435
+ "from": "97"
1436
+ },
1437
+ {
1438
+ "to": "97",
1439
+ "from": "98"
1440
+ },
1441
+ {
1442
+ "to": "98",
1443
+ "from": "99"
1444
+ },
1445
+ {
1446
+ "to": "99",
1447
+ "from": "100"
1448
+ },
1449
+ {
1450
+ "to": "100",
1451
+ "from": "101"
1452
+ },
1453
+ {
1454
+ "to": "101",
1455
+ "from": "102"
1456
+ },
1457
+ {
1458
+ "to": "102",
1459
+ "from": "103"
1460
+ },
1461
+ {
1462
+ "to": "103",
1463
+ "from": "104"
1464
+ },
1465
+ {
1466
+ "to": "104",
1467
+ "from": "105"
1468
+ },
1469
+ {
1470
+ "to": "105",
1471
+ "from": "106"
1472
+ },
1473
+ {
1474
+ "to": "106",
1475
+ "from": "107"
1476
+ },
1477
+ {
1478
+ "to": "107",
1479
+ "from": "108"
1480
+ },
1481
+ {
1482
+ "to": "108",
1483
+ "from": "109"
1484
+ },
1485
+ {
1486
+ "to": "109",
1487
+ "from": "110"
1488
+ },
1489
+ {
1490
+ "to": "110",
1491
+ "from": "111"
1492
+ },
1493
+ {
1494
+ "to": "111",
1495
+ "from": "112"
1496
+ },
1497
+ {
1498
+ "to": "112",
1499
+ "from": "113"
1500
+ },
1501
+ {
1502
+ "to": "113",
1503
+ "from": "114"
1504
+ },
1505
+ {
1506
+ "to": "114",
1507
+ "from": "115"
1508
+ },
1509
+ {
1510
+ "to": "115",
1511
+ "from": "116"
1512
+ },
1513
+ {
1514
+ "to": "116",
1515
+ "from": "117"
1516
+ },
1517
+ {
1518
+ "to": "117",
1519
+ "from": "118"
1520
+ },
1521
+ {
1522
+ "to": "118",
1523
+ "from": "119"
1524
+ },
1525
+ {
1526
+ "to": "119",
1527
+ "from": "120"
1528
+ },
1529
+ {
1530
+ "to": "120",
1531
+ "from": "121"
1532
+ },
1533
+ {
1534
+ "to": "121",
1535
+ "from": "122"
1536
+ },
1537
+ {
1538
+ "to": "122",
1539
+ "from": "123"
1540
+ },
1541
+ {
1542
+ "to": "123",
1543
+ "from": "124"
1544
+ },
1545
+ {
1546
+ "to": "124",
1547
+ "from": "125"
1548
+ },
1549
+ {
1550
+ "to": "125",
1551
+ "from": "126"
1552
+ },
1553
+ {
1554
+ "to": "126",
1555
+ "from": "127"
1556
+ },
1557
+ {
1558
+ "to": "127",
1559
+ "from": "128"
1560
+ },
1561
+ {
1562
+ "to": "128",
1563
+ "from": "129"
1564
+ },
1565
+ {
1566
+ "to": "129",
1567
+ "from": "130"
1568
+ },
1569
+ {
1570
+ "to": "130",
1571
+ "from": "131"
1572
+ },
1573
+ {
1574
+ "to": "131",
1575
+ "from": "132"
1576
+ },
1577
+ {
1578
+ "to": "132",
1579
+ "from": "134"
1580
+ },
1581
+ {
1582
+ "to": "132",
1583
+ "from": "133"
1584
+ },
1585
+ {
1586
+ "to": "133",
1587
+ "from": "135"
1588
+ },
1589
+ {
1590
+ "to": "134",
1591
+ "from": "135"
1592
+ },
1593
+ {
1594
+ "to": "135",
1595
+ "from": "136"
1596
+ },
1597
+ {
1598
+ "to": "136",
1599
+ "from": "137"
1600
+ },
1601
+ {
1602
+ "to": "137",
1603
+ "from": "138"
1604
+ },
1605
+ {
1606
+ "to": "138",
1607
+ "from": "139"
1608
+ },
1609
+ {
1610
+ "to": "138",
1611
+ "from": "140"
1612
+ },
1613
+ {
1614
+ "to": "139",
1615
+ "from": "141"
1616
+ },
1617
+ {
1618
+ "to": "140",
1619
+ "from": "141"
1620
+ },
1621
+ {
1622
+ "to": "141",
1623
+ "from": "142"
1624
+ },
1625
+ {
1626
+ "to": "142",
1627
+ "from": "143"
1628
+ },
1629
+ {
1630
+ "to": "143",
1631
+ "from": "144"
1632
+ },
1633
+ {
1634
+ "to": "144",
1635
+ "from": "145"
1636
+ },
1637
+ {
1638
+ "to": "145",
1639
+ "from": "146"
1640
+ },
1641
+ {
1642
+ "to": "146",
1643
+ "from": "147"
1644
+ },
1645
+ {
1646
+ "to": "147",
1647
+ "from": "148"
1648
+ },
1649
+ {
1650
+ "to": "148",
1651
+ "from": "149"
1652
+ },
1653
+ {
1654
+ "to": "149",
1655
+ "from": "150"
1656
+ },
1657
+ {
1658
+ "to": "150",
1659
+ "from": "151"
1660
+ },
1661
+ {
1662
+ "to": "151",
1663
+ "from": "152"
1664
+ },
1665
+ {
1666
+ "to": "152",
1667
+ "from": "153"
1668
+ },
1669
+ {
1670
+ "to": "153",
1671
+ "from": "154"
1672
+ },
1673
+ {
1674
+ "to": "154",
1675
+ "from": "155"
1676
+ },
1677
+ {
1678
+ "to": "155",
1679
+ "from": "157"
1680
+ },
1681
+ {
1682
+ "to": "155",
1683
+ "from": "156"
1684
+ },
1685
+ {
1686
+ "to": "156",
1687
+ "from": "158"
1688
+ },
1689
+ {
1690
+ "to": "157",
1691
+ "from": "158"
1692
+ },
1693
+ {
1694
+ "to": "158",
1695
+ "from": "159"
1696
+ },
1697
+ {
1698
+ "to": "159",
1699
+ "from": "162"
1700
+ },
1701
+ {
1702
+ "to": "159",
1703
+ "from": "160"
1704
+ },
1705
+ {
1706
+ "to": "160",
1707
+ "from": "164"
1708
+ },
1709
+ {
1710
+ "to": "160",
1711
+ "from": "161"
1712
+ },
1713
+ {
1714
+ "to": "161",
1715
+ "from": "163"
1716
+ },
1717
+ {
1718
+ "to": "162",
1719
+ "from": "164"
1720
+ },
1721
+ {
1722
+ "to": "163",
1723
+ "from": "165"
1724
+ },
1725
+ {
1726
+ "to": "164",
1727
+ "from": "166"
1728
+ },
1729
+ {
1730
+ "to": "165",
1731
+ "from": "166"
1732
+ },
1733
+ {
1734
+ "to": "166",
1735
+ "from": "167"
1736
+ },
1737
+ {
1738
+ "to": "167",
1739
+ "from": "168"
1740
+ },
1741
+ {
1742
+ "to": "168",
1743
+ "from": "170"
1744
+ },
1745
+ {
1746
+ "to": "168",
1747
+ "from": "169"
1748
+ },
1749
+ {
1750
+ "to": "169",
1751
+ "from": "171"
1752
+ },
1753
+ {
1754
+ "to": "170",
1755
+ "from": "171"
1756
+ },
1757
+ {
1758
+ "to": "171",
1759
+ "from": "172"
1760
+ },
1761
+ {
1762
+ "to": "172",
1763
+ "from": "173"
1764
+ },
1765
+ {
1766
+ "to": "173",
1767
+ "from": "174"
1768
+ },
1769
+ {
1770
+ "to": "174",
1771
+ "from": "175"
1772
+ },
1773
+ {
1774
+ "to": "175",
1775
+ "from": "176"
1776
+ },
1777
+ {
1778
+ "to": "176",
1779
+ "from": "177"
1780
+ },
1781
+ {
1782
+ "to": "177",
1783
+ "from": "178"
1784
+ },
1785
+ {
1786
+ "to": "178",
1787
+ "from": "180"
1788
+ },
1789
+ {
1790
+ "to": "178",
1791
+ "from": "179"
1792
+ },
1793
+ {
1794
+ "to": "179",
1795
+ "from": "181"
1796
+ },
1797
+ {
1798
+ "to": "180",
1799
+ "from": "181"
1800
+ },
1801
+ {
1802
+ "to": "181",
1803
+ "from": "183"
1804
+ },
1805
+ {
1806
+ "to": "181",
1807
+ "from": "182"
1808
+ },
1809
+ {
1810
+ "to": "182",
1811
+ "from": "184"
1812
+ },
1813
+ {
1814
+ "to": "183",
1815
+ "from": "184"
1816
+ },
1817
+ {
1818
+ "to": "184",
1819
+ "from": "186"
1820
+ },
1821
+ {
1822
+ "to": "184",
1823
+ "from": "185"
1824
+ },
1825
+ {
1826
+ "to": "185",
1827
+ "from": "187"
1828
+ },
1829
+ {
1830
+ "to": "186",
1831
+ "from": "189"
1832
+ },
1833
+ {
1834
+ "to": "186",
1835
+ "from": "188"
1836
+ },
1837
+ {
1838
+ "to": "187",
1839
+ "from": "188"
1840
+ },
1841
+ {
1842
+ "to": "187",
1843
+ "from": "189"
1844
+ },
1845
+ {
1846
+ "to": "188",
1847
+ "from": "190"
1848
+ },
1849
+ {
1850
+ "to": "189",
1851
+ "from": "191"
1852
+ },
1853
+ {
1854
+ "to": "190",
1855
+ "from": "191"
1856
+ },
1857
+ {
1858
+ "to": "191",
1859
+ "from": "192"
1860
+ },
1861
+ {
1862
+ "to": "192",
1863
+ "from": "193"
1864
+ },
1865
+ {
1866
+ "to": "193",
1867
+ "from": "194"
1868
+ },
1869
+ {
1870
+ "to": "194",
1871
+ "from": "195"
1872
+ },
1873
+ {
1874
+ "to": "195",
1875
+ "from": "197"
1876
+ },
1877
+ {
1878
+ "to": "195",
1879
+ "from": "196"
1880
+ },
1881
+ {
1882
+ "to": "196",
1883
+ "from": "198"
1884
+ },
1885
+ {
1886
+ "to": "197",
1887
+ "from": "198"
1888
+ },
1889
+ {
1890
+ "to": "198",
1891
+ "from": "199"
1892
+ }
1893
+ ]
1894
+ } );