ts2famix 2.0.3 → 2.1.0-beta.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (191) hide show
  1. package/.eslintrc.json +24 -24
  2. package/.vscode/settings.json +4 -0
  3. package/LICENSE +24 -24
  4. package/README.md +78 -78
  5. package/TODO +1 -0
  6. package/arwea-fix.json +1 -0
  7. package/bogus.ts +3 -0
  8. package/class-diagram.puml +792 -0
  9. package/debug.txt +13332 -0
  10. package/debuglog.txt +12073 -0
  11. package/dist/analyze.js +19 -9
  12. package/dist/analyze_functions/process_functions.js +101 -71
  13. package/dist/famix2puml.js +126 -0
  14. package/dist/famix_functions/EntityDictionary.js +881 -509
  15. package/dist/famix_functions/helpers_creation.js +18 -8
  16. package/dist/fqn.js +44 -11
  17. package/dist/getClasses-arrow-body.js +43 -0
  18. package/dist/lib/famix/famix_JSON_exporter.js +1 -1
  19. package/dist/lib/famix/famix_base_element.js +1 -1
  20. package/dist/lib/famix/famix_repository.js +67 -2
  21. package/dist/lib/famix/index.js +18 -8
  22. package/dist/lib/famix/model/famix/access.js +1 -1
  23. package/dist/lib/famix/model/famix/accessor.js +1 -1
  24. package/dist/lib/famix/model/famix/alias.js +1 -1
  25. package/dist/lib/famix/model/famix/arrow_function.js +1 -1
  26. package/dist/lib/famix/model/famix/behavioral_entity.js +1 -1
  27. package/dist/lib/famix/model/famix/class.js +1 -1
  28. package/dist/lib/famix/model/famix/comment.js +1 -1
  29. package/dist/lib/famix/model/famix/concretisation.js +1 -1
  30. package/dist/lib/famix/model/famix/container_entity.js +1 -1
  31. package/dist/lib/famix/model/famix/decorator.js +1 -1
  32. package/dist/lib/famix/model/famix/entity.js +1 -1
  33. package/dist/lib/famix/model/famix/enum.js +1 -1
  34. package/dist/lib/famix/model/famix/enum_value.js +1 -1
  35. package/dist/lib/famix/model/famix/function.js +1 -1
  36. package/dist/lib/famix/model/famix/import_clause.js +1 -1
  37. package/dist/lib/famix/model/famix/index.js +1 -1
  38. package/dist/lib/famix/model/famix/indexed_file_anchor.js +1 -1
  39. package/dist/lib/famix/model/famix/inheritance.js +1 -1
  40. package/dist/lib/famix/model/famix/interface.js +1 -1
  41. package/dist/lib/famix/model/famix/invocation.js +1 -1
  42. package/dist/lib/famix/model/famix/method.js +1 -1
  43. package/dist/lib/famix/model/famix/module.js +1 -1
  44. package/dist/lib/famix/model/famix/named_entity.js +1 -1
  45. package/dist/lib/famix/model/famix/parameter.js +1 -1
  46. package/dist/lib/famix/model/famix/parameter_concretisation.js +1 -1
  47. package/dist/lib/famix/model/famix/parameter_type.js +1 -1
  48. package/dist/lib/famix/model/famix/parametric_arrow_function.js +1 -1
  49. package/dist/lib/famix/model/famix/parametric_class.js +1 -1
  50. package/dist/lib/famix/model/famix/parametric_function.js +1 -1
  51. package/dist/lib/famix/model/famix/parametric_interface.js +1 -1
  52. package/dist/lib/famix/model/famix/parametric_method.js +1 -1
  53. package/dist/lib/famix/model/famix/primitive_type.js +1 -1
  54. package/dist/lib/famix/model/famix/property.js +1 -1
  55. package/dist/lib/famix/model/famix/reference.js +1 -1
  56. package/dist/lib/famix/model/famix/scoping_entity.js +1 -1
  57. package/dist/lib/famix/model/famix/script_entity.js +1 -1
  58. package/dist/lib/famix/model/famix/source_anchor.js +1 -1
  59. package/dist/lib/famix/model/famix/source_language.js +1 -1
  60. package/dist/lib/famix/model/famix/sourced_entity.js +1 -1
  61. package/dist/lib/famix/model/famix/structural_entity.js +1 -1
  62. package/dist/lib/famix/model/famix/type.js +1 -1
  63. package/dist/lib/famix/model/famix/variable.js +1 -1
  64. package/dist/lib/famix/src/famix_JSON_exporter.js +55 -0
  65. package/dist/lib/famix/src/famix_base_element.js +18 -0
  66. package/dist/lib/famix/src/famix_repository.js +224 -0
  67. package/dist/lib/famix/src/index.js +31 -0
  68. package/dist/lib/famix/src/model/famix/access.js +40 -0
  69. package/dist/lib/famix/src/model/famix/accessor.js +17 -0
  70. package/dist/lib/famix/src/model/famix/alias.js +33 -0
  71. package/dist/lib/famix/src/model/famix/arrowFunction.js +17 -0
  72. package/dist/lib/famix/src/model/famix/arrow_function.js +17 -0
  73. package/dist/lib/famix/src/model/famix/behavioral_entity.js +79 -0
  74. package/dist/lib/famix/src/model/famix/class.js +71 -0
  75. package/dist/lib/famix/src/model/famix/comment.js +39 -0
  76. package/dist/lib/famix/src/model/famix/concretisation.js +31 -0
  77. package/dist/lib/famix/src/model/famix/container_entity.js +126 -0
  78. package/dist/lib/famix/src/model/famix/decorator.js +32 -0
  79. package/dist/lib/famix/src/model/famix/entity.js +17 -0
  80. package/dist/lib/famix/src/model/famix/enum.js +31 -0
  81. package/dist/lib/famix/src/model/famix/enum_value.js +25 -0
  82. package/dist/lib/famix/src/model/famix/function.js +17 -0
  83. package/dist/lib/famix/src/model/famix/implicit_variable.js +17 -0
  84. package/dist/lib/famix/src/model/famix/import_clause.js +41 -0
  85. package/dist/lib/famix/src/model/famix/index.js +86 -0
  86. package/dist/lib/famix/src/model/famix/indexed_file_anchor.js +38 -0
  87. package/dist/lib/famix/src/model/famix/inheritance.js +33 -0
  88. package/dist/lib/famix/src/model/famix/interface.js +64 -0
  89. package/dist/lib/famix/src/model/famix/invocation.js +54 -0
  90. package/dist/lib/famix/src/model/famix/method.js +67 -0
  91. package/dist/lib/famix/src/model/famix/module.js +60 -0
  92. package/dist/lib/famix/src/model/famix/named_entity.js +78 -0
  93. package/dist/lib/famix/src/model/famix/parameter.js +25 -0
  94. package/dist/lib/famix/src/model/famix/parameterConcretisation.js +44 -0
  95. package/dist/lib/famix/src/model/famix/parameter_concretisation.js +44 -0
  96. package/dist/lib/famix/src/model/famix/parameter_type.js +45 -0
  97. package/dist/lib/famix/src/model/famix/parametricArrowFunction.js +29 -0
  98. package/dist/lib/famix/src/model/famix/parametric_arrow_function.js +31 -0
  99. package/dist/lib/famix/src/model/famix/parametric_class.js +44 -0
  100. package/dist/lib/famix/src/model/famix/parametric_function.js +31 -0
  101. package/dist/lib/famix/src/model/famix/parametric_interface.js +44 -0
  102. package/dist/lib/famix/src/model/famix/parametric_method.js +31 -0
  103. package/dist/lib/famix/src/model/famix/primitive_type.js +17 -0
  104. package/dist/lib/famix/src/model/famix/property.js +73 -0
  105. package/dist/lib/famix/src/model/famix/reference.js +33 -0
  106. package/dist/lib/famix/src/model/famix/scoping_entity.js +36 -0
  107. package/dist/lib/famix/src/model/famix/script_entity.js +29 -0
  108. package/dist/lib/famix/src/model/famix/source_anchor.js +27 -0
  109. package/dist/lib/famix/src/model/famix/source_language.js +35 -0
  110. package/dist/lib/famix/src/model/famix/sourced_entity.js +60 -0
  111. package/dist/lib/famix/src/model/famix/structural_entity.js +39 -0
  112. package/dist/lib/famix/src/model/famix/text_anchor.js +38 -0
  113. package/dist/lib/famix/src/model/famix/type.js +73 -0
  114. package/dist/lib/famix/src/model/famix/variable.js +24 -0
  115. package/dist/lib/ts-complex/cyclomatic-service.js +1 -1
  116. package/dist/refactorer/refactor-getter-setter.js +18 -8
  117. package/dist/ts2famix-cli-wrapper.js +18 -8
  118. package/dist/ts2famix-cli.js +18 -8
  119. package/dist/ts2famix-tsconfig.js +18 -8
  120. package/doc-uml/famix-typescript-model.puml +607 -607
  121. package/eslint.config.mjs +28 -0
  122. package/fqn-model.json +1 -0
  123. package/iterateGenericTypes.ts +69 -0
  124. package/out/class-diagram/class-diagram.svg +1 -0
  125. package/package.json +70 -66
  126. package/sample.json +1 -0
  127. package/sample.ts +1 -0
  128. package/src/analyze.ts +120 -120
  129. package/src/analyze_functions/process_functions.ts +1040 -1019
  130. package/src/famix_functions/EntityDictionary.ts +2016 -1593
  131. package/src/famix_functions/helpers_creation.ts +135 -135
  132. package/src/fqn.ts +50 -16
  133. package/src/generate_uml.sh +20 -20
  134. package/src/lib/famix/License.md +22 -22
  135. package/src/lib/famix/famix_JSON_exporter.ts +56 -56
  136. package/src/lib/famix/famix_base_element.ts +22 -22
  137. package/src/lib/famix/famix_repository.ts +278 -243
  138. package/src/lib/famix/index.ts +8 -8
  139. package/src/lib/famix/model/famix/access.ts +50 -50
  140. package/src/lib/famix/model/famix/accessor.ts +15 -15
  141. package/src/lib/famix/model/famix/alias.ts +39 -39
  142. package/src/lib/famix/model/famix/arrow_function.ts +15 -15
  143. package/src/lib/famix/model/famix/behavioral_entity.ts +97 -97
  144. package/src/lib/famix/model/famix/class.ts +85 -85
  145. package/src/lib/famix/model/famix/comment.ts +47 -47
  146. package/src/lib/famix/model/famix/concretisation.ts +40 -40
  147. package/src/lib/famix/model/famix/container_entity.ts +160 -160
  148. package/src/lib/famix/model/famix/decorator.ts +37 -37
  149. package/src/lib/famix/model/famix/entity.ts +15 -15
  150. package/src/lib/famix/model/famix/enum.ts +30 -30
  151. package/src/lib/famix/model/famix/enum_value.ts +28 -28
  152. package/src/lib/famix/model/famix/function.ts +15 -15
  153. package/src/lib/famix/model/famix/import_clause.ts +51 -51
  154. package/src/lib/famix/model/famix/index.ts +41 -41
  155. package/src/lib/famix/model/famix/indexed_file_anchor.ts +46 -46
  156. package/src/lib/famix/model/famix/inheritance.ts +40 -40
  157. package/src/lib/famix/model/famix/interface.ts +75 -75
  158. package/src/lib/famix/model/famix/invocation.ts +65 -65
  159. package/src/lib/famix/model/famix/method.ts +89 -89
  160. package/src/lib/famix/model/famix/module.ts +71 -71
  161. package/src/lib/famix/model/famix/named_entity.ts +95 -95
  162. package/src/lib/famix/model/famix/parameter.ts +28 -28
  163. package/src/lib/famix/model/famix/parameter_concretisation.ts +51 -51
  164. package/src/lib/famix/model/famix/parameter_type.ts +58 -58
  165. package/src/lib/famix/model/famix/parametric_arrow_function.ts +32 -32
  166. package/src/lib/famix/model/famix/parametric_class.ts +49 -49
  167. package/src/lib/famix/model/famix/parametric_function.ts +32 -32
  168. package/src/lib/famix/model/famix/parametric_interface.ts +49 -49
  169. package/src/lib/famix/model/famix/parametric_method.ts +32 -32
  170. package/src/lib/famix/model/famix/primitive_type.ts +15 -15
  171. package/src/lib/famix/model/famix/property.ts +94 -94
  172. package/src/lib/famix/model/famix/reference.ts +40 -40
  173. package/src/lib/famix/model/famix/scoping_entity.ts +35 -35
  174. package/src/lib/famix/model/famix/script_entity.ts +34 -34
  175. package/src/lib/famix/model/famix/source_anchor.ts +30 -30
  176. package/src/lib/famix/model/famix/source_language.ts +35 -35
  177. package/src/lib/famix/model/famix/sourced_entity.ts +70 -70
  178. package/src/lib/famix/model/famix/structural_entity.ts +43 -43
  179. package/src/lib/famix/model/famix/type.ts +87 -87
  180. package/src/lib/famix/model/famix/variable.ts +27 -27
  181. package/src/lib/famix/package.json +28 -28
  182. package/src/lib/ts-complex/cyclomatic-service.ts +83 -83
  183. package/src/refactorer/refactor-getter-setter.ts +140 -140
  184. package/src/ts2famix-cli-wrapper.ts +21 -21
  185. package/src/ts2famix-cli.ts +60 -60
  186. package/stats.txt +3091 -0
  187. package/tabby-debug-output.txt +19433 -0
  188. package/ts2famix.log +22656 -0
  189. package/tsconfig.check-tests.json +14 -14
  190. package/tsconfig.json +72 -72
  191. package/validate-references.js +103 -0
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" contentStyleType="text/css" height="8423px" preserveAspectRatio="none" style="width:8489px;height:8423px;background:#FFFFFF;" version="1.1" viewBox="0 0 8489 8423" width="8489px" zoomAndPan="magnify"><defs/><g><!--class FamixJSONExporter--><g id="elem_FamixJSONExporter"><rect codeLine="1" fill="#F1F1F1" height="136.0469" id="FamixJSONExporter" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="327" x="4008.41" y="1277"/><ellipse cx="4105.16" cy="1293" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M4107.9256,1288.875 Q4108.0819,1288.6563 4108.2694,1288.5469 Q4108.4569,1288.4375 4108.6756,1288.4375 Q4109.0506,1288.4375 4109.285,1288.7031 Q4109.5194,1288.9531 4109.5194,1289.5625 L4109.5194,1291.0156 Q4109.5194,1291.625 4109.285,1291.8906 Q4109.0506,1292.1563 4108.6756,1292.1563 Q4108.3319,1292.1563 4108.1288,1291.9531 Q4107.9256,1291.7656 4107.8163,1291.25 Q4107.7694,1290.8906 4107.5819,1290.7031 Q4107.2538,1290.3281 4106.6444,1290.1094 Q4106.035,1289.8906 4105.41,1289.8906 Q4104.6444,1289.8906 4104.0038,1290.2188 Q4103.3788,1290.5469 4102.8788,1291.2969 Q4102.3944,1292.0469 4102.3944,1293.0781 L4102.3944,1294.1719 Q4102.3944,1295.4063 4103.285,1296.2344 Q4104.1756,1297.0469 4105.7694,1297.0469 Q4106.7069,1297.0469 4107.3631,1296.7969 Q4107.7538,1296.6406 4108.1756,1296.2031 Q4108.4413,1295.9375 4108.5819,1295.8594 Q4108.7381,1295.7813 4108.9413,1295.7813 Q4109.2694,1295.7813 4109.5194,1296.0469 Q4109.785,1296.2969 4109.785,1296.6406 Q4109.785,1296.9844 4109.4413,1297.3906 Q4108.9413,1297.9688 4108.1444,1298.2969 Q4107.0663,1298.75 4105.7694,1298.75 Q4104.2538,1298.75 4103.0506,1298.125 Q4102.0663,1297.625 4101.3788,1296.5625 Q4100.6913,1295.4844 4100.6913,1294.2031 L4100.6913,1293.0469 Q4100.6913,1291.7188 4101.3006,1290.5781 Q4101.9256,1289.4219 4103.0194,1288.8125 Q4104.1131,1288.1875 4105.3475,1288.1875 Q4106.0819,1288.1875 4106.7225,1288.3594 Q4107.3788,1288.5156 4107.9256,1288.875 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="125" x="4125.66" y="1298.7285">FamixJSONExporter</text><line style="stroke:#181818;stroke-width:0.5;" x1="4009.41" x2="4334.41" y1="1309" y2="1309"/><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="4016.41" y="1320.3047"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="178" x="4028.41" y="1327.5332">element: FamixBaseElement</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="4016.41" y="1337.9141"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="102" x="4028.41" y="1345.1426">bufferArray: any</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="4016.41" y="1355.5234"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="115" x="4028.41" y="1362.752">FamixPrefix: string</text><line style="stroke:#181818;stroke-width:0.5;" x1="4009.41" x2="4334.41" y1="1369.8281" y2="1369.8281"/><ellipse cx="4019.41" cy="1384.1328" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="301" x="4028.41" y="1388.3613">addProperty(name: string, prop: unknown): void</text><ellipse cx="4019.41" cy="1401.7422" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="4028.41" y="1405.9707">getJSON(): string</text></g><!--class FamixBaseElement--><g id="elem_FamixBaseElement"><rect codeLine="8" fill="#F1F1F1" height="100.8281" id="FamixBaseElement" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="414" x="2095.91" y="1755"/><ellipse cx="2238.66" cy="1771" fill="#A9DCDF" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M2240.8475,1772.7656 L2236.7069,1772.7656 L2236.285,1773.7969 L2236.7069,1773.7969 Q2237.3163,1773.7969 2237.5819,1774.0313 Q2237.8475,1774.2656 2237.8475,1774.6563 Q2237.8475,1775.0313 2237.5819,1775.2656 Q2237.3163,1775.5 2236.7069,1775.5 L2234.41,1775.5 Q2233.8006,1775.5 2233.5506,1775.2656 Q2233.285,1775.0313 2233.285,1774.6406 Q2233.285,1774.2656 2233.5663,1774.0313 Q2233.8319,1773.7813 2234.4569,1773.7969 L2237.1288,1767.1406 L2236.0194,1767.1406 Q2235.41,1767.1406 2235.1444,1766.9063 Q2234.8788,1766.6719 2234.8788,1766.2813 Q2234.8788,1765.9063 2235.1444,1765.6719 Q2235.41,1765.4375 2236.0194,1765.4375 L2239.6913,1765.4375 L2243.0819,1773.7969 Q2243.6756,1773.7969 2243.8631,1773.9375 Q2244.2538,1774.2031 2244.2538,1774.6563 Q2244.2538,1775.0313 2243.9881,1775.2656 Q2243.7381,1775.5 2243.1288,1775.5 L2240.8319,1775.5 Q2240.2225,1775.5 2239.9569,1775.2656 Q2239.6913,1775.0313 2239.6913,1774.6406 Q2239.6913,1774.2656 2239.9569,1774.0313 Q2240.2225,1773.7969 2240.8319,1773.7969 L2241.2538,1773.7969 L2240.8475,1772.7656 Z M2240.1288,1771.0625 L2238.7694,1767.6875 L2237.3944,1771.0625 L2240.1288,1771.0625 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" font-style="italic" lengthAdjust="spacing" textLength="120" x="2259.16" y="1776.7285">FamixBaseElement</text><line style="stroke:#181818;stroke-width:0.5;" x1="2096.91" x2="2508.91" y1="1787" y2="1787"/><ellipse cx="2106.91" cy="1801.3047" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="67" x="2115.91" y="1805.5332">id: number</text><line style="stroke:#181818;stroke-width:0.5;" x1="2096.91" x2="2508.91" y1="1812.6094" y2="1812.6094"/><ellipse cx="2106.91" cy="1826.9141" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" font-style="italic" lengthAdjust="spacing" textLength="110" x="2115.91" y="1831.1426">getJSON(): string</text><ellipse cx="2106.91" cy="1844.5234" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="388" x="2115.91" y="1848.752">addPropertiesToExporter(exporter: FamixJSONExporter): void</text></g><!--class Entity--><g id="elem_Entity"><rect codeLine="13" fill="#F1F1F1" height="83.2188" id="Entity" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="414" x="1929.91" y="1916"/><ellipse cx="2115.16" cy="1932" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M2117.9256,1927.875 Q2118.0819,1927.6563 2118.2694,1927.5469 Q2118.4569,1927.4375 2118.6756,1927.4375 Q2119.0506,1927.4375 2119.285,1927.7031 Q2119.5194,1927.9531 2119.5194,1928.5625 L2119.5194,1930.0156 Q2119.5194,1930.625 2119.285,1930.8906 Q2119.0506,1931.1563 2118.6756,1931.1563 Q2118.3319,1931.1563 2118.1288,1930.9531 Q2117.9256,1930.7656 2117.8163,1930.25 Q2117.7694,1929.8906 2117.5819,1929.7031 Q2117.2538,1929.3281 2116.6444,1929.1094 Q2116.035,1928.8906 2115.41,1928.8906 Q2114.6444,1928.8906 2114.0038,1929.2188 Q2113.3788,1929.5469 2112.8788,1930.2969 Q2112.3944,1931.0469 2112.3944,1932.0781 L2112.3944,1933.1719 Q2112.3944,1934.4063 2113.285,1935.2344 Q2114.1756,1936.0469 2115.7694,1936.0469 Q2116.7069,1936.0469 2117.3631,1935.7969 Q2117.7538,1935.6406 2118.1756,1935.2031 Q2118.4413,1934.9375 2118.5819,1934.8594 Q2118.7381,1934.7813 2118.9413,1934.7813 Q2119.2694,1934.7813 2119.5194,1935.0469 Q2119.785,1935.2969 2119.785,1935.6406 Q2119.785,1935.9844 2119.4413,1936.3906 Q2118.9413,1936.9688 2118.1444,1937.2969 Q2117.0663,1937.75 2115.7694,1937.75 Q2114.2538,1937.75 2113.0506,1937.125 Q2112.0663,1936.625 2111.3788,1935.5625 Q2110.6913,1934.4844 2110.6913,1933.2031 L2110.6913,1932.0469 Q2110.6913,1930.7188 2111.3006,1929.5781 Q2111.9256,1928.4219 2113.0194,1927.8125 Q2114.1131,1927.1875 2115.3475,1927.1875 Q2116.0819,1927.1875 2116.7225,1927.3594 Q2117.3788,1927.5156 2117.9256,1927.875 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="35" x="2135.66" y="1937.7285">Entity</text><line style="stroke:#181818;stroke-width:0.5;" x1="1930.91" x2="2342.91" y1="1948" y2="1948"/><line style="stroke:#181818;stroke-width:0.5;" x1="1930.91" x2="2342.91" y1="1956" y2="1956"/><ellipse cx="1940.91" cy="1970.3047" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="1949.91" y="1974.5332">getJSON(): string</text><ellipse cx="1940.91" cy="1987.9141" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="388" x="1949.91" y="1992.1426">addPropertiesToExporter(exporter: FamixJSONExporter): void</text></g><!--class SourceLanguage--><g id="elem_SourceLanguage"><rect codeLine="17" fill="#F1F1F1" height="153.6563" id="SourceLanguage" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="414" x="2213.91" y="2103"/><ellipse cx="2362.16" cy="2119" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M2364.9256,2114.875 Q2365.0819,2114.6563 2365.2694,2114.5469 Q2365.4569,2114.4375 2365.6756,2114.4375 Q2366.0506,2114.4375 2366.285,2114.7031 Q2366.5194,2114.9531 2366.5194,2115.5625 L2366.5194,2117.0156 Q2366.5194,2117.625 2366.285,2117.8906 Q2366.0506,2118.1563 2365.6756,2118.1563 Q2365.3319,2118.1563 2365.1288,2117.9531 Q2364.9256,2117.7656 2364.8163,2117.25 Q2364.7694,2116.8906 2364.5819,2116.7031 Q2364.2538,2116.3281 2363.6444,2116.1094 Q2363.035,2115.8906 2362.41,2115.8906 Q2361.6444,2115.8906 2361.0038,2116.2188 Q2360.3788,2116.5469 2359.8788,2117.2969 Q2359.3944,2118.0469 2359.3944,2119.0781 L2359.3944,2120.1719 Q2359.3944,2121.4063 2360.285,2122.2344 Q2361.1756,2123.0469 2362.7694,2123.0469 Q2363.7069,2123.0469 2364.3631,2122.7969 Q2364.7538,2122.6406 2365.1756,2122.2031 Q2365.4413,2121.9375 2365.5819,2121.8594 Q2365.7381,2121.7813 2365.9413,2121.7813 Q2366.2694,2121.7813 2366.5194,2122.0469 Q2366.785,2122.2969 2366.785,2122.6406 Q2366.785,2122.9844 2366.4413,2123.3906 Q2365.9413,2123.9688 2365.1444,2124.2969 Q2364.0663,2124.75 2362.7694,2124.75 Q2361.2538,2124.75 2360.0506,2124.125 Q2359.0663,2123.625 2358.3788,2122.5625 Q2357.6913,2121.4844 2357.6913,2120.2031 L2357.6913,2119.0469 Q2357.6913,2117.7188 2358.3006,2116.5781 Q2358.9256,2115.4219 2360.0194,2114.8125 Q2361.1131,2114.1875 2362.3475,2114.1875 Q2363.0819,2114.1875 2363.7225,2114.3594 Q2364.3788,2114.5156 2364.9256,2114.875 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="109" x="2382.66" y="2124.7285">SourceLanguage</text><line style="stroke:#181818;stroke-width:0.5;" x1="2214.91" x2="2626.91" y1="2135" y2="2135"/><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="2221.91" y="2146.3047"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="238" x="2233.91" y="2153.5332">_sourcedEntities: Set&lt;SourcedEntity&gt;</text><ellipse cx="2224.91" cy="2166.9141" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="78" x="2233.91" y="2171.1426">name: string</text><ellipse cx="2224.91" cy="2184.5234" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="230" x="2233.91" y="2188.752">sourcedEntities: Set&lt;SourcedEntity&gt;</text><line style="stroke:#181818;stroke-width:0.5;" x1="2214.91" x2="2626.91" y1="2195.8281" y2="2195.8281"/><ellipse cx="2224.91" cy="2210.1328" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="338" x="2233.91" y="2214.3613">addSourcedEntity(sourcedEntity: SourcedEntity): void</text><ellipse cx="2224.91" cy="2227.7422" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="2233.91" y="2231.9707">getJSON(): string</text><ellipse cx="2224.91" cy="2245.3516" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="388" x="2233.91" y="2249.5801">addPropertiesToExporter(exporter: FamixJSONExporter): void</text></g><!--class Comment--><g id="elem_Comment"><rect codeLine="25" fill="#F1F1F1" height="241.7031" id="Comment" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="414" x="2568.91" y="2716"/><ellipse cx="2741.66" cy="2732" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M2744.4256,2727.875 Q2744.5819,2727.6563 2744.7694,2727.5469 Q2744.9569,2727.4375 2745.1756,2727.4375 Q2745.5506,2727.4375 2745.785,2727.7031 Q2746.0194,2727.9531 2746.0194,2728.5625 L2746.0194,2730.0156 Q2746.0194,2730.625 2745.785,2730.8906 Q2745.5506,2731.1563 2745.1756,2731.1563 Q2744.8319,2731.1563 2744.6288,2730.9531 Q2744.4256,2730.7656 2744.3163,2730.25 Q2744.2694,2729.8906 2744.0819,2729.7031 Q2743.7538,2729.3281 2743.1444,2729.1094 Q2742.535,2728.8906 2741.91,2728.8906 Q2741.1444,2728.8906 2740.5038,2729.2188 Q2739.8788,2729.5469 2739.3788,2730.2969 Q2738.8944,2731.0469 2738.8944,2732.0781 L2738.8944,2733.1719 Q2738.8944,2734.4063 2739.785,2735.2344 Q2740.6756,2736.0469 2742.2694,2736.0469 Q2743.2069,2736.0469 2743.8631,2735.7969 Q2744.2538,2735.6406 2744.6756,2735.2031 Q2744.9413,2734.9375 2745.0819,2734.8594 Q2745.2381,2734.7813 2745.4413,2734.7813 Q2745.7694,2734.7813 2746.0194,2735.0469 Q2746.285,2735.2969 2746.285,2735.6406 Q2746.285,2735.9844 2745.9413,2736.3906 Q2745.4413,2736.9688 2744.6444,2737.2969 Q2743.5663,2737.75 2742.2694,2737.75 Q2740.7538,2737.75 2739.5506,2737.125 Q2738.5663,2736.625 2737.8788,2735.5625 Q2737.1913,2734.4844 2737.1913,2733.2031 L2737.1913,2732.0469 Q2737.1913,2730.7188 2737.8006,2729.5781 Q2738.4256,2728.4219 2739.5194,2727.8125 Q2740.6131,2727.1875 2741.8475,2727.1875 Q2742.5819,2727.1875 2743.2225,2727.3594 Q2743.8788,2727.5156 2744.4256,2727.875 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="60" x="2762.16" y="2737.7285">Comment</text><line style="stroke:#181818;stroke-width:0.5;" x1="2569.91" x2="2981.91" y1="2748" y2="2748"/><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="2576.91" y="2759.3047"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="117" x="2588.91" y="2766.5332">_isJSDoc: boolean</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="2576.91" y="2776.9141"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="163" x="2588.91" y="2784.1426">_container: SourcedEntity</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="2576.91" y="2794.5234"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="98" x="2588.91" y="2801.752">_content: string</text><ellipse cx="2579.91" cy="2815.1328" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="109" x="2588.91" y="2819.3613">isJSDoc: boolean</text><ellipse cx="2579.91" cy="2832.7422" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="109" x="2588.91" y="2836.9707">isJSDoc: boolean</text><ellipse cx="2579.91" cy="2850.3516" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="155" x="2588.91" y="2854.5801">container: SourcedEntity</text><ellipse cx="2579.91" cy="2867.9609" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="155" x="2588.91" y="2872.1895">container: SourcedEntity</text><ellipse cx="2579.91" cy="2885.5703" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="90" x="2588.91" y="2889.7988">content: string</text><ellipse cx="2579.91" cy="2903.1797" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="90" x="2588.91" y="2907.4082">content: string</text><line style="stroke:#181818;stroke-width:0.5;" x1="2569.91" x2="2981.91" y1="2914.4844" y2="2914.4844"/><ellipse cx="2579.91" cy="2928.7891" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="2588.91" y="2933.0176">getJSON(): string</text><ellipse cx="2579.91" cy="2946.3984" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="388" x="2588.91" y="2950.627">addPropertiesToExporter(exporter: FamixJSONExporter): void</text></g><!--class SourcedEntity--><g id="elem_SourcedEntity"><rect codeLine="45" fill="#F1F1F1" height="294.5313" id="SourcedEntity" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="414" x="2213.91" y="2361"/><ellipse cx="2372.66" cy="2377" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M2375.4256,2372.875 Q2375.5819,2372.6563 2375.7694,2372.5469 Q2375.9569,2372.4375 2376.1756,2372.4375 Q2376.5506,2372.4375 2376.785,2372.7031 Q2377.0194,2372.9531 2377.0194,2373.5625 L2377.0194,2375.0156 Q2377.0194,2375.625 2376.785,2375.8906 Q2376.5506,2376.1563 2376.1756,2376.1563 Q2375.8319,2376.1563 2375.6288,2375.9531 Q2375.4256,2375.7656 2375.3163,2375.25 Q2375.2694,2374.8906 2375.0819,2374.7031 Q2374.7538,2374.3281 2374.1444,2374.1094 Q2373.535,2373.8906 2372.91,2373.8906 Q2372.1444,2373.8906 2371.5038,2374.2188 Q2370.8788,2374.5469 2370.3788,2375.2969 Q2369.8944,2376.0469 2369.8944,2377.0781 L2369.8944,2378.1719 Q2369.8944,2379.4063 2370.785,2380.2344 Q2371.6756,2381.0469 2373.2694,2381.0469 Q2374.2069,2381.0469 2374.8631,2380.7969 Q2375.2538,2380.6406 2375.6756,2380.2031 Q2375.9413,2379.9375 2376.0819,2379.8594 Q2376.2381,2379.7813 2376.4413,2379.7813 Q2376.7694,2379.7813 2377.0194,2380.0469 Q2377.285,2380.2969 2377.285,2380.6406 Q2377.285,2380.9844 2376.9413,2381.3906 Q2376.4413,2381.9688 2375.6444,2382.2969 Q2374.5663,2382.75 2373.2694,2382.75 Q2371.7538,2382.75 2370.5506,2382.125 Q2369.5663,2381.625 2368.8788,2380.5625 Q2368.1913,2379.4844 2368.1913,2378.2031 L2368.1913,2377.0469 Q2368.1913,2375.7188 2368.8006,2374.5781 Q2369.4256,2373.4219 2370.5194,2372.8125 Q2371.6131,2372.1875 2372.8475,2372.1875 Q2373.5819,2372.1875 2374.2225,2372.3594 Q2374.8788,2372.5156 2375.4256,2372.875 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="88" x="2393.16" y="2382.7285">SourcedEntity</text><line style="stroke:#181818;stroke-width:0.5;" x1="2214.91" x2="2626.91" y1="2393" y2="2393"/><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="2221.91" y="2404.3047"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="106" x="2233.91" y="2411.5332">_isStub: boolean</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="2221.91" y="2421.9141"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="194" x="2233.91" y="2429.1426">_sourceAnchor: SourceAnchor</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="2221.91" y="2439.5234"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="177" x="2233.91" y="2446.752">_comments: Set&lt;Comment&gt;</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="2221.91" y="2457.1328"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="289" x="2233.91" y="2464.3613">_declaredSourceLanguage: SourceLanguage</text><ellipse cx="2224.91" cy="2477.7422" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="98" x="2233.91" y="2481.9707">isStub: boolean</text><ellipse cx="2224.91" cy="2495.3516" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="98" x="2233.91" y="2499.5801">isStub: boolean</text><ellipse cx="2224.91" cy="2512.9609" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="186" x="2233.91" y="2517.1895">sourceAnchor: SourceAnchor</text><ellipse cx="2224.91" cy="2530.5703" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="186" x="2233.91" y="2534.7988">sourceAnchor: SourceAnchor</text><ellipse cx="2224.91" cy="2548.1797" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="169" x="2233.91" y="2552.4082">comments: Set&lt;Comment&gt;</text><ellipse cx="2224.91" cy="2565.7891" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="281" x="2233.91" y="2570.0176">declaredSourceLanguage: SourceLanguage</text><ellipse cx="2224.91" cy="2583.3984" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="281" x="2233.91" y="2587.627">declaredSourceLanguage: SourceLanguage</text><line style="stroke:#181818;stroke-width:0.5;" x1="2214.91" x2="2626.91" y1="2594.7031" y2="2594.7031"/><ellipse cx="2224.91" cy="2609.0078" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="253" x="2233.91" y="2613.2363">addComment(comment: Comment): void</text><ellipse cx="2224.91" cy="2626.6172" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="2233.91" y="2630.8457">getJSON(): string</text><ellipse cx="2224.91" cy="2644.2266" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="388" x="2233.91" y="2648.4551">addPropertiesToExporter(exporter: FamixJSONExporter): void</text></g><!--class SourceAnchor--><g id="elem_SourceAnchor"><rect codeLine="38" fill="#F1F1F1" height="136.0469" id="SourceAnchor" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="414" x="2119.91" y="2769"/><ellipse cx="2277.66" cy="2785" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M2280.4256,2780.875 Q2280.5819,2780.6563 2280.7694,2780.5469 Q2280.9569,2780.4375 2281.1756,2780.4375 Q2281.5506,2780.4375 2281.785,2780.7031 Q2282.0194,2780.9531 2282.0194,2781.5625 L2282.0194,2783.0156 Q2282.0194,2783.625 2281.785,2783.8906 Q2281.5506,2784.1563 2281.1756,2784.1563 Q2280.8319,2784.1563 2280.6288,2783.9531 Q2280.4256,2783.7656 2280.3163,2783.25 Q2280.2694,2782.8906 2280.0819,2782.7031 Q2279.7538,2782.3281 2279.1444,2782.1094 Q2278.535,2781.8906 2277.91,2781.8906 Q2277.1444,2781.8906 2276.5038,2782.2188 Q2275.8788,2782.5469 2275.3788,2783.2969 Q2274.8944,2784.0469 2274.8944,2785.0781 L2274.8944,2786.1719 Q2274.8944,2787.4063 2275.785,2788.2344 Q2276.6756,2789.0469 2278.2694,2789.0469 Q2279.2069,2789.0469 2279.8631,2788.7969 Q2280.2538,2788.6406 2280.6756,2788.2031 Q2280.9413,2787.9375 2281.0819,2787.8594 Q2281.2381,2787.7813 2281.4413,2787.7813 Q2281.7694,2787.7813 2282.0194,2788.0469 Q2282.285,2788.2969 2282.285,2788.6406 Q2282.285,2788.9844 2281.9413,2789.3906 Q2281.4413,2789.9688 2280.6444,2790.2969 Q2279.5663,2790.75 2278.2694,2790.75 Q2276.7538,2790.75 2275.5506,2790.125 Q2274.5663,2789.625 2273.8788,2788.5625 Q2273.1913,2787.4844 2273.1913,2786.2031 L2273.1913,2785.0469 Q2273.1913,2783.7188 2273.8006,2782.5781 Q2274.4256,2781.4219 2275.5194,2780.8125 Q2276.6131,2780.1875 2277.8475,2780.1875 Q2278.5819,2780.1875 2279.2225,2780.3594 Q2279.8788,2780.5156 2280.4256,2780.875 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="90" x="2298.16" y="2790.7285">SourceAnchor</text><line style="stroke:#181818;stroke-width:0.5;" x1="2120.91" x2="2532.91" y1="2801" y2="2801"/><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="2127.91" y="2812.3047"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="154" x="2139.91" y="2819.5332">_element: SourcedEntity</text><ellipse cx="2130.91" cy="2832.9141" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="146" x="2139.91" y="2837.1426">element: SourcedEntity</text><ellipse cx="2130.91" cy="2850.5234" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="146" x="2139.91" y="2854.752">element: SourcedEntity</text><line style="stroke:#181818;stroke-width:0.5;" x1="2120.91" x2="2532.91" y1="2861.8281" y2="2861.8281"/><ellipse cx="2130.91" cy="2876.1328" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="2139.91" y="2880.3613">getJSON(): string</text><ellipse cx="2130.91" cy="2893.7422" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="388" x="2139.91" y="2897.9707">addPropertiesToExporter(exporter: FamixJSONExporter): void</text></g><!--class ScopingEntity--><g id="elem_ScopingEntity"><rect codeLine="61" fill="#F1F1F1" height="136.0469" id="ScopingEntity" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="414" x="599.91" y="8032"/><ellipse cx="759.66" cy="8048" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M762.4256,8043.875 Q762.5819,8043.6563 762.7694,8043.5469 Q762.9569,8043.4375 763.1756,8043.4375 Q763.5506,8043.4375 763.785,8043.7031 Q764.0194,8043.9531 764.0194,8044.5625 L764.0194,8046.0156 Q764.0194,8046.625 763.785,8046.8906 Q763.5506,8047.1563 763.1756,8047.1563 Q762.8319,8047.1563 762.6288,8046.9531 Q762.4256,8046.7656 762.3163,8046.25 Q762.2694,8045.8906 762.0819,8045.7031 Q761.7538,8045.3281 761.1444,8045.1094 Q760.535,8044.8906 759.91,8044.8906 Q759.1444,8044.8906 758.5038,8045.2188 Q757.8788,8045.5469 757.3788,8046.2969 Q756.8944,8047.0469 756.8944,8048.0781 L756.8944,8049.1719 Q756.8944,8050.4063 757.785,8051.2344 Q758.6756,8052.0469 760.2694,8052.0469 Q761.2069,8052.0469 761.8631,8051.7969 Q762.2538,8051.6406 762.6756,8051.2031 Q762.9413,8050.9375 763.0819,8050.8594 Q763.2381,8050.7813 763.4413,8050.7813 Q763.7694,8050.7813 764.0194,8051.0469 Q764.285,8051.2969 764.285,8051.6406 Q764.285,8051.9844 763.9413,8052.3906 Q763.4413,8052.9688 762.6444,8053.2969 Q761.5663,8053.75 760.2694,8053.75 Q758.7538,8053.75 757.5506,8053.125 Q756.5663,8052.625 755.8788,8051.5625 Q755.1913,8050.4844 755.1913,8049.2031 L755.1913,8048.0469 Q755.1913,8046.7188 755.8006,8045.5781 Q756.4256,8044.4219 757.5194,8043.8125 Q758.6131,8043.1875 759.8475,8043.1875 Q760.5819,8043.1875 761.2225,8043.3594 Q761.8788,8043.5156 762.4256,8043.875 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="86" x="780.16" y="8053.7285">ScopingEntity</text><line style="stroke:#181818;stroke-width:0.5;" x1="600.91" x2="1012.91" y1="8064" y2="8064"/><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="607.91" y="8075.3047"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="152" x="619.91" y="8082.5332">_modules: Set&lt;Module&gt;</text><ellipse cx="610.91" cy="8095.9141" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="144" x="619.91" y="8100.1426">modules: Set&lt;Module&gt;</text><line style="stroke:#181818;stroke-width:0.5;" x1="600.91" x2="1012.91" y1="8107.2188" y2="8107.2188"/><ellipse cx="610.91" cy="8121.5234" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="243" x="619.91" y="8125.752">addModule(childModule: Module): void</text><ellipse cx="610.91" cy="8139.1328" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="619.91" y="8143.3613">getJSON(): string</text><ellipse cx="610.91" cy="8156.7422" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="388" x="619.91" y="8160.9707">addPropertiesToExporter(exporter: FamixJSONExporter): void</text></g><!--class ContainerEntity--><g id="elem_ContainerEntity"><rect codeLine="382" fill="#F1F1F1" height="664.3281" id="ContainerEntity" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="454" x="2261.91" y="4400"/><ellipse cx="2436.16" cy="4416" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M2438.9256,4411.875 Q2439.0819,4411.6563 2439.2694,4411.5469 Q2439.4569,4411.4375 2439.6756,4411.4375 Q2440.0506,4411.4375 2440.285,4411.7031 Q2440.5194,4411.9531 2440.5194,4412.5625 L2440.5194,4414.0156 Q2440.5194,4414.625 2440.285,4414.8906 Q2440.0506,4415.1563 2439.6756,4415.1563 Q2439.3319,4415.1563 2439.1288,4414.9531 Q2438.9256,4414.7656 2438.8163,4414.25 Q2438.7694,4413.8906 2438.5819,4413.7031 Q2438.2538,4413.3281 2437.6444,4413.1094 Q2437.035,4412.8906 2436.41,4412.8906 Q2435.6444,4412.8906 2435.0038,4413.2188 Q2434.3788,4413.5469 2433.8788,4414.2969 Q2433.3944,4415.0469 2433.3944,4416.0781 L2433.3944,4417.1719 Q2433.3944,4418.4063 2434.285,4419.2344 Q2435.1756,4420.0469 2436.7694,4420.0469 Q2437.7069,4420.0469 2438.3631,4419.7969 Q2438.7538,4419.6406 2439.1756,4419.2031 Q2439.4413,4418.9375 2439.5819,4418.8594 Q2439.7381,4418.7813 2439.9413,4418.7813 Q2440.2694,4418.7813 2440.5194,4419.0469 Q2440.785,4419.2969 2440.785,4419.6406 Q2440.785,4419.9844 2440.4413,4420.3906 Q2439.9413,4420.9688 2439.1444,4421.2969 Q2438.0663,4421.75 2436.7694,4421.75 Q2435.2538,4421.75 2434.0506,4421.125 Q2433.0663,4420.625 2432.3788,4419.5625 Q2431.6913,4418.4844 2431.6913,4417.2031 L2431.6913,4416.0469 Q2431.6913,4414.7188 2432.3006,4413.5781 Q2432.9256,4412.4219 2434.0194,4411.8125 Q2435.1131,4411.1875 2436.3475,4411.1875 Q2437.0819,4411.1875 2437.7225,4411.3594 Q2438.3788,4411.5156 2438.9256,4411.875 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="97" x="2456.66" y="4421.7285">ContainerEntity</text><line style="stroke:#181818;stroke-width:0.5;" x1="2262.91" x2="2714.91" y1="4432" y2="4432"/><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="2269.91" y="4443.3047"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="251" x="2281.91" y="4450.5332">_parentContainerEntity: ContainerEntity</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="2269.91" y="4460.9141"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="308" x="2281.91" y="4468.1426">_childrenContainerEntities: Set&lt;ContainerEntity&gt;</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="2269.91" y="4478.5234"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="197" x="2281.91" y="4485.752">_cyclomaticComplexity: number</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="2269.91" y="4496.1328"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="198" x="2281.91" y="4503.3613">_numberOfStatements: number</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="2269.91" y="4513.7422"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="247" x="2281.91" y="4520.9707">_outgoingReferences: Set&lt;Reference&gt;</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="2269.91" y="4531.3516"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="210" x="2281.91" y="4538.5801">_numberOfLinesOfCode: number</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="2269.91" y="4548.9609"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="243" x="2281.91" y="4556.1895">_outgoingInvocations: Set&lt;Invocation&gt;</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="2269.91" y="4566.5703"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="157" x="2281.91" y="4573.7988">_accesses: Set&lt;Access&gt;</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="2269.91" y="4584.1797"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="166" x="2281.91" y="4591.4082">childrenTypes: Set&lt;Type&gt;</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="2269.91" y="4601.7891"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="284" x="2281.91" y="4609.0176">childrenFunctions: Set&lt;FamixFunctionEntity&gt;</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="2269.91" y="4619.3984"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="162" x="2281.91" y="4626.627">_variables: Set&lt;Variable&gt;</text><ellipse cx="2272.91" cy="4640.0078" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="243" x="2281.91" y="4644.2363">parentContainerEntity: ContainerEntity</text><ellipse cx="2272.91" cy="4657.6172" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="243" x="2281.91" y="4661.8457">parentContainerEntity: ContainerEntity</text><ellipse cx="2272.91" cy="4675.2266" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="300" x="2281.91" y="4679.4551">childrenContainerEntities: Set&lt;ContainerEntity&gt;</text><ellipse cx="2272.91" cy="4692.8359" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="189" x="2281.91" y="4697.0645">cyclomaticComplexity: number</text><ellipse cx="2272.91" cy="4710.4453" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="189" x="2281.91" y="4714.6738">cyclomaticComplexity: number</text><ellipse cx="2272.91" cy="4728.0547" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="190" x="2281.91" y="4732.2832">numberOfStatements: number</text><ellipse cx="2272.91" cy="4745.6641" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="190" x="2281.91" y="4749.8926">numberOfStatements: number</text><ellipse cx="2272.91" cy="4763.2734" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="239" x="2281.91" y="4767.502">outgoingReferences: Set&lt;Reference&gt;</text><ellipse cx="2272.91" cy="4780.8828" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="202" x="2281.91" y="4785.1113">numberOfLinesOfCode: number</text><ellipse cx="2272.91" cy="4798.4922" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="202" x="2281.91" y="4802.7207">numberOfLinesOfCode: number</text><ellipse cx="2272.91" cy="4816.1016" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="235" x="2281.91" y="4820.3301">outgoingInvocations: Set&lt;Invocation&gt;</text><ellipse cx="2272.91" cy="4833.7109" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="149" x="2281.91" y="4837.9395">accesses: Set&lt;Access&gt;</text><ellipse cx="2272.91" cy="4851.3203" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="111" x="2281.91" y="4855.5488">types: Set&lt;Type&gt;</text><ellipse cx="2272.91" cy="4868.9297" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="229" x="2281.91" y="4873.1582">functions: Set&lt;FamixFunctionEntity&gt;</text><ellipse cx="2272.91" cy="4886.5391" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="154" x="2281.91" y="4890.7676">variables: Set&lt;Variable&gt;</text><line style="stroke:#181818;stroke-width:0.5;" x1="2262.91" x2="2714.91" y1="4897.8438" y2="4897.8438"/><ellipse cx="2272.91" cy="4912.1484" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="428" x="2281.91" y="4916.377">addChildContainerEntity(childContainerEntity: ContainerEntity): void</text><ellipse cx="2272.91" cy="4929.7578" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="387" x="2281.91" y="4933.9863">addOutgoingReference(outgoingReference: Reference): void</text><ellipse cx="2272.91" cy="4947.3672" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="381" x="2281.91" y="4951.5957">addOutgoingInvocation(outgoingInvocation: Invocation): void</text><ellipse cx="2272.91" cy="4964.9766" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="210" x="2281.91" y="4969.2051">addAccess(access: Access): void</text><ellipse cx="2272.91" cy="4982.5859" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="201" x="2281.91" y="4986.8145">addType(childType: Type): void</text><ellipse cx="2272.91" cy="5000.1953" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="342" x="2281.91" y="5004.4238">addFunction(childFunction: FamixFunctionEntity): void</text><ellipse cx="2272.91" cy="5017.8047" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="230" x="2281.91" y="5022.0332">addVariable(variable: Variable): void</text><ellipse cx="2272.91" cy="5035.4141" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="2281.91" y="5039.6426">getJSON(): string</text><ellipse cx="2272.91" cy="5053.0234" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="388" x="2281.91" y="5057.252">addPropertiesToExporter(exporter: FamixJSONExporter): void</text></g><!--class ScriptEntity--><g id="elem_ScriptEntity"><rect codeLine="68" fill="#F1F1F1" height="188.875" id="ScriptEntity" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="414" x="197.91" y="8228"/><ellipse cx="365.16" cy="8244" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M367.9256,8239.875 Q368.0819,8239.6563 368.2694,8239.5469 Q368.4569,8239.4375 368.6756,8239.4375 Q369.0506,8239.4375 369.285,8239.7031 Q369.5194,8239.9531 369.5194,8240.5625 L369.5194,8242.0156 Q369.5194,8242.625 369.285,8242.8906 Q369.0506,8243.1563 368.6756,8243.1563 Q368.3319,8243.1563 368.1287,8242.9531 Q367.9256,8242.7656 367.8162,8242.25 Q367.7694,8241.8906 367.5819,8241.7031 Q367.2537,8241.3281 366.6444,8241.1094 Q366.035,8240.8906 365.41,8240.8906 Q364.6444,8240.8906 364.0037,8241.2188 Q363.3787,8241.5469 362.8787,8242.2969 Q362.3944,8243.0469 362.3944,8244.0781 L362.3944,8245.1719 Q362.3944,8246.4063 363.285,8247.2344 Q364.1756,8248.0469 365.7694,8248.0469 Q366.7069,8248.0469 367.3631,8247.7969 Q367.7537,8247.6406 368.1756,8247.2031 Q368.4412,8246.9375 368.5819,8246.8594 Q368.7381,8246.7813 368.9412,8246.7813 Q369.2694,8246.7813 369.5194,8247.0469 Q369.785,8247.2969 369.785,8247.6406 Q369.785,8247.9844 369.4412,8248.3906 Q368.9412,8248.9688 368.1444,8249.2969 Q367.0662,8249.75 365.7694,8249.75 Q364.2537,8249.75 363.0506,8249.125 Q362.0662,8248.625 361.3787,8247.5625 Q360.6912,8246.4844 360.6912,8245.2031 L360.6912,8244.0469 Q360.6912,8242.7188 361.3006,8241.5781 Q361.9256,8240.4219 363.0194,8239.8125 Q364.1131,8239.1875 365.3475,8239.1875 Q366.0819,8239.1875 366.7225,8239.3594 Q367.3787,8239.5156 367.9256,8239.875 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="71" x="385.66" y="8249.7285">ScriptEntity</text><line style="stroke:#181818;stroke-width:0.5;" x1="198.91" x2="610.91" y1="8260" y2="8260"/><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="205.91" y="8271.3047"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="203" x="217.91" y="8278.5332">_numberOfLinesOfText: number</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="205.91" y="8288.9141"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="197" x="217.91" y="8296.1426">_numberOfCharacters: number</text><ellipse cx="208.91" cy="8309.5234" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="195" x="217.91" y="8313.752">numberOfLinesOfText: number</text><ellipse cx="208.91" cy="8327.1328" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="195" x="217.91" y="8331.3613">numberOfLinesOfText: number</text><ellipse cx="208.91" cy="8344.7422" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="189" x="217.91" y="8348.9707">numberOfCharacters: number</text><ellipse cx="208.91" cy="8362.3516" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="189" x="217.91" y="8366.5801">numberOfCharacters: number</text><line style="stroke:#181818;stroke-width:0.5;" x1="198.91" x2="610.91" y1="8373.6563" y2="8373.6563"/><ellipse cx="208.91" cy="8387.9609" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="217.91" y="8392.1895">getJSON(): string</text><ellipse cx="208.91" cy="8405.5703" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="388" x="217.91" y="8409.7988">addPropertiesToExporter(exporter: FamixJSONExporter): void</text></g><!--class Module--><g id="elem_Module"><rect codeLine="78" fill="#F1F1F1" height="347.3594" id="Module" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="414" x="587.91" y="7572"/><ellipse cx="767.66" cy="7588" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M770.4256,7583.875 Q770.5819,7583.6563 770.7694,7583.5469 Q770.9569,7583.4375 771.1756,7583.4375 Q771.5506,7583.4375 771.785,7583.7031 Q772.0194,7583.9531 772.0194,7584.5625 L772.0194,7586.0156 Q772.0194,7586.625 771.785,7586.8906 Q771.5506,7587.1563 771.1756,7587.1563 Q770.8319,7587.1563 770.6288,7586.9531 Q770.4256,7586.7656 770.3163,7586.25 Q770.2694,7585.8906 770.0819,7585.7031 Q769.7538,7585.3281 769.1444,7585.1094 Q768.535,7584.8906 767.91,7584.8906 Q767.1444,7584.8906 766.5038,7585.2188 Q765.8788,7585.5469 765.3788,7586.2969 Q764.8944,7587.0469 764.8944,7588.0781 L764.8944,7589.1719 Q764.8944,7590.4063 765.785,7591.2344 Q766.6756,7592.0469 768.2694,7592.0469 Q769.2069,7592.0469 769.8631,7591.7969 Q770.2538,7591.6406 770.6756,7591.2031 Q770.9413,7590.9375 771.0819,7590.8594 Q771.2381,7590.7813 771.4413,7590.7813 Q771.7694,7590.7813 772.0194,7591.0469 Q772.285,7591.2969 772.285,7591.6406 Q772.285,7591.9844 771.9413,7592.3906 Q771.4413,7592.9688 770.6444,7593.2969 Q769.5663,7593.75 768.2694,7593.75 Q766.7538,7593.75 765.5506,7593.125 Q764.5663,7592.625 763.8788,7591.5625 Q763.1913,7590.4844 763.1913,7589.2031 L763.1913,7588.0469 Q763.1913,7586.7188 763.8006,7585.5781 Q764.4256,7584.4219 765.5194,7583.8125 Q766.6131,7583.1875 767.8475,7583.1875 Q768.5819,7583.1875 769.2225,7583.3594 Q769.8788,7583.5156 770.4256,7583.875 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="46" x="788.16" y="7593.7285">Module</text><line style="stroke:#181818;stroke-width:0.5;" x1="588.91" x2="1000.91" y1="7604" y2="7604"/><ellipse cx="598.91" cy="7618.3047" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="120" x="607.91" y="7622.5332">isAmbient: boolean</text><ellipse cx="598.91" cy="7635.9141" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="120" x="607.91" y="7640.1426">isAmbient: boolean</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="595.91" y="7650.5234"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="128" x="607.91" y="7657.752">_isAmbient: boolean</text><ellipse cx="598.91" cy="7671.1328" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="143" x="607.91" y="7675.3613">isNamespace: boolean</text><ellipse cx="598.91" cy="7688.7422" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="143" x="607.91" y="7692.9707">isNamespace: boolean</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="595.91" y="7703.3516"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="151" x="607.91" y="7710.5801">_isNamespace: boolean</text><ellipse cx="598.91" cy="7723.9609" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="115" x="607.91" y="7728.1895">isModule: boolean</text><ellipse cx="598.91" cy="7741.5703" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="115" x="607.91" y="7745.7988">isModule: boolean</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="595.91" y="7756.1797"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="123" x="607.91" y="7763.4082">_isModule: boolean</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="595.91" y="7773.7891"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="183" x="607.91" y="7781.0176">_parentScope: ScopingEntity</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="595.91" y="7791.3984"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="237" x="607.91" y="7798.627">_outgoingImports: Set&lt;ImportClause&gt;</text><ellipse cx="598.91" cy="7812.0078" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="175" x="607.91" y="7816.2363">parentScope: ScopingEntity</text><ellipse cx="598.91" cy="7829.6172" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="175" x="607.91" y="7833.8457">parentScope: ScopingEntity</text><ellipse cx="598.91" cy="7847.2266" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="229" x="607.91" y="7851.4551">outgoingImports: Set&lt;ImportClause&gt;</text><line style="stroke:#181818;stroke-width:0.5;" x1="588.91" x2="1000.91" y1="7858.5313" y2="7858.5313"/><ellipse cx="598.91" cy="7872.8359" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="339" x="607.91" y="7877.0645">addOutgoingImport(importClause: ImportClause): void</text><ellipse cx="598.91" cy="7890.4453" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="607.91" y="7894.6738">getJSON(): string</text><ellipse cx="598.91" cy="7908.0547" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="388" x="607.91" y="7912.2832">addPropertiesToExporter(exporter: FamixJSONExporter): void</text></g><!--class ImportClause--><g id="elem_ImportClause"><rect codeLine="97" fill="#F1F1F1" height="241.7031" id="ImportClause" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="414" x="983.91" y="7190.5"/><ellipse cx="1145.16" cy="7206.5" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M1147.9256,7202.375 Q1148.0819,7202.1563 1148.2694,7202.0469 Q1148.4569,7201.9375 1148.6756,7201.9375 Q1149.0506,7201.9375 1149.285,7202.2031 Q1149.5194,7202.4531 1149.5194,7203.0625 L1149.5194,7204.5156 Q1149.5194,7205.125 1149.285,7205.3906 Q1149.0506,7205.6563 1148.6756,7205.6563 Q1148.3319,7205.6563 1148.1287,7205.4531 Q1147.9256,7205.2656 1147.8162,7204.75 Q1147.7694,7204.3906 1147.5819,7204.2031 Q1147.2537,7203.8281 1146.6444,7203.6094 Q1146.035,7203.3906 1145.41,7203.3906 Q1144.6444,7203.3906 1144.0037,7203.7188 Q1143.3787,7204.0469 1142.8787,7204.7969 Q1142.3944,7205.5469 1142.3944,7206.5781 L1142.3944,7207.6719 Q1142.3944,7208.9063 1143.285,7209.7344 Q1144.1756,7210.5469 1145.7694,7210.5469 Q1146.7069,7210.5469 1147.3631,7210.2969 Q1147.7537,7210.1406 1148.1756,7209.7031 Q1148.4412,7209.4375 1148.5819,7209.3594 Q1148.7381,7209.2813 1148.9412,7209.2813 Q1149.2694,7209.2813 1149.5194,7209.5469 Q1149.785,7209.7969 1149.785,7210.1406 Q1149.785,7210.4844 1149.4412,7210.8906 Q1148.9412,7211.4688 1148.1444,7211.7969 Q1147.0662,7212.25 1145.7694,7212.25 Q1144.2537,7212.25 1143.0506,7211.625 Q1142.0662,7211.125 1141.3787,7210.0625 Q1140.6912,7208.9844 1140.6912,7207.7031 L1140.6912,7206.5469 Q1140.6912,7205.2188 1141.3006,7204.0781 Q1141.9256,7202.9219 1143.0194,7202.3125 Q1144.1131,7201.6875 1145.3475,7201.6875 Q1146.0819,7201.6875 1146.7225,7201.8594 Q1147.3787,7202.0156 1147.9256,7202.375 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="83" x="1165.66" y="7212.2285">ImportClause</text><line style="stroke:#181818;stroke-width:0.5;" x1="984.91" x2="1396.91" y1="7222.5" y2="7222.5"/><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="991.91" y="7233.8047"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="155" x="1003.91" y="7241.0332">_importingEntity: Module</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="991.91" y="7251.4141"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="185" x="1003.91" y="7258.6426">_importedEntity: NamedEntity</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="991.91" y="7269.0234"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="152" x="1003.91" y="7276.252">_moduleSpecifier: string</text><ellipse cx="994.91" cy="7289.6328" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="147" x="1003.91" y="7293.8613">importingEntity: Module</text><ellipse cx="994.91" cy="7307.2422" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="147" x="1003.91" y="7311.4707">importingEntity: Module</text><ellipse cx="994.91" cy="7324.8516" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="177" x="1003.91" y="7329.0801">importedEntity: NamedEntity</text><ellipse cx="994.91" cy="7342.4609" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="177" x="1003.91" y="7346.6895">importedEntity: NamedEntity</text><ellipse cx="994.91" cy="7360.0703" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="144" x="1003.91" y="7364.2988">moduleSpecifier: string</text><ellipse cx="994.91" cy="7377.6797" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="144" x="1003.91" y="7381.9082">moduleSpecifier: string</text><line style="stroke:#181818;stroke-width:0.5;" x1="984.91" x2="1396.91" y1="7388.9844" y2="7388.9844"/><ellipse cx="994.91" cy="7403.2891" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="1003.91" y="7407.5176">getJSON(): string</text><ellipse cx="994.91" cy="7420.8984" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="388" x="1003.91" y="7425.127">addPropertiesToExporter(exporter: FamixJSONExporter): void</text></g><!--class Alias--><g id="elem_Alias"><rect codeLine="110" fill="#F1F1F1" height="188.875" id="Alias" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="414" x="2041.91" y="7217"/><ellipse cx="2229.66" cy="7233" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M2232.4256,7228.875 Q2232.5819,7228.6563 2232.7694,7228.5469 Q2232.9569,7228.4375 2233.1756,7228.4375 Q2233.5506,7228.4375 2233.785,7228.7031 Q2234.0194,7228.9531 2234.0194,7229.5625 L2234.0194,7231.0156 Q2234.0194,7231.625 2233.785,7231.8906 Q2233.5506,7232.1563 2233.1756,7232.1563 Q2232.8319,7232.1563 2232.6288,7231.9531 Q2232.4256,7231.7656 2232.3163,7231.25 Q2232.2694,7230.8906 2232.0819,7230.7031 Q2231.7538,7230.3281 2231.1444,7230.1094 Q2230.535,7229.8906 2229.91,7229.8906 Q2229.1444,7229.8906 2228.5038,7230.2188 Q2227.8788,7230.5469 2227.3788,7231.2969 Q2226.8944,7232.0469 2226.8944,7233.0781 L2226.8944,7234.1719 Q2226.8944,7235.4063 2227.785,7236.2344 Q2228.6756,7237.0469 2230.2694,7237.0469 Q2231.2069,7237.0469 2231.8631,7236.7969 Q2232.2538,7236.6406 2232.6756,7236.2031 Q2232.9413,7235.9375 2233.0819,7235.8594 Q2233.2381,7235.7813 2233.4413,7235.7813 Q2233.7694,7235.7813 2234.0194,7236.0469 Q2234.285,7236.2969 2234.285,7236.6406 Q2234.285,7236.9844 2233.9413,7237.3906 Q2233.4413,7237.9688 2232.6444,7238.2969 Q2231.5663,7238.75 2230.2694,7238.75 Q2228.7538,7238.75 2227.5506,7238.125 Q2226.5663,7237.625 2225.8788,7236.5625 Q2225.1913,7235.4844 2225.1913,7234.2031 L2225.1913,7233.0469 Q2225.1913,7231.7188 2225.8006,7230.5781 Q2226.4256,7229.4219 2227.5194,7228.8125 Q2228.6131,7228.1875 2229.8475,7228.1875 Q2230.5819,7228.1875 2231.2225,7228.3594 Q2231.8788,7228.5156 2232.4256,7228.875 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="30" x="2250.16" y="7238.7285">Alias</text><line style="stroke:#181818;stroke-width:0.5;" x1="2042.91" x2="2454.91" y1="7249" y2="7249"/><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="2049.91" y="7260.3047"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="171" x="2061.91" y="7267.5332">_parentEntity: NamedEntity</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="2049.91" y="7277.9141"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="128" x="2061.91" y="7285.1426">_aliasedEntity: Type</text><ellipse cx="2052.91" cy="7298.5234" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="163" x="2061.91" y="7302.752">parentEntity: NamedEntity</text><ellipse cx="2052.91" cy="7316.1328" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="163" x="2061.91" y="7320.3613">parentEntity: NamedEntity</text><ellipse cx="2052.91" cy="7333.7422" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="120" x="2061.91" y="7337.9707">aliasedEntity: Type</text><ellipse cx="2052.91" cy="7351.3516" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="120" x="2061.91" y="7355.5801">aliasedEntity: Type</text><line style="stroke:#181818;stroke-width:0.5;" x1="2042.91" x2="2454.91" y1="7362.6563" y2="7362.6563"/><ellipse cx="2052.91" cy="7376.9609" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="2061.91" y="7381.1895">getJSON(): string</text><ellipse cx="2052.91" cy="7394.5703" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="388" x="2061.91" y="7398.7988">addPropertiesToExporter(exporter: FamixJSONExporter): void</text></g><!--class NamedEntity--><g id="elem_NamedEntity"><rect codeLine="130" fill="#F1F1F1" height="400.1875" id="NamedEntity" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="414" x="1592.91" y="6704"/><ellipse cx="1756.16" cy="6720" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M1758.9256,6715.875 Q1759.0819,6715.6563 1759.2694,6715.5469 Q1759.4569,6715.4375 1759.6756,6715.4375 Q1760.0506,6715.4375 1760.285,6715.7031 Q1760.5194,6715.9531 1760.5194,6716.5625 L1760.5194,6718.0156 Q1760.5194,6718.625 1760.285,6718.8906 Q1760.0506,6719.1563 1759.6756,6719.1563 Q1759.3319,6719.1563 1759.1287,6718.9531 Q1758.9256,6718.7656 1758.8162,6718.25 Q1758.7694,6717.8906 1758.5819,6717.7031 Q1758.2537,6717.3281 1757.6444,6717.1094 Q1757.035,6716.8906 1756.41,6716.8906 Q1755.6444,6716.8906 1755.0037,6717.2188 Q1754.3787,6717.5469 1753.8787,6718.2969 Q1753.3944,6719.0469 1753.3944,6720.0781 L1753.3944,6721.1719 Q1753.3944,6722.4063 1754.285,6723.2344 Q1755.1756,6724.0469 1756.7694,6724.0469 Q1757.7069,6724.0469 1758.3631,6723.7969 Q1758.7537,6723.6406 1759.1756,6723.2031 Q1759.4412,6722.9375 1759.5819,6722.8594 Q1759.7381,6722.7813 1759.9412,6722.7813 Q1760.2694,6722.7813 1760.5194,6723.0469 Q1760.785,6723.2969 1760.785,6723.6406 Q1760.785,6723.9844 1760.4412,6724.3906 Q1759.9412,6724.9688 1759.1444,6725.2969 Q1758.0662,6725.75 1756.7694,6725.75 Q1755.2537,6725.75 1754.0506,6725.125 Q1753.0662,6724.625 1752.3787,6723.5625 Q1751.6912,6722.4844 1751.6912,6721.2031 L1751.6912,6720.0469 Q1751.6912,6718.7188 1752.3006,6717.5781 Q1752.9256,6716.4219 1754.0194,6715.8125 Q1755.1131,6715.1875 1756.3475,6715.1875 Q1757.0819,6715.1875 1757.7225,6715.3594 Q1758.3787,6715.5156 1758.9256,6715.875 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="79" x="1776.66" y="6725.7285">NamedEntity</text><line style="stroke:#181818;stroke-width:0.5;" x1="1593.91" x2="2005.91" y1="6736" y2="6736"/><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="1600.91" y="6747.3047"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="168" x="1612.91" y="6754.5332">_fullyQualifiedName: string</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="1600.91" y="6764.9141"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="242" x="1612.91" y="6772.1426">_receivedInvocations: Set&lt;Invocation&gt;</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="1600.91" y="6782.5234"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="238" x="1612.91" y="6789.752">_incomingImports: Set&lt;ImportClause&gt;</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="1600.91" y="6800.1328"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="86" x="1612.91" y="6807.3613">_name: string</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="1600.91" y="6817.7422"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="127" x="1612.91" y="6824.9707">_aliases: Set&lt;Alias&gt;</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="1600.91" y="6835.3516"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="184" x="1612.91" y="6842.5801">_decorators: Set&lt;Decorator&gt;</text><ellipse cx="1603.91" cy="6855.9609" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="160" x="1612.91" y="6860.1895">fullyQualifiedName: string</text><ellipse cx="1603.91" cy="6873.5703" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="160" x="1612.91" y="6877.7988">fullyQualifiedName: string</text><ellipse cx="1603.91" cy="6891.1797" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="234" x="1612.91" y="6895.4082">receivedInvocations: Set&lt;Invocation&gt;</text><ellipse cx="1603.91" cy="6908.7891" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="230" x="1612.91" y="6913.0176">incomingImports: Set&lt;ImportClause&gt;</text><ellipse cx="1603.91" cy="6926.3984" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="78" x="1612.91" y="6930.627">name: string</text><ellipse cx="1603.91" cy="6944.0078" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="78" x="1612.91" y="6948.2363">name: string</text><ellipse cx="1603.91" cy="6961.6172" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="119" x="1612.91" y="6965.8457">aliases: Set&lt;Alias&gt;</text><ellipse cx="1603.91" cy="6979.2266" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="176" x="1612.91" y="6983.4551">decorators: Set&lt;Decorator&gt;</text><line style="stroke:#181818;stroke-width:0.5;" x1="1593.91" x2="2005.91" y1="6990.5313" y2="6990.5313"/><ellipse cx="1603.91" cy="7004.8359" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="381" x="1612.91" y="7009.0645">addReceivedInvocation(receivedInvocation: Invocation): void</text><ellipse cx="1603.91" cy="7022.4453" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="309" x="1612.91" y="7026.6738">addIncomingImport(anImport: ImportClause): void</text><ellipse cx="1603.91" cy="7040.0547" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="165" x="1612.91" y="7044.2832">addAlias(alias: Alias): void</text><ellipse cx="1603.91" cy="7057.6641" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="263" x="1612.91" y="7061.8926">addDecorator(decorator: Decorator): void</text><ellipse cx="1603.91" cy="7075.2734" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="1612.91" y="7079.502">getJSON(): string</text><ellipse cx="1603.91" cy="7092.8828" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="388" x="1612.91" y="7097.1113">addPropertiesToExporter(exporter: FamixJSONExporter): void</text></g><!--class Decorator--><g id="elem_Decorator"><rect codeLine="120" fill="#F1F1F1" height="188.875" id="Decorator" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="414" x="1592.91" y="7217"/><ellipse cx="1764.16" cy="7233" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M1766.9256,7228.875 Q1767.0819,7228.6563 1767.2694,7228.5469 Q1767.4569,7228.4375 1767.6756,7228.4375 Q1768.0506,7228.4375 1768.285,7228.7031 Q1768.5194,7228.9531 1768.5194,7229.5625 L1768.5194,7231.0156 Q1768.5194,7231.625 1768.285,7231.8906 Q1768.0506,7232.1563 1767.6756,7232.1563 Q1767.3319,7232.1563 1767.1287,7231.9531 Q1766.9256,7231.7656 1766.8162,7231.25 Q1766.7694,7230.8906 1766.5819,7230.7031 Q1766.2537,7230.3281 1765.6444,7230.1094 Q1765.035,7229.8906 1764.41,7229.8906 Q1763.6444,7229.8906 1763.0037,7230.2188 Q1762.3787,7230.5469 1761.8787,7231.2969 Q1761.3944,7232.0469 1761.3944,7233.0781 L1761.3944,7234.1719 Q1761.3944,7235.4063 1762.285,7236.2344 Q1763.1756,7237.0469 1764.7694,7237.0469 Q1765.7069,7237.0469 1766.3631,7236.7969 Q1766.7537,7236.6406 1767.1756,7236.2031 Q1767.4412,7235.9375 1767.5819,7235.8594 Q1767.7381,7235.7813 1767.9412,7235.7813 Q1768.2694,7235.7813 1768.5194,7236.0469 Q1768.785,7236.2969 1768.785,7236.6406 Q1768.785,7236.9844 1768.4412,7237.3906 Q1767.9412,7237.9688 1767.1444,7238.2969 Q1766.0662,7238.75 1764.7694,7238.75 Q1763.2537,7238.75 1762.0506,7238.125 Q1761.0662,7237.625 1760.3787,7236.5625 Q1759.6912,7235.4844 1759.6912,7234.2031 L1759.6912,7233.0469 Q1759.6912,7231.7188 1760.3006,7230.5781 Q1760.9256,7229.4219 1762.0194,7228.8125 Q1763.1131,7228.1875 1764.3475,7228.1875 Q1765.0819,7228.1875 1765.7225,7228.3594 Q1766.3787,7228.5156 1766.9256,7228.875 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="63" x="1784.66" y="7238.7285">Decorator</text><line style="stroke:#181818;stroke-width:0.5;" x1="1593.91" x2="2005.91" y1="7249" y2="7249"/><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="1600.91" y="7260.3047"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="181" x="1612.91" y="7267.5332">_decoratorExpression: string</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="1600.91" y="7277.9141"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="194" x="1612.91" y="7285.1426">_decoratedEntity: NamedEntity</text><ellipse cx="1603.91" cy="7298.5234" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="173" x="1612.91" y="7302.752">decoratorExpression: string</text><ellipse cx="1603.91" cy="7316.1328" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="173" x="1612.91" y="7320.3613">decoratorExpression: string</text><ellipse cx="1603.91" cy="7333.7422" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="186" x="1612.91" y="7337.9707">decoratedEntity: NamedEntity</text><ellipse cx="1603.91" cy="7351.3516" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="186" x="1612.91" y="7355.5801">decoratedEntity: NamedEntity</text><line style="stroke:#181818;stroke-width:0.5;" x1="1593.91" x2="2005.91" y1="7362.6563" y2="7362.6563"/><ellipse cx="1603.91" cy="7376.9609" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="1612.91" y="7381.1895">getJSON(): string</text><ellipse cx="1603.91" cy="7394.5703" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="388" x="1612.91" y="7398.7988">addPropertiesToExporter(exporter: FamixJSONExporter): void</text></g><!--class Parameter--><g id="elem_Parameter"><rect codeLine="152" fill="#F1F1F1" height="136.0469" id="Parameter" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="414" x="4181.91" y="5675"/><ellipse cx="4351.66" cy="5691" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M4354.4256,5686.875 Q4354.5819,5686.6563 4354.7694,5686.5469 Q4354.9569,5686.4375 4355.1756,5686.4375 Q4355.5506,5686.4375 4355.785,5686.7031 Q4356.0194,5686.9531 4356.0194,5687.5625 L4356.0194,5689.0156 Q4356.0194,5689.625 4355.785,5689.8906 Q4355.5506,5690.1563 4355.1756,5690.1563 Q4354.8319,5690.1563 4354.6288,5689.9531 Q4354.4256,5689.7656 4354.3163,5689.25 Q4354.2694,5688.8906 4354.0819,5688.7031 Q4353.7538,5688.3281 4353.1444,5688.1094 Q4352.535,5687.8906 4351.91,5687.8906 Q4351.1444,5687.8906 4350.5038,5688.2188 Q4349.8788,5688.5469 4349.3788,5689.2969 Q4348.8944,5690.0469 4348.8944,5691.0781 L4348.8944,5692.1719 Q4348.8944,5693.4063 4349.785,5694.2344 Q4350.6756,5695.0469 4352.2694,5695.0469 Q4353.2069,5695.0469 4353.8631,5694.7969 Q4354.2538,5694.6406 4354.6756,5694.2031 Q4354.9413,5693.9375 4355.0819,5693.8594 Q4355.2381,5693.7813 4355.4413,5693.7813 Q4355.7694,5693.7813 4356.0194,5694.0469 Q4356.285,5694.2969 4356.285,5694.6406 Q4356.285,5694.9844 4355.9413,5695.3906 Q4355.4413,5695.9688 4354.6444,5696.2969 Q4353.5663,5696.75 4352.2694,5696.75 Q4350.7538,5696.75 4349.5506,5696.125 Q4348.5663,5695.625 4347.8788,5694.5625 Q4347.1913,5693.4844 4347.1913,5692.2031 L4347.1913,5691.0469 Q4347.1913,5689.7188 4347.8006,5688.5781 Q4348.4256,5687.4219 4349.5194,5686.8125 Q4350.6131,5686.1875 4351.8475,5686.1875 Q4352.5819,5686.1875 4353.2225,5686.3594 Q4353.8788,5686.5156 4354.4256,5686.875 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="66" x="4372.16" y="5696.7285">Parameter</text><line style="stroke:#181818;stroke-width:0.5;" x1="4182.91" x2="4594.91" y1="5707" y2="5707"/><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="4189.91" y="5718.3047"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="194" x="4201.91" y="5725.5332">_parentEntity: BehavioralEntity</text><ellipse cx="4192.91" cy="5738.9141" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="186" x="4201.91" y="5743.1426">parentEntity: BehavioralEntity</text><ellipse cx="4192.91" cy="5756.5234" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="186" x="4201.91" y="5760.752">parentEntity: BehavioralEntity</text><line style="stroke:#181818;stroke-width:0.5;" x1="4182.91" x2="4594.91" y1="5767.8281" y2="5767.8281"/><ellipse cx="4192.91" cy="5782.1328" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="4201.91" y="5786.3613">getJSON(): string</text><ellipse cx="4192.91" cy="5799.7422" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="388" x="4201.91" y="5803.9707">addPropertiesToExporter(exporter: FamixJSONExporter): void</text></g><!--class StructuralEntity--><g id="elem_StructuralEntity"><rect codeLine="438" fill="#F1F1F1" height="188.875" id="StructuralEntity" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="414" x="3380.91" y="5426"/><ellipse cx="3535.66" cy="5442" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M3538.4256,5437.875 Q3538.5819,5437.6563 3538.7694,5437.5469 Q3538.9569,5437.4375 3539.1756,5437.4375 Q3539.5506,5437.4375 3539.785,5437.7031 Q3540.0194,5437.9531 3540.0194,5438.5625 L3540.0194,5440.0156 Q3540.0194,5440.625 3539.785,5440.8906 Q3539.5506,5441.1563 3539.1756,5441.1563 Q3538.8319,5441.1563 3538.6288,5440.9531 Q3538.4256,5440.7656 3538.3163,5440.25 Q3538.2694,5439.8906 3538.0819,5439.7031 Q3537.7538,5439.3281 3537.1444,5439.1094 Q3536.535,5438.8906 3535.91,5438.8906 Q3535.1444,5438.8906 3534.5038,5439.2188 Q3533.8788,5439.5469 3533.3788,5440.2969 Q3532.8944,5441.0469 3532.8944,5442.0781 L3532.8944,5443.1719 Q3532.8944,5444.4063 3533.785,5445.2344 Q3534.6756,5446.0469 3536.2694,5446.0469 Q3537.2069,5446.0469 3537.8631,5445.7969 Q3538.2538,5445.6406 3538.6756,5445.2031 Q3538.9413,5444.9375 3539.0819,5444.8594 Q3539.2381,5444.7813 3539.4413,5444.7813 Q3539.7694,5444.7813 3540.0194,5445.0469 Q3540.285,5445.2969 3540.285,5445.6406 Q3540.285,5445.9844 3539.9413,5446.3906 Q3539.4413,5446.9688 3538.6444,5447.2969 Q3537.5663,5447.75 3536.2694,5447.75 Q3534.7538,5447.75 3533.5506,5447.125 Q3532.5663,5446.625 3531.8788,5445.5625 Q3531.1913,5444.4844 3531.1913,5443.2031 L3531.1913,5442.0469 Q3531.1913,5440.7188 3531.8006,5439.5781 Q3532.4256,5438.4219 3533.5194,5437.8125 Q3534.6131,5437.1875 3535.8475,5437.1875 Q3536.5819,5437.1875 3537.2225,5437.3594 Q3537.8788,5437.5156 3538.4256,5437.875 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="96" x="3556.16" y="5447.7285">StructuralEntity</text><line style="stroke:#181818;stroke-width:0.5;" x1="3381.91" x2="3793.91" y1="5458" y2="5458"/><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="3388.91" y="5469.3047"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="214" x="3400.91" y="5476.5332">_incomingAccesses: Set&lt;Access&gt;</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="3388.91" y="5486.9141"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="135" x="3400.91" y="5494.1426">_declaredType: Type</text><ellipse cx="3391.91" cy="5507.5234" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="206" x="3400.91" y="5511.752">incomingAccesses: Set&lt;Access&gt;</text><ellipse cx="3391.91" cy="5525.1328" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="127" x="3400.91" y="5529.3613">declaredType: Type</text><ellipse cx="3391.91" cy="5542.7422" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="127" x="3400.91" y="5546.9707">declaredType: Type</text><line style="stroke:#181818;stroke-width:0.5;" x1="3381.91" x2="3793.91" y1="5554.0469" y2="5554.0469"/><ellipse cx="3391.91" cy="5568.3516" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="323" x="3400.91" y="5572.5801">addIncomingAccess(incomingAccess: Access): void</text><ellipse cx="3391.91" cy="5585.9609" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="3400.91" y="5590.1895">getJSON(): string</text><ellipse cx="3391.91" cy="5603.5703" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="388" x="3400.91" y="5607.7988">addPropertiesToExporter(exporter: FamixJSONExporter): void</text></g><!--class Property--><g id="elem_Property"><rect codeLine="159" fill="#F1F1F1" height="453.0156" id="Property" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="414" x="5175.91" y="7519"/><ellipse cx="5351.66" cy="7535" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M5354.4256,7530.875 Q5354.5819,7530.6563 5354.7694,7530.5469 Q5354.9569,7530.4375 5355.1756,7530.4375 Q5355.5506,7530.4375 5355.785,7530.7031 Q5356.0194,7530.9531 5356.0194,7531.5625 L5356.0194,7533.0156 Q5356.0194,7533.625 5355.785,7533.8906 Q5355.5506,7534.1563 5355.1756,7534.1563 Q5354.8319,7534.1563 5354.6288,7533.9531 Q5354.4256,7533.7656 5354.3163,7533.25 Q5354.2694,7532.8906 5354.0819,7532.7031 Q5353.7538,7532.3281 5353.1444,7532.1094 Q5352.535,7531.8906 5351.91,7531.8906 Q5351.1444,7531.8906 5350.5038,7532.2188 Q5349.8788,7532.5469 5349.3788,7533.2969 Q5348.8944,7534.0469 5348.8944,7535.0781 L5348.8944,7536.1719 Q5348.8944,7537.4063 5349.785,7538.2344 Q5350.6756,7539.0469 5352.2694,7539.0469 Q5353.2069,7539.0469 5353.8631,7538.7969 Q5354.2538,7538.6406 5354.6756,7538.2031 Q5354.9413,7537.9375 5355.0819,7537.8594 Q5355.2381,7537.7813 5355.4413,7537.7813 Q5355.7694,7537.7813 5356.0194,7538.0469 Q5356.285,7538.2969 5356.285,7538.6406 Q5356.285,7538.9844 5355.9413,7539.3906 Q5355.4413,7539.9688 5354.6444,7540.2969 Q5353.5663,7540.75 5352.2694,7540.75 Q5350.7538,7540.75 5349.5506,7540.125 Q5348.5663,7539.625 5347.8788,7538.5625 Q5347.1913,7537.4844 5347.1913,7536.2031 L5347.1913,7535.0469 Q5347.1913,7533.7188 5347.8006,7532.5781 Q5348.4256,7531.4219 5349.5194,7530.8125 Q5350.6131,7530.1875 5351.8475,7530.1875 Q5352.5819,7530.1875 5353.2225,7530.3594 Q5353.8788,7530.5156 5354.4256,7530.875 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="54" x="5372.16" y="7540.7285">Property</text><line style="stroke:#181818;stroke-width:0.5;" x1="5176.91" x2="5588.91" y1="7551" y2="7551"/><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="5183.91" y="7562.3047"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="140" x="5195.91" y="7569.5332">_isClassSide: boolean</text><ellipse cx="5186.91" cy="7582.9141" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="117" x="5195.91" y="7587.1426">readOnly: boolean</text><ellipse cx="5186.91" cy="7600.5234" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="117" x="5195.91" y="7604.752">readOnly: boolean</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="5183.91" y="7615.1328"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="125" x="5195.91" y="7622.3613">_readOnly: boolean</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="5183.91" y="7632.7422"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="193" x="5195.91" y="7639.9707">_parentEntity: Class | Interface</text><ellipse cx="5186.91" cy="7653.3516" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="185" x="5195.91" y="7657.5801">isDefinitelyAssigned: boolean</text><ellipse cx="5186.91" cy="7670.9609" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="185" x="5195.91" y="7675.1895">isDefinitelyAssigned: boolean</text><ellipse cx="5186.91" cy="7688.5703" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="122" x="5195.91" y="7692.7988">isOptional: boolean</text><ellipse cx="5186.91" cy="7706.1797" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="122" x="5195.91" y="7710.4082">isOptional: boolean</text><ellipse cx="5186.91" cy="7723.7891" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="178" x="5195.91" y="7728.0176">isJavaScriptPrivate: boolean</text><ellipse cx="5186.91" cy="7741.3984" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="178" x="5195.91" y="7745.627">isJavaScriptPrivate: boolean</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="5183.91" y="7756.0078"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="193" x="5195.91" y="7763.2363">_isDefinitelyAssigned: boolean</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="5183.91" y="7773.6172"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="130" x="5195.91" y="7780.8457">_isOptional: boolean</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="5183.91" y="7791.2266"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="186" x="5195.91" y="7798.4551">_isJavaScriptPrivate: boolean</text><ellipse cx="5186.91" cy="7811.8359" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="145" x="5195.91" y="7816.0645">visibility: VisibilityTypes</text><ellipse cx="5186.91" cy="7829.4453" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="145" x="5195.91" y="7833.6738">visibility: VisibilityTypes</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="5183.91" y="7844.0547"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="153" x="5195.91" y="7851.2832">_visibility: VisibilityTypes</text><ellipse cx="5186.91" cy="7864.6641" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="132" x="5195.91" y="7868.8926">isClassSide: boolean</text><ellipse cx="5186.91" cy="7882.2734" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="132" x="5195.91" y="7886.502">isClassSide: boolean</text><ellipse cx="5186.91" cy="7899.8828" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="185" x="5195.91" y="7904.1113">parentEntity: Class | Interface</text><ellipse cx="5186.91" cy="7917.4922" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="185" x="5195.91" y="7921.7207">parentEntity: Class | Interface</text><line style="stroke:#181818;stroke-width:0.5;" x1="5176.91" x2="5588.91" y1="7928.7969" y2="7928.7969"/><ellipse cx="5186.91" cy="7943.1016" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="5195.91" y="7947.3301">getJSON(): string</text><ellipse cx="5186.91" cy="7960.7109" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="388" x="5195.91" y="7964.9395">addPropertiesToExporter(exporter: FamixJSONExporter): void</text></g><!--class Inheritance--><g id="elem_Inheritance"><rect codeLine="184" fill="#F1F1F1" height="188.875" id="Inheritance" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="414" x="5842.91" y="7651"/><ellipse cx="6010.66" cy="7667" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M6013.4256,7662.875 Q6013.5819,7662.6563 6013.7694,7662.5469 Q6013.9569,7662.4375 6014.1756,7662.4375 Q6014.5506,7662.4375 6014.785,7662.7031 Q6015.0194,7662.9531 6015.0194,7663.5625 L6015.0194,7665.0156 Q6015.0194,7665.625 6014.785,7665.8906 Q6014.5506,7666.1563 6014.1756,7666.1563 Q6013.8319,7666.1563 6013.6288,7665.9531 Q6013.4256,7665.7656 6013.3163,7665.25 Q6013.2694,7664.8906 6013.0819,7664.7031 Q6012.7538,7664.3281 6012.1444,7664.1094 Q6011.535,7663.8906 6010.91,7663.8906 Q6010.1444,7663.8906 6009.5038,7664.2188 Q6008.8788,7664.5469 6008.3788,7665.2969 Q6007.8944,7666.0469 6007.8944,7667.0781 L6007.8944,7668.1719 Q6007.8944,7669.4063 6008.785,7670.2344 Q6009.6756,7671.0469 6011.2694,7671.0469 Q6012.2069,7671.0469 6012.8631,7670.7969 Q6013.2538,7670.6406 6013.6756,7670.2031 Q6013.9413,7669.9375 6014.0819,7669.8594 Q6014.2381,7669.7813 6014.4413,7669.7813 Q6014.7694,7669.7813 6015.0194,7670.0469 Q6015.285,7670.2969 6015.285,7670.6406 Q6015.285,7670.9844 6014.9413,7671.3906 Q6014.4413,7671.9688 6013.6444,7672.2969 Q6012.5663,7672.75 6011.2694,7672.75 Q6009.7538,7672.75 6008.5506,7672.125 Q6007.5663,7671.625 6006.8788,7670.5625 Q6006.1913,7669.4844 6006.1913,7668.2031 L6006.1913,7667.0469 Q6006.1913,7665.7188 6006.8006,7664.5781 Q6007.4256,7663.4219 6008.5194,7662.8125 Q6009.6131,7662.1875 6010.8475,7662.1875 Q6011.5819,7662.1875 6012.2225,7662.3594 Q6012.8788,7662.5156 6013.4256,7662.875 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="70" x="6031.16" y="7672.7285">Inheritance</text><line style="stroke:#181818;stroke-width:0.5;" x1="5843.91" x2="6255.91" y1="7683" y2="7683"/><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="5850.91" y="7694.3047"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="185" x="5862.91" y="7701.5332">_superclass: Class | Interface</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="5850.91" y="7711.9141"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="172" x="5862.91" y="7719.1426">_subclass: Class | Interface</text><ellipse cx="5853.91" cy="7732.5234" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="177" x="5862.91" y="7736.752">superclass: Class | Interface</text><ellipse cx="5853.91" cy="7750.1328" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="177" x="5862.91" y="7754.3613">superclass: Class | Interface</text><ellipse cx="5853.91" cy="7767.7422" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="164" x="5862.91" y="7771.9707">subclass: Class | Interface</text><ellipse cx="5853.91" cy="7785.3516" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="164" x="5862.91" y="7789.5801">subclass: Class | Interface</text><line style="stroke:#181818;stroke-width:0.5;" x1="5843.91" x2="6255.91" y1="7796.6563" y2="7796.6563"/><ellipse cx="5853.91" cy="7810.9609" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="5862.91" y="7815.1895">getJSON(): string</text><ellipse cx="5853.91" cy="7828.5703" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="388" x="5862.91" y="7832.7988">addPropertiesToExporter(exporter: FamixJSONExporter): void</text></g><!--class Class--><g id="elem_Class"><rect codeLine="194" fill="#F1F1F1" height="347.3594" id="Class" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="414" x="5154.91" y="3018"/><ellipse cx="5340.16" cy="3034" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M5342.9256,3029.875 Q5343.0819,3029.6563 5343.2694,3029.5469 Q5343.4569,3029.4375 5343.6756,3029.4375 Q5344.0506,3029.4375 5344.285,3029.7031 Q5344.5194,3029.9531 5344.5194,3030.5625 L5344.5194,3032.0156 Q5344.5194,3032.625 5344.285,3032.8906 Q5344.0506,3033.1563 5343.6756,3033.1563 Q5343.3319,3033.1563 5343.1288,3032.9531 Q5342.9256,3032.7656 5342.8163,3032.25 Q5342.7694,3031.8906 5342.5819,3031.7031 Q5342.2538,3031.3281 5341.6444,3031.1094 Q5341.035,3030.8906 5340.41,3030.8906 Q5339.6444,3030.8906 5339.0038,3031.2188 Q5338.3788,3031.5469 5337.8788,3032.2969 Q5337.3944,3033.0469 5337.3944,3034.0781 L5337.3944,3035.1719 Q5337.3944,3036.4063 5338.285,3037.2344 Q5339.1756,3038.0469 5340.7694,3038.0469 Q5341.7069,3038.0469 5342.3631,3037.7969 Q5342.7538,3037.6406 5343.1756,3037.2031 Q5343.4413,3036.9375 5343.5819,3036.8594 Q5343.7381,3036.7813 5343.9413,3036.7813 Q5344.2694,3036.7813 5344.5194,3037.0469 Q5344.785,3037.2969 5344.785,3037.6406 Q5344.785,3037.9844 5344.4413,3038.3906 Q5343.9413,3038.9688 5343.1444,3039.2969 Q5342.0663,3039.75 5340.7694,3039.75 Q5339.2538,3039.75 5338.0506,3039.125 Q5337.0663,3038.625 5336.3788,3037.5625 Q5335.6913,3036.4844 5335.6913,3035.2031 L5335.6913,3034.0469 Q5335.6913,3032.7188 5336.3006,3031.5781 Q5336.9256,3030.4219 5338.0194,3029.8125 Q5339.1131,3029.1875 5340.3475,3029.1875 Q5341.0819,3029.1875 5341.7225,3029.3594 Q5342.3788,3029.5156 5342.9256,3029.875 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="35" x="5360.66" y="3039.7285">Class</text><line style="stroke:#181818;stroke-width:0.5;" x1="5155.91" x2="5567.91" y1="3050" y2="3050"/><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="5162.91" y="3061.3047"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="129" x="5174.91" y="3068.5332">_isAbstract: boolean</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="5162.91" y="3078.9141"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="171" x="5174.91" y="3086.1426">_properties: Set&lt;Property&gt;</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="5162.91" y="3096.5234"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="154" x="5174.91" y="3103.752">_methods: Set&lt;Method&gt;</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="5162.91" y="3114.1328"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="236" x="5174.91" y="3121.3613">_superInheritances: Set&lt;Inheritance&gt;</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="5162.91" y="3131.7422"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="223" x="5174.91" y="3138.9707">_subInheritances: Set&lt;Inheritance&gt;</text><ellipse cx="5165.91" cy="3152.3516" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="121" x="5174.91" y="3156.5801">isAbstract: boolean</text><ellipse cx="5165.91" cy="3169.9609" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="121" x="5174.91" y="3174.1895">isAbstract: boolean</text><ellipse cx="5165.91" cy="3187.5703" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="163" x="5174.91" y="3191.7988">properties: Set&lt;Property&gt;</text><ellipse cx="5165.91" cy="3205.1797" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="146" x="5174.91" y="3209.4082">methods: Set&lt;Method&gt;</text><ellipse cx="5165.91" cy="3222.7891" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="228" x="5174.91" y="3227.0176">superInheritances: Set&lt;Inheritance&gt;</text><ellipse cx="5165.91" cy="3240.3984" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="215" x="5174.91" y="3244.627">subInheritances: Set&lt;Inheritance&gt;</text><line style="stroke:#181818;stroke-width:0.5;" x1="5155.91" x2="5567.91" y1="3251.7031" y2="3251.7031"/><ellipse cx="5165.91" cy="3266.0078" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="237" x="5174.91" y="3270.2363">addProperty(property: Property): void</text><ellipse cx="5165.91" cy="3283.6172" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="217" x="5174.91" y="3287.8457">addMethod(method: Method): void</text><ellipse cx="5165.91" cy="3301.2266" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="360" x="5174.91" y="3305.4551">addSuperInheritance(superInheritance: Inheritance): void</text><ellipse cx="5165.91" cy="3318.8359" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="334" x="5174.91" y="3323.0645">addSubInheritance(subInheritance: Inheritance): void</text><ellipse cx="5165.91" cy="3336.4453" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="5174.91" y="3340.6738">getJSON(): string</text><ellipse cx="5165.91" cy="3354.0547" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="388" x="5174.91" y="3358.2832">addPropertiesToExporter(exporter: FamixJSONExporter): void</text></g><!--class Type--><g id="elem_Type"><rect codeLine="419" fill="#F1F1F1" height="347.3594" id="Type" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="641" x="3548.41" y="3993"/><ellipse cx="3848.66" cy="4009" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M3851.4256,4004.875 Q3851.5819,4004.6563 3851.7694,4004.5469 Q3851.9569,4004.4375 3852.1756,4004.4375 Q3852.5506,4004.4375 3852.785,4004.7031 Q3853.0194,4004.9531 3853.0194,4005.5625 L3853.0194,4007.0156 Q3853.0194,4007.625 3852.785,4007.8906 Q3852.5506,4008.1563 3852.1756,4008.1563 Q3851.8319,4008.1563 3851.6288,4007.9531 Q3851.4256,4007.7656 3851.3163,4007.25 Q3851.2694,4006.8906 3851.0819,4006.7031 Q3850.7538,4006.3281 3850.1444,4006.1094 Q3849.535,4005.8906 3848.91,4005.8906 Q3848.1444,4005.8906 3847.5038,4006.2188 Q3846.8788,4006.5469 3846.3788,4007.2969 Q3845.8944,4008.0469 3845.8944,4009.0781 L3845.8944,4010.1719 Q3845.8944,4011.4063 3846.785,4012.2344 Q3847.6756,4013.0469 3849.2694,4013.0469 Q3850.2069,4013.0469 3850.8631,4012.7969 Q3851.2538,4012.6406 3851.6756,4012.2031 Q3851.9413,4011.9375 3852.0819,4011.8594 Q3852.2381,4011.7813 3852.4413,4011.7813 Q3852.7694,4011.7813 3853.0194,4012.0469 Q3853.285,4012.2969 3853.285,4012.6406 Q3853.285,4012.9844 3852.9413,4013.3906 Q3852.4413,4013.9688 3851.6444,4014.2969 Q3850.5663,4014.75 3849.2694,4014.75 Q3847.7538,4014.75 3846.5506,4014.125 Q3845.5663,4013.625 3844.8788,4012.5625 Q3844.1913,4011.4844 3844.1913,4010.2031 L3844.1913,4009.0469 Q3844.1913,4007.7188 3844.8006,4006.5781 Q3845.4256,4005.4219 3846.5194,4004.8125 Q3847.6131,4004.1875 3848.8475,4004.1875 Q3849.5819,4004.1875 3850.2225,4004.3594 Q3850.8788,4004.5156 3851.4256,4004.875 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="32" x="3869.16" y="4014.7285">Type</text><line style="stroke:#181818;stroke-width:0.5;" x1="3549.41" x2="4188.41" y1="4025" y2="4025"/><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="3556.41" y="4036.3047"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="172" x="3568.41" y="4043.5332">_container: ContainerEntity</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="3556.41" y="4053.9141"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="155" x="3568.41" y="4061.1426">_typeAliases: Set&lt;Alias&gt;</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="3556.41" y="4071.5234"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="329" x="3568.41" y="4078.752">_structuresWithDeclaredType: Set&lt;StructuralEntity&gt;</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="3556.41" y="4089.1328"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="384" x="3568.41" y="4096.3613">_behavioralEntitiesWithDeclaredType: Set&lt;BehavioralEntity&gt;</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="3556.41" y="4106.7422"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="248" x="3568.41" y="4113.9707">_incomingReferences: Set&lt;Reference&gt;</text><ellipse cx="3559.41" cy="4127.3516" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="164" x="3568.41" y="4131.5801">container: ContainerEntity</text><ellipse cx="3559.41" cy="4144.9609" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="164" x="3568.41" y="4149.1895">container: ContainerEntity</text><ellipse cx="3559.41" cy="4162.5703" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="147" x="3568.41" y="4166.7988">typeAliases: Set&lt;Alias&gt;</text><ellipse cx="3559.41" cy="4180.1797" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="321" x="3568.41" y="4184.4082">structuresWithDeclaredType: Set&lt;StructuralEntity&gt;</text><ellipse cx="3559.41" cy="4197.7891" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="376" x="3568.41" y="4202.0176">behavioralEntitiesWithDeclaredType: Set&lt;BehavioralEntity&gt;</text><ellipse cx="3559.41" cy="4215.3984" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="240" x="3568.41" y="4219.627">incomingReferences: Set&lt;Reference&gt;</text><line style="stroke:#181818;stroke-width:0.5;" x1="3549.41" x2="4188.41" y1="4226.7031" y2="4226.7031"/><ellipse cx="3559.41" cy="4241.0078" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="225" x="3568.41" y="4245.2363">addTypeAlias(typeAlias: Alias): void</text><ellipse cx="3559.41" cy="4258.6172" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="520" x="3568.41" y="4262.8457">addStructureWithDeclaredType(structureWithDeclaredType: StructuralEntity): void</text><ellipse cx="3559.41" cy="4276.2266" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="615" x="3568.41" y="4280.4551">addBehavioralEntityWithDeclaredType(behavioralEntityWithDeclaredType: BehavioralEntity): void</text><ellipse cx="3559.41" cy="4293.8359" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="386" x="3568.41" y="4298.0645">addIncomingReference(incomingReference: Reference): void</text><ellipse cx="3559.41" cy="4311.4453" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="3568.41" y="4315.6738">getJSON(): string</text><ellipse cx="3559.41" cy="4329.0547" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="388" x="3568.41" y="4333.2832">addPropertiesToExporter(exporter: FamixJSONExporter): void</text></g><!--class Method--><g id="elem_Method"><rect codeLine="213" fill="#F1F1F1" height="453.0156" id="Method" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="414" x="6443.91" y="7519"/><ellipse cx="6623.16" cy="7535" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M6625.9256,7530.875 Q6626.0819,7530.6563 6626.2694,7530.5469 Q6626.4569,7530.4375 6626.6756,7530.4375 Q6627.0506,7530.4375 6627.285,7530.7031 Q6627.5194,7530.9531 6627.5194,7531.5625 L6627.5194,7533.0156 Q6627.5194,7533.625 6627.285,7533.8906 Q6627.0506,7534.1563 6626.6756,7534.1563 Q6626.3319,7534.1563 6626.1288,7533.9531 Q6625.9256,7533.7656 6625.8163,7533.25 Q6625.7694,7532.8906 6625.5819,7532.7031 Q6625.2538,7532.3281 6624.6444,7532.1094 Q6624.035,7531.8906 6623.41,7531.8906 Q6622.6444,7531.8906 6622.0038,7532.2188 Q6621.3788,7532.5469 6620.8788,7533.2969 Q6620.3944,7534.0469 6620.3944,7535.0781 L6620.3944,7536.1719 Q6620.3944,7537.4063 6621.285,7538.2344 Q6622.1756,7539.0469 6623.7694,7539.0469 Q6624.7069,7539.0469 6625.3631,7538.7969 Q6625.7538,7538.6406 6626.1756,7538.2031 Q6626.4413,7537.9375 6626.5819,7537.8594 Q6626.7381,7537.7813 6626.9413,7537.7813 Q6627.2694,7537.7813 6627.5194,7538.0469 Q6627.785,7538.2969 6627.785,7538.6406 Q6627.785,7538.9844 6627.4413,7539.3906 Q6626.9413,7539.9688 6626.1444,7540.2969 Q6625.0663,7540.75 6623.7694,7540.75 Q6622.2538,7540.75 6621.0506,7540.125 Q6620.0663,7539.625 6619.3788,7538.5625 Q6618.6913,7537.4844 6618.6913,7536.2031 L6618.6913,7535.0469 Q6618.6913,7533.7188 6619.3006,7532.5781 Q6619.9256,7531.4219 6621.0194,7530.8125 Q6622.1131,7530.1875 6623.3475,7530.1875 Q6624.0819,7530.1875 6624.7225,7530.3594 Q6625.3788,7530.5156 6625.9256,7530.875 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="47" x="6643.66" y="7540.7285">Method</text><line style="stroke:#181818;stroke-width:0.5;" x1="6444.91" x2="6856.91" y1="7551" y2="7551"/><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="6451.91" y="7562.3047"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="193" x="6463.91" y="7569.5332">_parentEntity: Class | Interface</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="6451.91" y="7579.9141"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="77" x="6463.91" y="7587.1426">_kind: string</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="6451.91" y="7597.5234"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="129" x="6463.91" y="7604.752">_isAbstract: boolean</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="6451.91" y="7615.1328"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="140" x="6463.91" y="7622.3613">_isClassSide: boolean</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="6451.91" y="7632.7422"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="121" x="6463.91" y="7639.9707">_isPrivate: boolean</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="6451.91" y="7650.3516"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="115" x="6463.91" y="7657.5801">_isPublic: boolean</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="6451.91" y="7667.9609"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="138" x="6463.91" y="7675.1895">_isProtected: boolean</text><ellipse cx="6454.91" cy="7688.5703" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="185" x="6463.91" y="7692.7988">parentEntity: Class | Interface</text><ellipse cx="6454.91" cy="7706.1797" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="185" x="6463.91" y="7710.4082">parentEntity: Class | Interface</text><ellipse cx="6454.91" cy="7723.7891" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="69" x="6463.91" y="7728.0176">kind: string</text><ellipse cx="6454.91" cy="7741.3984" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="69" x="6463.91" y="7745.627">kind: string</text><ellipse cx="6454.91" cy="7759.0078" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="121" x="6463.91" y="7763.2363">isAbstract: boolean</text><ellipse cx="6454.91" cy="7776.6172" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="121" x="6463.91" y="7780.8457">isAbstract: boolean</text><ellipse cx="6454.91" cy="7794.2266" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="132" x="6463.91" y="7798.4551">isClassSide: boolean</text><ellipse cx="6454.91" cy="7811.8359" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="132" x="6463.91" y="7816.0645">isClassSide: boolean</text><ellipse cx="6454.91" cy="7829.4453" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="113" x="6463.91" y="7833.6738">isPrivate: boolean</text><ellipse cx="6454.91" cy="7847.0547" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="113" x="6463.91" y="7851.2832">isPrivate: boolean</text><ellipse cx="6454.91" cy="7864.6641" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="107" x="6463.91" y="7868.8926">isPublic: boolean</text><ellipse cx="6454.91" cy="7882.2734" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="107" x="6463.91" y="7886.502">isPublic: boolean</text><ellipse cx="6454.91" cy="7899.8828" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="130" x="6463.91" y="7904.1113">isProtected: boolean</text><ellipse cx="6454.91" cy="7917.4922" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="130" x="6463.91" y="7921.7207">isProtected: boolean</text><line style="stroke:#181818;stroke-width:0.5;" x1="6444.91" x2="6856.91" y1="7928.7969" y2="7928.7969"/><ellipse cx="6454.91" cy="7943.1016" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="6463.91" y="7947.3301">getJSON(): string</text><ellipse cx="6454.91" cy="7960.7109" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="388" x="6463.91" y="7964.9395">addPropertiesToExporter(exporter: FamixJSONExporter): void</text></g><!--class BehavioralEntity--><g id="elem_BehavioralEntity"><rect codeLine="326" fill="#F1F1F1" height="417.7969" id="BehavioralEntity" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="429" x="4006.41" y="5871"/><ellipse cx="4165.66" cy="5887" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M4168.4256,5882.875 Q4168.5819,5882.6563 4168.7694,5882.5469 Q4168.9569,5882.4375 4169.1756,5882.4375 Q4169.5506,5882.4375 4169.785,5882.7031 Q4170.0194,5882.9531 4170.0194,5883.5625 L4170.0194,5885.0156 Q4170.0194,5885.625 4169.785,5885.8906 Q4169.5506,5886.1563 4169.1756,5886.1563 Q4168.8319,5886.1563 4168.6288,5885.9531 Q4168.4256,5885.7656 4168.3163,5885.25 Q4168.2694,5884.8906 4168.0819,5884.7031 Q4167.7538,5884.3281 4167.1444,5884.1094 Q4166.535,5883.8906 4165.91,5883.8906 Q4165.1444,5883.8906 4164.5038,5884.2188 Q4163.8788,5884.5469 4163.3788,5885.2969 Q4162.8944,5886.0469 4162.8944,5887.0781 L4162.8944,5888.1719 Q4162.8944,5889.4063 4163.785,5890.2344 Q4164.6756,5891.0469 4166.2694,5891.0469 Q4167.2069,5891.0469 4167.8631,5890.7969 Q4168.2538,5890.6406 4168.6756,5890.2031 Q4168.9413,5889.9375 4169.0819,5889.8594 Q4169.2381,5889.7813 4169.4413,5889.7813 Q4169.7694,5889.7813 4170.0194,5890.0469 Q4170.285,5890.2969 4170.285,5890.6406 Q4170.285,5890.9844 4169.9413,5891.3906 Q4169.4413,5891.9688 4168.6444,5892.2969 Q4167.5663,5892.75 4166.2694,5892.75 Q4164.7538,5892.75 4163.5506,5892.125 Q4162.5663,5891.625 4161.8788,5890.5625 Q4161.1913,5889.4844 4161.1913,5888.2031 L4161.1913,5887.0469 Q4161.1913,5885.7188 4161.8006,5884.5781 Q4162.4256,5883.4219 4163.5194,5882.8125 Q4164.6131,5882.1875 4165.8475,5882.1875 Q4166.5819,5882.1875 4167.2225,5882.3594 Q4167.8788,5882.5156 4168.4256,5882.875 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="102" x="4186.16" y="5892.7285">BehavioralEntity</text><line style="stroke:#181818;stroke-width:0.5;" x1="4007.41" x2="4434.41" y1="5903" y2="5903"/><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="4014.41" y="5914.3047"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="110" x="4026.41" y="5921.5332">_signature: string</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="4014.41" y="5931.9141"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="191" x="4026.41" y="5939.1426">_parameters: Set&lt;Parameter&gt;</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="4014.41" y="5949.5234"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="200" x="4026.41" y="5956.752">_numberOfParameters: number</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="4014.41" y="5967.1328"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="244" x="4026.41" y="5974.3613">_incomingInvocations: Set&lt;Invocation&gt;</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="4014.41" y="5984.7422"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="135" x="4026.41" y="5991.9707">_declaredType: Type</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="4014.41" y="6002.3516"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="271" x="4026.41" y="6009.5801">_genericParameters: Set&lt;ParameterType&gt;</text><ellipse cx="4017.41" cy="6022.9609" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="102" x="4026.41" y="6027.1895">signature: string</text><ellipse cx="4017.41" cy="6040.5703" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="102" x="4026.41" y="6044.7988">signature: string</text><ellipse cx="4017.41" cy="6058.1797" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="183" x="4026.41" y="6062.4082">parameters: Set&lt;Parameter&gt;</text><ellipse cx="4017.41" cy="6075.7891" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="192" x="4026.41" y="6080.0176">numberOfParameters: number</text><ellipse cx="4017.41" cy="6093.3984" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="192" x="4026.41" y="6097.627">numberOfParameters: number</text><ellipse cx="4017.41" cy="6111.0078" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="236" x="4026.41" y="6115.2363">incomingInvocations: Set&lt;Invocation&gt;</text><ellipse cx="4017.41" cy="6128.6172" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="127" x="4026.41" y="6132.8457">declaredType: Type</text><ellipse cx="4017.41" cy="6146.2266" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="127" x="4026.41" y="6150.4551">declaredType: Type</text><ellipse cx="4017.41" cy="6163.8359" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="263" x="4026.41" y="6168.0645">genericParameters: Set&lt;ParameterType&gt;</text><line style="stroke:#181818;stroke-width:0.5;" x1="4007.41" x2="4434.41" y1="6175.1406" y2="6175.1406"/><ellipse cx="4017.41" cy="6189.4453" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="273" x="4026.41" y="6193.6738">addParameter(parameter: Parameter): void</text><ellipse cx="4017.41" cy="6207.0547" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="380" x="4026.41" y="6211.2832">addIncomingInvocation(incomingInvocation: Invocation): void</text><ellipse cx="4017.41" cy="6224.6641" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="403" x="4026.41" y="6228.8926">addGenericParameter(genericParameter: ParameterType): void</text><ellipse cx="4017.41" cy="6242.2734" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="198" x="4026.41" y="6246.502">clearGenericParameters(): void</text><ellipse cx="4017.41" cy="6259.8828" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="4026.41" y="6264.1113">getJSON(): string</text><ellipse cx="4017.41" cy="6277.4922" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="388" x="4026.41" y="6281.7207">addPropertiesToExporter(exporter: FamixJSONExporter): void</text></g><!--class Interface--><g id="elem_Interface"><rect codeLine="238" fill="#F1F1F1" height="294.5313" id="Interface" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="414" x="6190.91" y="7164"/><ellipse cx="6366.16" cy="7180" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M6368.9256,7175.875 Q6369.0819,7175.6563 6369.2694,7175.5469 Q6369.4569,7175.4375 6369.6756,7175.4375 Q6370.0506,7175.4375 6370.285,7175.7031 Q6370.5194,7175.9531 6370.5194,7176.5625 L6370.5194,7178.0156 Q6370.5194,7178.625 6370.285,7178.8906 Q6370.0506,7179.1563 6369.6756,7179.1563 Q6369.3319,7179.1563 6369.1288,7178.9531 Q6368.9256,7178.7656 6368.8163,7178.25 Q6368.7694,7177.8906 6368.5819,7177.7031 Q6368.2538,7177.3281 6367.6444,7177.1094 Q6367.035,7176.8906 6366.41,7176.8906 Q6365.6444,7176.8906 6365.0038,7177.2188 Q6364.3788,7177.5469 6363.8788,7178.2969 Q6363.3944,7179.0469 6363.3944,7180.0781 L6363.3944,7181.1719 Q6363.3944,7182.4063 6364.285,7183.2344 Q6365.1756,7184.0469 6366.7694,7184.0469 Q6367.7069,7184.0469 6368.3631,7183.7969 Q6368.7538,7183.6406 6369.1756,7183.2031 Q6369.4413,7182.9375 6369.5819,7182.8594 Q6369.7381,7182.7813 6369.9413,7182.7813 Q6370.2694,7182.7813 6370.5194,7183.0469 Q6370.785,7183.2969 6370.785,7183.6406 Q6370.785,7183.9844 6370.4413,7184.3906 Q6369.9413,7184.9688 6369.1444,7185.2969 Q6368.0663,7185.75 6366.7694,7185.75 Q6365.2538,7185.75 6364.0506,7185.125 Q6363.0663,7184.625 6362.3788,7183.5625 Q6361.6913,7182.4844 6361.6913,7181.2031 L6361.6913,7180.0469 Q6361.6913,7178.7188 6362.3006,7177.5781 Q6362.9256,7176.4219 6364.0194,7175.8125 Q6365.1131,7175.1875 6366.3475,7175.1875 Q6367.0819,7175.1875 6367.7225,7175.3594 Q6368.3788,7175.5156 6368.9256,7175.875 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="55" x="6386.66" y="7185.7285">Interface</text><line style="stroke:#181818;stroke-width:0.5;" x1="6191.91" x2="6603.91" y1="7196" y2="7196"/><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="6198.91" y="7207.3047"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="171" x="6210.91" y="7214.5332">_properties: Set&lt;Property&gt;</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="6198.91" y="7224.9141"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="154" x="6210.91" y="7232.1426">_methods: Set&lt;Method&gt;</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="6198.91" y="7242.5234"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="236" x="6210.91" y="7249.752">_superInheritances: Set&lt;Inheritance&gt;</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="6198.91" y="7260.1328"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="223" x="6210.91" y="7267.3613">_subInheritances: Set&lt;Inheritance&gt;</text><ellipse cx="6201.91" cy="7280.7422" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="163" x="6210.91" y="7284.9707">properties: Set&lt;Property&gt;</text><ellipse cx="6201.91" cy="7298.3516" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="146" x="6210.91" y="7302.5801">methods: Set&lt;Method&gt;</text><ellipse cx="6201.91" cy="7315.9609" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="228" x="6210.91" y="7320.1895">superInheritances: Set&lt;Inheritance&gt;</text><ellipse cx="6201.91" cy="7333.5703" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="215" x="6210.91" y="7337.7988">subInheritances: Set&lt;Inheritance&gt;</text><line style="stroke:#181818;stroke-width:0.5;" x1="6191.91" x2="6603.91" y1="7344.875" y2="7344.875"/><ellipse cx="6201.91" cy="7359.1797" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="237" x="6210.91" y="7363.4082">addProperty(property: Property): void</text><ellipse cx="6201.91" cy="7376.7891" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="217" x="6210.91" y="7381.0176">addMethod(method: Method): void</text><ellipse cx="6201.91" cy="7394.3984" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="360" x="6210.91" y="7398.627">addSuperInheritance(superInheritance: Inheritance): void</text><ellipse cx="6201.91" cy="7412.0078" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="334" x="6210.91" y="7416.2363">addSubInheritance(subInheritance: Inheritance): void</text><ellipse cx="6201.91" cy="7429.6172" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="6210.91" y="7433.8457">getJSON(): string</text><ellipse cx="6201.91" cy="7447.2266" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="388" x="6210.91" y="7451.4551">addPropertiesToExporter(exporter: FamixJSONExporter): void</text></g><!--class PrimitiveType--><g id="elem_PrimitiveType"><rect codeLine="254" fill="#F1F1F1" height="83.2188" id="PrimitiveType" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="414" x="6774.91" y="8281"/><ellipse cx="6935.16" cy="8297" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M6937.9256,8292.875 Q6938.0819,8292.6563 6938.2694,8292.5469 Q6938.4569,8292.4375 6938.6756,8292.4375 Q6939.0506,8292.4375 6939.285,8292.7031 Q6939.5194,8292.9531 6939.5194,8293.5625 L6939.5194,8295.0156 Q6939.5194,8295.625 6939.285,8295.8906 Q6939.0506,8296.1563 6938.6756,8296.1563 Q6938.3319,8296.1563 6938.1288,8295.9531 Q6937.9256,8295.7656 6937.8163,8295.25 Q6937.7694,8294.8906 6937.5819,8294.7031 Q6937.2538,8294.3281 6936.6444,8294.1094 Q6936.035,8293.8906 6935.41,8293.8906 Q6934.6444,8293.8906 6934.0038,8294.2188 Q6933.3788,8294.5469 6932.8788,8295.2969 Q6932.3944,8296.0469 6932.3944,8297.0781 L6932.3944,8298.1719 Q6932.3944,8299.4063 6933.285,8300.2344 Q6934.1756,8301.0469 6935.7694,8301.0469 Q6936.7069,8301.0469 6937.3631,8300.7969 Q6937.7538,8300.6406 6938.1756,8300.2031 Q6938.4413,8299.9375 6938.5819,8299.8594 Q6938.7381,8299.7813 6938.9413,8299.7813 Q6939.2694,8299.7813 6939.5194,8300.0469 Q6939.785,8300.2969 6939.785,8300.6406 Q6939.785,8300.9844 6939.4413,8301.3906 Q6938.9413,8301.9688 6938.1444,8302.2969 Q6937.0663,8302.75 6935.7694,8302.75 Q6934.2538,8302.75 6933.0506,8302.125 Q6932.0663,8301.625 6931.3788,8300.5625 Q6930.6913,8299.4844 6930.6913,8298.2031 L6930.6913,8297.0469 Q6930.6913,8295.7188 6931.3006,8294.5781 Q6931.9256,8293.4219 6933.0194,8292.8125 Q6934.1131,8292.1875 6935.3475,8292.1875 Q6936.0819,8292.1875 6936.7225,8292.3594 Q6937.3788,8292.5156 6937.9256,8292.875 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="85" x="6955.66" y="8302.7285">PrimitiveType</text><line style="stroke:#181818;stroke-width:0.5;" x1="6775.91" x2="7187.91" y1="8313" y2="8313"/><line style="stroke:#181818;stroke-width:0.5;" x1="6775.91" x2="7187.91" y1="8321" y2="8321"/><ellipse cx="6785.91" cy="8335.3047" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="6794.91" y="8339.5332">getJSON(): string</text><ellipse cx="6785.91" cy="8352.9141" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="388" x="6794.91" y="8357.1426">addPropertiesToExporter(exporter: FamixJSONExporter): void</text></g><!--class ParametricClass--><g id="elem_ParametricClass"><rect codeLine="258" fill="#F1F1F1" height="206.4844" id="ParametricClass" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="544" x="5918.91" y="3425"/><ellipse cx="6135.16" cy="3441" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M6137.9256,3436.875 Q6138.0819,3436.6563 6138.2694,3436.5469 Q6138.4569,3436.4375 6138.6756,3436.4375 Q6139.0506,3436.4375 6139.285,3436.7031 Q6139.5194,3436.9531 6139.5194,3437.5625 L6139.5194,3439.0156 Q6139.5194,3439.625 6139.285,3439.8906 Q6139.0506,3440.1563 6138.6756,3440.1563 Q6138.3319,3440.1563 6138.1288,3439.9531 Q6137.9256,3439.7656 6137.8163,3439.25 Q6137.7694,3438.8906 6137.5819,3438.7031 Q6137.2538,3438.3281 6136.6444,3438.1094 Q6136.035,3437.8906 6135.41,3437.8906 Q6134.6444,3437.8906 6134.0038,3438.2188 Q6133.3788,3438.5469 6132.8788,3439.2969 Q6132.3944,3440.0469 6132.3944,3441.0781 L6132.3944,3442.1719 Q6132.3944,3443.4063 6133.285,3444.2344 Q6134.1756,3445.0469 6135.7694,3445.0469 Q6136.7069,3445.0469 6137.3631,3444.7969 Q6137.7538,3444.6406 6138.1756,3444.2031 Q6138.4413,3443.9375 6138.5819,3443.8594 Q6138.7381,3443.7813 6138.9413,3443.7813 Q6139.2694,3443.7813 6139.5194,3444.0469 Q6139.785,3444.2969 6139.785,3444.6406 Q6139.785,3444.9844 6139.4413,3445.3906 Q6138.9413,3445.9688 6138.1444,3446.2969 Q6137.0663,3446.75 6135.7694,3446.75 Q6134.2538,3446.75 6133.0506,3446.125 Q6132.0663,3445.625 6131.3788,3444.5625 Q6130.6913,3443.4844 6130.6913,3442.2031 L6130.6913,3441.0469 Q6130.6913,3439.7188 6131.3006,3438.5781 Q6131.9256,3437.4219 6133.0194,3436.8125 Q6134.1131,3436.1875 6135.3475,3436.1875 Q6136.0819,3436.1875 6136.7225,3436.3594 Q6137.3788,3436.5156 6137.9256,3436.875 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="103" x="6155.66" y="3446.7285">ParametricClass</text><line style="stroke:#181818;stroke-width:0.5;" x1="5919.91" x2="6461.91" y1="3457" y2="3457"/><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="5926.91" y="3468.3047"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="271" x="5938.91" y="3475.5332">_genericParameters: Set&lt;ParameterType&gt;</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="5926.91" y="3485.9141"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="378" x="5938.91" y="3493.1426">_concreteParameters: Set&lt;Class | Interface | PrimitiveType&gt;</text><ellipse cx="5929.91" cy="3506.5234" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="263" x="5938.91" y="3510.752">genericParameters: Set&lt;ParameterType&gt;</text><ellipse cx="5929.91" cy="3524.1328" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="370" x="5938.91" y="3528.3613">concreteParameters: Set&lt;Class | Interface | PrimitiveType&gt;</text><line style="stroke:#181818;stroke-width:0.5;" x1="5919.91" x2="6461.91" y1="3535.4375" y2="3535.4375"/><ellipse cx="5929.91" cy="3549.7422" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="403" x="5938.91" y="3553.9707">addGenericParameter(genericParameter: ParameterType): void</text><ellipse cx="5929.91" cy="3567.3516" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="198" x="5938.91" y="3571.5801">clearGenericParameters(): void</text><ellipse cx="5929.91" cy="3584.9609" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="518" x="5938.91" y="3589.1895">addConcreteParameter(concreteParameter: Class | Interface | PrimitiveType): void</text><ellipse cx="5929.91" cy="3602.5703" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="5938.91" y="3606.7988">getJSON(): string</text><ellipse cx="5929.91" cy="3620.1797" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="388" x="5938.91" y="3624.4082">addPropertiesToExporter(exporter: FamixJSONExporter): void</text></g><!--class ParametricInterface--><g id="elem_ParametricInterface"><rect codeLine="269" fill="#F1F1F1" height="206.4844" id="ParametricInterface" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="544" x="7034.91" y="7642.5"/><ellipse cx="7241.16" cy="7658.5" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M7243.9256,7654.375 Q7244.0819,7654.1563 7244.2694,7654.0469 Q7244.4569,7653.9375 7244.6756,7653.9375 Q7245.0506,7653.9375 7245.285,7654.2031 Q7245.5194,7654.4531 7245.5194,7655.0625 L7245.5194,7656.5156 Q7245.5194,7657.125 7245.285,7657.3906 Q7245.0506,7657.6563 7244.6756,7657.6563 Q7244.3319,7657.6563 7244.1288,7657.4531 Q7243.9256,7657.2656 7243.8163,7656.75 Q7243.7694,7656.3906 7243.5819,7656.2031 Q7243.2538,7655.8281 7242.6444,7655.6094 Q7242.035,7655.3906 7241.41,7655.3906 Q7240.6444,7655.3906 7240.0038,7655.7188 Q7239.3788,7656.0469 7238.8788,7656.7969 Q7238.3944,7657.5469 7238.3944,7658.5781 L7238.3944,7659.6719 Q7238.3944,7660.9063 7239.285,7661.7344 Q7240.1756,7662.5469 7241.7694,7662.5469 Q7242.7069,7662.5469 7243.3631,7662.2969 Q7243.7538,7662.1406 7244.1756,7661.7031 Q7244.4413,7661.4375 7244.5819,7661.3594 Q7244.7381,7661.2813 7244.9413,7661.2813 Q7245.2694,7661.2813 7245.5194,7661.5469 Q7245.785,7661.7969 7245.785,7662.1406 Q7245.785,7662.4844 7245.4413,7662.8906 Q7244.9413,7663.4688 7244.1444,7663.7969 Q7243.0663,7664.25 7241.7694,7664.25 Q7240.2538,7664.25 7239.0506,7663.625 Q7238.0663,7663.125 7237.3788,7662.0625 Q7236.6913,7660.9844 7236.6913,7659.7031 L7236.6913,7658.5469 Q7236.6913,7657.2188 7237.3006,7656.0781 Q7237.9256,7654.9219 7239.0194,7654.3125 Q7240.1131,7653.6875 7241.3475,7653.6875 Q7242.0819,7653.6875 7242.7225,7653.8594 Q7243.3788,7654.0156 7243.9256,7654.375 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="123" x="7261.66" y="7664.2285">ParametricInterface</text><line style="stroke:#181818;stroke-width:0.5;" x1="7035.91" x2="7577.91" y1="7674.5" y2="7674.5"/><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="7042.91" y="7685.8047"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="271" x="7054.91" y="7693.0332">_genericParameters: Set&lt;ParameterType&gt;</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="7042.91" y="7703.4141"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="378" x="7054.91" y="7710.6426">_concreteParameters: Set&lt;Class | Interface | PrimitiveType&gt;</text><ellipse cx="7045.91" cy="7724.0234" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="263" x="7054.91" y="7728.252">genericParameters: Set&lt;ParameterType&gt;</text><ellipse cx="7045.91" cy="7741.6328" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="370" x="7054.91" y="7745.8613">concreteParameters: Set&lt;Class | Interface | PrimitiveType&gt;</text><line style="stroke:#181818;stroke-width:0.5;" x1="7035.91" x2="7577.91" y1="7752.9375" y2="7752.9375"/><ellipse cx="7045.91" cy="7767.2422" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="403" x="7054.91" y="7771.4707">addGenericParameter(genericParameter: ParameterType): void</text><ellipse cx="7045.91" cy="7784.8516" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="198" x="7054.91" y="7789.0801">clearGenericParameters(): void</text><ellipse cx="7045.91" cy="7802.4609" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="518" x="7054.91" y="7806.6895">addConcreteParameter(concreteParameter: Class | Interface | PrimitiveType): void</text><ellipse cx="7045.91" cy="7820.0703" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="7054.91" y="7824.2988">getJSON(): string</text><ellipse cx="7045.91" cy="7837.6797" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="388" x="7054.91" y="7841.9082">addPropertiesToExporter(exporter: FamixJSONExporter): void</text></g><!--class Function--><g id="elem_Function"><rect codeLine="280" fill="#F1F1F1" height="83.2188" id="Function" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="414" x="4009.91" y="6455"/><ellipse cx="4185.16" cy="6471" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M4187.9256,6466.875 Q4188.0819,6466.6563 4188.2694,6466.5469 Q4188.4569,6466.4375 4188.6756,6466.4375 Q4189.0506,6466.4375 4189.285,6466.7031 Q4189.5194,6466.9531 4189.5194,6467.5625 L4189.5194,6469.0156 Q4189.5194,6469.625 4189.285,6469.8906 Q4189.0506,6470.1563 4188.6756,6470.1563 Q4188.3319,6470.1563 4188.1288,6469.9531 Q4187.9256,6469.7656 4187.8163,6469.25 Q4187.7694,6468.8906 4187.5819,6468.7031 Q4187.2538,6468.3281 4186.6444,6468.1094 Q4186.035,6467.8906 4185.41,6467.8906 Q4184.6444,6467.8906 4184.0038,6468.2188 Q4183.3788,6468.5469 4182.8788,6469.2969 Q4182.3944,6470.0469 4182.3944,6471.0781 L4182.3944,6472.1719 Q4182.3944,6473.4063 4183.285,6474.2344 Q4184.1756,6475.0469 4185.7694,6475.0469 Q4186.7069,6475.0469 4187.3631,6474.7969 Q4187.7538,6474.6406 4188.1756,6474.2031 Q4188.4413,6473.9375 4188.5819,6473.8594 Q4188.7381,6473.7813 4188.9413,6473.7813 Q4189.2694,6473.7813 4189.5194,6474.0469 Q4189.785,6474.2969 4189.785,6474.6406 Q4189.785,6474.9844 4189.4413,6475.3906 Q4188.9413,6475.9688 4188.1444,6476.2969 Q4187.0663,6476.75 4185.7694,6476.75 Q4184.2538,6476.75 4183.0506,6476.125 Q4182.0663,6475.625 4181.3788,6474.5625 Q4180.6913,6473.4844 4180.6913,6472.2031 L4180.6913,6471.0469 Q4180.6913,6469.7188 4181.3006,6468.5781 Q4181.9256,6467.4219 4183.0194,6466.8125 Q4184.1131,6466.1875 4185.3475,6466.1875 Q4186.0819,6466.1875 4186.7225,6466.3594 Q4187.3788,6466.5156 4187.9256,6466.875 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="55" x="4205.66" y="6476.7285">Function</text><line style="stroke:#181818;stroke-width:0.5;" x1="4010.91" x2="4422.91" y1="6487" y2="6487"/><line style="stroke:#181818;stroke-width:0.5;" x1="4010.91" x2="4422.91" y1="6495" y2="6495"/><ellipse cx="4020.91" cy="6509.3047" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="4029.91" y="6513.5332">getJSON(): string</text><ellipse cx="4020.91" cy="6526.9141" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="388" x="4029.91" y="6531.1426">addPropertiesToExporter(exporter: FamixJSONExporter): void</text></g><!--class Accessor--><g id="elem_Accessor"><rect codeLine="284" fill="#F1F1F1" height="83.2188" id="Accessor" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="414" x="6178.91" y="8058.5"/><ellipse cx="6352.66" cy="8074.5" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M6355.4256,8070.375 Q6355.5819,8070.1563 6355.7694,8070.0469 Q6355.9569,8069.9375 6356.1756,8069.9375 Q6356.5506,8069.9375 6356.785,8070.2031 Q6357.0194,8070.4531 6357.0194,8071.0625 L6357.0194,8072.5156 Q6357.0194,8073.125 6356.785,8073.3906 Q6356.5506,8073.6563 6356.1756,8073.6563 Q6355.8319,8073.6563 6355.6288,8073.4531 Q6355.4256,8073.2656 6355.3163,8072.75 Q6355.2694,8072.3906 6355.0819,8072.2031 Q6354.7538,8071.8281 6354.1444,8071.6094 Q6353.535,8071.3906 6352.91,8071.3906 Q6352.1444,8071.3906 6351.5038,8071.7188 Q6350.8788,8072.0469 6350.3788,8072.7969 Q6349.8944,8073.5469 6349.8944,8074.5781 L6349.8944,8075.6719 Q6349.8944,8076.9063 6350.785,8077.7344 Q6351.6756,8078.5469 6353.2694,8078.5469 Q6354.2069,8078.5469 6354.8631,8078.2969 Q6355.2538,8078.1406 6355.6756,8077.7031 Q6355.9413,8077.4375 6356.0819,8077.3594 Q6356.2381,8077.2813 6356.4413,8077.2813 Q6356.7694,8077.2813 6357.0194,8077.5469 Q6357.285,8077.7969 6357.285,8078.1406 Q6357.285,8078.4844 6356.9413,8078.8906 Q6356.4413,8079.4688 6355.6444,8079.7969 Q6354.5663,8080.25 6353.2694,8080.25 Q6351.7538,8080.25 6350.5506,8079.625 Q6349.5663,8079.125 6348.8788,8078.0625 Q6348.1913,8076.9844 6348.1913,8075.7031 L6348.1913,8074.5469 Q6348.1913,8073.2188 6348.8006,8072.0781 Q6349.4256,8070.9219 6350.5194,8070.3125 Q6351.6131,8069.6875 6352.8475,8069.6875 Q6353.5819,8069.6875 6354.2225,8069.8594 Q6354.8788,8070.0156 6355.4256,8070.375 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="58" x="6373.16" y="8080.2285">Accessor</text><line style="stroke:#181818;stroke-width:0.5;" x1="6179.91" x2="6591.91" y1="8090.5" y2="8090.5"/><line style="stroke:#181818;stroke-width:0.5;" x1="6179.91" x2="6591.91" y1="8098.5" y2="8098.5"/><ellipse cx="6189.91" cy="8112.8047" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="6198.91" y="8117.0332">getJSON(): string</text><ellipse cx="6189.91" cy="8130.4141" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="388" x="6198.91" y="8134.6426">addPropertiesToExporter(exporter: FamixJSONExporter): void</text></g><!--class ParametricMethod--><g id="elem_ParametricMethod"><rect codeLine="288" fill="#F1F1F1" height="136.0469" id="ParametricMethod" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="544" x="6709.91" y="8032"/><ellipse cx="6920.16" cy="8048" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M6922.9256,8043.875 Q6923.0819,8043.6563 6923.2694,8043.5469 Q6923.4569,8043.4375 6923.6756,8043.4375 Q6924.0506,8043.4375 6924.285,8043.7031 Q6924.5194,8043.9531 6924.5194,8044.5625 L6924.5194,8046.0156 Q6924.5194,8046.625 6924.285,8046.8906 Q6924.0506,8047.1563 6923.6756,8047.1563 Q6923.3319,8047.1563 6923.1288,8046.9531 Q6922.9256,8046.7656 6922.8163,8046.25 Q6922.7694,8045.8906 6922.5819,8045.7031 Q6922.2538,8045.3281 6921.6444,8045.1094 Q6921.035,8044.8906 6920.41,8044.8906 Q6919.6444,8044.8906 6919.0038,8045.2188 Q6918.3788,8045.5469 6917.8788,8046.2969 Q6917.3944,8047.0469 6917.3944,8048.0781 L6917.3944,8049.1719 Q6917.3944,8050.4063 6918.285,8051.2344 Q6919.1756,8052.0469 6920.7694,8052.0469 Q6921.7069,8052.0469 6922.3631,8051.7969 Q6922.7538,8051.6406 6923.1756,8051.2031 Q6923.4413,8050.9375 6923.5819,8050.8594 Q6923.7381,8050.7813 6923.9413,8050.7813 Q6924.2694,8050.7813 6924.5194,8051.0469 Q6924.785,8051.2969 6924.785,8051.6406 Q6924.785,8051.9844 6924.4413,8052.3906 Q6923.9413,8052.9688 6923.1444,8053.2969 Q6922.0663,8053.75 6920.7694,8053.75 Q6919.2538,8053.75 6918.0506,8053.125 Q6917.0663,8052.625 6916.3788,8051.5625 Q6915.6913,8050.4844 6915.6913,8049.2031 L6915.6913,8048.0469 Q6915.6913,8046.7188 6916.3006,8045.5781 Q6916.9256,8044.4219 6918.0194,8043.8125 Q6919.1131,8043.1875 6920.3475,8043.1875 Q6921.0819,8043.1875 6921.7225,8043.3594 Q6922.3788,8043.5156 6922.9256,8043.875 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="115" x="6940.66" y="8053.7285">ParametricMethod</text><line style="stroke:#181818;stroke-width:0.5;" x1="6710.91" x2="7252.91" y1="8064" y2="8064"/><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="6717.91" y="8075.3047"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="378" x="6729.91" y="8082.5332">_concreteParameters: Set&lt;Class | Interface | PrimitiveType&gt;</text><ellipse cx="6720.91" cy="8095.9141" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="370" x="6729.91" y="8100.1426">concreteParameters: Set&lt;Class | Interface | PrimitiveType&gt;</text><line style="stroke:#181818;stroke-width:0.5;" x1="6710.91" x2="7252.91" y1="8107.2188" y2="8107.2188"/><ellipse cx="6720.91" cy="8121.5234" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="518" x="6729.91" y="8125.752">addConcreteParameter(concreteParameter: Class | Interface | PrimitiveType): void</text><ellipse cx="6720.91" cy="8139.1328" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="6729.91" y="8143.3613">getJSON(): string</text><ellipse cx="6720.91" cy="8156.7422" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="388" x="6729.91" y="8160.9707">addPropertiesToExporter(exporter: FamixJSONExporter): void</text></g><!--class ParametricFunction--><g id="elem_ParametricFunction"><rect codeLine="295" fill="#F1F1F1" height="136.0469" id="ParametricFunction" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="544" x="6243.91" y="2769"/><ellipse cx="6450.16" cy="2785" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M6452.9256,2780.875 Q6453.0819,2780.6563 6453.2694,2780.5469 Q6453.4569,2780.4375 6453.6756,2780.4375 Q6454.0506,2780.4375 6454.285,2780.7031 Q6454.5194,2780.9531 6454.5194,2781.5625 L6454.5194,2783.0156 Q6454.5194,2783.625 6454.285,2783.8906 Q6454.0506,2784.1563 6453.6756,2784.1563 Q6453.3319,2784.1563 6453.1288,2783.9531 Q6452.9256,2783.7656 6452.8163,2783.25 Q6452.7694,2782.8906 6452.5819,2782.7031 Q6452.2538,2782.3281 6451.6444,2782.1094 Q6451.035,2781.8906 6450.41,2781.8906 Q6449.6444,2781.8906 6449.0038,2782.2188 Q6448.3788,2782.5469 6447.8788,2783.2969 Q6447.3944,2784.0469 6447.3944,2785.0781 L6447.3944,2786.1719 Q6447.3944,2787.4063 6448.285,2788.2344 Q6449.1756,2789.0469 6450.7694,2789.0469 Q6451.7069,2789.0469 6452.3631,2788.7969 Q6452.7538,2788.6406 6453.1756,2788.2031 Q6453.4413,2787.9375 6453.5819,2787.8594 Q6453.7381,2787.7813 6453.9413,2787.7813 Q6454.2694,2787.7813 6454.5194,2788.0469 Q6454.785,2788.2969 6454.785,2788.6406 Q6454.785,2788.9844 6454.4413,2789.3906 Q6453.9413,2789.9688 6453.1444,2790.2969 Q6452.0663,2790.75 6450.7694,2790.75 Q6449.2538,2790.75 6448.0506,2790.125 Q6447.0663,2789.625 6446.3788,2788.5625 Q6445.6913,2787.4844 6445.6913,2786.2031 L6445.6913,2785.0469 Q6445.6913,2783.7188 6446.3006,2782.5781 Q6446.9256,2781.4219 6448.0194,2780.8125 Q6449.1131,2780.1875 6450.3475,2780.1875 Q6451.0819,2780.1875 6451.7225,2780.3594 Q6452.3788,2780.5156 6452.9256,2780.875 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="123" x="6470.66" y="2790.7285">ParametricFunction</text><line style="stroke:#181818;stroke-width:0.5;" x1="6244.91" x2="6786.91" y1="2801" y2="2801"/><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="6251.91" y="2812.3047"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="378" x="6263.91" y="2819.5332">_concreteParameters: Set&lt;Class | Interface | PrimitiveType&gt;</text><ellipse cx="6254.91" cy="2832.9141" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="370" x="6263.91" y="2837.1426">concreteParameters: Set&lt;Class | Interface | PrimitiveType&gt;</text><line style="stroke:#181818;stroke-width:0.5;" x1="6244.91" x2="6786.91" y1="2844.2188" y2="2844.2188"/><ellipse cx="6254.91" cy="2858.5234" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="518" x="6263.91" y="2862.752">addConcreteParameter(concreteParameter: Class | Interface | PrimitiveType): void</text><ellipse cx="6254.91" cy="2876.1328" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="6263.91" y="2880.3613">getJSON(): string</text><ellipse cx="6254.91" cy="2893.7422" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="388" x="6263.91" y="2897.9707">addPropertiesToExporter(exporter: FamixJSONExporter): void</text></g><!--class ArrowFunction--><g id="elem_ArrowFunction"><rect codeLine="302" fill="#F1F1F1" height="83.2188" id="ArrowFunction" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="414" x="5736.91" y="6455"/><ellipse cx="5894.16" cy="6471" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M5896.9256,6466.875 Q5897.0819,6466.6563 5897.2694,6466.5469 Q5897.4569,6466.4375 5897.6756,6466.4375 Q5898.0506,6466.4375 5898.285,6466.7031 Q5898.5194,6466.9531 5898.5194,6467.5625 L5898.5194,6469.0156 Q5898.5194,6469.625 5898.285,6469.8906 Q5898.0506,6470.1563 5897.6756,6470.1563 Q5897.3319,6470.1563 5897.1288,6469.9531 Q5896.9256,6469.7656 5896.8163,6469.25 Q5896.7694,6468.8906 5896.5819,6468.7031 Q5896.2538,6468.3281 5895.6444,6468.1094 Q5895.035,6467.8906 5894.41,6467.8906 Q5893.6444,6467.8906 5893.0038,6468.2188 Q5892.3788,6468.5469 5891.8788,6469.2969 Q5891.3944,6470.0469 5891.3944,6471.0781 L5891.3944,6472.1719 Q5891.3944,6473.4063 5892.285,6474.2344 Q5893.1756,6475.0469 5894.7694,6475.0469 Q5895.7069,6475.0469 5896.3631,6474.7969 Q5896.7538,6474.6406 5897.1756,6474.2031 Q5897.4413,6473.9375 5897.5819,6473.8594 Q5897.7381,6473.7813 5897.9413,6473.7813 Q5898.2694,6473.7813 5898.5194,6474.0469 Q5898.785,6474.2969 5898.785,6474.6406 Q5898.785,6474.9844 5898.4413,6475.3906 Q5897.9413,6475.9688 5897.1444,6476.2969 Q5896.0663,6476.75 5894.7694,6476.75 Q5893.2538,6476.75 5892.0506,6476.125 Q5891.0663,6475.625 5890.3788,6474.5625 Q5889.6913,6473.4844 5889.6913,6472.2031 L5889.6913,6471.0469 Q5889.6913,6469.7188 5890.3006,6468.5781 Q5890.9256,6467.4219 5892.0194,6466.8125 Q5893.1131,6466.1875 5894.3475,6466.1875 Q5895.0819,6466.1875 5895.7225,6466.3594 Q5896.3788,6466.5156 5896.9256,6466.875 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="91" x="5914.66" y="6476.7285">ArrowFunction</text><line style="stroke:#181818;stroke-width:0.5;" x1="5737.91" x2="6149.91" y1="6487" y2="6487"/><line style="stroke:#181818;stroke-width:0.5;" x1="5737.91" x2="6149.91" y1="6495" y2="6495"/><ellipse cx="5747.91" cy="6509.3047" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="5756.91" y="6513.5332">getJSON(): string</text><ellipse cx="5747.91" cy="6526.9141" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="388" x="5756.91" y="6531.1426">addPropertiesToExporter(exporter: FamixJSONExporter): void</text></g><!--class ParametricArrowFunction--><g id="elem_ParametricArrowFunction"><rect codeLine="306" fill="#F1F1F1" height="136.0469" id="ParametricArrowFunction" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="544" x="5671.91" y="6836"/><ellipse cx="5860.16" cy="6852" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M5862.9256,6847.875 Q5863.0819,6847.6563 5863.2694,6847.5469 Q5863.4569,6847.4375 5863.6756,6847.4375 Q5864.0506,6847.4375 5864.285,6847.7031 Q5864.5194,6847.9531 5864.5194,6848.5625 L5864.5194,6850.0156 Q5864.5194,6850.625 5864.285,6850.8906 Q5864.0506,6851.1563 5863.6756,6851.1563 Q5863.3319,6851.1563 5863.1288,6850.9531 Q5862.9256,6850.7656 5862.8163,6850.25 Q5862.7694,6849.8906 5862.5819,6849.7031 Q5862.2538,6849.3281 5861.6444,6849.1094 Q5861.035,6848.8906 5860.41,6848.8906 Q5859.6444,6848.8906 5859.0038,6849.2188 Q5858.3788,6849.5469 5857.8788,6850.2969 Q5857.3944,6851.0469 5857.3944,6852.0781 L5857.3944,6853.1719 Q5857.3944,6854.4063 5858.285,6855.2344 Q5859.1756,6856.0469 5860.7694,6856.0469 Q5861.7069,6856.0469 5862.3631,6855.7969 Q5862.7538,6855.6406 5863.1756,6855.2031 Q5863.4413,6854.9375 5863.5819,6854.8594 Q5863.7381,6854.7813 5863.9413,6854.7813 Q5864.2694,6854.7813 5864.5194,6855.0469 Q5864.785,6855.2969 5864.785,6855.6406 Q5864.785,6855.9844 5864.4413,6856.3906 Q5863.9413,6856.9688 5863.1444,6857.2969 Q5862.0663,6857.75 5860.7694,6857.75 Q5859.2538,6857.75 5858.0506,6857.125 Q5857.0663,6856.625 5856.3788,6855.5625 Q5855.6913,6854.4844 5855.6913,6853.2031 L5855.6913,6852.0469 Q5855.6913,6850.7188 5856.3006,6849.5781 Q5856.9256,6848.4219 5858.0194,6847.8125 Q5859.1131,6847.1875 5860.3475,6847.1875 Q5861.0819,6847.1875 5861.7225,6847.3594 Q5862.3788,6847.5156 5862.9256,6847.875 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="159" x="5880.66" y="6857.7285">ParametricArrowFunction</text><line style="stroke:#181818;stroke-width:0.5;" x1="5672.91" x2="6214.91" y1="6868" y2="6868"/><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="5679.91" y="6879.3047"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="378" x="5691.91" y="6886.5332">_concreteParameters: Set&lt;Class | Interface | PrimitiveType&gt;</text><ellipse cx="5682.91" cy="6899.9141" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="370" x="5691.91" y="6904.1426">concreteParameters: Set&lt;Class | Interface | PrimitiveType&gt;</text><line style="stroke:#181818;stroke-width:0.5;" x1="5672.91" x2="6214.91" y1="6911.2188" y2="6911.2188"/><ellipse cx="5682.91" cy="6925.5234" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="518" x="5691.91" y="6929.752">addConcreteParameter(concreteParameter: Class | Interface | PrimitiveType): void</text><ellipse cx="5682.91" cy="6943.1328" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="5691.91" y="6947.3613">getJSON(): string</text><ellipse cx="5682.91" cy="6960.7422" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="388" x="5691.91" y="6964.9707">addPropertiesToExporter(exporter: FamixJSONExporter): void</text></g><!--class ParameterType--><g id="elem_ParameterType"><rect codeLine="313" fill="#F1F1F1" height="241.7031" id="ParameterType" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="1132" x="5604.91" y="3691"/><ellipse cx="6117.66" cy="3707" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M6120.4256,3702.875 Q6120.5819,3702.6563 6120.7694,3702.5469 Q6120.9569,3702.4375 6121.1756,3702.4375 Q6121.5506,3702.4375 6121.785,3702.7031 Q6122.0194,3702.9531 6122.0194,3703.5625 L6122.0194,3705.0156 Q6122.0194,3705.625 6121.785,3705.8906 Q6121.5506,3706.1563 6121.1756,3706.1563 Q6120.8319,3706.1563 6120.6288,3705.9531 Q6120.4256,3705.7656 6120.3163,3705.25 Q6120.2694,3704.8906 6120.0819,3704.7031 Q6119.7538,3704.3281 6119.1444,3704.1094 Q6118.535,3703.8906 6117.91,3703.8906 Q6117.1444,3703.8906 6116.5038,3704.2188 Q6115.8788,3704.5469 6115.3788,3705.2969 Q6114.8944,3706.0469 6114.8944,3707.0781 L6114.8944,3708.1719 Q6114.8944,3709.4063 6115.785,3710.2344 Q6116.6756,3711.0469 6118.2694,3711.0469 Q6119.2069,3711.0469 6119.8631,3710.7969 Q6120.2538,3710.6406 6120.6756,3710.2031 Q6120.9413,3709.9375 6121.0819,3709.8594 Q6121.2381,3709.7813 6121.4413,3709.7813 Q6121.7694,3709.7813 6122.0194,3710.0469 Q6122.285,3710.2969 6122.285,3710.6406 Q6122.285,3710.9844 6121.9413,3711.3906 Q6121.4413,3711.9688 6120.6444,3712.2969 Q6119.5663,3712.75 6118.2694,3712.75 Q6116.7538,3712.75 6115.5506,3712.125 Q6114.5663,3711.625 6113.8788,3710.5625 Q6113.1913,3709.4844 6113.1913,3708.2031 L6113.1913,3707.0469 Q6113.1913,3705.7188 6113.8006,3704.5781 Q6114.4256,3703.4219 6115.5194,3702.8125 Q6116.6131,3702.1875 6117.8475,3702.1875 Q6118.5819,3702.1875 6119.2225,3702.3594 Q6119.8788,3702.5156 6120.4256,3702.875 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="98" x="6138.16" y="3712.7285">ParameterType</text><line style="stroke:#181818;stroke-width:0.5;" x1="5605.91" x2="6735.91" y1="3723" y2="3723"/><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="5612.91" y="3734.3047"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="1106" x="5624.91" y="3741.5332">_parentGeneric: Method | ParametricArrowFunction | ArrowFunction | ParametricClass | ParametricInterface | ParametricMethod | Accessor | FamixFunction | ParametricFunction</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="5612.91" y="3751.9141"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="111" x="5624.91" y="3759.1426">_baseType: Type</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="5612.91" y="3769.5234"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="152" x="5624.91" y="3776.752">_arguments: Set&lt;Type&gt;</text><ellipse cx="5615.91" cy="3790.1328" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="1098" x="5624.91" y="3794.3613">parentGeneric: Method | ParametricArrowFunction | ArrowFunction | ParametricClass | ParametricInterface | ParametricMethod | Accessor | FamixFunction | ParametricFunction</text><ellipse cx="5615.91" cy="3807.7422" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="1098" x="5624.91" y="3811.9707">parentGeneric: Method | ParametricArrowFunction | ArrowFunction | ParametricClass | ParametricInterface | ParametricMethod | Accessor | FamixFunction | ParametricFunction</text><ellipse cx="5615.91" cy="3825.3516" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="103" x="5624.91" y="3829.5801">baseType: Type</text><ellipse cx="5615.91" cy="3842.9609" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="103" x="5624.91" y="3847.1895">baseType: Type</text><ellipse cx="5615.91" cy="3860.5703" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="144" x="5624.91" y="3864.7988">arguments: Set&lt;Type&gt;</text><line style="stroke:#181818;stroke-width:0.5;" x1="5605.91" x2="6735.91" y1="3871.875" y2="3871.875"/><ellipse cx="5615.91" cy="3886.1797" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="229" x="5624.91" y="3890.4082">addArgument(argument: Type): void</text><ellipse cx="5615.91" cy="3903.7891" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="5624.91" y="3908.0176">getJSON(): string</text><ellipse cx="5615.91" cy="3921.3984" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="388" x="5624.91" y="3925.627">addPropertiesToExporter(exporter: FamixJSONExporter): void</text></g><!--class Invocation--><g id="elem_Invocation"><rect codeLine="349" fill="#F1F1F1" height="294.5313" id="Invocation" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="414" x="2366.91" y="6349"/><ellipse cx="2537.66" cy="6365" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M2540.4256,6360.875 Q2540.5819,6360.6563 2540.7694,6360.5469 Q2540.9569,6360.4375 2541.1756,6360.4375 Q2541.5506,6360.4375 2541.785,6360.7031 Q2542.0194,6360.9531 2542.0194,6361.5625 L2542.0194,6363.0156 Q2542.0194,6363.625 2541.785,6363.8906 Q2541.5506,6364.1563 2541.1756,6364.1563 Q2540.8319,6364.1563 2540.6288,6363.9531 Q2540.4256,6363.7656 2540.3163,6363.25 Q2540.2694,6362.8906 2540.0819,6362.7031 Q2539.7538,6362.3281 2539.1444,6362.1094 Q2538.535,6361.8906 2537.91,6361.8906 Q2537.1444,6361.8906 2536.5038,6362.2188 Q2535.8788,6362.5469 2535.3788,6363.2969 Q2534.8944,6364.0469 2534.8944,6365.0781 L2534.8944,6366.1719 Q2534.8944,6367.4063 2535.785,6368.2344 Q2536.6756,6369.0469 2538.2694,6369.0469 Q2539.2069,6369.0469 2539.8631,6368.7969 Q2540.2538,6368.6406 2540.6756,6368.2031 Q2540.9413,6367.9375 2541.0819,6367.8594 Q2541.2381,6367.7813 2541.4413,6367.7813 Q2541.7694,6367.7813 2542.0194,6368.0469 Q2542.285,6368.2969 2542.285,6368.6406 Q2542.285,6368.9844 2541.9413,6369.3906 Q2541.4413,6369.9688 2540.6444,6370.2969 Q2539.5663,6370.75 2538.2694,6370.75 Q2536.7538,6370.75 2535.5506,6370.125 Q2534.5663,6369.625 2533.8788,6368.5625 Q2533.1913,6367.4844 2533.1913,6366.2031 L2533.1913,6365.0469 Q2533.1913,6363.7188 2533.8006,6362.5781 Q2534.4256,6361.4219 2535.5194,6360.8125 Q2536.6131,6360.1875 2537.8475,6360.1875 Q2538.5819,6360.1875 2539.2225,6360.3594 Q2539.8788,6360.5156 2540.4256,6360.875 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="64" x="2558.16" y="6370.7285">Invocation</text><line style="stroke:#181818;stroke-width:0.5;" x1="2367.91" x2="2779.91" y1="6381" y2="6381"/><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="2374.91" y="6392.3047"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="224" x="2386.91" y="6399.5332">_candidates: Set&lt;BehavioralEntity&gt;</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="2374.91" y="6409.9141"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="146" x="2386.91" y="6417.1426">_receiver: NamedEntity</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="2374.91" y="6427.5234"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="157" x="2386.91" y="6434.752">_sender: ContainerEntity</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="2374.91" y="6445.1328"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="110" x="2386.91" y="6452.3613">_signature: string</text><ellipse cx="2377.91" cy="6465.7422" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="216" x="2386.91" y="6469.9707">candidates: Set&lt;BehavioralEntity&gt;</text><ellipse cx="2377.91" cy="6483.3516" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="138" x="2386.91" y="6487.5801">receiver: NamedEntity</text><ellipse cx="2377.91" cy="6500.9609" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="138" x="2386.91" y="6505.1895">receiver: NamedEntity</text><ellipse cx="2377.91" cy="6518.5703" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="149" x="2386.91" y="6522.7988">sender: ContainerEntity</text><ellipse cx="2377.91" cy="6536.1797" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="149" x="2386.91" y="6540.4082">sender: ContainerEntity</text><ellipse cx="2377.91" cy="6553.7891" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="102" x="2386.91" y="6558.0176">signature: string</text><ellipse cx="2377.91" cy="6571.3984" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="102" x="2386.91" y="6575.627">signature: string</text><line style="stroke:#181818;stroke-width:0.5;" x1="2367.91" x2="2779.91" y1="6582.7031" y2="6582.7031"/><ellipse cx="2377.91" cy="6597.0078" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="305" x="2386.91" y="6601.2363">addCandidate(candidate: BehavioralEntity): void</text><ellipse cx="2377.91" cy="6614.6172" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="2386.91" y="6618.8457">getJSON(): string</text><ellipse cx="2377.91" cy="6632.2266" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="388" x="2386.91" y="6636.4551">addPropertiesToExporter(exporter: FamixJSONExporter): void</text></g><!--class Reference--><g id="elem_Reference"><rect codeLine="365" fill="#F1F1F1" height="188.875" id="Reference" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="414" x="3062.91" y="5150.5"/><ellipse cx="3232.66" cy="5166.5" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M3235.4256,5162.375 Q3235.5819,5162.1563 3235.7694,5162.0469 Q3235.9569,5161.9375 3236.1756,5161.9375 Q3236.5506,5161.9375 3236.785,5162.2031 Q3237.0194,5162.4531 3237.0194,5163.0625 L3237.0194,5164.5156 Q3237.0194,5165.125 3236.785,5165.3906 Q3236.5506,5165.6563 3236.1756,5165.6563 Q3235.8319,5165.6563 3235.6288,5165.4531 Q3235.4256,5165.2656 3235.3163,5164.75 Q3235.2694,5164.3906 3235.0819,5164.2031 Q3234.7538,5163.8281 3234.1444,5163.6094 Q3233.535,5163.3906 3232.91,5163.3906 Q3232.1444,5163.3906 3231.5038,5163.7188 Q3230.8788,5164.0469 3230.3788,5164.7969 Q3229.8944,5165.5469 3229.8944,5166.5781 L3229.8944,5167.6719 Q3229.8944,5168.9063 3230.785,5169.7344 Q3231.6756,5170.5469 3233.2694,5170.5469 Q3234.2069,5170.5469 3234.8631,5170.2969 Q3235.2538,5170.1406 3235.6756,5169.7031 Q3235.9413,5169.4375 3236.0819,5169.3594 Q3236.2381,5169.2813 3236.4413,5169.2813 Q3236.7694,5169.2813 3237.0194,5169.5469 Q3237.285,5169.7969 3237.285,5170.1406 Q3237.285,5170.4844 3236.9413,5170.8906 Q3236.4413,5171.4688 3235.6444,5171.7969 Q3234.5663,5172.25 3233.2694,5172.25 Q3231.7538,5172.25 3230.5506,5171.625 Q3229.5663,5171.125 3228.8788,5170.0625 Q3228.1913,5168.9844 3228.1913,5167.7031 L3228.1913,5166.5469 Q3228.1913,5165.2188 3228.8006,5164.0781 Q3229.4256,5162.9219 3230.5194,5162.3125 Q3231.6131,5161.6875 3232.8475,5161.6875 Q3233.5819,5161.6875 3234.2225,5161.8594 Q3234.8788,5162.0156 3235.4256,5162.375 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="66" x="3253.16" y="5172.2285">Reference</text><line style="stroke:#181818;stroke-width:0.5;" x1="3063.91" x2="3475.91" y1="5182.5" y2="5182.5"/><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="3070.91" y="5193.8047"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="156" x="3082.91" y="5201.0332">_source: ContainerEntity</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="3070.91" y="5211.4141"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="85" x="3082.91" y="5218.6426">_target: Type</text><ellipse cx="3073.91" cy="5232.0234" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="148" x="3082.91" y="5236.252">source: ContainerEntity</text><ellipse cx="3073.91" cy="5249.6328" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="148" x="3082.91" y="5253.8613">source: ContainerEntity</text><ellipse cx="3073.91" cy="5267.2422" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="77" x="3082.91" y="5271.4707">target: Type</text><ellipse cx="3073.91" cy="5284.8516" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="77" x="3082.91" y="5289.0801">target: Type</text><line style="stroke:#181818;stroke-width:0.5;" x1="3063.91" x2="3475.91" y1="5296.1563" y2="5296.1563"/><ellipse cx="3073.91" cy="5310.4609" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="3082.91" y="5314.6895">getJSON(): string</text><ellipse cx="3073.91" cy="5328.0703" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="388" x="3082.91" y="5332.2988">addPropertiesToExporter(exporter: FamixJSONExporter): void</text></g><!--class Variable--><g id="elem_Variable"><rect codeLine="375" fill="#F1F1F1" height="136.0469" id="Variable" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="414" x="1947.91" y="5675"/><ellipse cx="2124.66" cy="5691" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M2127.4256,5686.875 Q2127.5819,5686.6563 2127.7694,5686.5469 Q2127.9569,5686.4375 2128.1756,5686.4375 Q2128.5506,5686.4375 2128.785,5686.7031 Q2129.0194,5686.9531 2129.0194,5687.5625 L2129.0194,5689.0156 Q2129.0194,5689.625 2128.785,5689.8906 Q2128.5506,5690.1563 2128.1756,5690.1563 Q2127.8319,5690.1563 2127.6288,5689.9531 Q2127.4256,5689.7656 2127.3163,5689.25 Q2127.2694,5688.8906 2127.0819,5688.7031 Q2126.7538,5688.3281 2126.1444,5688.1094 Q2125.535,5687.8906 2124.91,5687.8906 Q2124.1444,5687.8906 2123.5038,5688.2188 Q2122.8788,5688.5469 2122.3788,5689.2969 Q2121.8944,5690.0469 2121.8944,5691.0781 L2121.8944,5692.1719 Q2121.8944,5693.4063 2122.785,5694.2344 Q2123.6756,5695.0469 2125.2694,5695.0469 Q2126.2069,5695.0469 2126.8631,5694.7969 Q2127.2538,5694.6406 2127.6756,5694.2031 Q2127.9413,5693.9375 2128.0819,5693.8594 Q2128.2381,5693.7813 2128.4413,5693.7813 Q2128.7694,5693.7813 2129.0194,5694.0469 Q2129.285,5694.2969 2129.285,5694.6406 Q2129.285,5694.9844 2128.9413,5695.3906 Q2128.4413,5695.9688 2127.6444,5696.2969 Q2126.5663,5696.75 2125.2694,5696.75 Q2123.7538,5696.75 2122.5506,5696.125 Q2121.5663,5695.625 2120.8788,5694.5625 Q2120.1913,5693.4844 2120.1913,5692.2031 L2120.1913,5691.0469 Q2120.1913,5689.7188 2120.8006,5688.5781 Q2121.4256,5687.4219 2122.5194,5686.8125 Q2123.6131,5686.1875 2124.8475,5686.1875 Q2125.5819,5686.1875 2126.2225,5686.3594 Q2126.8788,5686.5156 2127.4256,5686.875 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="52" x="2145.16" y="5696.7285">Variable</text><line style="stroke:#181818;stroke-width:0.5;" x1="1948.91" x2="2360.91" y1="5707" y2="5707"/><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="1955.91" y="5718.3047"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="251" x="1967.91" y="5725.5332">_parentContainerEntity: ContainerEntity</text><ellipse cx="1958.91" cy="5738.9141" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="243" x="1967.91" y="5743.1426">parentContainerEntity: ContainerEntity</text><ellipse cx="1958.91" cy="5756.5234" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="243" x="1967.91" y="5760.752">parentContainerEntity: ContainerEntity</text><line style="stroke:#181818;stroke-width:0.5;" x1="1948.91" x2="2360.91" y1="5767.8281" y2="5767.8281"/><ellipse cx="1958.91" cy="5782.1328" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="1967.91" y="5786.3613">getJSON(): string</text><ellipse cx="1958.91" cy="5799.7422" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="388" x="1967.91" y="5803.9707">addPropertiesToExporter(exporter: FamixJSONExporter): void</text></g><!--class Access--><g id="elem_Access"><rect codeLine="448" fill="#F1F1F1" height="241.7031" id="Access" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="414" x="2613.91" y="5124"/><ellipse cx="2794.16" cy="5140" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M2796.9256,5135.875 Q2797.0819,5135.6563 2797.2694,5135.5469 Q2797.4569,5135.4375 2797.6756,5135.4375 Q2798.0506,5135.4375 2798.285,5135.7031 Q2798.5194,5135.9531 2798.5194,5136.5625 L2798.5194,5138.0156 Q2798.5194,5138.625 2798.285,5138.8906 Q2798.0506,5139.1563 2797.6756,5139.1563 Q2797.3319,5139.1563 2797.1288,5138.9531 Q2796.9256,5138.7656 2796.8163,5138.25 Q2796.7694,5137.8906 2796.5819,5137.7031 Q2796.2538,5137.3281 2795.6444,5137.1094 Q2795.035,5136.8906 2794.41,5136.8906 Q2793.6444,5136.8906 2793.0038,5137.2188 Q2792.3788,5137.5469 2791.8788,5138.2969 Q2791.3944,5139.0469 2791.3944,5140.0781 L2791.3944,5141.1719 Q2791.3944,5142.4063 2792.285,5143.2344 Q2793.1756,5144.0469 2794.7694,5144.0469 Q2795.7069,5144.0469 2796.3631,5143.7969 Q2796.7538,5143.6406 2797.1756,5143.2031 Q2797.4413,5142.9375 2797.5819,5142.8594 Q2797.7381,5142.7813 2797.9413,5142.7813 Q2798.2694,5142.7813 2798.5194,5143.0469 Q2798.785,5143.2969 2798.785,5143.6406 Q2798.785,5143.9844 2798.4413,5144.3906 Q2797.9413,5144.9688 2797.1444,5145.2969 Q2796.0663,5145.75 2794.7694,5145.75 Q2793.2538,5145.75 2792.0506,5145.125 Q2791.0663,5144.625 2790.3788,5143.5625 Q2789.6913,5142.4844 2789.6913,5141.2031 L2789.6913,5140.0469 Q2789.6913,5138.7188 2790.3006,5137.5781 Q2790.9256,5136.4219 2792.0194,5135.8125 Q2793.1131,5135.1875 2794.3475,5135.1875 Q2795.0819,5135.1875 2795.7225,5135.3594 Q2796.3788,5135.5156 2796.9256,5135.875 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="2814.66" y="5145.7285">Access</text><line style="stroke:#181818;stroke-width:0.5;" x1="2614.91" x2="3026.91" y1="5156" y2="5156"/><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="2621.91" y="5167.3047"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="170" x="2633.91" y="5174.5332">_accessor: ContainerEntity</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="2621.91" y="5184.9141"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="162" x="2633.91" y="5192.1426">_variable: StructuralEntity</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="2621.91" y="5202.5234"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="110" x="2633.91" y="5209.752">_isWrite: boolean</text><ellipse cx="2624.91" cy="5223.1328" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="162" x="2633.91" y="5227.3613">accessor: ContainerEntity</text><ellipse cx="2624.91" cy="5240.7422" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="162" x="2633.91" y="5244.9707">accessor: ContainerEntity</text><ellipse cx="2624.91" cy="5258.3516" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="154" x="2633.91" y="5262.5801">variable: StructuralEntity</text><ellipse cx="2624.91" cy="5275.9609" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="154" x="2633.91" y="5280.1895">variable: StructuralEntity</text><ellipse cx="2624.91" cy="5293.5703" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="102" x="2633.91" y="5297.7988">isWrite: boolean</text><ellipse cx="2624.91" cy="5311.1797" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="102" x="2633.91" y="5315.4082">isWrite: boolean</text><line style="stroke:#181818;stroke-width:0.5;" x1="2614.91" x2="3026.91" y1="5322.4844" y2="5322.4844"/><ellipse cx="2624.91" cy="5336.7891" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="2633.91" y="5341.0176">getJSON(): string</text><ellipse cx="2624.91" cy="5354.3984" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="388" x="2633.91" y="5358.627">addPropertiesToExporter(exporter: FamixJSONExporter): void</text></g><!--class Concretisation--><g id="elem_Concretisation"><rect codeLine="461" fill="#F1F1F1" height="188.875" id="Concretisation" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="629" x="6081.41" y="2414"/><ellipse cx="6346.16" cy="2430" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M6348.9256,2425.875 Q6349.0819,2425.6563 6349.2694,2425.5469 Q6349.4569,2425.4375 6349.6756,2425.4375 Q6350.0506,2425.4375 6350.285,2425.7031 Q6350.5194,2425.9531 6350.5194,2426.5625 L6350.5194,2428.0156 Q6350.5194,2428.625 6350.285,2428.8906 Q6350.0506,2429.1563 6349.6756,2429.1563 Q6349.3319,2429.1563 6349.1288,2428.9531 Q6348.9256,2428.7656 6348.8163,2428.25 Q6348.7694,2427.8906 6348.5819,2427.7031 Q6348.2538,2427.3281 6347.6444,2427.1094 Q6347.035,2426.8906 6346.41,2426.8906 Q6345.6444,2426.8906 6345.0038,2427.2188 Q6344.3788,2427.5469 6343.8788,2428.2969 Q6343.3944,2429.0469 6343.3944,2430.0781 L6343.3944,2431.1719 Q6343.3944,2432.4063 6344.285,2433.2344 Q6345.1756,2434.0469 6346.7694,2434.0469 Q6347.7069,2434.0469 6348.3631,2433.7969 Q6348.7538,2433.6406 6349.1756,2433.2031 Q6349.4413,2432.9375 6349.5819,2432.8594 Q6349.7381,2432.7813 6349.9413,2432.7813 Q6350.2694,2432.7813 6350.5194,2433.0469 Q6350.785,2433.2969 6350.785,2433.6406 Q6350.785,2433.9844 6350.4413,2434.3906 Q6349.9413,2434.9688 6349.1444,2435.2969 Q6348.0663,2435.75 6346.7694,2435.75 Q6345.2538,2435.75 6344.0506,2435.125 Q6343.0663,2434.625 6342.3788,2433.5625 Q6341.6913,2432.4844 6341.6913,2431.2031 L6341.6913,2430.0469 Q6341.6913,2428.7188 6342.3006,2427.5781 Q6342.9256,2426.4219 6344.0194,2425.8125 Q6345.1131,2425.1875 6346.3475,2425.1875 Q6347.0819,2425.1875 6347.7225,2425.3594 Q6348.3788,2425.5156 6348.9256,2425.875 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="91" x="6366.66" y="2435.7285">Concretisation</text><line style="stroke:#181818;stroke-width:0.5;" x1="6082.41" x2="6709.41" y1="2446" y2="2446"/><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="6089.41" y="2457.3047"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="595" x="6101.41" y="2464.5332">_genericEntity: ParametricClass | ParametricInterface | ParametricMethod | ParametricFunction</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="6089.41" y="2474.9141"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="603" x="6101.41" y="2482.1426">_concreteEntity: ParametricClass | ParametricInterface | ParametricMethod | ParametricFunction</text><ellipse cx="6092.41" cy="2495.5234" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="587" x="6101.41" y="2499.752">genericEntity: ParametricClass | ParametricInterface | ParametricMethod | ParametricFunction</text><ellipse cx="6092.41" cy="2513.1328" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="587" x="6101.41" y="2517.3613">genericEntity: ParametricClass | ParametricInterface | ParametricMethod | ParametricFunction</text><ellipse cx="6092.41" cy="2530.7422" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="595" x="6101.41" y="2534.9707">concreteEntity: ParametricClass | ParametricInterface | ParametricMethod | ParametricFunction</text><ellipse cx="6092.41" cy="2548.3516" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="595" x="6101.41" y="2552.5801">concreteEntity: ParametricClass | ParametricInterface | ParametricMethod | ParametricFunction</text><line style="stroke:#181818;stroke-width:0.5;" x1="6082.41" x2="6709.41" y1="2559.6563" y2="2559.6563"/><ellipse cx="6092.41" cy="2573.9609" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="6101.41" y="2578.1895">getJSON(): string</text><ellipse cx="6092.41" cy="2591.5703" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="388" x="6101.41" y="2595.7988">addPropertiesToExporter(exporter: FamixJSONExporter): void</text></g><!--class Enum--><g id="elem_Enum"><rect codeLine="471" fill="#F1F1F1" height="136.0469" id="Enum" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="414" x="4536.91" y="4664"/><ellipse cx="4721.66" cy="4680" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M4724.4256,4675.875 Q4724.5819,4675.6563 4724.7694,4675.5469 Q4724.9569,4675.4375 4725.1756,4675.4375 Q4725.5506,4675.4375 4725.785,4675.7031 Q4726.0194,4675.9531 4726.0194,4676.5625 L4726.0194,4678.0156 Q4726.0194,4678.625 4725.785,4678.8906 Q4725.5506,4679.1563 4725.1756,4679.1563 Q4724.8319,4679.1563 4724.6288,4678.9531 Q4724.4256,4678.7656 4724.3163,4678.25 Q4724.2694,4677.8906 4724.0819,4677.7031 Q4723.7538,4677.3281 4723.1444,4677.1094 Q4722.535,4676.8906 4721.91,4676.8906 Q4721.1444,4676.8906 4720.5038,4677.2188 Q4719.8788,4677.5469 4719.3788,4678.2969 Q4718.8944,4679.0469 4718.8944,4680.0781 L4718.8944,4681.1719 Q4718.8944,4682.4063 4719.785,4683.2344 Q4720.6756,4684.0469 4722.2694,4684.0469 Q4723.2069,4684.0469 4723.8631,4683.7969 Q4724.2538,4683.6406 4724.6756,4683.2031 Q4724.9413,4682.9375 4725.0819,4682.8594 Q4725.2381,4682.7813 4725.4413,4682.7813 Q4725.7694,4682.7813 4726.0194,4683.0469 Q4726.285,4683.2969 4726.285,4683.6406 Q4726.285,4683.9844 4725.9413,4684.3906 Q4725.4413,4684.9688 4724.6444,4685.2969 Q4723.5663,4685.75 4722.2694,4685.75 Q4720.7538,4685.75 4719.5506,4685.125 Q4718.5663,4684.625 4717.8788,4683.5625 Q4717.1913,4682.4844 4717.1913,4681.2031 L4717.1913,4680.0469 Q4717.1913,4678.7188 4717.8006,4677.5781 Q4718.4256,4676.4219 4719.5194,4675.8125 Q4720.6131,4675.1875 4721.8475,4675.1875 Q4722.5819,4675.1875 4723.2225,4675.3594 Q4723.8788,4675.5156 4724.4256,4675.875 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="36" x="4742.16" y="4685.7285">Enum</text><line style="stroke:#181818;stroke-width:0.5;" x1="4537.91" x2="4949.91" y1="4696" y2="4696"/><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="4544.91" y="4707.3047"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="166" x="4556.91" y="4714.5332">_values: Set&lt;EnumValue&gt;</text><ellipse cx="4547.91" cy="4727.9141" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="158" x="4556.91" y="4732.1426">values: Set&lt;EnumValue&gt;</text><line style="stroke:#181818;stroke-width:0.5;" x1="4537.91" x2="4949.91" y1="4739.2188" y2="4739.2188"/><ellipse cx="4547.91" cy="4753.5234" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="218" x="4556.91" y="4757.752">addValue(value: EnumValue): void</text><ellipse cx="4547.91" cy="4771.1328" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="4556.91" y="4775.3613">getJSON(): string</text><ellipse cx="4547.91" cy="4788.7422" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="388" x="4556.91" y="4792.9707">addPropertiesToExporter(exporter: FamixJSONExporter): void</text></g><!--class EnumValue--><g id="elem_EnumValue"><rect codeLine="478" fill="#F1F1F1" height="136.0469" id="EnumValue" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="414" x="4630.91" y="5675"/><ellipse cx="4797.66" cy="5691" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M4800.4256,5686.875 Q4800.5819,5686.6563 4800.7694,5686.5469 Q4800.9569,5686.4375 4801.1756,5686.4375 Q4801.5506,5686.4375 4801.785,5686.7031 Q4802.0194,5686.9531 4802.0194,5687.5625 L4802.0194,5689.0156 Q4802.0194,5689.625 4801.785,5689.8906 Q4801.5506,5690.1563 4801.1756,5690.1563 Q4800.8319,5690.1563 4800.6288,5689.9531 Q4800.4256,5689.7656 4800.3163,5689.25 Q4800.2694,5688.8906 4800.0819,5688.7031 Q4799.7538,5688.3281 4799.1444,5688.1094 Q4798.535,5687.8906 4797.91,5687.8906 Q4797.1444,5687.8906 4796.5038,5688.2188 Q4795.8788,5688.5469 4795.3788,5689.2969 Q4794.8944,5690.0469 4794.8944,5691.0781 L4794.8944,5692.1719 Q4794.8944,5693.4063 4795.785,5694.2344 Q4796.6756,5695.0469 4798.2694,5695.0469 Q4799.2069,5695.0469 4799.8631,5694.7969 Q4800.2538,5694.6406 4800.6756,5694.2031 Q4800.9413,5693.9375 4801.0819,5693.8594 Q4801.2381,5693.7813 4801.4413,5693.7813 Q4801.7694,5693.7813 4802.0194,5694.0469 Q4802.285,5694.2969 4802.285,5694.6406 Q4802.285,5694.9844 4801.9413,5695.3906 Q4801.4413,5695.9688 4800.6444,5696.2969 Q4799.5663,5696.75 4798.2694,5696.75 Q4796.7538,5696.75 4795.5506,5696.125 Q4794.5663,5695.625 4793.8788,5694.5625 Q4793.1913,5693.4844 4793.1913,5692.2031 L4793.1913,5691.0469 Q4793.1913,5689.7188 4793.8006,5688.5781 Q4794.4256,5687.4219 4795.5194,5686.8125 Q4796.6131,5686.1875 4797.8475,5686.1875 Q4798.5819,5686.1875 4799.2225,5686.3594 Q4799.8788,5686.5156 4800.4256,5686.875 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="72" x="4818.16" y="5696.7285">EnumValue</text><line style="stroke:#181818;stroke-width:0.5;" x1="4631.91" x2="5043.91" y1="5707" y2="5707"/><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="4638.91" y="5718.3047"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="128" x="4650.91" y="5725.5332">_parentEntity: Enum</text><ellipse cx="4641.91" cy="5738.9141" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="120" x="4650.91" y="5743.1426">parentEntity: Enum</text><ellipse cx="4641.91" cy="5756.5234" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="120" x="4650.91" y="5760.752">parentEntity: Enum</text><line style="stroke:#181818;stroke-width:0.5;" x1="4631.91" x2="5043.91" y1="5767.8281" y2="5767.8281"/><ellipse cx="4641.91" cy="5782.1328" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="4650.91" y="5786.3613">getJSON(): string</text><ellipse cx="4641.91" cy="5799.7422" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="388" x="4650.91" y="5803.9707">addPropertiesToExporter(exporter: FamixJSONExporter): void</text></g><!--class IndexedFileAnchor--><g id="elem_IndexedFileAnchor"><rect codeLine="485" fill="#F1F1F1" height="241.7031" id="IndexedFileAnchor" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="414" x="2119.91" y="3070.5"/><ellipse cx="2264.16" cy="3086.5" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M2266.9256,3082.375 Q2267.0819,3082.1563 2267.2694,3082.0469 Q2267.4569,3081.9375 2267.6756,3081.9375 Q2268.0506,3081.9375 2268.285,3082.2031 Q2268.5194,3082.4531 2268.5194,3083.0625 L2268.5194,3084.5156 Q2268.5194,3085.125 2268.285,3085.3906 Q2268.0506,3085.6563 2267.6756,3085.6563 Q2267.3319,3085.6563 2267.1288,3085.4531 Q2266.9256,3085.2656 2266.8163,3084.75 Q2266.7694,3084.3906 2266.5819,3084.2031 Q2266.2538,3083.8281 2265.6444,3083.6094 Q2265.035,3083.3906 2264.41,3083.3906 Q2263.6444,3083.3906 2263.0038,3083.7188 Q2262.3788,3084.0469 2261.8788,3084.7969 Q2261.3944,3085.5469 2261.3944,3086.5781 L2261.3944,3087.6719 Q2261.3944,3088.9063 2262.285,3089.7344 Q2263.1756,3090.5469 2264.7694,3090.5469 Q2265.7069,3090.5469 2266.3631,3090.2969 Q2266.7538,3090.1406 2267.1756,3089.7031 Q2267.4413,3089.4375 2267.5819,3089.3594 Q2267.7381,3089.2813 2267.9413,3089.2813 Q2268.2694,3089.2813 2268.5194,3089.5469 Q2268.785,3089.7969 2268.785,3090.1406 Q2268.785,3090.4844 2268.4413,3090.8906 Q2267.9413,3091.4688 2267.1444,3091.7969 Q2266.0663,3092.25 2264.7694,3092.25 Q2263.2538,3092.25 2262.0506,3091.625 Q2261.0663,3091.125 2260.3788,3090.0625 Q2259.6913,3088.9844 2259.6913,3087.7031 L2259.6913,3086.5469 Q2259.6913,3085.2188 2260.3006,3084.0781 Q2260.9256,3082.9219 2262.0194,3082.3125 Q2263.1131,3081.6875 2264.3475,3081.6875 Q2265.0819,3081.6875 2265.7225,3081.8594 Q2266.3788,3082.0156 2266.9256,3082.375 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="117" x="2284.66" y="3092.2285">IndexedFileAnchor</text><line style="stroke:#181818;stroke-width:0.5;" x1="2120.91" x2="2532.91" y1="3102.5" y2="3102.5"/><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="2127.91" y="3113.8047"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="116" x="2139.91" y="3121.0332">_startPos: number</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="2127.91" y="3131.4141"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="112" x="2139.91" y="3138.6426">_endPos: number</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="2127.91" y="3149.0234"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="105" x="2139.91" y="3156.252">_fileName: string</text><ellipse cx="2130.91" cy="3169.6328" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="2139.91" y="3173.8613">startPos: number</text><ellipse cx="2130.91" cy="3187.2422" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="2139.91" y="3191.4707">startPos: number</text><ellipse cx="2130.91" cy="3204.8516" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="104" x="2139.91" y="3209.0801">endPos: number</text><ellipse cx="2130.91" cy="3222.4609" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="104" x="2139.91" y="3226.6895">endPos: number</text><ellipse cx="2130.91" cy="3240.0703" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="97" x="2139.91" y="3244.2988">fileName: string</text><ellipse cx="2130.91" cy="3257.6797" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="97" x="2139.91" y="3261.9082">fileName: string</text><line style="stroke:#181818;stroke-width:0.5;" x1="2120.91" x2="2532.91" y1="3268.9844" y2="3268.9844"/><ellipse cx="2130.91" cy="3283.2891" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="2139.91" y="3287.5176">getJSON(): string</text><ellipse cx="2130.91" cy="3300.8984" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="388" x="2139.91" y="3305.127">addPropertiesToExporter(exporter: FamixJSONExporter): void</text></g><!--class ParameterConcretisation--><g id="elem_ParameterConcretisation"><rect codeLine="498" fill="#F1F1F1" height="241.7031" id="ParameterConcretisation" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="414" x="5265.91" y="2059"/><ellipse cx="5390.16" cy="2075" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M5392.9256,2070.875 Q5393.0819,2070.6563 5393.2694,2070.5469 Q5393.4569,2070.4375 5393.6756,2070.4375 Q5394.0506,2070.4375 5394.285,2070.7031 Q5394.5194,2070.9531 5394.5194,2071.5625 L5394.5194,2073.0156 Q5394.5194,2073.625 5394.285,2073.8906 Q5394.0506,2074.1563 5393.6756,2074.1563 Q5393.3319,2074.1563 5393.1288,2073.9531 Q5392.9256,2073.7656 5392.8163,2073.25 Q5392.7694,2072.8906 5392.5819,2072.7031 Q5392.2538,2072.3281 5391.6444,2072.1094 Q5391.035,2071.8906 5390.41,2071.8906 Q5389.6444,2071.8906 5389.0038,2072.2188 Q5388.3788,2072.5469 5387.8788,2073.2969 Q5387.3944,2074.0469 5387.3944,2075.0781 L5387.3944,2076.1719 Q5387.3944,2077.4063 5388.285,2078.2344 Q5389.1756,2079.0469 5390.7694,2079.0469 Q5391.7069,2079.0469 5392.3631,2078.7969 Q5392.7538,2078.6406 5393.1756,2078.2031 Q5393.4413,2077.9375 5393.5819,2077.8594 Q5393.7381,2077.7813 5393.9413,2077.7813 Q5394.2694,2077.7813 5394.5194,2078.0469 Q5394.785,2078.2969 5394.785,2078.6406 Q5394.785,2078.9844 5394.4413,2079.3906 Q5393.9413,2079.9688 5393.1444,2080.2969 Q5392.0663,2080.75 5390.7694,2080.75 Q5389.2538,2080.75 5388.0506,2080.125 Q5387.0663,2079.625 5386.3788,2078.5625 Q5385.6913,2077.4844 5385.6913,2076.2031 L5385.6913,2075.0469 Q5385.6913,2073.7188 5386.3006,2072.5781 Q5386.9256,2071.4219 5388.0194,2070.8125 Q5389.1131,2070.1875 5390.3475,2070.1875 Q5391.0819,2070.1875 5391.7225,2070.3594 Q5392.3788,2070.5156 5392.9256,2070.875 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="157" x="5410.66" y="2080.7285">ParameterConcretisation</text><line style="stroke:#181818;stroke-width:0.5;" x1="5266.91" x2="5678.91" y1="2091" y2="2091"/><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="5273.91" y="2102.3047"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="227" x="5285.91" y="2109.5332">_genericParameter: ParameterType</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="5273.91" y="2119.9141"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="222" x="5285.91" y="2127.1426">_concreteParameter: PrimitiveType</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="5273.91" y="2137.5234"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="239" x="5285.91" y="2144.752">_concretisations: Set&lt;Concretisation&gt;</text><ellipse cx="5276.91" cy="2158.1328" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="219" x="5285.91" y="2162.3613">genericParameter: ParameterType</text><ellipse cx="5276.91" cy="2175.7422" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="219" x="5285.91" y="2179.9707">genericParameter: ParameterType</text><ellipse cx="5276.91" cy="2193.3516" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="214" x="5285.91" y="2197.5801">concreteParameter: PrimitiveType</text><ellipse cx="5276.91" cy="2210.9609" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="214" x="5285.91" y="2215.1895">concreteParameter: PrimitiveType</text><ellipse cx="5276.91" cy="2228.5703" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="231" x="5285.91" y="2232.7988">concretisations: Set&lt;Concretisation&gt;</text><line style="stroke:#181818;stroke-width:0.5;" x1="5266.91" x2="5678.91" y1="2239.875" y2="2239.875"/><ellipse cx="5276.91" cy="2254.1797" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="346" x="5285.91" y="2258.4082">addConcretisation(concretisation: Concretisation): void</text><ellipse cx="5276.91" cy="2271.7891" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="5285.91" y="2276.0176">getJSON(): string</text><ellipse cx="5276.91" cy="2289.3984" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="388" x="5285.91" y="2293.627">addPropertiesToExporter(exporter: FamixJSONExporter): void</text></g><!--class SearchParameters--><g id="elem_SearchParameters"><rect codeLine="511" fill="#F1F1F1" height="100.8281" id="SearchParameters" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="192" x="7124.91" y="420.5"/><ellipse cx="7158.81" cy="436.5" fill="#B4A7E5" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M7159.7631,433.1406 L7159.7631,439.7969 L7161.4819,439.7969 Q7162.0912,439.7969 7162.3569,440.0313 Q7162.6225,440.2656 7162.6225,440.6563 Q7162.6225,441.0313 7162.3569,441.2656 Q7162.0912,441.5 7161.4819,441.5 L7156.3412,441.5 Q7155.7319,441.5 7155.4662,441.2656 Q7155.2006,441.0313 7155.2006,440.6406 Q7155.2006,440.2656 7155.4662,440.0313 Q7155.7319,439.7969 7156.3412,439.7969 L7158.06,439.7969 L7158.06,433.1406 L7156.3412,433.1406 Q7155.7319,433.1406 7155.4662,432.9063 Q7155.2006,432.6719 7155.2006,432.2813 Q7155.2006,431.9063 7155.4662,431.6719 Q7155.7319,431.4375 7156.3412,431.4375 L7161.4819,431.4375 Q7162.0912,431.4375 7162.3569,431.6719 Q7162.6225,431.9063 7162.6225,432.2813 Q7162.6225,432.6719 7162.3569,432.9063 Q7162.0912,433.1406 7161.4819,433.1406 L7159.7631,433.1406 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" font-style="italic" lengthAdjust="spacing" textLength="118" x="7177.01" y="442.2285">SearchParameters</text><line style="stroke:#181818;stroke-width:0.5;" x1="7125.91" x2="7315.91" y1="452.5" y2="452.5"/><ellipse cx="7135.91" cy="466.8047" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="128" x="7144.91" y="471.0332">searchArray: string[]</text><ellipse cx="7135.91" cy="484.4141" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="122" x="7144.91" y="488.6426">targetArray: string[]</text><ellipse cx="7135.91" cy="502.0234" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="166" x="7144.91" y="506.252">start?: number | undefined</text><line style="stroke:#181818;stroke-width:0.5;" x1="7125.91" x2="7315.91" y1="513.3281" y2="513.3281"/></g><!--class EntityDictionary--><g id="elem_EntityDictionary"><rect codeLine="516" fill="#F1F1F1" height="928.4688" id="EntityDictionary" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="1835" x="5254.41" y="7"/><ellipse cx="6118.66" cy="23" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M6121.4256,18.875 Q6121.5819,18.6563 6121.7694,18.5469 Q6121.9569,18.4375 6122.1756,18.4375 Q6122.5506,18.4375 6122.785,18.7031 Q6123.0194,18.9531 6123.0194,19.5625 L6123.0194,21.0156 Q6123.0194,21.625 6122.785,21.8906 Q6122.5506,22.1563 6122.1756,22.1563 Q6121.8319,22.1563 6121.6288,21.9531 Q6121.4256,21.7656 6121.3163,21.25 Q6121.2694,20.8906 6121.0819,20.7031 Q6120.7538,20.3281 6120.1444,20.1094 Q6119.535,19.8906 6118.91,19.8906 Q6118.1444,19.8906 6117.5038,20.2188 Q6116.8788,20.5469 6116.3788,21.2969 Q6115.8944,22.0469 6115.8944,23.0781 L6115.8944,24.1719 Q6115.8944,25.4063 6116.785,26.2344 Q6117.6756,27.0469 6119.2694,27.0469 Q6120.2069,27.0469 6120.8631,26.7969 Q6121.2538,26.6406 6121.6756,26.2031 Q6121.9413,25.9375 6122.0819,25.8594 Q6122.2381,25.7813 6122.4413,25.7813 Q6122.7694,25.7813 6123.0194,26.0469 Q6123.285,26.2969 6123.285,26.6406 Q6123.285,26.9844 6122.9413,27.3906 Q6122.4413,27.9688 6121.6444,28.2969 Q6120.5663,28.75 6119.2694,28.75 Q6117.7538,28.75 6116.5506,28.125 Q6115.5663,27.625 6114.8788,26.5625 Q6114.1913,25.4844 6114.1913,24.2031 L6114.1913,23.0469 Q6114.1913,21.7188 6114.8006,20.5781 Q6115.4256,19.4219 6116.5194,18.8125 Q6117.6131,18.1875 6118.8475,18.1875 Q6119.5819,18.1875 6120.2225,18.3594 Q6120.8788,18.5156 6121.4256,18.875 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="98" x="6139.16" y="28.7285">EntityDictionary</text><line style="stroke:#181818;stroke-width:0.5;" x1="5255.41" x2="7088.41" y1="39" y2="39"/><ellipse cx="5265.41" cy="53.3047" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="171" x="5274.41" y="57.5332">famixRep: FamixRepository</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="5262.41" y="67.9141"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="243" x="5274.41" y="75.1426">fmxAliasMap: Map&lt;string, Famix.Alias&gt;</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="5262.41" y="85.5234"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="408" x="5274.41" y="92.752">fmxClassMap: Map&lt;string, Famix.Class | Famix.ParametricClass&gt;</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="5262.41" y="103.1328"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="468" x="5274.41" y="110.3613">fmxInterfaceMap: Map&lt;string, Famix.Interface | Famix.ParametricInterface&gt;</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="5262.41" y="120.7422"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="275" x="5274.41" y="127.9707">fmxModuleMap: Map&lt;string, Famix.Module&gt;</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="5262.41" y="138.3516"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="375" x="5274.41" y="145.5801">fmxFileMap: Map&lt;string, Famix.Module | Famix.ScriptEntity&gt;</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="5262.41" y="155.9609"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="524" x="5274.41" y="163.1895">fmxTypeMap: Map&lt;TSMorphTypeDeclaration, Famix.Type | Famix.ParameterType&gt;</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="5262.41" y="173.5703"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="353" x="5274.41" y="180.7988">fmxPrimitiveTypeMap: Map&lt;string, Famix.PrimitiveType&gt;</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="5262.41" y="191.1797"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="806" x="5274.41" y="198.4082">fmxFunctionAndMethodMap: Map&lt;string, Famix.Method | Famix.ParametricMethod | Famix.Function | Famix.ParametricFunction&gt;</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="5262.41" y="208.7891"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="365" x="5274.41" y="216.0176">fmxArrowFunctionMap: Map&lt;string, Famix.ArrowFunction&gt;</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="5262.41" y="226.3984"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="164" x="5274.41" y="233.627">UNKNOWN_VALUE: string</text><ellipse cx="5265.41" cy="247.0078" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="406" x="5274.41" y="251.2363">fmxElementObjectMap: Map&lt;Famix.Entity, TSMorphObjectType&gt;</text><ellipse cx="5265.41" cy="264.6172" fill="none" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="436" x="5274.41" y="268.8457">tsMorphElementObjectMap: Map&lt;TSMorphObjectType, Famix.Entity&gt;</text><line style="stroke:#181818;stroke-width:0.5;" x1="5255.41" x2="7088.41" y1="275.9219" y2="275.9219"/><ellipse cx="5265.41" cy="290.2266" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="627" x="5274.41" y="294.4551">addSourceAnchor(fmx: Famix.SourcedEntity, node: TSMorphObjectType): Famix.IndexedFileAnchor</text><ellipse cx="5265.41" cy="307.8359" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="677" x="5274.41" y="312.0645">makeFamixIndexFileAnchor(sourceElement: TSMorphObjectType, famixElement: Famix.SourcedEntity): void</text><ellipse cx="5265.41" cy="325.4453" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="570" x="5274.41" y="329.6738">createOrGetFamixFile(f: SourceFile, isModule: boolean): Famix.Module | Famix.ScriptEntity</text><ellipse cx="5265.41" cy="343.0547" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="404" x="5274.41" y="347.2832">createOrGetFamixModule(m: ModuleDeclaration): Famix.Module</text><ellipse cx="5265.41" cy="360.6641" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="346" x="5274.41" y="364.8926">createFamixAlias(a: TypeAliasDeclaration): Famix.Alias</text><ellipse cx="5265.41" cy="378.2734" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="532" x="5274.41" y="382.502">createOrGetFamixClass(cls: ClassDeclaration): Famix.Class | Famix.ParametricClass</text><ellipse cx="5265.41" cy="395.8828" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="623" x="5274.41" y="400.1113">createOrGetFamixInterface(inter: InterfaceDeclaration): Famix.Interface | Famix.ParametricInterface</text><ellipse cx="5265.41" cy="413.4922" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="1348" x="5274.41" y="417.7207">createOrGetFamixConcreteElement(concreteElement: ParametricVariantType, concreteElementDeclaration: ConcreteElementTSMorphType, concreteArguments: TypeNode&lt;ts.TypeNode&gt;[]): ParametricVariantType</text><ellipse cx="5265.41" cy="431.1016" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="557" x="5274.41" y="435.3301">createFamixProperty(property: PropertyDeclaration | PropertySignature): Famix.Property</text><ellipse cx="5265.41" cy="448.7109" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="1554" x="5274.41" y="452.9395">createOrGetFamixMethod(method: MethodDeclaration | ConstructorDeclaration | MethodSignature | GetAccessorDeclaration | SetAccessorDeclaration, currentCC: { [key: string]: number; }): Famix.Method | Famix.ParametricMethod | Famix.Accessor</text><ellipse cx="5265.41" cy="466.3203" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="989" x="5274.41" y="470.5488">createOrGetFamixFunction(func: FunctionDeclaration | FunctionExpression, currentCC: { [key: string]: number; }): Famix.Function | Famix.ParametricFunction</text><ellipse cx="5265.41" cy="483.9297" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="454" x="5274.41" y="488.1582">createFamixParameter(param: ParameterDeclaration): Famix.Parameter</text><ellipse cx="5265.41" cy="501.5391" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="522" x="5274.41" y="505.7676">createFamixParameterType(tp: TypeParameterDeclaration): Famix.ParameterType</text><ellipse cx="5265.41" cy="519.1484" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="913" x="5274.41" y="523.377">createOrGetFamixConcreteType(element: TypeNode&lt;ts.TypeNode&gt;): Famix.Class | Famix.Interface | Famix.ParameterType | Famix.PrimitiveType</text><ellipse cx="5265.41" cy="536.7578" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="422" x="5274.41" y="540.9863">createFamixVariable(variable: VariableDeclaration): Famix.Variable</text><ellipse cx="5265.41" cy="554.3672" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="394" x="5274.41" y="558.5957">createFamixEnum(enumEntity: EnumDeclaration): Famix.Enum</text><ellipse cx="5265.41" cy="571.9766" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="461" x="5274.41" y="576.2051">createFamixEnumValue(enumMember: EnumMember): Famix.EnumValue</text><ellipse cx="5265.41" cy="589.5859" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="1397" x="5274.41" y="593.8145">createOrGetFamixDecorator(decorator: Decorator, decoratedEntity: PropertyDeclaration | MethodDeclaration | GetAccessorDeclaration | SetAccessorDeclaration | ParameterDeclaration | ClassDeclaration): Famix.Decorator</text><ellipse cx="5265.41" cy="607.1953" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="737" x="5274.41" y="611.4238">createFamixComment(comment: CommentRange, fmxScope: Famix.NamedEntity, isJSDoc: boolean): Famix.Comment</text><ellipse cx="5265.41" cy="624.8047" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="573" x="5274.41" y="629.0332">createOrGetFamixType(typeName: string, element: TSMorphTypeDeclaration): Famix.Type</text><ellipse cx="5265.41" cy="642.4141" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="637" x="5274.41" y="646.6426">createOrGetFamixParametricType(typeName: string, element: TSMorphParametricType): Famix.Type</text><ellipse cx="5265.41" cy="660.0234" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="783" x="5274.41" y="664.252">createOrGetFamixParameterType(parameterTypeName: string, element: TypeParameterDeclaration): Famix.ParameterType</text><ellipse cx="5265.41" cy="677.6328" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="451" x="5274.41" y="681.8613">createOrGetFamixPrimitiveType(typeName: string): Famix.PrimitiveType</text><ellipse cx="5265.41" cy="695.2422" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="335" x="5274.41" y="699.4707">createFamixAccess(node: Identifier, id: number): void</text><ellipse cx="5265.41" cy="712.8516" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="658" x="5274.41" y="717.0801">createFamixInvocation(nodeReferringToInvocable: Identifier, invocable: InvocableType, id: number): void</text><ellipse cx="5265.41" cy="730.4609" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="984" x="5274.41" y="734.6895">createFamixInheritance(cls: ClassDeclaration | InterfaceDeclaration, inhClass: ClassDeclaration | InterfaceDeclaration | ExpressionWithTypeArguments): void</text><ellipse cx="5265.41" cy="748.0703" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="618" x="5274.41" y="752.2988">createFamixImportClause(importedEntity: Famix.NamedEntity, importingEntity: Famix.Module): void</text><ellipse cx="5265.41" cy="765.6797" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="1809" x="5274.41" y="769.9082">oldCreateFamixImportClause(importClauseInfo: { importDeclaration?: ImportEqualsDeclaration | ImportDeclaration | undefined; importerSourceFile: SourceFile; moduleSpecifierFilePath: string; importElement: ImportSpecifier | Identifier; isInExports: boolean; isDefaultExport: boolean; }): void</text><ellipse cx="5265.41" cy="783.2891" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="1081" x="5274.41" y="787.5176">createOrGetFamixArrowFunction(arrowExpression: Expression&lt;ts.Expression&gt;, currentCC: { [key: string]: number; }): Famix.ParametricArrowFunction | Famix.ArrowFunction</text><ellipse cx="5265.41" cy="800.8984" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="1781" x="5274.41" y="805.127">createFamixConcretisation(conEntity: Famix.ParametricClass | Famix.ParametricInterface | Famix.ParametricMethod | Famix.ParametricFunction, genEntity: Famix.ParametricClass | Famix.ParametricInterface | Famix.ParametricMethod | Famix.ParametricFunction): Famix.Concretisation</text><ellipse cx="5265.41" cy="818.5078" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="752" x="5274.41" y="822.7363">createFamixParameterConcretisation(concretisation: Famix.Concretisation): Famix.ParameterConcretisation | undefined</text><ellipse cx="5265.41" cy="836.1172" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="708" x="5274.41" y="840.3457">createFamixConcretisationClassOrInterfaceSpecialisation(element: ClassDeclaration | InterfaceDeclaration): void</text><ellipse cx="5265.41" cy="853.7266" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="470" x="5274.41" y="857.9551">createFamixConcretisationGenericInstantiation(cls: ClassDeclaration): void</text><ellipse cx="5265.41" cy="871.3359" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="658" x="5274.41" y="875.5645">createFamixConcretisationFunctionInstantiation(element: MethodDeclaration | FunctionDeclaration): void</text><ellipse cx="5265.41" cy="888.9453" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="434" x="5274.41" y="893.1738">createFamixConcretisationInterfaceClass(cls: ClassDeclaration): void</text><ellipse cx="5265.41" cy="906.5547" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="626" x="5274.41" y="910.7832">createFamixConcretisationTypeInstanciation(element: ClassDeclaration | InterfaceDeclaration): void</text><ellipse cx="5265.41" cy="924.1641" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="501" x="5274.41" y="928.3926">convertToRelativePath(absolutePath: string, absolutePathProject: string): string</text></g><!--class FamixRepository--><g id="elem_FamixRepository"><rect codeLine="568" fill="#F1F1F1" height="699.5469" id="FamixRepository" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="863" x="558.41" y="995"/><ellipse cx="933.16" cy="1011" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M935.9256,1006.875 Q936.0819,1006.6563 936.2694,1006.5469 Q936.4569,1006.4375 936.6756,1006.4375 Q937.0506,1006.4375 937.285,1006.7031 Q937.5194,1006.9531 937.5194,1007.5625 L937.5194,1009.0156 Q937.5194,1009.625 937.285,1009.8906 Q937.0506,1010.1563 936.6756,1010.1563 Q936.3319,1010.1563 936.1288,1009.9531 Q935.9256,1009.7656 935.8163,1009.25 Q935.7694,1008.8906 935.5819,1008.7031 Q935.2538,1008.3281 934.6444,1008.1094 Q934.035,1007.8906 933.41,1007.8906 Q932.6444,1007.8906 932.0038,1008.2188 Q931.3788,1008.5469 930.8788,1009.2969 Q930.3944,1010.0469 930.3944,1011.0781 L930.3944,1012.1719 Q930.3944,1013.4063 931.285,1014.2344 Q932.1756,1015.0469 933.7694,1015.0469 Q934.7069,1015.0469 935.3631,1014.7969 Q935.7538,1014.6406 936.1756,1014.2031 Q936.4413,1013.9375 936.5819,1013.8594 Q936.7381,1013.7813 936.9413,1013.7813 Q937.2694,1013.7813 937.5194,1014.0469 Q937.785,1014.2969 937.785,1014.6406 Q937.785,1014.9844 937.4413,1015.3906 Q936.9413,1015.9688 936.1444,1016.2969 Q935.0663,1016.75 933.7694,1016.75 Q932.2538,1016.75 931.0506,1016.125 Q930.0663,1015.625 929.3788,1014.5625 Q928.6913,1013.4844 928.6913,1012.2031 L928.6913,1011.0469 Q928.6913,1009.7188 929.3006,1008.5781 Q929.9256,1007.4219 931.0194,1006.8125 Q932.1131,1006.1875 933.3475,1006.1875 Q934.0819,1006.1875 934.7225,1006.3594 Q935.3788,1006.5156 935.9256,1006.875 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="105" x="953.66" y="1016.7285">FamixRepository</text><line style="stroke:#181818;stroke-width:0.5;" x1="559.41" x2="1420.41" y1="1027" y2="1027"/><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="566.41" y="1038.3047"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="222" x="578.41" y="1045.5332">elements: Set&lt;FamixBaseElement&gt;</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="566.41" y="1055.9141"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="162" x="578.41" y="1063.1426">famixClasses: Set&lt;Class&gt;</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="566.41" y="1073.5234"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="194" x="578.41" y="1080.752">famixInterfaces: Set&lt;Interface&gt;</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="566.41" y="1091.1328"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="176" x="578.41" y="1098.3613">famixModules: Set&lt;Module&gt;</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="566.41" y="1108.7422"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="178" x="578.41" y="1115.9707">famixMethods: Set&lt;Method&gt;</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="566.41" y="1126.3516"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="188" x="578.41" y="1133.5801">famixVariables: Set&lt;Variable&gt;</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="566.41" y="1143.9609"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="266" x="578.41" y="1151.1895">famixFunctions: Set&lt;FamixFunctionEntity&gt;</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="566.41" y="1161.5703"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="235" x="578.41" y="1168.7988">famixFiles: Set&lt;Module | ScriptEntity&gt;</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="566.41" y="1179.1797"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="118" x="578.41" y="1186.4082">idCounter: number</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="566.41" y="1196.7891"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="126" x="578.41" y="1204.0176">absolutePath: string</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="566.41" y="1214.3984"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="406" x="578.41" y="1221.627">fmxElementObjectMap: Map&lt;Famix.Entity, TSMorphObjectType&gt;</text><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="566.41" y="1232.0078"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="385" x="578.41" y="1239.2363">tsMorphObjectMap: Map&lt;TSMorphObjectType, Famix.Entity&gt;</text><line style="stroke:#181818;stroke-width:0.5;" x1="559.41" x2="1420.41" y1="1246.3125" y2="1246.3125"/><ellipse cx="569.41" cy="1260.6172" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="614" x="578.41" y="1264.8457">setFmxElementObjectMap(fmxElementObjectMap: Map&lt;Famix.Entity, TSMorphObjectType&gt;): void</text><ellipse cx="569.41" cy="1278.2266" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="441" x="578.41" y="1282.4551">getFmxElementObjectMap(): Map&lt;Famix.Entity, TSMorphObjectType&gt;</text><ellipse cx="569.41" cy="1295.8359" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="157" x="578.41" y="1300.0645">getAbsolutePath(): string</text><ellipse cx="569.41" cy="1313.4453" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="218" x="578.41" y="1317.6738">setAbsolutePath(path: string): void</text><ellipse cx="569.41" cy="1331.0547" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="398" x="578.41" y="1335.2832">getFamixEntityById(id: number): FamixBaseElement | undefined</text><ellipse cx="569.41" cy="1348.6641" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="602" x="578.41" y="1352.8926">getFamixEntityByFullyQualifiedName(fullyQualifiedName: string): FamixBaseElement | undefined</text><ellipse cx="569.41" cy="1366.2734" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="837" x="578.41" y="1370.502">getFamixAccessByAccessorAndVariable(accessor: Famix.ContainerEntity, variable: Famix.StructuralEntity): Famix.Access | undefined</text><ellipse cx="569.41" cy="1383.8828" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="234" x="578.41" y="1388.1113">export(arg0: { format: string; }): string</text><ellipse cx="569.41" cy="1401.4922" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="264" x="578.41" y="1405.7207">_getAllEntities(): Set&lt;FamixBaseElement&gt;</text><ellipse cx="569.41" cy="1419.1016" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="419" x="578.41" y="1423.3301">_getAllEntitiesWithType(theType: string): Set&lt;FamixBaseElement&gt;</text><ellipse cx="569.41" cy="1436.7109" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="387" x="578.41" y="1440.9395">_getFamixClass(fullyQualifiedName: string): Class | undefined</text><ellipse cx="569.41" cy="1454.3203" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="427" x="578.41" y="1458.5488">_getFamixInterface(fullyQualifiedName: string): Interface | undefined</text><ellipse cx="569.41" cy="1471.9297" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="411" x="578.41" y="1476.1582">_getFamixMethod(fullyQualifiedName: string): Method | undefined</text><ellipse cx="569.41" cy="1489.5391" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="499" x="578.41" y="1493.7676">_getFamixFunction(fullyQualifiedName: string): FamixFunctionEntity | undefined</text><ellipse cx="569.41" cy="1507.1484" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="421" x="578.41" y="1511.377">_getFamixVariable(fullyQualifiedName: string): Variable | undefined</text><ellipse cx="569.41" cy="1524.7578" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="409" x="578.41" y="1528.9863">_getFamixModule(fullyQualifiedName: string): Module | undefined</text><ellipse cx="569.41" cy="1542.3672" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="219" x="578.41" y="1546.5957">_getFamixModules(): Set&lt;Module&gt;</text><ellipse cx="569.41" cy="1559.9766" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="468" x="578.41" y="1564.2051">_getFamixFile(fullyQualifiedName: string): Module | ScriptEntity | undefined</text><ellipse cx="569.41" cy="1577.5859" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="278" x="578.41" y="1581.8145">_getFamixFiles(): Set&lt;Module | ScriptEntity&gt;</text><ellipse cx="569.41" cy="1595.1953" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="404" x="578.41" y="1599.4238">_methodNamesAsSetFromClass(className: string): Set&lt;string&gt;</text><ellipse cx="569.41" cy="1612.8047" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="407" x="578.41" y="1617.0332">_methodParentsAsSetFromClass(className: string): Set&lt;Type&gt;</text><ellipse cx="569.41" cy="1630.4141" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="378" x="578.41" y="1634.6426">_initMapFromModel(model: string): Map&lt;number, unknown&gt;</text><ellipse cx="569.41" cy="1648.0234" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="297" x="578.41" y="1652.252">addElement(element: FamixBaseElement): void</text><rect fill="#F24D5C" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="566.41" y="1662.6328"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="129" x="578.41" y="1669.8613">validateFQNs(): void</text><ellipse cx="569.41" cy="1683.2422" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="108" x="578.41" y="1687.4707">getJSON(): string</text></g><!--class Importer--><g id="elem_Importer"><rect codeLine="607" fill="#F1F1F1" height="136.0469" id="Importer" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="475" x="752.41" y="403"/><ellipse cx="959.66" cy="419" fill="#ADD1B2" rx="11" ry="11" style="stroke:#181818;stroke-width:1.0;"/><path d="M962.4256,414.875 Q962.5819,414.6563 962.7694,414.5469 Q962.9569,414.4375 963.1756,414.4375 Q963.5506,414.4375 963.785,414.7031 Q964.0194,414.9531 964.0194,415.5625 L964.0194,417.0156 Q964.0194,417.625 963.785,417.8906 Q963.5506,418.1563 963.1756,418.1563 Q962.8319,418.1563 962.6288,417.9531 Q962.4256,417.7656 962.3163,417.25 Q962.2694,416.8906 962.0819,416.7031 Q961.7538,416.3281 961.1444,416.1094 Q960.535,415.8906 959.91,415.8906 Q959.1444,415.8906 958.5038,416.2188 Q957.8788,416.5469 957.3788,417.2969 Q956.8944,418.0469 956.8944,419.0781 L956.8944,420.1719 Q956.8944,421.4063 957.785,422.2344 Q958.6756,423.0469 960.2694,423.0469 Q961.2069,423.0469 961.8631,422.7969 Q962.2538,422.6406 962.6756,422.2031 Q962.9413,421.9375 963.0819,421.8594 Q963.2381,421.7813 963.4413,421.7813 Q963.7694,421.7813 964.0194,422.0469 Q964.285,422.2969 964.285,422.6406 Q964.285,422.9844 963.9413,423.3906 Q963.4413,423.9688 962.6444,424.2969 Q961.5663,424.75 960.2694,424.75 Q958.7538,424.75 957.5506,424.125 Q956.5663,423.625 955.8788,422.5625 Q955.1913,421.4844 955.1913,420.2031 L955.1913,419.0469 Q955.1913,417.7188 955.8006,416.5781 Q956.4256,415.4219 957.5194,414.8125 Q958.6131,414.1875 959.8475,414.1875 Q960.5819,414.1875 961.2225,414.3594 Q961.8788,414.5156 962.4256,414.875 Z " fill="#000000"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="52" x="980.16" y="424.7285">Importer</text><line style="stroke:#181818;stroke-width:0.5;" x1="753.41" x2="1226.41" y1="435" y2="435"/><rect fill="none" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="760.41" y="446.3047"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="95" x="772.41" y="453.5332">project: Project</text><line style="stroke:#181818;stroke-width:0.5;" x1="753.41" x2="1226.41" y1="460.6094" y2="460.6094"/><ellipse cx="763.41" cy="474.9141" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="336" x="772.41" y="479.1426">famixRepFromPaths(paths: string[]): FamixRepository</text><rect fill="#F24D5C" height="6" style="stroke:#C82930;stroke-width:1.0;" width="6" x="760.41" y="489.5234"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="235" x="772.41" y="496.752">processEntities(project: Project): void</text><ellipse cx="763.41" cy="510.1328" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="449" x="772.41" y="514.3613">famixRepFromSource(filename: string, source: string): FamixRepository</text><ellipse cx="763.41" cy="527.7422" fill="#84BE84" rx="3" ry="3" style="stroke:#038048;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="353" x="772.41" y="531.9707">famixRepFromProject(project: Project): FamixRepository</text></g><!--reverse link FamixBaseElement to Entity--><g id="link_FamixBaseElement_Entity"><path d="M2234.7337,1868.0968 C2213.2937,1887.4668 2202.37,1897.35 2181.98,1915.77 " fill="none" id="FamixBaseElement-backto-Entity" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="none" points="2248.09,1856.03,2230.7114,1863.6447,2238.7559,1872.5489,2248.09,1856.03" style="stroke:#181818;stroke-width:1.0;"/></g><!--reverse link Entity to SourceLanguage--><g id="link_Entity_SourceLanguage"><path d="M2203.548,2010.2385 C2240.888,2039.2285 2277.99,2068.03 2322.82,2102.85 " fill="none" id="Entity-backto-SourceLanguage" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="none" points="2189.33,1999.2,2199.8685,2014.9779,2207.2275,2005.4992,2189.33,1999.2" style="stroke:#181818;stroke-width:1.0;"/></g><!--reverse link SourcedEntity to Comment--><g id="link_SourcedEntity_Comment"><path d="M2593.4798,2668.2237 C2615.2298,2688.2237 2624.1,2696.38 2645.26,2715.85 " fill="none" id="SourcedEntity-backto-Comment" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="none" points="2580.23,2656.04,2589.4186,2672.6403,2597.541,2663.8071,2580.23,2656.04" style="stroke:#181818;stroke-width:1.0;"/></g><!--link Comment to SourcedEntity--><g id="link_Comment_SourcedEntity"><path codeLine="619" d="M2658.34,2715.85 C2637.57,2696.38 2620.0005,2680.0861 2598.1005,2660.0861 " fill="none" id="Comment-to-SourcedEntity" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="2593.67,2656.04,2597.6183,2665.0628,2597.3621,2659.4117,2603.0131,2659.1555,2593.67,2656.04" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="2594.8685" y="2677.089">1</text></g><!--link SourcedEntity to Comment--><g id="link_SourcedEntity_Comment"><path codeLine="624" d="M2567.54,2656.04 C2589.15,2676.04 2606.9289,2692.3566 2628.4689,2711.8266 " fill="none" id="SourcedEntity-to-Comment" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="2632.92,2715.85,2628.9256,2706.8475,2629.2107,2712.4972,2623.5611,2712.7824,2632.92,2715.85" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="2616.5355" y="2705.0922">1</text></g><!--reverse link Entity to SourceAnchor--><g id="link_Entity_SourceAnchor"><path d="M2129.7262,2017.0692 C2117.3762,2127.8792 2096.21,2424.38 2195.91,2656 C2213.33,2696.47 2241.21,2736.59 2266.78,2768.65 " fill="none" id="Entity-backto-SourceAnchor" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="none" points="2131.72,1999.18,2123.7631,2016.4046,2135.6893,2017.7338,2131.72,1999.18" style="stroke:#181818;stroke-width:1.0;"/></g><!--reverse link Entity to SourcedEntity--><g id="link_Entity_SourcedEntity"><path d="M2135.5895,2017.2198 C2135.2895,2084.3198 2142.16,2202.48 2195.91,2301 C2207.4,2322.06 2221.85,2342.13 2237.87,2360.9 " fill="none" id="Entity-backto-SourcedEntity" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="none" points="2135.67,1999.22,2129.5896,2017.193,2141.5895,2017.2466,2135.67,1999.22" style="stroke:#181818;stroke-width:1.0;"/></g><!--reverse link ContainerEntity to ScopingEntity--><g id="link_ContainerEntity_ScopingEntity"><path d="M2471.3553,5082.1585 C2453.8953,5376.8185 2423.69,5752.15 2378.91,5811 C2334.42,5869.46 2287.32,5832.27 2224.91,5871 C1874.85,6088.22 1539.91,6083.52 1539.91,6495.5 C1539.91,6495.5 1539.91,6495.5 1539.91,7312.5 C1539.91,7606.95 1675.31,7754.43 1476.91,7972 C1415.73,8039.09 1187.36,8071.37 1014.1,8086.48 " fill="none" id="ContainerEntity-backto-ScopingEntity" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="none" points="2472.42,5064.19,2465.3658,5081.8036,2477.3448,5082.5134,2472.42,5064.19" style="stroke:#181818;stroke-width:1.0;"/></g><!--reverse link ScopingEntity to ScriptEntity--><g id="link_ScopingEntity_ScriptEntity"><path d="M668.8763,8176.7131 C634.4563,8195.5831 612.16,8207.82 575.47,8227.95 " fill="none" id="ScopingEntity-backto-ScriptEntity" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="none" points="684.66,8168.06,665.992,8171.4518,671.7607,8181.9743,684.66,8168.06" style="stroke:#181818;stroke-width:1.0;"/></g><!--reverse link ScriptEntity to Module--><g id="link_ScriptEntity_Module"><path d="M468.343,8212.3927 C502.323,8155.0227 538.58,8096.04 581.91,8032 C607.03,7994.87 635.01,7955.87 662.21,7919.04 " fill="none" id="ScriptEntity-backto-Module" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="none" points="459.17,8227.88,473.5055,8215.4504,463.1806,8209.3351,459.17,8227.88" style="stroke:#181818;stroke-width:1.0;"/></g><!--reverse link Entity to ImportClause--><g id="link_Entity_ImportClause"><path d="M1911.6806,1976.8901 C1772.7306,1991.6401 1623.18,2015.86 1566.91,2059 C1311.13,2255.1 1351.39,2406.95 1259.91,2716 C753.66,4426.1 1078.99,6653.31 1169.57,7190.27 " fill="none" id="Entity-backto-ImportClause" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="none" points="1929.58,1974.99,1911.0472,1970.9236,1912.3139,1982.8566,1929.58,1974.99" style="stroke:#181818;stroke-width:1.0;"/></g><!--reverse link NamedEntity to Alias--><g id="link_NamedEntity_Alias"><path d="M2020.3478,7104.0852 C2068.2978,7147.3952 2103.96,7179.59 2145.22,7216.85 " fill="none" id="NamedEntity-backto-Alias" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="none" points="2006.99,7092.02,2016.3261,7108.5378,2024.3695,7099.6326,2006.99,7092.02" style="stroke:#181818;stroke-width:1.0;"/></g><!--link Alias to NamedEntity--><g id="link_Alias_NamedEntity"><path codeLine="636" d="M2156.72,7216.78 C2113.21,7176.05 2063.9175,7130.9652 2011.4375,7083.9152 " fill="none" id="Alias-to-NamedEntity" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="2006.97,7079.91,2011.001,7088.8961,2010.6929,7083.2477,2016.3413,7082.9395,2006.97,7079.91" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="2015.195" y="7083.9673">1</text></g><!--link NamedEntity to Alias--><g id="link_NamedEntity_Alias"><path codeLine="643" d="M2007.06,7103.59 C2050.78,7143.12 2090.8719,7178.922 2129.7019,7212.852 " fill="none" id="NamedEntity-to-Alias" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="2134.22,7216.8,2130.0748,7207.8659,2130.4549,7213.51,2124.8108,7213.8901,2134.22,7216.8" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="2117.8017" y="7206.1302">1</text></g><!--reverse link NamedEntity to Decorator--><g id="link_NamedEntity_Decorator"><path d="M1773.6234,7122.19 C1773.5434,7161.54 1774.82,7183.08 1777.38,7216.86 " fill="none" id="NamedEntity-backto-Decorator" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="none" points="1773.66,7104.19,1767.6234,7122.1778,1779.6234,7122.2022,1773.66,7104.19" style="stroke:#181818;stroke-width:1.0;"/></g><!--link Decorator to NamedEntity--><g id="link_Decorator_NamedEntity"><path codeLine="639" d="M1799.91,7216.86 C1799.91,7183.08 1799.91,7149.54 1799.91,7110.19 " fill="none" id="Decorator-to-NamedEntity" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="1799.91,7104.19,1795.91,7113.19,1799.91,7109.19,1803.91,7113.19,1799.91,7104.19" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="1792.7733" y="7125.8207">1</text></g><!--link NamedEntity to Decorator--><g id="link_NamedEntity_Decorator"><path codeLine="644" d="M1826.15,7104.19 C1826.23,7143.54 1825.4434,7177.0972 1822.8834,7210.8772 " fill="none" id="NamedEntity-to-Decorator" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="1822.43,7216.86,1827.0987,7208.188,1822.8078,7211.8743,1819.1215,7207.5835,1822.43,7216.86" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="1816.9457" y="7206.195">1</text></g><!--reverse link SourcedEntity to NamedEntity--><g id="link_SourcedEntity_NamedEntity"><path d="M2198.8376,2622.5235 C2157.0076,2651.2235 2131.65,2675.64 2101.91,2716 C1834.86,3078.34 1900.69,3246.8 1827.91,3691 C1685.14,4562.3 1749.36,4792.37 1726.91,5675 C1715.96,6105.53 1667.93,6217.39 1726.91,6644 C1729.61,6663.55 1733.41,6683.71 1737.87,6703.73 " fill="none" id="SourcedEntity-backto-NamedEntity" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="none" points="2213.68,2612.34,2195.4431,2617.5761,2202.2321,2627.471,2213.68,2612.34" style="stroke:#181818;stroke-width:1.0;"/></g><!--reverse link StructuralEntity to Parameter--><g id="link_StructuralEntity_Parameter"><path d="M3812.3244,5583.2776 C3931.2144,5616.0076 4062.7,5652.2 4181.63,5684.94 " fill="none" id="StructuralEntity-backto-Parameter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="none" points="3794.97,5578.5,3810.7318,5589.0624,3813.9169,5577.4928,3794.97,5578.5" style="stroke:#181818;stroke-width:1.0;"/></g><!--reverse link StructuralEntity to Property--><g id="link_StructuralEntity_Property"><path d="M3546.9425,5632.5551 C3541.0025,5652.0051 3541.03,5655.35 3537.91,5675 C3528.43,5734.7 3526.92,5751.56 3537.91,5811 C3610,6200.83 3637.94,6313.52 3856.91,6644 C4191.57,7149.1 4842.47,7500.03 5175.6,7655 " fill="none" id="StructuralEntity-backto-Property" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="none" points="3552.2,5615.34,3541.2042,5630.8026,3552.6809,5634.3076,3552.2,5615.34" style="stroke:#181818;stroke-width:1.0;"/></g><!--reverse link Entity to Inheritance--><g id="link_Entity_Inheritance"><path d="M1912.1112,1982.2902 C1852.9712,1996.8402 1809.92,2017.27 1764.91,2059 C1096.42,2678.76 1348.8,3121.36 1081.91,3993 C782.64,4970.36 941.48,5266.87 948.91,6289 C952.68,6809.04 597.88,7091.56 965.91,7459 C1057.17,7550.11 5482.72,7488.05 5607.91,7519 C5714.32,7545.31 5824.16,7601.18 5907.72,7650.72 " fill="none" id="Entity-backto-Inheritance" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="none" points="1929.59,1977.99,1910.6778,1976.464,1913.5446,1988.1165,1929.59,1977.99" style="stroke:#181818;stroke-width:1.0;"/></g><!--reverse link Type to Class--><g id="link_Type_Class"><path d="M4164.5183,3983.4291 C4420.6283,3824.2691 4793.21,3588.95 5122.91,3365 C5133.38,3357.88 5144.07,3350.53 5154.82,3343.05 " fill="none" id="Type-backto-Class" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="none" points="4149.23,3992.93,4167.6853,3988.5252,4161.3513,3978.333,4149.23,3992.93" style="stroke:#181818;stroke-width:1.0;"/></g><!--reverse link BehavioralEntity to Method--><g id="link_BehavioralEntity_Method"><path d="M4449.6019,6271.2097 C4707.9519,6482.9397 5144.35,6829.98 5554.91,7104 C5862.11,7309.04 5956.52,7331.79 6274.91,7519 C6329.7,7551.22 6388.74,7586.41 6443.45,7619.2 " fill="none" id="BehavioralEntity-backto-Method" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="none" points="4435.68,6259.8,4445.7987,6275.8503,4453.4051,6266.569,4435.68,6259.8" style="stroke:#181818;stroke-width:1.0;"/></g><!--reverse link Type to Interface--><g id="link_Type_Interface"><path d="M3966.924,4356.8774 C3974.404,4376.6674 3974.43,4380.07 3978.91,4400 C4038.08,4663.44 4073.27,5362.03 3978.91,5615 C3966.57,5648.06 3939.24,5641.94 3926.91,5675 C3831.53,5930.68 3901.86,6017.26 3926.91,6289 C3941.64,6448.8 3872.37,6538.05 3992.91,6644 C4083.59,6723.71 4965.63,6659.6 5077.91,6704 C5335.2,6805.73 5308.11,6978.94 5554.91,7104 C5757.7,7206.76 6014.26,7260.12 6190.78,7286.62 " fill="none" id="Type-backto-Interface" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="none" points="3960.56,4340.04,3961.3115,4358.9988,3972.5365,4354.7561,3960.56,4340.04" style="stroke:#181818;stroke-width:1.0;"/></g><!--reverse link Type to PrimitiveType--><g id="link_Type_PrimitiveType"><path d="M3924.0734,4357.7049 C3928.4534,4377.7449 3928.34,4380.43 3930.91,4400 C3986.69,4825.69 3966.74,4938.16 3930.91,5366 C3921.54,5477.84 3907.6,5504.34 3888.91,5615 C3822.79,6006.35 3739.91,6098.6 3739.91,6495.5 C3739.91,6495.5 3739.91,6495.5 3739.91,7746.5 C3739.91,8318.07 4395.27,8051.79 4954.91,8168 C5298.29,8239.31 6330.26,8292.42 6774.65,8312.6 " fill="none" id="Type-backto-PrimitiveType" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="none" points="3920.23,4340.12,3918.2118,4358.986,3929.935,4356.4238,3920.23,4340.12" style="stroke:#181818;stroke-width:1.0;"/></g><!--reverse link Class to ParametricClass--><g id="link_Class_ParametricClass"><path d="M5585.7965,3287.5335 C5693.8865,3331.8135 5810.59,3378.87 5926.08,3424.92 " fill="none" id="Class-backto-ParametricClass" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="none" points="5569.14,3280.71,5583.522,3293.0857,5588.071,3281.9813,5569.14,3280.71" style="stroke:#181818;stroke-width:1.0;"/></g><!--link ParametricClass to Class--><g id="link_ParametricClass_Class"><path codeLine="667" d="M5950.41,3424.9 C5829.62,3375.55 5690.3583,3319.4296 5574.5583,3273.5596 " fill="none" id="ParametricClass-to-Class" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="5568.98,3271.35,5575.8744,3278.3833,5573.6286,3273.1914,5578.8206,3270.9456,5568.98,3271.35" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="5577.2054" y="3271.6516">1</text></g><!--reverse link Interface to ParametricInterface--><g id="link_Interface_ParametricInterface"><path d="M6621.6312,7411.995 C6701.4512,7446.515 6776.59,7479.75 6858.91,7519 C6939.52,7557.44 7027.08,7602.6 7103.28,7642.37 " fill="none" id="Interface-backto-ParametricInterface" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="none" points="6605.11,7404.85,6619.2495,7417.502,6624.0128,7406.4879,6605.11,7404.85" style="stroke:#181818;stroke-width:1.0;"/></g><!--link ParametricInterface to Interface--><g id="link_ParametricInterface_Interface"><path codeLine="673" d="M7135.82,7642.37 C7062.08,7602.6 6974.52,7557.44 6893.91,7519 C6800.37,7474.4 6700.311,7430.6415 6610.581,7393.3715 " fill="none" id="ParametricInterface-to-Interface" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="6605.04,7391.07,6611.8172,7398.2163,6609.6575,7392.9879,6614.8859,7390.8282,6605.04,7391.07" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="6612.6095" y="7391.1519">1</text></g><!--reverse link BehavioralEntity to Function--><g id="link_BehavioralEntity_Function"><path d="M4218.7262,6307.1592 C4218.1162,6370.3192 4217.68,6415.37 4217.3,6454.84 " fill="none" id="BehavioralEntity-backto-Function" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="none" points="4218.9,6289.16,4212.7264,6307.1012,4224.7259,6307.2171,4218.9,6289.16" style="stroke:#181818;stroke-width:1.0;"/></g><!--reverse link Method to Accessor--><g id="link_Method_Accessor"><path d="M6470.3839,7986.6279 C6445.6139,8019.5779 6433.54,8035.63 6416.41,8058.42 " fill="none" id="Method-backto-Accessor" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="none" points="6481.2,7972.24,6465.588,7983.0226,6475.1799,7990.2333,6481.2,7972.24" style="stroke:#181818;stroke-width:1.0;"/></g><!--reverse link Method to ParametricMethod--><g id="link_Method_ParametricMethod"><path d="M6870.2725,7980.1108 C6892.1925,8003.4508 6900.75,8012.57 6918.91,8031.92 " fill="none" id="Method-backto-ParametricMethod" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="none" points="6857.95,7966.99,6865.8989,7984.2183,6874.6461,7976.0033,6857.95,7966.99" style="stroke:#181818;stroke-width:1.0;"/></g><!--reverse link Function to ParametricFunction--><g id="link_Function_ParametricFunction"><path d="M4303.0011,6445.6834 C4464.8811,6349.8934 4853.52,6104.99 5115.91,5811 C5373.23,5522.68 5383.09,5407.11 5560.91,5064 C5800.67,4601.36 5613.1,4294.76 6037.91,3993 C6168.26,3900.41 6646.66,4050.68 6754.91,3933 C6895.69,3779.94 6634.76,3119.09 6544.79,2905.12 " fill="none" id="Function-backto-ParametricFunction" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="none" points="4287.51,6454.85,4306.0566,6450.8471,4299.9455,6440.5197,4287.51,6454.85" style="stroke:#181818;stroke-width:1.0;"/></g><!--reverse link BehavioralEntity to ArrowFunction--><g id="link_BehavioralEntity_ArrowFunction"><path d="M4453.1408,6136.8699 C4800.3408,6220.3899 5460.33,6379.17 5775.35,6454.95 " fill="none" id="BehavioralEntity-backto-ArrowFunction" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="none" points="4435.64,6132.66,4451.7375,6142.7035,4454.5441,6131.0363,4435.64,6132.66" style="stroke:#181818;stroke-width:1.0;"/></g><!--reverse link ArrowFunction to ParametricArrowFunction--><g id="link_ArrowFunction_ParametricArrowFunction"><path d="M5943.91,6556.24 C5943.91,6626.03 5943.91,6751.11 5943.91,6835.85 " fill="none" id="ArrowFunction-backto-ParametricArrowFunction" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="none" points="5943.91,6538.24,5937.91,6556.24,5949.91,6556.24,5943.91,6538.24" style="stroke:#181818;stroke-width:1.0;"/></g><!--reverse link Type to ParameterType--><g id="link_Type_ParameterType"><path d="M4207.5573,4115.1465 C4573.1573,4059.8165 5159.63,3970.1 5604.87,3901.5 " fill="none" id="Type-backto-ParameterType" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="none" points="4189.76,4117.84,4208.4552,4121.079,4206.6595,4109.2141,4189.76,4117.84" style="stroke:#181818;stroke-width:1.0;"/></g><!--link ParameterType to Type--><g id="link_ParameterType_Type"><path codeLine="699" d="M5604.77,3897.99 C5159.51,3965.76 4561.1994,4057.4623 4195.6394,4114.0423 " fill="none" id="ParameterType-to-Type" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4189.71,4114.96,4199.2159,4117.5363,4194.6512,4114.1952,4197.9923,4109.6305,4189.71,4114.96" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4197.3108" y="4111.0596">1</text></g><!--reverse link ContainerEntity to BehavioralEntity--><g id="link_ContainerEntity_BehavioralEntity"><path d="M2519.1641,5082.2393 C2535.6741,5209.0393 2558.74,5317.13 2596.91,5366 C2643.46,5425.61 3575.37,5813.79 4006.05,5991.02 " fill="none" id="ContainerEntity-backto-BehavioralEntity" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="none" points="2516.84,5064.39,2513.2143,5083.014,2525.1139,5081.4646,2516.84,5064.39" style="stroke:#181818;stroke-width:1.0;"/></g><!--reverse link Entity to Invocation--><g id="link_Entity_Invocation"><path d="M1954.3236,2006.9251 C1924.9936,2021.2851 1913.97,2032.78 1894.91,2059 C1429.91,2698.66 1548.84,4852.05 1756.91,5615 C1783.3,5711.8 1792.71,5745.73 1868.91,5811 C1925.64,5859.6 1964.59,5828.34 2025.91,5871 C2213.29,6001.35 2378.41,6209.19 2477.19,6348.9 " fill="none" id="Entity-backto-Invocation" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="none" points="1970.49,1999.01,1951.6853,2001.5363,1956.962,2012.3139,1970.49,1999.01" style="stroke:#181818;stroke-width:1.0;"/></g><!--reverse link Entity to Reference--><g id="link_Entity_Reference"><path d="M2120.5184,2016.6176 C2115.7884,2034.7576 2115.42,2039.07 2112.91,2059 C2094.73,2202.97 2008.72,3253.76 2101.91,3365 C2199.6,3481.62 2308.46,3346.72 2438.91,3425 C2567.82,3502.37 2572.75,3560.78 2647.91,3691 C2947.53,4210.13 3168.3,4901.53 3242.63,5150.08 " fill="none" id="Entity-backto-Reference" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="none" points="2125.06,1999.2,2114.7125,2015.1037,2126.3242,2018.1315,2125.06,1999.2" style="stroke:#181818;stroke-width:1.0;"/></g><!--reverse link StructuralEntity to Variable--><g id="link_StructuralEntity_Variable"><path d="M3362.8893,5556.127 C3090.9293,5597.967 2634.12,5668.26 2362.15,5710.11 " fill="none" id="StructuralEntity-backto-Variable" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="none" points="3380.68,5553.39,3361.977,5550.1968,3363.8017,5562.0573,3380.68,5553.39" style="stroke:#181818;stroke-width:1.0;"/></g><!--reverse link NamedEntity to ContainerEntity--><g id="link_NamedEntity_ContainerEntity"><path d="M1968.4617,6689.229 C2123.5817,6480.349 2340.5,6150.39 2440.91,5811 C2480.82,5676.1 2490.42,5328.46 2491.54,5064.12 " fill="none" id="NamedEntity-backto-ContainerEntity" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="none" points="1957.73,6703.68,1973.2787,6692.8063,1963.6447,6685.6518,1957.73,6703.68" style="stroke:#181818;stroke-width:1.0;"/></g><!--reverse link ContainerEntity to Type--><g id="link_ContainerEntity_Type"><path d="M2732.7742,4631.4253 C2959.5442,4538.8253 3293.4,4402.5 3548.4,4298.37 " fill="none" id="ContainerEntity-backto-Type" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="none" points="2716.11,4638.23,2735.0424,4636.98,2730.506,4625.8705,2716.11,4638.23" style="stroke:#181818;stroke-width:1.0;"/></g><!--link ContainerEntity to Type--><g id="link_ContainerEntity_Type"><path codeLine="718" d="M2715.93,4646.23 C2942.76,4556.73 3287.5417,4416.498 3542.6417,4310.188 " fill="none" id="ContainerEntity-to-Type" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="3548.18,4307.88,3538.3338,4307.6498,3543.5647,4309.8034,3541.4112,4315.0343,3548.18,4307.88" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="3533.5809" y="4308.5011">1</text></g><!--link Type to ContainerEntity--><g id="link_Type_ContainerEntity"><path codeLine="721" d="M3548.25,4289.42 C3293.2,4391.12 2948.4704,4532.003 2721.6204,4627.453 " fill="none" id="Type-to-ContainerEntity" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="2716.09,4629.78,2725.9369,4629.9765,2720.6987,4627.8409,2722.8343,4622.6026,2716.09,4629.78" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="2723.6592" y="4623.6589">1</text></g><!--reverse link NamedEntity to StructuralEntity--><g id="link_NamedEntity_StructuralEntity"><path d="M2025.1507,6874.5833 C2234.4107,6842.3933 2544.28,6777.16 2798.91,6644 C3013.39,6531.83 3069.85,6484.98 3211.91,6289 C3385.32,6049.75 3317.38,5929.86 3466.91,5675 C3478.76,5654.81 3493.01,5634.35 3507.51,5615.23 " fill="none" id="NamedEntity-backto-StructuralEntity" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="none" points="2007.36,6877.32,2026.063,6880.5135,2024.2385,6868.653,2007.36,6877.32" style="stroke:#181818;stroke-width:1.0;"/></g><!--reverse link Entity to Access--><g id="link_Entity_Access"><path d="M2036.8402,2009.0252 C2013.6902,2024.4152 2006.31,2034.36 1992.91,2059 C1801.91,2410.1 1935.43,2559.8 1969.91,2958 C1985.74,3140.94 1914.35,3231.96 2040.91,3365 C2124.14,3452.5 2210.83,3350.55 2305.91,3425 C2687.6,3723.87 2675.99,3930.03 2794.91,4400 C2858.51,4651.37 2846.64,4958.29 2833.22,5124 " fill="none" id="Entity-backto-Access" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="none" points="2051.83,1999.06,2033.5184,2004.0286,2040.1619,2014.0218,2051.83,1999.06" style="stroke:#181818;stroke-width:1.0;"/></g><!--reverse link Entity to Concretisation--><g id="link_Entity_Concretisation"><path d="M2361.9823,1987.5112 C3051.5623,2076.4012 5254.1,2360.32 6081.38,2466.96 " fill="none" id="Entity-backto-Concretisation" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="none" points="2344.13,1985.21,2361.2152,1993.462,2362.7494,1981.5605,2344.13,1985.21" style="stroke:#181818;stroke-width:1.0;"/></g><!--reverse link Type to Enum--><g id="link_Type_Enum"><path d="M4151.9231,4349.7563 C4321.6331,4459.0563 4516.5,4584.55 4639.78,4663.94 " fill="none" id="Type-backto-Enum" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="none" points="4136.79,4340.01,4148.6743,4354.8007,4155.1718,4344.7119,4136.79,4340.01" style="stroke:#181818;stroke-width:1.0;"/></g><!--reverse link StructuralEntity to EnumValue--><g id="link_StructuralEntity_EnumValue"><path d="M3813.2278,5545.8542 C4021.6078,5570.2642 4333.31,5612.38 4613.91,5675 C4619.45,5676.24 4625.06,5677.54 4630.71,5678.9 " fill="none" id="StructuralEntity-backto-EnumValue" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="none" points="3795.35,5543.76,3812.5297,5551.8135,3813.9258,5539.895,3795.35,5543.76" style="stroke:#181818;stroke-width:1.0;"/></g><!--reverse link SourceAnchor to IndexedFileAnchor--><g id="link_SourceAnchor_IndexedFileAnchor"><path d="M2326.91,2923.13 C2326.91,2969.78 2326.91,3015.23 2326.91,3070.46 " fill="none" id="SourceAnchor-backto-IndexedFileAnchor" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="none" points="2326.91,2905.13,2320.91,2923.13,2332.91,2923.13,2326.91,2905.13" style="stroke:#181818;stroke-width:1.0;"/></g><!--reverse link Entity to ParameterConcretisation--><g id="link_Entity_ParameterConcretisation"><path d="M2361.9708,1973.3772 C2960.1608,2012.9172 4667.82,2125.79 5265.89,2165.32 " fill="none" id="Entity-backto-ParameterConcretisation" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="none" points="2344.01,1972.19,2361.5751,1979.3641,2362.3665,1967.3903,2344.01,1972.19" style="stroke:#181818;stroke-width:1.0;"/></g><!--link FamixJSONExporter to FamixBaseElement--><g id="link_FamixJSONExporter_FamixBaseElement"><path codeLine="614" d="M4008.32,1384.3 C3663.88,1467.14 2871.5316,1661.4279 2502.3416,1753.5179 " fill="none" id="FamixJSONExporter-to-FamixBaseElement" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="2496.52,1754.97,2506.2205,1756.6729,2501.3714,1753.7599,2504.2843,1748.9107,2496.52,1754.97" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="2516.2542" y="1744.2711">1</text></g><!--link FamixBaseElement to FamixJSONExporter--><g id="link_FamixBaseElement_FamixJSONExporter"><path codeLine="615" d="M2509.95,1755.85 C2884.64,1665.53 3661.7795,1474.8767 4002.2395,1389.6667 " fill="none" id="FamixBaseElement-to-FamixJSONExporter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4008.06,1388.21,3998.3581,1386.5148,4003.2096,1389.424,4000.3005,1394.2754,4008.06,1388.21" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="3993.477" y="1387.3075">1</text></g><!--link Entity to FamixJSONExporter--><g id="link_Entity_FamixJSONExporter"><path codeLine="616" d="M2344.02,1917.08 C2404.72,1901.88 2470.24,1881.79 2527.91,1856 C2601.61,1823.04 2605.47,1788.54 2678.91,1755 C3138.03,1545.29 3721.1633,1424.2042 4002.3733,1374.0142 " fill="none" id="Entity-to-FamixJSONExporter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4008.28,1372.96,3998.7172,1370.6035,4003.3578,1373.8385,4000.1228,1378.4791,4008.28,1372.96" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="3993.1846" y="1371.4293">1</text></g><!--link SourceLanguage to SourcedEntity--><g id="link_SourceLanguage_SourcedEntity"><path codeLine="617" d="M2409.93,2257.14 C2408.53,2288.14 2407.9165,2319.0602 2408.1765,2354.9002 " fill="none" id="SourceLanguage-to-SourcedEntity" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="2408.22,2360.9,2412.1546,2351.8712,2408.1837,2355.9001,2404.1548,2351.9293,2408.22,2360.9" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="2400.3346" y="2349.9082">1</text></g><!--link SourcedEntity to SourceLanguage--><g id="link_SourcedEntity_SourceLanguage"><path codeLine="625" d="M2434.34,2360.9 C2434.61,2325.06 2434.2961,2294.1332 2432.8161,2263.1332 " fill="none" id="SourcedEntity-to-SourceLanguage" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="2432.53,2257.14,2428.9637,2266.3205,2432.7684,2262.1343,2436.9546,2265.939,2432.53,2257.14" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="2426.2532" y="2278.2489">1</text></g><!--link SourceLanguage to FamixJSONExporter--><g id="link_SourceLanguage_FamixJSONExporter"><path codeLine="618" d="M2473.14,2102.84 C2542.08,2007.91 2672.26,1847.01 2820.91,1755 C3207.18,1515.91 3736.5101,1409.5343 4002.4401,1368.5343 " fill="none" id="SourceLanguage-to-FamixJSONExporter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4008.37,1367.62,3998.8656,1365.0381,4003.4284,1368.3819,4000.0846,1372.9447,4008.37,1367.62" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="3993.279" y="1365.8307">1</text></g><!--link Comment to FamixJSONExporter--><g id="link_Comment_FamixJSONExporter"><path codeLine="620" d="M2886.26,2715.86 C2899.37,2696.86 2911.17,2676.64 2919.91,2656 C2998.55,2470.14 2907.66,1912.46 3033.91,1755 C3275.05,1454.23 3749.7807,1375.0082 4002.3107,1353.9682 " fill="none" id="Comment-to-FamixJSONExporter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4008.29,1353.47,3998.989,1350.2311,4003.3073,1353.8851,3999.6532,1358.2035,4008.29,1353.47" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="3993.1951" y="1350.9953">1</text></g><!--link SourceAnchor to SourcedEntity--><g id="link_SourceAnchor_SourcedEntity"><path codeLine="621" d="M2357.45,2768.69 C2368.67,2736 2379.5098,2701.1471 2390.5398,2661.8171 " fill="none" id="SourceAnchor-to-SourcedEntity" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="2392.16,2656.04,2385.8783,2663.6256,2390.8099,2660.8543,2393.5811,2665.7858,2392.16,2656.04" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="2383.5979" y="2677.089">1</text></g><!--link SourcedEntity to SourceAnchor--><g id="link_SourcedEntity_SourceAnchor"><path codeLine="623" d="M2366.03,2656.04 C2354.42,2695.37 2344.8156,2730.1598 2337.1156,2762.8498 " fill="none" id="SourcedEntity-to-SourceAnchor" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="2335.74,2768.69,2341.6969,2760.8468,2336.8864,2763.8232,2333.91,2759.0127,2335.74,2768.69" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="2329.2897" y="2758.3314">1</text></g><!--link SourceAnchor to FamixJSONExporter--><g id="link_SourceAnchor_FamixJSONExporter"><path codeLine="622" d="M2450.6,2768.77 C2537.08,2721.35 2638.42,2664.77 2645.91,2656 C2923.26,2331.04 2675.03,2053.27 2980.91,1755 C3268.03,1475.02 3749.2259,1386.9353 4002.3259,1359.1253 " fill="none" id="SourceAnchor-to-FamixJSONExporter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4008.29,1358.47,3998.907,1355.4769,4003.3199,1359.0161,3999.7807,1363.4291,4008.29,1358.47" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="3993.5289" y="1373.9584">1</text></g><!--link SourcedEntity to FamixJSONExporter--><g id="link_SourcedEntity_FamixJSONExporter"><path codeLine="626" d="M2628.03,2382.3 C2657.32,2358.06 2684.9,2330.81 2706.91,2301 C2859.11,2094.89 2709.16,1934.59 2891.91,1755 C3202.02,1450.24 3733.0361,1372.8895 4002.1961,1353.1195 " fill="none" id="SourcedEntity-to-FamixJSONExporter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4008.18,1352.68,3998.9112,1349.35,4003.1934,1353.0463,3999.4972,1357.3285,4008.18,1352.68" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="3993.4088" y="1350.1597">1</text></g><!--link ScopingEntity to Module--><g id="link_ScopingEntity_Module"><path codeLine="627" d="M815.49,8031.93 C816.2,7999.63 815.9122,7965.2562 814.4922,7925.1362 " fill="none" id="ScopingEntity-to-Module" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="814.28,7919.14,810.6008,7928.2759,814.4569,7924.1369,818.5958,7927.9929,814.28,7919.14" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="807.9991" y="7940.8655">1</text></g><!--link Module to ScopingEntity--><g id="link_Module_ScopingEntity"><path codeLine="630" d="M788.04,7919.14 C789.35,7959.26 791.03,7993.6526 793.84,8025.9526 " fill="none" id="Module-to-ScopingEntity" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="794.36,8031.93,797.5649,8022.6172,793.9267,8026.9488,789.595,8023.3105,794.36,8031.93" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="785.6045" y="8021.1216">1</text></g><!--link ScopingEntity to FamixJSONExporter--><g id="link_ScopingEntity_FamixJSONExporter"><path codeLine="628" d="M936.41,8031.92 C965.01,8014.31 994.13,7994.02 1018.91,7972 C1234.2,7780.66 1321.93,7731.61 1414.91,7459 C1552.87,7054.48 1397.91,6924.9 1397.91,6497.5 C1397.91,6079 1397.91,6079 1397.91,6079 C1397.91,5983.02 1772.01,4490.16 1804.91,4400 C1925.57,4069.32 1871.32,3895.4 2157.91,3691 C2325.05,3571.79 2440.58,3737.8 2615.91,3631 C2711.09,3573.02 2667.3,3488.48 2758.91,3425 C2848.22,3363.11 2912.17,3434.25 2995.91,3365 C3127.07,3256.53 3040.24,3140.97 3157.91,3018 C3197.76,2976.35 3236.95,3003.06 3272.91,2958 C3401.48,2796.9 3390.91,2715.62 3390.91,2509.5 C3390.91,1956.5 3390.91,1956.5 3390.91,1956.5 C3390.91,1856.32 3415.68,1819.99 3491.91,1755 C3559.29,1697.54 3602.65,1734.5 3681.91,1695 C3839.18,1616.61 3996.7702,1494.3506 4089.4802,1417.1106 " fill="none" id="ScopingEntity-to-FamixJSONExporter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4094.09,1413.27,4084.615,1415.9577,4090.2485,1416.4705,4089.7357,1422.104,4094.09,1413.27" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4078.7039" y="1434.6462">1</text></g><!--link ScriptEntity to FamixJSONExporter--><g id="link_ScriptEntity_FamixJSONExporter"><path codeLine="629" d="M423.45,8227.76 C453.27,8077.83 514.19,7774.9 569.91,7519 C588.82,7432.14 1258.67,4484.3 1286.91,4400 C1398.78,4066.03 1371.15,3917.46 1640.91,3691 C1646.05,3686.68 2547.56,3370.12 2551.91,3365 C2653.29,3245.46 2501.54,3126.25 2614.91,3018 C2759.88,2879.57 2920.09,3099.66 3061.91,2958 C3157.4,2862.61 3133.58,1848.52 3230.91,1755 C3303.81,1684.95 3587.85,1732.09 3681.91,1695 C3848.78,1629.2 4007.8619,1498.6477 4097.4119,1417.1777 " fill="none" id="ScriptEntity-to-FamixJSONExporter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4101.85,1413.14,4092.501,1416.2378,4098.1516,1416.5047,4097.8846,1422.1553,4101.85,1413.14" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4094.986" y="1434.5028">1</text></g><!--link Module to ImportClause--><g id="link_Module_ImportClause"><path codeLine="631" d="M966.54,7571.73 C1009.83,7525.08 1050.8447,7480.1052 1089.1147,7437.0352 " fill="none" id="Module-to-ImportClause" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="1093.1,7432.55,1084.1319,7436.6209,1089.7789,7436.2877,1090.1121,7441.9347,1093.1,7432.55" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="1080.243" y="7453.5246">1</text></g><!--link ImportClause to Module--><g id="link_ImportClause_Module"><path codeLine="633" d="M1069.3,7432.55 C1028.68,7475.62 987.0482,7520.6333 944.7882,7567.2833 " fill="none" id="ImportClause-to-Module" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="940.76,7571.73,949.7668,7567.7454,944.1169,7568.0244,943.8379,7562.3744,940.76,7571.73" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="940.2102" y="7560.9885">1</text></g><!--link Module to FamixJSONExporter--><g id="link_Module_FamixJSONExporter"><path codeLine="632" d="M795.31,7571.92 C798.31,7455.69 807.64,7299.48 833.91,7164 C988.56,6366.2 1149.27,6198.38 1401.91,5426 C1464.97,5233.21 1813.07,3819.64 1969.91,3691 C2142.96,3549.06 2264.94,3720.9 2469.91,3631 C2598.95,3574.4 2593.46,3502.86 2710.91,3425 C2760.6,3392.05 2784.49,3402.43 2830.91,3365 C2984.95,3240.78 2966.83,3154.71 3109.91,3018 C3142.56,2986.8 3168.26,2996.47 3191.91,2958 C3375.2,2659.84 3319.91,2530.99 3319.91,2181 C3319.91,1956.5 3319.91,1956.5 3319.91,1956.5 C3319.91,1864.74 3298.97,1818.82 3364.91,1755 C3467.94,1655.28 3550,1751.23 3681.91,1695 C3845.96,1625.06 4004.6671,1497.1366 4095.1671,1417.0366 " fill="none" id="Module-to-FamixJSONExporter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4099.66,1413.06,4090.2695,1416.0296,4095.9159,1416.3739,4095.5717,1422.0202,4099.66,1413.06" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4086.7788" y="1434.4145">1</text></g><!--link ImportClause to NamedEntity--><g id="link_ImportClause_NamedEntity"><path codeLine="634" d="M1383.61,7190.48 C1450.17,7146.94 1519.9936,7100.6119 1587.6636,7055.0319 " fill="none" id="ImportClause-to-NamedEntity" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="1592.64,7051.68,1582.9408,7053.3903,1588.493,7054.4733,1587.41,7060.0255,1592.64,7051.68" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="1578.0655" y="7054.1978">1</text></g><!--link NamedEntity to ImportClause--><g id="link_NamedEntity_ImportClause"><path codeLine="642" d="M1592.71,7034.98 C1516.74,7084.84 1436.7278,7138.1054 1364.5278,7187.0054 " fill="none" id="NamedEntity-to-ImportClause" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="1359.56,7190.37,1369.2548,7188.6349,1363.6999,7187.5661,1364.7686,7182.0112,1359.56,7190.37" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="1363.1399" y="7179.6135">1</text></g><!--link ImportClause to FamixJSONExporter--><g id="link_ImportClause_FamixJSONExporter"><path codeLine="635" d="M1196.67,7190.35 C1203.77,7031.73 1214.91,6743.73 1214.91,6497.5 C1214.91,5742 1214.91,5742 1214.91,5742 C1214.91,5266.3 1461.96,3994.93 1827.91,3691 C2022.17,3529.66 2185.7,3775.33 2392.91,3631 C2476.74,3572.61 2422.34,3496.91 2494.91,3425 C2538.39,3381.91 2568.38,3399.57 2618.91,3365 C2805.78,3237.16 2802,3141.29 2991.91,3018 C3049.03,2980.92 3091.65,3012.19 3132.91,2958 C3296.3,2743.41 3105.14,1947.65 3293.91,1755 C3416.03,1630.36 3520.26,1760.72 3681.91,1695 C3847.59,1627.64 4006.4201,1498.2337 4096.3701,1417.2837 " fill="none" id="ImportClause-to-FamixJSONExporter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4100.83,1413.27,4091.4644,1416.3172,4097.1134,1416.6147,4096.8159,1422.2637,4100.83,1413.27" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4064.4641" y="1434.5564">1</text></g><!--link Alias to Type--><g id="link_Alias_Type"><path codeLine="637" d="M2456.16,7296.85 C2742,7273.6 3236.91,7217.41 3371.91,7104 C3592.28,6918.87 3598.91,6785.32 3598.91,6497.5 C3598.91,6079 3598.91,6079 3598.91,6079 C3598.91,5897.34 3545.01,5814.88 3660.91,5675 C3712.03,5613.3 3783.37,5679.5 3830.91,5615 C3976.51,5417.42 3933.291,4685.6146 3896.251,4346.2546 " fill="none" id="Alias-to-Type" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="3895.6,4340.29,3892.6001,4349.6709,3896.1425,4345.2605,3900.5529,4348.8029,3895.6,4340.29" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="3889.6508" y="4362.0223">1</text></g><!--link Type to Alias--><g id="link_Type_Alias"><path codeLine="722" d="M3876.11,4340.29 C3897.64,4679.65 3941.51,5417.42 3795.91,5615 C3748.37,5679.5 3677.03,5613.3 3625.91,5675 C3510.01,5814.88 3563.91,5897.34 3563.91,6079 C3563.91,6079 3563.91,6079 3563.91,6497.5 C3563.91,6785.32 3557.28,6918.87 3336.91,7104 C3205.55,7214.35 2739.417,7270.0051 2462.057,7294.3651 " fill="none" id="Type-to-Alias" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="2456.08,7294.89,2465.3955,7298.0872,2461.0608,7294.4525,2464.6955,7290.1179,2456.08,7294.89" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="2463.651" y="7291.5093">1</text></g><!--link Alias to FamixJSONExporter--><g id="link_Alias_FamixJSONExporter"><path codeLine="638" d="M2455.99,7256.45 C2769.36,7160.73 3327.91,6929.51 3327.91,6497.5 C3327.91,5742 3327.91,5742 3327.91,5742 C3327.91,5600.65 3275.26,5536.1 3363.91,5426 C3415.73,5361.63 3491.81,5433.21 3539.91,5366 C3602.5,5278.53 3553.05,5230.75 3539.91,5124 C3536.55,5096.72 3528.7,5091.22 3524.91,5064 C3482.81,4761.7 3343.31,3904.02 3561.91,3691 C3674.63,3581.16 3794.14,3736.52 3910.91,3631 C4043.11,3511.52 4029.91,3016.2 4029.91,2838 C4029.91,1956.5 4029.91,1956.5 4029.91,1956.5 C4029.91,1754.37 4102.5919,1529.7786 4143.6219,1418.6486 " fill="none" id="Alias-to-FamixJSONExporter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4145.7,1413.02,4138.8304,1420.0775,4143.9682,1417.7105,4146.3352,1422.8484,4145.7,1413.02" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4135.6362" y="1434.3704">1</text></g><!--link Decorator to FamixJSONExporter--><g id="link_Decorator_FamixJSONExporter"><path codeLine="640" d="M1662.15,7216.92 C1627.09,7185.52 1593.97,7147.31 1574.91,7104 C1428.95,6772.49 1574.13,6651.22 1573.91,6289 C1573.79,6103.22 1544.86,6054.49 1573.91,5871 C1610.81,5637.92 1674.4,5593.28 1737.91,5366 C1775.01,5233.2 1781.35,5199.1 1808.91,5064 C1868.76,4770.54 1755.67,4647.79 1923.91,4400 C1952.59,4357.75 1989.96,4379.84 2021.91,4340 C2123.9,4212.81 2074.01,4141.68 2140.91,3993 C2204.2,3852.34 2184.08,3777.32 2311.91,3691 C2479.49,3577.84 2607.51,3760.38 2762.91,3631 C2836.9,3569.4 2757.37,3488.31 2829.91,3425 C2942.88,3326.4 3051.84,3466.83 3161.91,3365 C3278.94,3256.72 3145.6,3135.93 3252.91,3018 C3305.14,2960.59 3369.32,3019.31 3416.91,2958 C3478.32,2878.87 3461.91,2609.67 3461.91,2509.5 C3461.91,1956.5 3461.91,1956.5 3461.91,1956.5 C3461.91,1839.04 3547.62,1835.76 3632.91,1755 C3774.07,1621.34 3953.0294,1492.9352 4065.4194,1416.4652 " fill="none" id="Decorator-to-FamixJSONExporter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4070.38,1413.09,4060.6889,1414.8457,4066.2461,1415.9027,4065.1892,1421.4599,4070.38,1413.09" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4052.5488" y="1434.4476">1</text></g><!--link NamedEntity to Invocation--><g id="link_NamedEntity_Invocation"><path codeLine="641" d="M2007.14,6800.67 C2118.52,6743.35 2250.0829,6674.5379 2361.4429,6615.2979 " fill="none" id="NamedEntity-to-Invocation" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="2366.74,6612.48,2356.9157,6613.1754,2362.3257,6614.8282,2360.6729,6620.2383,2366.74,6612.48" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="2352.169" y="6613.8704">1</text></g><!--link Invocation to NamedEntity--><g id="link_Invocation_NamedEntity"><path codeLine="707" d="M2366.84,6600.09 C2255.47,6657.45 2123.8781,6726.294 2012.4781,6785.504 " fill="none" id="Invocation-to-NamedEntity" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="2007.18,6788.32,2017.0045,6787.6281,2011.5951,6785.9733,2013.2499,6780.5639,2007.18,6788.32" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="2014.7545" y="6781.3733">1</text></g><!--link NamedEntity to FamixJSONExporter--><g id="link_NamedEntity_FamixJSONExporter"><path codeLine="645" d="M1786.04,6703.68 C1763.74,6264.27 1755.07,5188.74 2127.91,4400 C2301.05,4033.71 2424.02,3986.78 2700.91,3691 C2846.85,3535.1 2897.57,3510.49 3053.91,3365 C3247.49,3184.85 3363.95,3191.58 3487.91,2958 C3614.81,2718.87 3545.92,1990.23 3679.91,1755 C3766.7,1602.62 3928.425,1485.7435 4043.585,1416.1435 " fill="none" id="NamedEntity-to-FamixJSONExporter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4048.72,1413.04,4038.9485,1414.2719,4044.4408,1415.6262,4043.0865,1421.1186,4048.72,1413.04" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4028.6551" y="1434.3925">1</text></g><!--link Parameter to BehavioralEntity--><g id="link_Parameter_BehavioralEntity"><path codeLine="646" d="M4344.65,5811.39 C4334.76,5829.25 4326.7024,5844.1937 4315.7124,5865.3837 " fill="none" id="Parameter-to-BehavioralEntity" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4312.95,5870.71,4320.6445,5864.5622,4315.252,5866.2714,4313.5428,5860.879,4312.95,5870.71" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4309.1319" y="5860.4062">1</text></g><!--link BehavioralEntity to Parameter--><g id="link_BehavioralEntity_Parameter"><path codeLine="701" d="M4338.5,5870.71 C4348.74,5849.52 4355.7749,5834.7292 4363.7449,5816.8692 " fill="none" id="BehavioralEntity-to-Parameter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4366.19,5811.39,4358.8696,5817.9787,4364.1524,5815.956,4366.1752,5821.2388,4366.19,5811.39" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4356.4861" y="5832.7785">1</text></g><!--link Parameter to FamixJSONExporter--><g id="link_Parameter_FamixJSONExporter"><path codeLine="647" d="M4392.92,5674.97 C4407.38,5427.69 4455.91,4543.09 4455.91,3813 C4455.91,1956.5 4455.91,1956.5 4455.91,1956.5 C4455.91,1741.7 4313.2429,1525.4899 4230.6529,1417.8699 " fill="none" id="Parameter-to-FamixJSONExporter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4227,1413.11,4229.306,1422.6851,4230.044,1417.0766,4235.6525,1417.8146,4227,1413.11" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4225.3202" y="1434.4697">1</text></g><!--link Property to Class--><g id="link_Property_Class"><path codeLine="648" d="M5402.16,7518.78 C5432.57,6978.66 5472.75,5569.63 5366.91,4400 C5350.37,4217.2 5370.44,4161.17 5296.91,3993 C5283.44,3962.21 5261.7,3964.82 5250.91,3933 C5178.38,3719.19 5195.28,3643.56 5251.91,3425 C5257.11,3404.93 5262.0607,3390.2424 5270.5107,3370.5824 " fill="none" id="Property-to-Class" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="5272.88,3365.07,5265.6512,3371.7591,5270.9056,3369.6637,5273.001,3374.9181,5272.88,3365.07" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="5261.6872" y="3386.7923">1</text></g><!--link Class to Property--><g id="link_Class_Property"><path codeLine="654" d="M5238.07,3365.07 C5229.43,3384.73 5222.11,3404.93 5216.91,3425 C5160.28,3643.56 5143.38,3719.19 5215.91,3933 C5226.7,3964.82 5248.44,3962.21 5261.91,3993 C5335.44,4161.17 5315.37,4217.2 5331.91,4400 C5437.75,5569.63 5397.716,6972.6618 5384.566,7512.7818 " fill="none" id="Class-to-Property" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="5384.42,7518.78,5388.6379,7509.88,5384.5417,7513.7815,5380.6402,7509.6853,5384.42,7518.78" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="5377.3485" y="7507.8459">1</text></g><!--link Property to Interface--><g id="link_Property_Interface"><path codeLine="649" d="M5590.1,7640.98 C5668.73,7600.68 5759.56,7555.52 5843.91,7519 C5956.9,7470.07 6079.9893,7424.8591 6184.9993,7387.9591 " fill="none" id="Property-to-Interface" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="6190.66,7385.97,6180.8429,7385.1799,6185.9428,7387.6276,6183.4951,7392.7275,6190.66,7385.97" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="6176.0862" y="7385.8686">1</text></g><!--link Interface to Property--><g id="link_Interface_Property"><path codeLine="661" d="M6190.71,7375.25 C6076.48,7413.47 5933.16,7465.19 5808.91,7519 C5736.25,7550.46 5664.0961,7585.5774 5595.3661,7621.2274 " fill="none" id="Interface-to-Property" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="5590.04,7623.99,5599.871,7623.3968,5594.4785,7621.6878,5596.1874,7616.2953,5590.04,7623.99" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="5597.6095" y="7616.8369">1</text></g><!--link Property to FamixJSONExporter--><g id="link_Property_FamixJSONExporter"><path codeLine="650" d="M5175.9,7548.03 C4934.53,7325.41 4517.38,6960.3 4116.91,6704 C4065.34,6671 4029.45,6693.12 3992.91,6644 C3787.27,6367.62 3882.55,6211.33 3935.91,5871 C3950.08,5780.6 3966.68,5760.64 3998.91,5675 C4009.14,5647.8 4017.02,5642.97 4024.91,5615 C4172.88,5090.07 4113.85,4939.02 4196.91,4400 C4201.02,4373.28 4203.76,4366.85 4206.91,4340 C4234.24,4106.83 4242.91,4047.77 4242.91,3813 C4242.91,1956.5 4242.91,1956.5 4242.91,1956.5 C4242.91,1757.76 4206.4088,1530.9622 4185.9288,1418.9122 " fill="none" id="Property-to-FamixJSONExporter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4184.85,1413.01,4182.5334,1422.5825,4185.749,1417.9285,4190.403,1421.1441,4184.85,1413.01" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4178.8235" y="1434.3594">1</text></g><!--link Inheritance to Class--><g id="link_Inheritance_Class"><path codeLine="651" d="M6046.35,7650.86 C6036.64,7527.57 6028.22,7309.48 6129.91,7164 C6164.53,7114.48 6219.97,7155.3 6251.91,7104 C6345.87,6953.08 6253.91,6881.77 6251.91,6704 C6250.13,6546.19 6266.26,6505.23 6243.91,6349 C6116.9,5461.29 5986.73,5256.76 5721.91,4400 C5665.29,4216.82 5709.86,4133.04 5578.91,3993 C5532.67,3943.56 5478.39,3987.99 5438.91,3933 C5320.81,3768.53 5324.7524,3533.2471 5341.7924,3371.2471 " fill="none" id="Inheritance-to-Class" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="5342.42,3365.28,5337.5005,3373.8122,5341.897,3370.2526,5345.4566,3374.6491,5342.42,3365.28" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="5334.3783" y="3387.0118">1</text></g><!--link Class to Inheritance--><g id="link_Class_Inheritance"><path codeLine="656" d="M5315.49,3365.28 C5290.38,3527.28 5285.81,3768.53 5403.91,3933 C5443.39,3987.99 5497.67,3943.56 5543.91,3993 C5674.86,4133.04 5630.29,4216.82 5686.91,4400 C5951.73,5256.76 6081.9,5461.29 6208.91,6349 C6231.26,6505.23 6215.13,6546.19 6216.91,6704 C6218.91,6881.77 6310.87,6953.08 6216.91,7104 C6184.97,7155.3 6129.53,7114.48 6094.91,7164 C5993.22,7309.48 6000.6363,7521.6546 6021.5563,7644.9446 " fill="none" id="Class-to-Inheritance" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="6022.56,7650.86,6024.998,7641.3177,6021.7235,7645.9305,6017.1108,7642.656,6022.56,7650.86" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="6013.1016" y="7640.195">1</text></g><!--link Inheritance to Interface--><g id="link_Inheritance_Interface"><path codeLine="652" d="M6136.82,7650.71 C6184.12,7594.73 6239.1503,7527.1458 6289.0003,7463.7758 " fill="none" id="Inheritance-to-Interface" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="6292.71,7459.06,6284.0017,7463.6605,6289.6186,7462.9898,6290.2894,7468.6068,6292.71,7459.06" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="6280.4448" y="7480.1099">1</text></g><!--link Interface to Inheritance--><g id="link_Interface_Inheritance"><path codeLine="663" d="M6267.7,7459.06 C6215.51,7522.43 6161.3955,7589.9721 6118.3855,7645.9521 " fill="none" id="Interface-to-Inheritance" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="6114.73,7650.71,6123.3852,7646.0102,6117.7763,7646.7451,6117.0414,7641.1362,6114.73,7650.71" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="6112.6164" y="7640.033">1</text></g><!--link Inheritance to FamixJSONExporter--><g id="link_Inheritance_FamixJSONExporter"><path codeLine="653" d="M5951.25,7650.76 C5835.51,7534.37 5647.66,7324.17 5554.91,7104 C5423.35,6791.73 5508.11,6682.63 5448.91,6349 C5294.1,5476.62 5263.31,5254.72 5029.91,4400 C4922.42,4006.41 4739.91,3937 4739.91,3529 C4739.91,1956.5 4739.91,1956.5 4739.91,1956.5 C4739.91,1864.74 4743.91,1832.58 4694.91,1755 C4598.02,1601.64 4427.8157,1485.2534 4307.0357,1416.0334 " fill="none" id="Inheritance-to-FamixJSONExporter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4301.83,1413.05,4307.6496,1420.9956,4306.1681,1415.5362,4311.6275,1414.0547,4301.83,1413.05" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4307.8671" y="1434.4035">1</text></g><!--link Class to Method--><g id="link_Class_Method"><path codeLine="655" d="M5369.52,3365.11 C5389.76,3556.04 5438.28,3847.99 5508.91,3933 C5552.43,3985.39 5599.44,3947.27 5649.91,3993 C6074.54,4377.76 6035.75,4600.55 6268.91,5124 C6412.06,5445.39 6453.76,5527.73 6530.91,5871 C6657.61,6434.77 6636.64,6586.96 6666.91,7164 C6673.77,7294.93 6674.45,7328.11 6666.91,7459 C6665.79,7478.43 6664.7584,7492.5824 6663.0084,7512.7624 " fill="none" id="Class-to-Method" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="6662.49,7518.74,6667.2526,7510.1192,6662.922,7513.7587,6659.2825,7509.4281,6662.49,7518.74" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="6655.7804" y="7507.8045">1</text></g><!--link Method to Class--><g id="link_Method_Class"><path codeLine="658" d="M6697.37,7518.74 C6699.24,7498.56 6700.79,7478.43 6701.91,7459 C6709.45,7328.11 6708.77,7294.93 6701.91,7164 C6671.64,6586.96 6692.61,6434.77 6565.91,5871 C6488.76,5527.73 6447.06,5445.39 6303.91,5124 C6070.75,4600.55 6109.54,4377.76 5684.91,3993 C5634.44,3947.27 5587.43,3985.39 5543.91,3933 C5473.28,3847.99 5425.6947,3561.9668 5395.5847,3371.0368 " fill="none" id="Method-to-Class" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="5394.65,3365.11,5392.1008,3374.6232,5395.4289,3370.049,5400.0032,3373.377,5394.65,3365.11" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="5388.9749" y="3386.8341">1</text></g><!--link Class to FamixJSONExporter--><g id="link_Class_FamixJSONExporter"><path codeLine="657" d="M5291.46,3017.65 C5242.47,2881.86 5185.91,2686.72 5185.91,2509.5 C5185.91,1956.5 5185.91,1956.5 5185.91,1956.5 C5185.91,1564.41 4628.4833,1418.6563 4341.5833,1369.3463 " fill="none" id="Class-to-FamixJSONExporter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4335.67,1368.33,4343.8624,1373.7967,4340.5977,1369.1769,4345.2175,1365.9123,4335.67,1368.33" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4343.249" y="1383.2517">1</text></g><!--link Method to Interface--><g id="link_Method_Interface"><path codeLine="659" d="M6532.23,7518.82 C6520.3,7498.55 6511.3949,7483.5241 6499.7049,7464.1941 " fill="none" id="Method-to-Interface" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="6496.6,7459.06,6497.8346,7468.8312,6499.1874,7463.3385,6504.6801,7464.6913,6496.6,7459.06" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="6494.2108" y="7480.1099">1</text></g><!--link Interface to Method--><g id="link_Interface_Method"><path codeLine="662" d="M6471.59,7459.06 C6482.57,7478.39 6491.1457,7493.368 6502.9757,7513.638 " fill="none" id="Interface-to-Method" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="6506,7518.82,6504.9182,7509.0307,6503.4797,7514.5016,6498.0088,7513.0632,6506,7518.82" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="6493.6665" y="7507.8873">1</text></g><!--link Method to FamixJSONExporter--><g id="link_Method_FamixJSONExporter"><path codeLine="660" d="M6669.76,7518.63 C6676.09,7377.48 6671.66,7213.43 6622.91,7164 C6471.56,7010.56 5816.24,7246.91 5654.91,7104 C5550.62,7011.62 5453.67,6007.73 5426.91,5871 C5298.65,5215.84 5373.12,5018.93 5122.91,4400 C5111.08,4370.74 5097.68,4368.87 5084.91,4340 C5009,4168.43 5017.86,4115.15 4972.91,3933 C4892.19,3605.92 4810.91,3529.39 4810.91,3192.5 C4810.91,1956.5 4810.91,1956.5 4810.91,1956.5 C4810.91,1690.87 4524.0625,1507.9407 4334.8425,1415.6307 " fill="none" id="Method-to-FamixJSONExporter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4329.45,1413,4335.785,1420.5411,4333.9438,1415.1923,4339.2926,1413.3511,4329.45,1413" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4338.3354" y="1434.3483">1</text></g><!--link Interface to FamixJSONExporter--><g id="link_Interface_FamixJSONExporter"><path codeLine="664" d="M6575.61,7163.85 C6592.17,7144.97 6607.4,7124.89 6619.91,7104 C6728.48,6922.61 6701.18,6851.63 6740.91,6644 C7069.17,4928.37 7519.62,4338.22 6871.91,2716 C6858.27,2681.84 6833.29,2687.86 6814.91,2656 C6746.6,2537.6 6800.91,2476.57 6727.91,2361 C6512.43,2019.86 6411.19,1938.65 6051.91,1755 C5468.03,1456.55 4680.0878,1375.7032 4341.6178,1354.0432 " fill="none" id="Interface-to-FamixJSONExporter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4335.63,1353.66,4344.3562,1358.2266,4340.6198,1353.9793,4344.8671,1350.2429,4335.63,1353.66" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4343.2072" y="1351.1919">1</text></g><!--link PrimitiveType to FamixJSONExporter--><g id="link_PrimitiveType_FamixJSONExporter"><path codeLine="665" d="M7189.18,8315.45 C7539.25,8293 8209.91,8191.86 8209.91,7746.5 C8209.91,6079 8209.91,6079 8209.91,6079 C8209.91,4680.51 8054.77,4293.33 7480.91,3018 C7389,2813.74 6948.17,2178.34 6817.91,2059 C6621.64,1879.2 6551.05,1848.69 6301.91,1755 C5599.43,1490.84 4705.6474,1390.61 4341.6174,1358.94 " fill="none" id="PrimitiveType-to-FamixJSONExporter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4335.64,1358.42,4344.2594,1363.185,4340.6212,1358.8534,4344.9528,1355.2151,4335.64,1358.42" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4343.2176" y="1372.8926">1</text></g><!--link ParametricClass to ParameterType--><g id="link_ParametricClass_ParameterType"><path codeLine="666" d="M6171.35,3631.21 C6169.52,3650.59 6168.3223,3665.0504 6167.1523,3684.9404 " fill="none" id="ParametricClass-to-ParameterType" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="6166.8,3690.93,6171.3216,3682.1804,6167.0936,3685.9386,6163.3354,3681.7106,6166.8,3690.93" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="6159.3125" y="3680.1773">1</text></g><!--link ParameterType to ParametricClass--><g id="link_ParameterType_ParametricClass"><path codeLine="694" d="M6192.79,3690.93 C6194.45,3671.04 6195.5117,3656.5835 6196.4117,3637.2035 " fill="none" id="ParameterType-to-ParametricClass" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="6196.69,3631.21,6192.2768,3640.0148,6196.4581,3636.2046,6200.2682,3640.3859,6196.69,3631.21" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="6189.8574" y="3652.8672">1</text></g><!--link ParametricClass to Interface--><g id="link_ParametricClass_Interface"><path codeLine="668" d="M6463.15,3575.14 C6588.47,3602.48 6717.63,3641.51 6754.91,3691 C6819.62,3776.91 6761.79,3825.66 6754.91,3933 C6703.02,4741.98 6521.91,4931.36 6521.91,5742 C6521.91,5742 6521.91,5742 6521.91,6497.5 C6521.91,6767.8 6535.82,6840.2 6476.91,7104 C6472.51,7123.67 6468.4999,7138.2588 6461.8799,7158.0888 " fill="none" id="ParametricClass-to-Interface" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="6459.98,7163.78,6466.6241,7156.5098,6461.5633,7159.0373,6459.0358,7153.9765,6459.98,7163.78" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="6456" y="7153.267">1</text></g><!--link ParametricClass to PrimitiveType--><g id="link_ParametricClass_PrimitiveType"><path codeLine="669" d="M6462.95,3547.69 C6600.02,3567.64 6763.49,3608.34 6889.91,3691 C7029.99,3782.6 7035.78,3845.5 7114.91,3993 C7825.93,5318.46 7783.91,5806.37 7783.91,7310.5 C7783.91,7310.5 7783.91,7310.5 7783.91,7746.5 C7783.91,8054.67 7393.7289,8212.001 7158.2489,8279.311 " fill="none" id="ParametricClass-to-PrimitiveType" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="7152.48,8280.96,7162.2328,8282.3325,7157.2875,8279.5858,7160.0341,8274.6405,7152.48,8280.96" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="7173.151" y="8270.2611">1</text></g><!--link ParametricClass to FamixJSONExporter--><g id="link_ParametricClass_FamixJSONExporter"><path codeLine="670" d="M6159.7,3424.86 C6110.99,3262.94 6015.92,2936.87 5952.91,2656 C5863.89,2259.23 6070.85,2052.74 5793.91,1755 C5743.32,1700.61 4743.146,1473.1665 4341.406,1383.5365 " fill="none" id="ParametricClass-to-FamixJSONExporter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4335.55,1382.23,4343.463,1388.0938,4340.43,1383.3188,4345.205,1380.2857,4335.55,1382.23" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4343.6458" y="1397.9233">1</text></g><!--link ParametricInterface to ParameterType--><g id="link_ParametricInterface_ParameterType"><path codeLine="671" d="M7284.85,7642.39 C7242.81,7485.63 7158.91,7175.39 7158.91,6905 C7158.91,5244 7158.91,5244 7158.91,5244 C7158.91,4673.46 7267.88,4402.79 6870.91,3993 C6846.2,3967.49 6803.3594,3946.2351 6742.8694,3925.6251 " fill="none" id="ParametricInterface-to-ParameterType" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="6737.19,3923.69,6744.419,3930.3789,6741.9228,3925.3026,6746.9991,3922.8063,6737.19,3923.69" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="6745.2025" y="3922.6478">1</text></g><!--link ParameterType to ParametricInterface--><g id="link_ParameterType_ParametricInterface"><path codeLine="695" d="M6728.6,3933.06 C6776.58,3951.25 6814.87,3971.29 6835.91,3993 C7232.88,4402.79 7123.91,4673.46 7123.91,5244 C7123.91,5244 7123.91,5244 7123.91,6905 C7123.91,7175.39 7205.8361,7479.964 7260.4461,7636.724 " fill="none" id="ParameterType-to-ParametricInterface" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="7262.42,7642.39,7263.2366,7632.5751,7260.7751,7637.6683,7255.6819,7635.2069,7262.42,7642.39" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="7251.8957" y="7631.7206">1</text></g><!--link ParametricInterface to Class--><g id="link_ParametricInterface_Class"><path codeLine="672" d="M7305.51,7642.41 C7303.46,7484.39 7299.91,7171 7299.91,6905 C7299.91,6079 7299.91,6079 7299.91,6079 C7299.91,5330.84 7348.41,5128.7 7178.91,4400 C7134.68,4209.89 7115.43,4159.71 7013.91,3993 C6967.92,3917.49 6833.89,3730.73 6754.91,3691 C6585.15,3605.61 6078.65,3700.8 5901.91,3631 C5756.17,3573.44 5623.7489,3465.7654 5524.3389,3369.4354 " fill="none" id="ParametricInterface-to-Class" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="5520.03,3365.26,5523.7097,3374.3956,5523.6207,3368.7395,5529.2769,3368.6505,5520.03,3365.26" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="5520.0362" y="3386.9909">1</text></g><!--link ParametricInterface to PrimitiveType--><g id="link_ParametricInterface_PrimitiveType"><path codeLine="674" d="M7324.28,7848.53 C7334.21,7939.83 7334.3,8073.47 7271.91,8168 C7236.76,8221.25 7182.3896,8254.951 7126.1196,8278.651 " fill="none" id="ParametricInterface-to-PrimitiveType" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="7120.59,8280.98,7130.437,8281.1729,7125.198,8279.0392,7127.3317,8273.8002,7120.59,8280.98" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="7135.9792" y="8270.2844">1</text></g><!--link ParametricInterface to FamixJSONExporter--><g id="link_ParametricInterface_FamixJSONExporter"><path codeLine="675" d="M7334.46,7642.28 C7348.43,7588.09 7364.93,7520.23 7376.91,7459 C7518.99,6732.46 7525.42,6545.37 7618.91,5811 C7644.03,5613.67 7656.22,5564.64 7666.91,5366 C7713.88,4492.44 7624.23,4252.33 7339.91,3425 C7045.46,2568.19 7008.32,2100.79 6170.91,1755 C5524.04,1487.89 4691.0265,1390.0007 4341.6965,1358.9807 " fill="none" id="ParametricInterface-to-FamixJSONExporter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4335.72,1358.45,4344.3309,1363.2304,4340.7004,1358.8923,4345.0385,1355.2617,4335.72,1358.45" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4343.3012" y="1356.199">1</text></g><!--link Function to FamixJSONExporter--><g id="link_Function_FamixJSONExporter"><path codeLine="676" d="M4146.52,6454.83 C4092.15,6418.98 4020.95,6361.25 3988.91,6289 C3913.59,6119.17 3946.59,6051.89 3988.91,5871 C4011.04,5776.36 4039.84,5760.58 4085.91,5675 C4100.54,5647.82 4111.14,5644.29 4120.91,5615 C4159.86,5498.17 4313.91,4239.19 4313.91,3813 C4313.91,1956.5 4313.91,1956.5 4313.91,1956.5 C4313.91,1754.37 4241.2281,1529.7786 4200.1981,1418.6486 " fill="none" id="Function-to-FamixJSONExporter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4198.12,1413.02,4197.4848,1422.8484,4199.8518,1417.7105,4204.9896,1420.0775,4198.12,1413.02" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4193.462" y="1434.3704">1</text></g><!--link Accessor to FamixJSONExporter--><g id="link_Accessor_FamixJSONExporter"><path codeLine="677" d="M6178.8,8084.59 C5838.09,8059.9 5193.36,8008.64 5158.91,7972 C4983.91,7785.92 5077.63,5930.02 5062.91,5675 C5060.86,5639.55 4988.68,4429.5 4968.91,4400 C4935.71,4350.46 4886.45,4386.33 4848.91,4340 C4616.47,4053.13 4668.91,3898.22 4668.91,3529 C4668.91,1956.5 4668.91,1956.5 4668.91,1956.5 C4668.91,1712.71 4432.5771,1515.6256 4286.2471,1416.4756 " fill="none" id="Accessor-to-FamixJSONExporter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4281.28,1413.11,4286.487,1421.4699,4285.4193,1415.9147,4290.9745,1414.847,4281.28,1413.11" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4285.1978" y="1434.4697">1</text></g><!--link ParametricMethod to Class--><g id="link_ParametricMethod_Class"><path codeLine="678" d="M6971.59,8031.8 C6920.59,7697.46 6697.91,6210.77 6697.91,5744 C6697.91,5244 6697.91,5244 6697.91,5244 C6697.91,5160.56 6121.58,4160.59 5857.91,3993 C5754.16,3927.06 5676.55,4018.17 5587.91,3933 C5507.69,3855.92 5553.04,3798.37 5523.91,3691 C5491.77,3572.57 5488.11,3541.61 5449.91,3425 C5443.52,3405.52 5438.516,3390.904 5431.276,3370.834 " fill="none" id="ParametricMethod-to-Class" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="5429.24,3365.19,5428.5313,3375.0133,5430.9367,3369.8933,5436.0567,3372.2987,5429.24,3365.19" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="5425.1323" y="3386.9178">1</text></g><!--link ParametricMethod to Interface--><g id="link_ParametricMethod_Interface"><path codeLine="679" d="M6709.8,8051.83 C6579.21,8026.5 6446.67,7995.7 6426.91,7972 C6364.39,7897.01 6371.8098,7635.7046 6384.0598,7465.3046 " fill="none" id="ParametricMethod-to-Interface" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="6384.49,7459.32,6379.855,7468.01,6384.1315,7464.3071,6387.8344,7468.5837,6384.49,7459.32" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="6376.7233" y="7479.8943">1</text></g><!--link ParametricMethod to PrimitiveType--><g id="link_ParametricMethod_PrimitiveType"><path codeLine="680" d="M6981.91,8168.06 C6981.91,8204.8 6981.91,8243.15 6981.91,8274.7 " fill="none" id="ParametricMethod-to-PrimitiveType" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="6981.91,8280.7,6985.91,8271.7,6981.91,8275.7,6977.91,8271.7,6981.91,8280.7" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="6974.3522" y="8270.2688">1</text></g><!--link ParametricMethod to FamixJSONExporter--><g id="link_ParametricMethod_FamixJSONExporter"><path codeLine="681" d="M7254.05,8077.73 C7417.94,8059.49 7606.3,8027.15 7666.91,7972 C7892.35,7766.89 7854.91,7617.29 7854.91,7312.5 C7854.91,6495.5 7854.91,6495.5 7854.91,6495.5 C7854.91,6061.46 7925.91,5955.54 7925.91,5521.5 C7925.91,4165.5 7925.91,4165.5 7925.91,4165.5 C7925.91,3183.33 8049.92,2639.83 7257.91,2059 C7037.99,1897.72 6982.13,1845.58 6724.91,1755 C5859.33,1450.18 4754.0734,1371.6514 4341.5434,1352.2814 " fill="none" id="ParametricMethod-to-FamixJSONExporter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4335.55,1352,4344.3525,1356.4177,4340.5445,1352.2345,4344.7277,1348.4265,4335.55,1352" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4343.3129" y="1349.417">1</text></g><!--link ParametricFunction to Class--><g id="link_ParametricFunction_Class"><path codeLine="682" d="M6296.47,2905.03 C6087.25,2968.94 5780.2282,3062.7171 5575.0782,3125.3871 " fill="none" id="ParametricFunction-to-Class" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="5569.34,3127.14,5579.116,3128.3361,5574.1219,3125.6792,5576.7787,3120.6851,5569.34,3127.14" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="5576.9203" y="3122.0345">1</text></g><!--link ParametricFunction to Interface--><g id="link_ParametricFunction_Interface"><path codeLine="683" d="M6590.97,2905.36 C6621.95,2936.81 6655.73,2976.46 6677.91,3018 C6765.78,3182.61 6750.91,3240.84 6780.91,3425 C6930.56,4343.8 6768.91,4588.6 6768.91,5519.5 C6768.91,5519.5 6768.91,5519.5 6768.91,5744 C6768.91,6358.02 6745.57,6530.62 6525.91,7104 C6518.21,7124.09 6511.3563,7139.0935 6500.7463,7158.6935 " fill="none" id="ParametricFunction-to-Interface" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="6497.89,7163.97,6505.6921,7157.9595,6500.2703,7159.5729,6498.6568,7154.151,6497.89,7163.97" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="6496.1663" y="7152.982">1</text></g><!--link ParametricFunction to PrimitiveType--><g id="link_ParametricFunction_PrimitiveType"><path codeLine="684" d="M6624.99,2905.04 C6668.02,2935.48 6715.32,2974.45 6749.91,3018 C6855.3,3150.7 6831.75,3213.62 6907.91,3365 C7144.09,3834.52 7285.54,3911.69 7479.91,4400 C7602.81,4708.78 7591.4,4800.35 7666.91,5124 C7698.06,5257.53 7706.58,5290.89 7729.91,5426 C7922.74,6543.02 8429.99,6980.32 7880.91,7972 C7746.61,8214.55 7415.9786,8288.9366 7194.9086,8311.6566 " fill="none" id="ParametricFunction-to-PrimitiveType" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="7188.94,8312.27,7198.3018,8315.3289,7193.9138,8311.7588,7197.4839,8307.3708,7188.94,8312.27" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="7197.1638" y="8309.0556">1</text></g><!--link ParametricFunction to FamixJSONExporter--><g id="link_ParametricFunction_FamixJSONExporter"><path codeLine="685" d="M6243.81,2776.7 C6176.51,2750.02 6110.44,2711.5 6063.91,2656 C5801.21,2342.66 6162.41,2048.68 5877.91,1755 C5663.2,1533.37 4725.5622,1407.0225 4341.4222,1363.6925 " fill="none" id="ParametricFunction-to-FamixJSONExporter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4335.46,1363.02,4343.9549,1368.0036,4340.4285,1363.5804,4344.8516,1360.054,4335.46,1363.02" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4343.2146" y="1378.9279">1</text></g><!--link ArrowFunction to FamixJSONExporter--><g id="link_ArrowFunction_FamixJSONExporter"><path codeLine="686" d="M5932.26,6454.76 C5901.23,6342.49 5818.91,6018.77 5818.91,5744 C5818.91,5519.5 5818.91,5519.5 5818.91,5519.5 C5818.91,4810.28 5633.76,4644.68 5353.91,3993 C5341.81,3964.84 5332.2,3961.08 5319.91,3933 C5213.56,3690.18 5205.99,3621.19 5137.91,3365 C5076.41,3133.58 5025.91,3077.45 5025.91,2838 C5025.91,1956.5 5025.91,1956.5 5025.91,1956.5 C5025.91,1864.54 5035.68,1827.34 4978.91,1755 C4816.23,1547.73 4526.015,1438.1077 4341.275,1386.0377 " fill="none" id="ArrowFunction-to-FamixJSONExporter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4335.5,1384.41,4343.0773,1390.7016,4340.3125,1385.7664,4345.2476,1383.0016,4335.5,1384.41" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4343.5934" y="1400.2089">1</text></g><!--link ParametricArrowFunction to Class--><g id="link_ParametricArrowFunction_Class"><path codeLine="687" d="M5861.91,6835.96 C5810.53,6788.44 5748.76,6719.85 5719.91,6644 C5623.66,6391 5723.39,5695.92 5702.91,5426 C5645.59,4670.73 5555.26,4069.7 5489.91,3993 C5436.85,3930.74 5363.39,3999.61 5315.91,3933 C5198.51,3768.34 5240.5912,3532.8477 5292.1012,3370.9177 " fill="none" id="ParametricArrowFunction-to-Class" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="5293.92,3365.2,5287.38,3372.564,5292.4043,3369.9647,5295.0036,3374.9891,5293.92,3365.2" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="5283.6806" y="3386.9282">1</text></g><!--link ParametricArrowFunction to Interface--><g id="link_ParametricArrowFunction_Interface"><path codeLine="688" d="M6019.13,6972.19 C6077.34,7024.18 6155.6552,7094.123 6228.9952,7159.633 " fill="none" id="ParametricArrowFunction-to-Interface" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="6233.47,7163.63,6229.4225,7154.6513,6229.741,7160.2991,6224.0931,7160.6176,6233.47,7163.63" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="6217.8106" y="7153.1092">1</text></g><!--link ParametricArrowFunction to PrimitiveType--><g id="link_ParametricArrowFunction_PrimitiveType"><path codeLine="689" d="M5910.73,6972.14 C5828.32,7149.27 5634.34,7638.47 5825.91,7972 C5912.01,8121.91 5999.9,8107.65 6161.91,8168 C6362.95,8242.88 6599.9119,8281.7919 6768.9419,8301.8819 " fill="none" id="ParametricArrowFunction-to-PrimitiveType" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="6774.9,8302.59,6766.435,8297.5557,6769.9349,8301.9999,6765.4908,8305.4998,6774.9,8302.59" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="6759.677" y="8298.9975">1</text></g><!--link ParametricArrowFunction to FamixJSONExporter--><g id="link_ParametricArrowFunction_FamixJSONExporter"><path codeLine="690" d="M5841.9,6835.87 C5780.87,6789.7 5708,6722.65 5669.91,6644 C5575.68,6449.44 5613.09,5889.2 5583.91,5675 C5506.13,5104.06 5643.12,4895.44 5348.91,4400 C5327.29,4363.59 5299.98,4374.12 5274.91,4340 C5160.08,4183.74 4952.91,3722.91 4952.91,3529 C4952.91,1956.5 4952.91,1956.5 4952.91,1956.5 C4952.91,1645.86 4570.3283,1471.6788 4341.3183,1394.8288 " fill="none" id="ParametricArrowFunction-to-FamixJSONExporter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4335.63,1392.92,4342.8898,1399.5754,4340.3702,1394.5107,4345.435,1391.9911,4335.63,1392.92" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4343.4003" y="1411.5843">1</text></g><!--link ParameterType to Method--><g id="link_ParameterType_Method"><path codeLine="691" d="M6499.17,3933.11 C6525.36,3950.64 6549.8,3970.51 6570.91,3993 C6765.51,4200.33 6839.91,4959.65 6839.91,5244 C6839.91,5244 6839.91,5244 6839.91,5521.5 C6839.91,6382.91 6992.23,6621.93 6788.91,7459 C6784.1,7478.79 6779.8664,7493.1971 6772.6064,7512.9871 " fill="none" id="ParameterType-to-Method" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="6770.54,7518.62,6777.395,7511.5483,6772.262,7513.9259,6769.8844,7508.793,6770.54,7518.62" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="6767.3505" y="7508.4136">1</text></g><!--link ParameterType to ParametricArrowFunction--><g id="link_ParameterType_ParametricArrowFunction"><path codeLine="692" d="M6181.86,3933.15 C6223.28,4405.91 6358.61,6136.91 6168.91,6644 C6140.47,6720.01 6082.9913,6784.4239 6031.3013,6831.8439 " fill="none" id="ParameterType-to-ParametricArrowFunction" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="6026.88,6835.9,6036.2161,6832.7634,6030.5644,6832.5199,6030.8079,6826.8683,6026.88,6835.9" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="6028.572" y="6825.0883">1</text></g><!--link ParameterType to ArrowFunction--><g id="link_ParameterType_ArrowFunction"><path codeLine="693" d="M6121.59,3933.18 C6055.09,4106.37 5944.91,4437.61 5944.91,4731 C5944.91,4731 5944.91,4731 5944.91,5744 C5944.91,6015.38 5944.2633,6335.87 5944.0133,6448.77 " fill="none" id="ParameterType-to-ArrowFunction" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="5944,6454.77,5948.0199,6445.7789,5944.0111,6449.77,5940.0199,6445.7612,5944,6454.77" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="5936.4352" y="6444.0396">1</text></g><!--link ParameterType to ParametricMethod--><g id="link_ParameterType_ParametricMethod"><path codeLine="696" d="M6598.7,3933.19 C6626,3950.52 6651.48,3970.34 6673.91,3993 C6847.55,4168.42 7052.91,5513.61 7052.91,6079 C7052.91,6079 7052.91,6079 7052.91,6497.5 C7052.91,6803.99 7000.6839,7762.5493 6986.0039,8025.9693 " fill="none" id="ParameterType-to-ParametricMethod" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="6985.67,8031.96,6990.1646,8023.1965,6985.9482,8026.9677,6982.177,8022.7514,6985.67,8031.96" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="6978.6984" y="8021.1549">1</text></g><!--link ParameterType to Accessor--><g id="link_ParameterType_Accessor"><path codeLine="697" d="M6210.72,3933.29 C6216.39,3953.1 6221.71,3973.51 6225.91,3993 C6391,4759.15 6450.91,4958.26 6450.91,5742 C6450.91,5742 6450.91,5742 6450.91,6497.5 C6450.91,6633.53 6455.9,7000.26 6367.91,7104 C6309.53,7172.83 6227.47,7091.36 6173.91,7164 C6096.09,7269.52 6109.06,7345.05 6173.91,7459 C6199.73,7504.38 6244.91,7476.26 6274.91,7519 C6306.19,7563.58 6361.1583,7927.8522 6379.2283,8052.3722 " fill="none" id="ParameterType-to-Accessor" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="6380.09,8058.31,6382.756,8048.8288,6379.3719,8053.3618,6374.8389,8049.9777,6380.09,8058.31" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="6371.5464" y="8047.5862">1</text></g><!--link ParameterType to ParametricFunction--><g id="link_ParameterType_ParametricFunction"><path codeLine="698" d="M6430.23,3690.82 C6449.93,3673.23 6467.37,3653.36 6480.91,3631 C6622.4,3397.29 6567.0644,3055.832 6534.2944,2911.032 " fill="none" id="ParameterType-to-ParametricFunction" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="6532.97,2905.18,6531.0552,2914.8409,6534.0737,2910.0567,6538.8579,2913.0751,6532.97,2905.18" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="6527.3684" y="2926.5469">1</text></g><!--link ParameterType to FamixJSONExporter--><g id="link_ParameterType_FamixJSONExporter"><path codeLine="700" d="M5951.2,3690.9 C5932.09,3673.04 5915.05,3653.09 5901.91,3631 C5571.04,3074.78 5767.91,2828.19 5767.91,2181 C5767.91,1956.5 5767.91,1956.5 5767.91,1956.5 C5767.91,1652.14 4748.5111,1444.5088 4341.4911,1373.6688 " fill="none" id="ParameterType-to-FamixJSONExporter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4335.58,1372.64,4343.7608,1378.124,4340.5059,1373.4973,4345.1326,1370.2425,4335.58,1372.64" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4343.3457" y="1371.9597">1</text></g><!--link BehavioralEntity to Invocation--><g id="link_BehavioralEntity_Invocation"><path codeLine="702" d="M4006.03,6132.87 C3687.69,6211.67 3100.7229,6359.3532 2786.8929,6439.6232 " fill="none" id="BehavioralEntity-to-Invocation" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="2781.08,6441.11,2790.7905,6442.7551,2785.9241,6439.871,2788.8081,6435.0046,2781.08,6441.11" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="2788.651" y="6436.3418">1</text></g><!--link Invocation to BehavioralEntity--><g id="link_Invocation_BehavioralEntity"><path codeLine="706" d="M2781.17,6445.64 C3095.11,6368.05 3682.1873,6220.3675 4000.4373,6138.9275 " fill="none" id="Invocation-to-BehavioralEntity" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4006.25,6137.44,3996.5393,6135.7961,4001.4061,6138.6796,3998.5226,6143.5463,4006.25,6137.44" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="3991.4099" y="6136.7218">1</text></g><!--link BehavioralEntity to Type--><g id="link_BehavioralEntity_Type"><path codeLine="703" d="M4137.4,5870.71 C4130.78,5850.87 4125.07,5830.78 4120.91,5811 C4108.46,5751.85 4112.13,5734.8 4120.91,5675 C4124.95,5647.45 4134.86,5642.55 4138.91,5615 C4151.1,5531.89 4141.81,5509.95 4138.91,5426 C4123.12,4969.18 4231.19,4826.93 4067.91,4400 C4060.1,4379.57 4052.9582,4364.6161 4041.2182,4345.3161 " fill="none" id="BehavioralEntity-to-Type" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4038.1,4340.19,4039.3598,4349.9579,4040.6985,4344.4618,4046.1947,4345.8004,4038.1,4340.19" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4038.6078" y="4361.9178">1</text></g><!--link Type to BehavioralEntity--><g id="link_Type_BehavioralEntity"><path codeLine="724" d="M4003.27,4340.19 C4014.84,4359.49 4025.1,4379.57 4032.91,4400 C4196.19,4826.93 4088.12,4969.18 4103.91,5426 C4106.81,5509.95 4116.1,5531.89 4103.91,5615 C4099.86,5642.55 4089.95,5647.45 4085.91,5675 C4077.13,5734.8 4073.46,5751.85 4085.91,5811 C4090.07,5830.78 4093.8475,5845.1897 4100.5975,5865.0297 " fill="none" id="Type-to-BehavioralEntity" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4102.53,5870.71,4103.418,5860.9013,4100.9195,5865.9765,4095.8443,5863.478,4102.53,5870.71" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4091.1499" y="5860.4062">1</text></g><!--link BehavioralEntity to ParameterType--><g id="link_BehavioralEntity_ParameterType"><path codeLine="704" d="M4435.63,6037.54 C4657.05,5990.3 4981.19,5907.08 5062.91,5811 C5174.98,5679.24 5072.59,5592.38 5119.91,5426 C5309.63,4758.86 5244.24,4480.2 5737.91,3993 C5760.79,3970.41 5781.8516,3953.7052 5809.6816,3936.1952 " fill="none" id="BehavioralEntity-to-ParameterType" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="5814.76,3933,5805.0122,3934.4072,5810.528,3935.6627,5809.2725,3941.1785,5814.76,3933" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="5785.8438" y="3954.3758">1</text></g><!--link BehavioralEntity to FamixJSONExporter--><g id="link_BehavioralEntity_FamixJSONExporter"><path codeLine="705" d="M4173.06,5870.81 C4169.74,5850.68 4166.92,5830.5 4164.91,5811 C4158.69,5750.88 4158.49,5735.1 4164.91,5675 C4194.41,5398.75 4257.73,5339.04 4296.91,5064 C4375.51,4512.2 4384.91,4370.37 4384.91,3813 C4384.91,1956.5 4384.91,1956.5 4384.91,1956.5 C4384.91,1749.11 4276.9121,1528.3291 4215.1621,1418.5791 " fill="none" id="BehavioralEntity-to-FamixJSONExporter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4212.22,1413.35,4213.1471,1423.1551,4214.6718,1417.7076,4220.1193,1419.2323,4212.22,1413.35" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4209.016" y="1434.7344">1</text></g><!--link Invocation to ContainerEntity--><g id="link_Invocation_ContainerEntity"><path codeLine="708" d="M2578.22,6348.85 C2573.56,6133.43 2552.73,5718.76 2535.91,5366 C2531.23,5267.93 2526.6114,5167.2914 2521.3914,5069.9914 " fill="none" id="Invocation-to-ContainerEntity" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="2521.07,5064,2517.5579,5073.2014,2521.3379,5068.9928,2525.5464,5072.7728,2521.07,5064" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="2514.7417" y="5085.4641">1</text></g><!--link ContainerEntity to Invocation--><g id="link_ContainerEntity_Invocation"><path codeLine="716" d="M2487.56,5064 C2491.29,5161.3 2496.23,5267.93 2500.91,5366 C2517.73,5718.76 2538.0935,6127.4482 2554.8935,6342.8682 " fill="none" id="ContainerEntity-to-Invocation" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="2555.36,6348.85,2558.6481,6339.5662,2554.9712,6343.8651,2550.6723,6340.1882,2555.36,6348.85" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="2547.223" y="6338.3406">1</text></g><!--link Invocation to FamixJSONExporter--><g id="link_Invocation_FamixJSONExporter"><path codeLine="709" d="M2635.03,6348.58 C2738.35,6118.04 2969.29,5672.24 3301.91,5426 C3374.1,5372.55 3441.65,5438.33 3494.91,5366 C3558.68,5279.39 3534.35,5224.06 3494.91,5124 C3481.53,5090.06 3453.24,5097.54 3438.91,5064 C3318.98,4783.3 3197.25,3921.02 3397.91,3691 C3527.07,3542.94 3685.05,3756.89 3835.91,3631 C4028.4,3470.36 3958.91,2760.22 3958.91,2509.5 C3958.91,1956.5 3958.91,1956.5 3958.91,1956.5 C3958.91,1749.11 4066.8979,1528.3291 4128.6479,1418.5791 " fill="none" id="Invocation-to-FamixJSONExporter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4131.59,1413.35,4123.6907,1419.2323,4129.1382,1417.7076,4130.6629,1423.1551,4131.59,1413.35" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4120.0711" y="1434.7344">1</text></g><!--link Reference to ContainerEntity--><g id="link_Reference_ContainerEntity"><path codeLine="710" d="M3137.46,5150.32 C3022.23,5072.89 2857.9143,4965.0089 2721.1143,4876.8989 " fill="none" id="Reference-to-ContainerEntity" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="2716.07,4873.65,2721.4705,4881.8862,2720.2736,4876.3574,2725.8023,4875.1605,2716.07,4873.65" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="2723.6385" y="4875.5309">1</text></g><!--link ContainerEntity to Reference--><g id="link_ContainerEntity_Reference"><path codeLine="715" d="M2716.15,4889.44 C2844.93,4974.76 2997.5026,5074.2915 3111.6526,5147.1615 " fill="none" id="ContainerEntity-to-Reference" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="3116.71,5150.39,3111.2763,5142.1757,3112.4955,5147.6996,3106.9716,5148.9189,3116.71,5150.39" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="3097.223" y="5139.7274">1</text></g><!--link Reference to Type--><g id="link_Reference_Type"><path codeLine="711" d="M3326.98,5150.36 C3412.13,4992.99 3577.66,4666.51 3734.91,4400 C3746.49,4380.37 3755.7896,4365.1577 3768.3296,4345.0977 " fill="none" id="Reference-to-Type" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="3771.51,4340.01,3763.3475,4345.5213,3768.8596,4344.2498,3770.1311,4349.7619,3771.51,4340.01" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="3759.938" y="4361.7296">1</text></g><!--link Type to Reference--><g id="link_Type_Reference"><path codeLine="725" d="M3736.73,4340.01 C3723.97,4360.07 3711.49,4380.37 3699.91,4400 C3542.66,4666.51 3379.6145,4987.5286 3308.0245,5144.8986 " fill="none" id="Type-to-Reference" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="3305.54,5150.36,3312.9077,5143.8242,3307.6104,5145.8088,3305.6258,5140.5115,3305.54,5150.36" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="3301.1004" y="5139.695">1</text></g><!--link Reference to FamixJSONExporter--><g id="link_Reference_FamixJSONExporter"><path codeLine="712" d="M3258.48,5150.41 C3223.76,4848.19 3133.31,3905.49 3326.91,3691 C3455.9,3548.09 3609.54,3756.07 3755.91,3631 C4001.89,3420.81 3887.91,2504.55 3887.91,2181 C3887.91,1956.5 3887.91,1956.5 3887.91,1956.5 C3887.91,1741.7 4030.5671,1525.4899 4113.1571,1417.8699 " fill="none" id="Reference-to-FamixJSONExporter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4116.81,1413.11,4108.1575,1417.8146,4113.766,1417.0766,4114.504,1422.6851,4116.81,1413.11" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4103.7669" y="1434.4697">1</text></g><!--link Variable to ContainerEntity--><g id="link_Variable_ContainerEntity"><path codeLine="713" d="M2161.71,5674.6 C2164.15,5558.31 2164.65,5314.16 2234.91,5124 C2242.64,5103.06 2249.1334,5087.5647 2259.2534,5066.9747 " fill="none" id="Variable-to-ContainerEntity" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="2261.9,5061.59,2254.3403,5067.9027,2259.6945,5066.0773,2261.5199,5071.4315,2261.9,5061.59" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="2246.616" y="5070.6427">1</text></g><!--link ContainerEntity to Variable--><g id="link_ContainerEntity_Variable"><path codeLine="719" d="M2261.83,4998.16 C2237.41,5038.57 2215.74,5081.14 2199.91,5124 C2129.65,5314.16 2128.5636,5552.3387 2139.9836,5668.6287 " fill="none" id="ContainerEntity-to-Variable" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="2140.57,5674.6,2143.6713,5665.2522,2140.0813,5669.6239,2135.7096,5666.034,2140.57,5674.6" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="2131.7303" y="5664.2321">1</text></g><!--link Variable to FamixJSONExporter--><g id="link_Variable_FamixJSONExporter"><path codeLine="714" d="M2146.74,5674.87 C2144.75,5655.57 2142.9,5634.48 2141.91,5615 C2137.62,5531.11 2140.1,5509.98 2141.91,5426 C2146.83,5196.93 2089.82,4569.57 2243.91,4400 C2326.87,4308.7 2419.13,4417.75 2514.91,4340 C2646.33,4233.31 2580.6,4135.53 2671.91,3993 C2767.76,3843.38 2783.53,3785.66 2933.91,3691 C3019.32,3637.24 3075.66,3695.94 3152.91,3631 C3230.37,3565.88 3172.37,3490.03 3249.91,3425 C3327.89,3359.6 3399.31,3437.34 3470.91,3365 C3564.81,3270.12 3674.91,2314.49 3674.91,2181 C3674.91,1956.5 3674.91,1956.5 3674.91,1956.5 C3674.91,1712.71 3911.2329,1515.6256 4057.5629,1416.4756 " fill="none" id="Variable-to-FamixJSONExporter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4062.53,1413.11,4052.8355,1414.847,4058.3907,1415.9147,4057.323,1421.4699,4062.53,1413.11" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4043.8892" y="1434.4697">1</text></g><!--link ContainerEntity to Access--><g id="link_ContainerEntity_Access"><path codeLine="717" d="M2691.85,5064.2 C2705.71,5085.08 2715.8322,5100.2543 2728.5622,5119.0243 " fill="none" id="ContainerEntity-to-Access" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="2731.93,5123.99,2730.1888,5114.2963,2729.1235,5119.8519,2723.5679,5118.7867,2731.93,5123.99" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="2719.0055" y="5113.2412">1</text></g><!--link Access to ContainerEntity--><g id="link_Access_ContainerEntity"><path codeLine="730" d="M2754.43,5123.75 C2742.58,5104.62 2732.8877,5089.1342 2719.3477,5067.8242 " fill="none" id="Access-to-ContainerEntity" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="2716.13,5062.76,2717.5804,5072.5015,2718.8114,5066.9802,2724.3327,5068.2112,2716.13,5062.76" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="2723.7005" y="5070.8461">1</text></g><!--link ContainerEntity to FamixJSONExporter--><g id="link_ContainerEntity_FamixJSONExporter"><path codeLine="720" d="M2645.98,4399.89 C2762.41,4179.68 2937.39,3894.59 3149.91,3691 C3188.44,3654.08 3209.28,3660.27 3253.91,3631 C3419.96,3522.09 3508.62,3533.99 3612.91,3365 C3891,2914.37 3745.91,2710.53 3745.91,2181 C3745.91,1956.5 3745.91,1956.5 3745.91,1956.5 C3745.91,1864.74 3748.14,1836.19 3790.91,1755 C3864.63,1615.05 3994.3465,1491.3819 4082.1965,1417.1719 " fill="none" id="ContainerEntity-to-FamixJSONExporter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4086.78,1413.3,4077.3235,1416.0521,4082.9604,1416.5266,4082.486,1422.1635,4086.78,1413.3" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4070.64" y="1434.6793">1</text></g><!--link Type to StructuralEntity--><g id="link_Type_StructuralEntity"><path codeLine="723" d="M3815.67,4340.23 C3811.75,4360.35 3808.11,4380.6 3804.91,4400 C3734.42,4827.08 3839.34,4963.18 3680.91,5366 C3672.81,5386.59 3664.5852,5401.9598 3652.3852,5420.8498 " fill="none" id="Type-to-StructuralEntity" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="3649.13,5425.89,3657.3729,5420.4998,3651.8427,5421.6898,3650.6526,5416.1596,3649.13,5425.89" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="3646.7296" y="5415.2274">1</text></g><!--link StructuralEntity to Type--><g id="link_StructuralEntity_Type"><path codeLine="728" d="M3683.49,5425.89 C3696.33,5407 3707.81,5386.59 3715.91,5366 C3874.34,4963.18 3769.42,4827.08 3839.91,4400 C3843.11,4380.6 3845.6677,4366.2516 3849.3577,4346.1316 " fill="none" id="StructuralEntity-to-Type" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="3850.44,4340.23,3844.8821,4348.3608,3849.538,4345.148,3852.7509,4349.8039,3850.44,4340.23" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="3842.4445" y="4361.9596">1</text></g><!--link Type to FamixJSONExporter--><g id="link_Type_FamixJSONExporter"><path codeLine="726" d="M4002.25,3992.78 C4083.54,3870.28 4171.91,3698.2 4171.91,3529 C4171.91,1956.5 4171.91,1956.5 4171.91,1956.5 C4171.91,1759.09 4171.91,1531.78 4171.91,1419.3 " fill="none" id="Type-to-FamixJSONExporter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4171.91,1413.3,4167.91,1422.3,4171.91,1418.3,4175.91,1422.3,4171.91,1413.3" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4164.5491" y="1434.6793">1</text></g><!--link StructuralEntity to Access--><g id="link_StructuralEntity_Access"><path codeLine="727" d="M3380.88,5449.18 C3354.07,5441.17 3326.91,5433.27 3300.91,5426 C3196.27,5396.73 3165.25,5405.19 3063.91,5366 C3052.04,5361.41 3045.467,5358.7899 3033.417,5353.3999 " fill="none" id="StructuralEntity-to-Access" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="3027.94,5350.95,3034.5223,5358.2762,3032.5042,5352.9916,3037.7888,5350.9735,3027.94,5350.95" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="3036.1638" y="5352.284">1</text></g><!--link Access to StructuralEntity--><g id="link_Access_StructuralEntity"><path codeLine="731" d="M3027.98,5365.64 C3028.29,5365.76 3028.6,5365.88 3028.91,5366 C3130.25,5405.19 3161.27,5396.73 3265.91,5426 C3302.98,5436.37 3336.6535,5446.2745 3374.7535,5457.7145 " fill="none" id="Access-to-StructuralEntity" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="3380.5,5459.44,3373.0305,5453.0208,3375.7112,5458.0021,3370.7299,5460.6828,3380.5,5459.44" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="3365.9204" y="5454.4618">1</text></g><!--link StructuralEntity to FamixJSONExporter--><g id="link_StructuralEntity_FamixJSONExporter"><path codeLine="729" d="M3615.68,5425.63 C3620.35,5406.09 3624.47,5385.51 3626.91,5366 C3640.25,5259.28 3633.46,5231.36 3626.91,5124 C3606.62,4791.42 3457.53,4134.12 3530.91,3993 C3660.15,3744.45 3909.29,3875.01 4046.91,3631 C4220.44,3323.3 4100.91,3191.26 4100.91,2838 C4100.91,1956.5 4100.91,1956.5 4100.91,1956.5 C4100.91,1757.76 4137.4112,1530.9622 4157.8912,1418.9122 " fill="none" id="StructuralEntity-to-FamixJSONExporter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4158.97,1413.01,4153.417,1421.1441,4158.071,1417.9285,4161.2866,1422.5825,4158.97,1413.01" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4150.2746" y="1434.3594">1</text></g><!--link Access to FamixJSONExporter--><g id="link_Access_FamixJSONExporter"><path codeLine="732" d="M2836.84,5123.72 C2882.56,4796.09 3024.05,3898.49 3226.91,3691 C3294.76,3621.59 3352.8,3679.45 3436.91,3631 C3584.53,3545.96 3631.39,3514.59 3712.91,3365 C3965.68,2901.16 3816.91,2709.25 3816.91,2181 C3816.91,1956.5 3816.91,1956.5 3816.91,1956.5 C3816.91,1733.05 3992.6181,1522.6132 4096.2781,1417.4432 " fill="none" id="Access-to-FamixJSONExporter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4100.49,1413.17,4091.3234,1416.7719,4096.9801,1416.731,4097.021,1422.3877,4100.49,1413.17" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4073.7465" y="1434.417">1</text></g><!--link Concretisation to ParametricClass--><g id="link_Concretisation_ParametricClass"><path codeLine="733" d="M6298.1,2603.02 C6269.95,2635.86 6242.62,2674.89 6226.91,2716 C6134.94,2956.59 6155.1932,3261.0154 6174.7332,3418.9354 " fill="none" id="Concretisation-to-ParametricClass" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="6175.47,3424.89,6178.3346,3415.4669,6174.856,3419.9278,6170.3951,3416.4493,6175.47,3424.89" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="6167.0791" y="3414.2206">1</text></g><!--link Concretisation to ParametricInterface--><g id="link_Concretisation_ParametricInterface"><path codeLine="734" d="M6658.15,2603.03 C6712.76,2632.33 6765.82,2669.53 6805.91,2716 C6879.9,2801.78 6838.31,2855.2 6885.91,2958 C6988.07,3178.65 7094.42,3194.19 7170.91,3425 C7496.04,4406.14 7370.91,4708.39 7370.91,5742 C7370.91,5742 7370.91,5742 7370.91,6905 C7370.91,7171.58 7339.1353,7478.4316 7320.4453,7636.3216 " fill="none" id="Concretisation-to-ParametricInterface" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="7319.74,7642.28,7324.7702,7633.8126,7320.3278,7637.3147,7316.8257,7632.8722,7319.74,7642.28" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="7313.4252" y="7631.6025">1</text></g><!--link Concretisation to ParametricMethod--><g id="link_Concretisation_ParametricMethod"><path codeLine="735" d="M6619.61,2603.08 C6737.8,2653.11 6860.82,2706.4 6871.91,2716 C7333.51,3116.02 7284.54,3389.68 7379.91,3993 C7449.04,4430.34 7876.55,7628.71 7596.91,7972 C7573.95,8000.18 7413.8996,8032.4908 7260.1696,8057.9208 " fill="none" id="Concretisation-to-ParametricMethod" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="7254.25,8058.9,7263.7821,8061.3776,7259.183,8058.084,7262.4765,8053.4848,7254.25,8058.9" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="7261.577" y="8055.0949">1</text></g><!--link Concretisation to ParametricFunction--><g id="link_Concretisation_ParametricFunction"><path codeLine="736" d="M6430.29,2603.06 C6449.76,2656.01 6471.5691,2715.3787 6489.1691,2763.2387 " fill="none" id="Concretisation-to-ParametricFunction" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="6491.24,2768.87,6491.8879,2759.0425,6489.5143,2764.1772,6484.3795,2761.8036,6491.24,2768.87" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="6481.1589" y="2758.0551">1</text></g><!--link Concretisation to FamixJSONExporter--><g id="link_Concretisation_FamixJSONExporter"><path codeLine="737" d="M6356.45,2413.88 C6278.13,2232.27 6100.62,1842.3 5984.91,1755 C5722.66,1557.13 4736.5129,1416.02 4341.5429,1366.26 " fill="none" id="Concretisation-to-FamixJSONExporter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4335.59,1365.51,4344.0194,1370.6036,4340.5508,1366.135,4345.0194,1362.6663,4335.59,1365.51" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4343.1653" y="1363.5789">1</text></g><!--link Enum to EnumValue--><g id="link_Enum_EnumValue"><path codeLine="738" d="M4743.41,4800.38 C4752.54,4983.94 4799.0076,5485.4553 4824.0676,5668.8353 " fill="none" id="Enum-to-EnumValue" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4824.88,5674.78,4827.6246,5665.3213,4824.203,5669.826,4819.6983,5666.4045,4824.88,5674.78" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4816.072" y="5663.9552">1</text></g><!--link EnumValue to Enum--><g id="link_EnumValue_Enum"><path codeLine="740" d="M4838.81,5674.78 C4830.17,5491.4 4783.7269,4989.8828 4758.1869,4806.3228 " fill="none" id="EnumValue-to-Enum" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4757.36,4800.38,4754.6385,4809.8454,4758.049,4805.3323,4762.5621,4808.7429,4757.36,4800.38" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4751.3861" y="4821.7675">1</text></g><!--link Enum to FamixJSONExporter--><g id="link_Enum_FamixJSONExporter"><path codeLine="739" d="M4725.78,4663.92 C4686.68,4513.09 4597.91,4135.15 4597.91,3813 C4597.91,1956.5 4597.91,1956.5 4597.91,1956.5 C4597.91,1864.74 4595.67,1836.19 4552.91,1755 C4479.18,1615.05 4349.4635,1491.3819 4261.6135,1417.1719 " fill="none" id="Enum-to-FamixJSONExporter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4257.03,1413.3,4261.324,1422.1635,4260.8496,1416.5266,4266.4865,1416.0521,4257.03,1413.3" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4258.4471" y="1434.6793">1</text></g><!--link EnumValue to FamixJSONExporter--><g id="link_EnumValue_FamixJSONExporter"><path codeLine="741" d="M4794.07,5674.87 C4720.04,5557.07 4573.15,5302.89 4519.91,5064 C4398.96,4521.31 4526.91,4369.01 4526.91,3813 C4526.91,1956.5 4526.91,1956.5 4526.91,1956.5 C4526.91,1733.05 4351.2021,1522.613 4247.5321,1417.443 " fill="none" id="EnumValue-to-FamixJSONExporter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4243.32,1413.17,4246.7894,1422.3875,4246.83,1416.7308,4252.4868,1416.7715,4243.32,1413.17" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4243.3232" y="1434.5359">1</text></g><!--link IndexedFileAnchor to FamixJSONExporter--><g id="link_IndexedFileAnchor_FamixJSONExporter"><path codeLine="742" d="M2470.72,3070.32 C2500.97,3050 2533.79,3031.24 2566.91,3018 C2657.31,2981.86 2933.84,3028.58 3000.91,2958 C3185.73,2763.47 2943.48,1969.34 3104.91,1755 C3321.37,1467.57 3760.743,1382.748 4001.983,1357.358 " fill="none" id="IndexedFileAnchor-to-FamixJSONExporter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4007.95,1356.73,3998.5808,1353.694,4002.9775,1357.2533,3999.4181,1361.6501,4007.95,1356.73" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="3993.362" y="1354.401">1</text></g><!--link ParameterConcretisation to ParameterType--><g id="link_ParameterConcretisation_ParameterType"><path codeLine="743" d="M5525.59,2301.23 C5577.45,2430.68 5648.91,2643.92 5648.91,2836 C5648.91,2836 5648.91,2836 5648.91,3192.5 C5648.91,3394.44 5636.6,3477.58 5767.91,3631 C5787.21,3653.56 5805.0149,3669.9405 5829.6349,3687.3905 " fill="none" id="ParameterConcretisation-to-ParameterType" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="5834.53,3690.86,5829.5003,3682.3923,5830.4507,3687.9687,5824.8743,3688.9191,5834.53,3690.86" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="5805.7564" y="3680.1029">1</text></g><!--link ParameterConcretisation to PrimitiveType--><g id="link_ParameterConcretisation_PrimitiveType"><path codeLine="744" d="M5410.37,2301.1 C5330.96,2460.19 5197.17,2751.78 5137.91,3018 C5043.59,3441.68 5094.36,3559.13 5081.91,3993 C5077.48,4147.16 5078.93,4185.81 5081.91,4340 C5091.24,4822.94 5114.57,4943.06 5123.91,5426 C5140.14,6265.81 4980.91,6470.54 4980.91,7310.5 C4980.91,7310.5 4980.91,7310.5 4980.91,7746.5 C4980.91,7859.21 5008.8,7901.71 5096.91,7972 C5354.4,8177.43 6334.6376,8273.6712 6768.7476,8306.9612 " fill="none" id="ParameterConcretisation-to-PrimitiveType" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="6774.73,8307.42,6766.0622,8302.7436,6769.7446,8307.0377,6765.4505,8310.7201,6774.73,8307.42" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="6760.1587" y="8320.6631">1</text></g><!--link ParameterConcretisation to Concretisation--><g id="link_ParameterConcretisation_Concretisation"><path codeLine="745" d="M5680.05,2254.27 C5813.45,2301.46 5982.4436,2361.2388 6125.8336,2411.9688 " fill="none" id="ParameterConcretisation-to-Concretisation" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="6131.49,2413.97,6124.3395,2407.1973,6126.7763,2412.3023,6121.6712,2414.7392,6131.49,2413.97" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="6102.3029" y="2402.9941">1</text></g><!--link ParameterConcretisation to FamixJSONExporter--><g id="link_ParameterConcretisation_FamixJSONExporter"><path codeLine="746" d="M5424.47,2058.69 C5381.19,1964.69 5309.52,1836.69 5211.91,1755 C4949.67,1535.53 4561.4225,1425.6772 4341.3225,1377.7272 " fill="none" id="ParameterConcretisation-to-FamixJSONExporter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4335.46,1376.45,4343.4023,1382.2741,4340.3454,1377.5143,4345.1052,1374.4574,4335.46,1376.45" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4343.5515" y="1391.8634">1</text></g><!--link EntityDictionary to FamixRepository--><g id="link_EntityDictionary_FamixRepository"><path codeLine="747" d="M5254.26,515.47 C4080.5,581.06 2119.28,727.1 1448.91,995 C1439.73,998.67 1436.0369,1000.0976 1426.9269,1004.2176 " fill="none" id="EntityDictionary-to-FamixRepository" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="1421.46,1006.69,1431.3086,1006.626,1426.0158,1004.6297,1428.0121,999.3368,1421.46,1006.69" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="1428.9374" y="998.2398">1</text></g><!--link EntityDictionary to Alias--><g id="link_EntityDictionary_Alias"><path codeLine="748" d="M5254.13,560.64 C4264.78,655.64 2643.61,809.68 1244.91,935 C1166.71,942.01 594.01,937.18 540.91,995 C435.69,1109.57 528.14,1539.97 540.91,1695 C596.2,2366.47 788.91,2516.76 788.91,3190.5 C788.91,3190.5 788.91,3190.5 788.91,4167.5 C788.91,4843.03 1033.6,6699.87 1574.91,7104 C1736.23,7224.44 1835.13,7094.02 2023.91,7164 C2059.2,7177.08 2089.5558,7193.2566 2121.5058,7213.6966 " fill="none" id="EntityDictionary-to-Alias" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="2126.56,7216.93,2121.1343,7208.7104,2122.3482,7214.2355,2116.8231,7215.4493,2126.56,7216.93" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="2109.5313" y="7206.2706">1</text></g><!--link EntityDictionary to Class--><g id="link_EntityDictionary_Class"><path codeLine="749" d="M6066.41,935.37 C5978.2,1307.46 5843.68,1841.79 5697.91,2301 C5617.62,2553.92 5507.9369,2834.3807 5435.7469,3012.2007 " fill="none" id="EntityDictionary-to-Class" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="5433.49,3017.76,5440.5816,3010.9256,5435.3708,3013.1272,5433.1692,3007.9164,5433.49,3017.76" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="5429.5749" y="3007.0198">1</text></g><!--link EntityDictionary to ParametricClass--><g id="link_EntityDictionary_ParametricClass"><path codeLine="750" d="M6752.59,935.43 C6766.96,954.86 6780.46,974.73 6792.91,995 C6986.29,1309.92 6982.91,1434.94 6982.91,1804.5 C6982.91,1804.5 6982.91,1804.5 6982.91,2509.5 C6982.91,2918.32 6584.7504,3258.208 6353.7004,3421.438 " fill="none" id="EntityDictionary-to-ParametricClass" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="6348.8,3424.9,6358.4587,3422.9739,6352.8837,3422.015,6353.8427,3416.44,6348.8,3424.9" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="6353.138" y="3414.2313">1</text></g><!--link EntityDictionary to Interface--><g id="link_EntityDictionary_Interface"><path codeLine="751" d="M7089.58,929.65 C7095.7,931.47 7101.81,933.25 7107.91,935 C7238.43,972.37 7609.28,910.95 7715.91,995 C8015,1230.76 7996.91,1423.66 7996.91,1804.5 C7996.91,1804.5 7996.91,1804.5 7996.91,3813 C7996.91,4206 6946.14,6796.9 6700.91,7104 C6674.09,7137.58 6645.153,7164.2039 6610.013,7190.5139 " fill="none" id="EntityDictionary-to-Interface" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="6605.21,7194.11,6614.8118,7191.9179,6609.2125,7191.1133,6610.0171,7185.5139,6605.21,7194.11" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="6612.7856" y="7187.1137">1</text></g><!--link EntityDictionary to ParametricInterface--><g id="link_EntityDictionary_ParametricInterface"><path codeLine="752" d="M7089.48,930.02 C7095.63,931.72 7101.77,933.38 7107.91,935 C7221.65,965.02 8081.78,911.77 8164.91,995 C8292.23,1122.47 8209.91,1624.33 8209.91,1804.5 C8209.91,1804.5 8209.91,1804.5 8209.91,4167.5 C8209.91,5583.78 7538.5822,7216.6719 7355.0222,7636.7919 " fill="none" id="EntityDictionary-to-ParametricInterface" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="7352.62,7642.29,7359.8888,7635.6443,7354.6219,7637.7082,7352.558,7632.4413,7352.62,7642.29" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="7348.7198" y="7631.6133">1</text></g><!--link EntityDictionary to Module--><g id="link_EntityDictionary_Module"><path codeLine="753" d="M5254.29,565.9 C4265.29,665.3 2644.61,823.01 1244.91,935 C1144.12,943.06 408.03,923.13 336.91,995 C210.18,1123.06 291.91,1624.33 291.91,1804.5 C291.91,1804.5 291.91,1804.5 291.91,2838 C291.91,3435.55 504.91,3567.95 504.91,4165.5 C504.91,4165.5 504.91,4165.5 504.91,6905 C504.91,7152.52 467,7230.4 561.91,7459 C578.28,7498.44 598.3809,7531.9044 624.4309,7566.9544 " fill="none" id="EntityDictionary-to-Module" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="628.01,7571.77,625.8518,7562.1605,625.0274,7567.757,619.431,7566.9326,628.01,7571.77" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="613.2887" y="7561.0303">1</text></g><!--link EntityDictionary to ScriptEntity--><g id="link_EntityDictionary_ScriptEntity"><path codeLine="754" d="M5254.4,567.32 C4265.5,667.94 2644.89,826.65 1244.91,935 C1135.48,943.47 335.98,916.85 258.91,995 C6,1251.44 220.91,1444.33 220.91,1804.5 C220.91,1804.5 220.91,1804.5 220.91,7746.5 C220.91,7939.03 248.22,7989.72 320.91,8168 C328.99,8187.83 336.1937,8203.0767 346.4437,8222.4467 " fill="none" id="EntityDictionary-to-ScriptEntity" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="349.25,8227.75,348.576,8217.9242,346.9114,8223.3306,341.505,8221.666,349.25,8227.75" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="337.5357" y="8217.0762">1</text></g><!--link EntityDictionary to Type--><g id="link_EntityDictionary_Type"><path codeLine="755" d="M5254.31,518.18 C4030.67,589.1 1990.59,743.64 1756.91,995 C1559.16,1207.7 1682.92,2011.75 1708.91,2301 C1735.46,2596.56 1716.22,2683.07 1827.91,2958 C1909.97,3160.03 1915.9,3251.19 2101.91,3365 C2292.07,3481.35 2384.11,3369.06 2599.91,3425 C2902.86,3503.53 2980.54,3535.09 3251.91,3691 C3401.89,3777.17 3551.5266,3891.9538 3668.2766,3989.0338 " fill="none" id="EntityDictionary-to-Type" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="3672.89,3992.87,3668.5273,3984.0401,3669.0455,3989.6732,3663.4124,3990.1914,3672.89,3992.87" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="3656.8492" y="3982.1348">1</text></g><!--link EntityDictionary to ParameterType--><g id="link_EntityDictionary_ParameterType"><path codeLine="756" d="M6870.89,935.35 C6885.89,954.66 6899.96,974.54 6912.91,995 C7108.23,1303.57 7053.91,1439.31 7053.91,1804.5 C7053.91,1804.5 7053.91,1804.5 7053.91,2838 C7053.91,3257.28 6856.87,3353.11 6542.91,3631 C6518.06,3652.99 6495.1679,3669.7783 6465.9479,3687.6583 " fill="none" id="EntityDictionary-to-ParameterType" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="6460.83,3690.79,6470.5946,3689.5044,6465.0949,3688.1803,6466.419,3682.6806,6460.83,3690.79" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="6472.1788" y="3680.0284">1</text></g><!--link EntityDictionary to PrimitiveType--><g id="link_EntityDictionary_PrimitiveType"><path codeLine="757" d="M5254.17,564.46 C4265.07,662.65 2644.31,819.34 1244.91,935 C1151.54,942.72 469.46,928.08 403.91,995 C277.86,1123.67 362.91,1624.38 362.91,1804.5 C362.91,1804.5 362.91,1804.5 362.91,6905 C362.91,7189.85 366.17,7981.99 581.91,8168 C701.91,8271.46 5682.8102,8312.3775 6768.6102,8320.0675 " fill="none" id="EntityDictionary-to-PrimitiveType" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="6774.61,8320.11,6765.6386,8316.0464,6769.6101,8320.0746,6765.5819,8324.0462,6774.61,8320.11" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="6760.0344" y="8333.8091">1</text></g><!--link EntityDictionary to Method--><g id="link_EntityDictionary_Method"><path codeLine="758" d="M7089.53,929.83 C7095.66,931.59 7101.79,933.32 7107.91,935 C7274.25,980.74 7751.21,882.4 7881.91,995 C8161.58,1235.95 8067.91,1435.35 8067.91,1804.5 C8067.91,1804.5 8067.91,1804.5 8067.91,3813 C8067.91,4452.16 7828.66,6064.09 7559.91,6644 C7390.59,7009.36 7074.2875,7350.1439 6862.6675,7553.3839 " fill="none" id="EntityDictionary-to-Method" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="6858.34,7557.54,6867.6019,7554.1908,6861.9462,7554.0766,6862.0605,7548.4209,6858.34,7557.54" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="6865.9203" y="7547.9988">1</text></g><!--link EntityDictionary to ParametricMethod--><g id="link_EntityDictionary_ParametricMethod"><path codeLine="759" d="M7089.47,930.04 C7095.62,931.74 7101.77,933.39 7107.91,935 C7228.24,966.56 8137.32,907.66 8225.91,995 C8482.7,1248.17 8280.91,1443.89 8280.91,1804.5 C8280.91,1804.5 8280.91,1804.5 8280.91,4167.5 C8280.91,5019.4 8138.91,5227.1 8138.91,6079 C8138.91,6079 8138.91,6079 8138.91,6497.5 C8138.91,7179.76 8227.55,7525.25 7711.91,7972 C7643.91,8030.91 7438.2618,8062.7789 7260.2618,8080.0989 " fill="none" id="EntityDictionary-to-ParametricMethod" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="7254.29,8080.68,7263.6351,8083.7896,7259.2665,8080.1958,7262.8603,8075.8272,7254.29,8080.68" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="7261.6181" y="8077.4535">1</text></g><!--link EntityDictionary to Function--><g id="link_EntityDictionary_Function"><path codeLine="760" d="M5254.3,568.76 C4846.24,641.92 4372.83,770.21 3990.91,995 C3595.93,1227.48 3475.94,1334.38 3293.91,1755 C3080.96,2247.06 3399.92,2458.95 3203.91,2958 C3119.28,3173.46 3040.22,3198.98 2878.91,3365 C2800.78,3445.4 2563.73,3603.29 2493.91,3691 C2273.04,3968.44 2237.88,4062.86 2127.91,4400 C2029.72,4701.02 1727.29,5567.69 1929.91,5811 C2024.18,5924.21 2112.99,5835.24 2255.91,5871 C2972.53,6050.29 3805.0514,6345.2592 4101.0314,6452.9092 " fill="none" id="EntityDictionary-to-Function" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4106.67,6454.96,4099.5793,6448.1247,4101.9711,6453.251,4096.8448,6455.6429,4106.67,6454.96" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4080.8318" y="6444.2611">1</text></g><!--link EntityDictionary to ParametricFunction--><g id="link_EntityDictionary_ParametricFunction"><path codeLine="761" d="M6578.98,935.19 C6750.83,1177.26 6911.91,1488.45 6911.91,1804.5 C6911.91,1804.5 6911.91,1804.5 6911.91,2181 C6911.91,2407.4 6859.12,2471.51 6727.91,2656 C6697.26,2699.08 6658.7837,2734.5532 6619.3537,2765.2632 " fill="none" id="EntityDictionary-to-ParametricFunction" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="6614.62,2768.95,6624.1784,2766.5756,6618.5647,2765.8777,6619.2626,2760.264,6614.62,2768.95" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="6618.0336" y="2758.1438">1</text></g><!--link EntityDictionary to ArrowFunction--><g id="link_EntityDictionary_ArrowFunction"><path codeLine="762" d="M7089.44,928.93 C7095.61,930.99 7101.76,933.01 7107.91,935 C7260.98,984.53 7348.4,884.04 7464.91,995 C7731.59,1248.99 7641.91,1436.22 7641.91,1804.5 C7641.91,1804.5 7641.91,1804.5 7641.91,3529 C7641.91,3880.69 6189.109,6119.8452 5973.689,6449.9552 " fill="none" id="EntityDictionary-to-ArrowFunction" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="5970.41,6454.98,5978.6783,6449.6289,5973.1425,6450.7927,5971.9787,6445.2569,5970.41,6454.98" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="5967.2194" y="6444.2844">1</text></g><!--link EntityDictionary to Entity--><g id="link_EntityDictionary_Entity"><path codeLine="763" d="M5254.14,524.06 C4095.68,599.31 2227.54,756.19 2016.91,995 C1890.34,1138.49 1935.96,1682.63 2016.91,1856 C2028.06,1879.88 2043.2521,1896.4186 2063.7021,1912.3086 " fill="none" id="EntityDictionary-to-Entity" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="2068.44,1915.99,2063.7875,1907.3093,2064.4918,1912.9222,2058.8789,1913.6265,2068.44,1915.99" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="2049.52" y="1905.296">1</text></g><!--link EntityDictionary to SourcedEntity--><g id="link_EntityDictionary_SourcedEntity"><path codeLine="764" d="M5254.35,524.24 C4348.48,590.25 3038.26,728.91 2607.91,995 C2257.65,1211.57 2201.36,1362.14 2077.91,1755 C2064.45,1797.82 2049.65,1821.12 2077.91,1856 C2158.85,1955.9 2239.56,1873.49 2360.91,1916 C2494.65,1962.86 2571.49,1938.4 2645.91,2059 C2702.39,2150.53 2689.19,2202.54 2645.91,2301 C2636.57,2322.24 2627.5781,2337.5309 2612.9081,2356.1109 " fill="none" id="EntityDictionary-to-SourcedEntity" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="2609.19,2360.82,2617.9066,2356.2351,2612.2884,2356.8957,2611.6278,2351.2776,2609.19,2360.82" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="2611.7177" y="2350.309">1</text></g><!--link EntityDictionary to IndexedFileAnchor--><g id="link_EntityDictionary_IndexedFileAnchor"><path codeLine="765" d="M5254.27,524.1 C4076.24,600.16 2156.18,758.78 1930.91,995 C1675.68,1262.63 1772.87,2290.3 1827.91,2656 C1848.81,2794.88 1833.17,2848.33 1920.91,2958 C1972.85,3022.93 2042.8435,3070.3673 2114.5435,3107.2173 " fill="none" id="EntityDictionary-to-IndexedFileAnchor" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="2119.88,3109.96,2113.7037,3102.2884,2115.4329,3107.6745,2110.0469,3109.4037,2119.88,3109.96" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="2104.6562" y="3103.9701">1</text></g><!--link EntityDictionary to Property--><g id="link_EntityDictionary_Property"><path codeLine="766" d="M5254.24,515.59 C3987.91,584.82 1831.23,738.91 1577.91,995 C1467.93,1106.17 1522.16,1539.47 1505.91,1695 C1472.47,2014.88 745.94,7224.36 965.91,7459 C1111.65,7614.46 4315.7724,7714.7112 5169.7824,7738.7412 " fill="none" id="EntityDictionary-to-Property" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="5175.78,7738.91,5166.8961,7734.6584,5170.782,7738.7694,5166.6711,7742.6553,5175.78,7738.91" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="5161.2105" y="7735.8868">1</text></g><!--link EntityDictionary to Accessor--><g id="link_EntityDictionary_Accessor"><path codeLine="767" d="M7089.5,929.93 C7095.65,931.66 7101.78,933.35 7107.91,935 C7204.68,961.05 7933.79,927.54 8007.91,995 C8142.67,1117.67 8138.91,1622.27 8138.91,1804.5 C8138.91,1804.5 8138.91,1804.5 8138.91,3813 C8138.91,4449.78 8067.91,4607.22 8067.91,5244 C8067.91,5244 8067.91,5244 8067.91,6497.5 C8067.91,6668.65 7661.4,7921.9 7596.91,7972 C7517.41,8033.75 6792.58,8017.9 6692.91,8032 C6646.18,8038.61 6601.8512,8047.1169 6555.8512,8057.1869 " fill="none" id="EntityDictionary-to-Accessor" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="6549.99,8058.47,6559.6372,8060.4528,6554.8743,8057.4008,6557.9264,8052.6379,6549.99,8058.47" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="6569.5861" y="8047.7727">1</text></g><!--link EntityDictionary to Parameter--><g id="link_EntityDictionary_Parameter"><path codeLine="768" d="M7050.88,935.21 C7069.16,954.47 7086.56,974.4 7102.91,995 C7335.77,1288.47 7337.91,1429.87 7337.91,1804.5 C7337.91,1804.5 7337.91,1804.5 7337.91,2509.5 C7337.91,3185.69 7257.35,3434.11 6800.91,3933 C6544.7,4213.03 6393.97,4178.28 6085.91,4400 C6043.82,4430.29 4815.7918,5403.5826 4478.3118,5671.1226 " fill="none" id="EntityDictionary-to-Parameter" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4473.61,5674.85,4483.1476,5672.3935,4477.5281,5671.7439,4478.1778,5666.1244,4473.61,5674.85" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4475.4913" y="5664.0329">1</text></g><!--link EntityDictionary to Variable--><g id="link_EntityDictionary_Variable"><path codeLine="769" d="M5254.32,515.81 C4001.79,584.86 1883.31,738.24 1638.91,995 C1617.84,1017.13 1498.91,3159.95 1498.91,3190.5 C1498.91,3190.5 1498.91,3190.5 1498.91,3529 C1498.91,4410.1 1980.0789,5404.8379 2116.6489,5669.5379 " fill="none" id="EntityDictionary-to-Variable" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="2119.4,5674.87,2118.8281,5665.0378,2117.1074,5670.4266,2111.7186,5668.7059,2119.4,5674.87" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="2108.1333" y="5664.0551">1</text></g><!--link EntityDictionary to Enum--><g id="link_EntityDictionary_Enum"><path codeLine="770" d="M6968.5,935.15 C6983.98,954.44 6998.51,974.38 7011.91,995 C7209.86,1299.59 7124.91,1441.23 7124.91,1804.5 C7124.91,1804.5 7124.91,1804.5 7124.91,2838 C7124.91,2966.42 6857.38,3855.59 6754.91,3933 C6627.33,4029.38 6190.61,3945.61 6037.91,3993 C5542.36,4146.78 5033.5681,4509.161 4834.5681,4660.301 " fill="none" id="EntityDictionary-to-Enum" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="4829.79,4663.93,4839.3765,4661.672,4833.7718,4660.9059,4834.5379,4655.3011,4829.79,4663.93" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="4831.8003" y="4653.1216">1</text></g><!--link EntityDictionary to EnumValue--><g id="link_EntityDictionary_EnumValue"><path codeLine="771" d="M7089.64,928.37 C7095.74,930.61 7101.83,932.82 7107.91,935 C7217.89,974.5 7284.98,908.82 7363.91,995 C7609.37,1263.04 7479.91,1441.05 7479.91,1804.5 C7479.91,1804.5 7479.91,1804.5 7479.91,2838 C7479.91,3343.67 7423.86,3495.14 7170.91,3933 C7115.29,4029.27 5862.61,5298.97 5773.91,5366 C5588.43,5506.16 5529.93,5529.11 5313.91,5615 C5228.07,5649.13 5135.7656,5675.6237 5050.9956,5696.5237 " fill="none" id="EntityDictionary-to-EnumValue" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="5045.17,5697.96,5054.8659,5699.6893,5050.0246,5696.7631,5052.9508,5691.9219,5045.17,5697.96" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="5052.7442" y="5693.5545">1</text></g><!--link EntityDictionary to Decorator--><g id="link_EntityDictionary_Decorator"><path codeLine="772" d="M5254.28,562.38 C4265.06,658.85 2644,814.11 1244.91,935 C1160.4,942.3 543.37,934.52 483.91,995 C357.55,1123.52 433.91,1624.27 433.91,1804.5 C433.91,1804.5 433.91,1804.5 433.91,2181 C433.91,3071.99 717.91,3274.51 717.91,4165.5 C717.91,4165.5 717.91,4165.5 717.91,6081 C717.91,6599.33 889.36,6760.93 1277.91,7104 C1290.98,7115.54 1446.9951,7176.5786 1586.9751,7230.0586 " fill="none" id="EntityDictionary-to-Decorator" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="1592.58,7232.2,1585.6003,7225.2514,1587.9093,7230.4155,1582.7451,7232.7245,1592.58,7232.2" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="1578.0033" y="7226.5663">1</text></g><!--link EntityDictionary to NamedEntity--><g id="link_EntityDictionary_NamedEntity"><path codeLine="773" d="M5254.16,514.63 C3973.96,583.11 1778.96,736.79 1519.91,995 C1409,1105.55 1479.17,1543.67 1438.91,1695 C1393.65,1865.09 1334.12,1890.61 1282.91,2059 C1156.73,2473.9 1143.08,2586.2 1102.91,3018 C951.66,4643.66 1214.25,5082.76 1691.91,6644 C1697.89,6663.57 1702.7343,6678.0542 1710.1343,6698.0142 " fill="none" id="EntityDictionary-to-NamedEntity" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="1712.22,6703.64,1712.842,6693.8108,1710.4819,6698.9518,1705.3409,6696.5918,1712.22,6703.64" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="1701.6579" y="6692.9993">1</text></g><!--link EntityDictionary to Comment--><g id="link_EntityDictionary_Comment"><path codeLine="774" d="M5254.21,550.94 C4296.74,642.79 2912.03,806.21 2749.91,995 C2638.33,1124.93 2731.2757,2321.5721 2764.6757,2709.8021 " fill="none" id="EntityDictionary-to-Comment" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="2765.19,2715.78,2768.4038,2706.4703,2764.7614,2710.7984,2760.4333,2707.156,2765.19,2715.78" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="2757.279" y="2705.0177">1</text></g><!--link EntityDictionary to ParametricArrowFunction--><g id="link_EntityDictionary_ParametricArrowFunction"><path codeLine="775" d="M7089.65,929.41 C7095.75,931.31 7101.83,933.17 7107.91,935 C7210.43,965.83 7505.98,923.78 7585.91,995 C7862.43,1241.41 7783.91,1434.12 7783.91,1804.5 C7783.91,1804.5 7783.91,1804.5 7783.91,3529 C7783.91,4302.98 6704.41,6035.66 6225.91,6644 C6168.68,6716.76 6094.9077,6783.1832 6035.2977,6832.1132 " fill="none" id="EntityDictionary-to-ParametricArrowFunction" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="6030.66,6835.92,6040.1544,6833.3016,6034.5248,6832.7477,6035.0787,6827.118,6030.66,6835.92" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="6040.5311" y="6825.1105">1</text></g><!--link EntityDictionary to Concretisation--><g id="link_EntityDictionary_Concretisation"><path codeLine="776" d="M6260.31,935.02 C6263.38,955.26 6266.26,975.32 6268.91,995 C6340.72,1529.41 6378.5572,2169.8482 6390.9772,2407.7782 " fill="none" id="EntityDictionary-to-Concretisation" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="6391.29,2413.77,6394.8154,2404.5737,6391.0294,2408.7768,6386.8263,2404.9908,6391.29,2413.77" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="6383.6429" y="2403.0978">1</text></g><!--link EntityDictionary to ParameterConcretisation--><g id="link_EntityDictionary_ParameterConcretisation"><path codeLine="777" d="M5982.29,935.06 C5826.33,1315.92 5618.5037,1823.4475 5524.3737,2053.3175 " fill="none" id="EntityDictionary-to-ParameterConcretisation" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="5522.1,2058.87,5529.2122,2052.0571,5523.9948,2054.2429,5521.8089,2049.0254,5522.1,2058.87" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="5518.027" y="2048.1135">1</text></g><!--link FamixRepository to FamixBaseElement--><g id="link_FamixRepository_FamixBaseElement"><path codeLine="778" d="M1421.65,1496.77 C1677.46,1586.09 1979.3855,1691.5217 2155.2255,1752.9317 " fill="none" id="FamixRepository-to-FamixBaseElement" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="2160.89,1754.91,2153.7121,1748.1663,2156.1696,1753.2615,2151.0744,1755.7189,2160.89,1754.91" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="2133.4263" y="1744.2027">1</text></g><!--link FamixRepository to Class--><g id="link_FamixRepository_Class"><path codeLine="779" d="M1421.59,1673.14 C1449.45,1699.77 1476.2,1727.17 1500.91,1755 C1606.53,1873.97 1613.93,1919.22 1689.91,2059 C1760.74,2189.31 1769.79,2226.31 1831.91,2361 C1953.87,2625.44 1862.99,2791.5 2101.91,2958 C2164.82,3001.84 4441.0101,3137.1322 5148.7801,3178.2322 " fill="none" id="FamixRepository-to-Class" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="5154.77,3178.58,5146.017,3174.065,5149.7784,3178.2901,5145.5532,3182.0515,5154.77,3178.58" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="5140.2001" y="3175.3232">1</text></g><!--link FamixRepository to Interface--><g id="link_FamixRepository_Interface"><path codeLine="780" d="M889.41,1695.19 C872.29,1779.98 859.91,1870.89 859.91,1956.5 C859.91,1956.5 859.91,1956.5 859.91,4167.5 C859.91,4809.65 1784.4,6337.93 2348.91,6644 C3028.03,7012.22 5456.4499,7234.4017 6184.6999,7293.8717 " fill="none" id="FamixRepository-to-Interface" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="6190.68,7294.36,6182.0354,7289.6408,6185.6966,7293.953,6181.3843,7297.6142,6190.68,7294.36" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="6176.1069" y="7290.9664">1</text></g><!--link FamixRepository to Module--><g id="link_FamixRepository_Module"><path codeLine="781" d="M716.94,1695.31 C675.86,1776.67 646.91,1866.08 646.91,1956.5 C646.91,1956.5 646.91,1956.5 646.91,2509.5 C646.91,2962.82 575.91,3073.68 575.91,3527 C575.91,3527 575.91,3527 575.91,6905 C575.91,7152.03 544.56,7224.06 620.91,7459 C633.37,7497.37 648.9359,7530.7233 669.3059,7566.5733 " fill="none" id="FamixRepository-to-Module" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="672.27,7571.79,671.3016,7561.9889,669.7999,7567.4428,664.346,7565.941,672.27,7571.79" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="659.5543" y="7561.0512">1</text></g><!--link FamixRepository to Method--><g id="link_FamixRepository_Method"><path codeLine="782" d="M833.39,1695.18 C807.51,1779.08 788.91,1869.6 788.91,1956.5 C788.91,1956.5 788.91,1956.5 788.91,2181 C788.91,3065.26 646.91,3281.24 646.91,4165.5 C646.91,4165.5 646.91,4165.5 646.91,6905 C646.91,7189.12 720.74,7315.41 965.91,7459 C1093.17,7533.53 6133,7478.84 6274.91,7519 C6332.95,7535.42 6385.9056,7560.2697 6438.5156,7590.9197 " fill="none" id="FamixRepository-to-Method" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="6443.7,7593.94,6437.937,7585.9532,6439.3797,7591.423,6433.9099,7592.8657,6443.7,7593.94" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="6429.1276" y="7585.707">1</text></g><!--link FamixRepository to Variable--><g id="link_FamixRepository_Variable"><path codeLine="783" d="M944.48,1695.32 C936.61,1780.61 930.91,1871.71 930.91,1956.5 C930.91,1956.5 930.91,1956.5 930.91,2509.5 C930.91,3237.21 1531.81,5033.94 1969.91,5615 C1987.03,5637.71 2004.5961,5654.2357 2027.8661,5671.3457 " fill="none" id="FamixRepository-to-Variable" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="2032.7,5674.9,2027.8186,5666.3459,2028.6717,5671.9381,2023.0796,5672.7912,2032.7,5674.9" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="2011.9505" y="5664.0883">1</text></g><!--link FamixRepository to ScriptEntity--><g id="link_FamixRepository_ScriptEntity"><path codeLine="784" d="M593.3,1695.31 C540.91,1773.8 504.91,1862.08 504.91,1956.5 C504.91,1956.5 504.91,1956.5 504.91,3192.5 C504.91,4231.05 291.91,4480.95 291.91,5519.5 C291.91,5519.5 291.91,5519.5 291.91,7746.5 C291.91,7918.94 339.7337,8109.3577 373.2137,8222.2277 " fill="none" id="FamixRepository-to-ScriptEntity" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="374.92,8227.98,376.1955,8218.2141,373.4981,8223.1864,368.5258,8220.4891,374.92,8227.98" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="365.1466" y="8217.0049">1</text></g><!--link FamixRepository to Entity--><g id="link_FamixRepository_Entity"><path codeLine="785" d="M1421.55,1559.61 C1540.39,1620.71 1668.58,1688.75 1784.91,1755 C1858.31,1796.8 1872.7,1813.86 1945.91,1856 C1981.63,1876.56 2016.5915,1895.2519 2050.9215,1913.0219 " fill="none" id="FamixRepository-to-Entity" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="2056.25,1915.78,2050.096,1908.0905,2051.8096,1913.4815,2046.4185,1915.1951,2056.25,1915.78" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="2035.311" y="1905.0512">1</text></g><!--link FamixRepository to ContainerEntity--><g id="link_FamixRepository_ContainerEntity"><path codeLine="786" d="M1052.27,1695.34 C1112.13,2020.83 1201.77,2481.4 1259.91,2656 C1306.76,2796.72 1327.65,2829.61 1401.91,2958 C1512.34,3148.94 1553.14,3188.86 1685.91,3365 C1798.3,3514.11 1848.58,3534.81 1950.91,3691 C2099.49,3917.79 2236.6967,4185.1546 2336.5267,4394.4246 " fill="none" id="FamixRepository-to-ContainerEntity" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="2339.11,4399.84,2338.8452,4389.9947,2336.9572,4395.3272,2331.6247,4393.4392,2339.11,4399.84" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="2328.517" y="4389.3629">1</text></g><!--link FamixRepository to StructuralEntity--><g id="link_FamixRepository_StructuralEntity"><path codeLine="787" d="M1031.61,1695.26 C1054.25,1876.31 1083.89,2100.85 1114.91,2301 C1139.44,2459.35 1139.55,2500.42 1177.91,2656 C1211.62,2792.75 1227.21,2825.13 1273.91,2958 C1338.19,3140.91 1343.34,3192.02 1430.91,3365 C1677.52,3852.18 1882.12,3896.28 2092.91,4400 C2209.74,4679.19 2087.44,4804.94 2243.91,5064 C2350.65,5240.73 2409.29,5279.8 2596.91,5366 C2732.76,5428.42 3126.4094,5475.5868 3374.7294,5500.2568 " fill="none" id="FamixRepository-to-StructuralEntity" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="3380.7,5500.85,3372.1395,5495.9798,3375.7245,5500.3557,3371.3486,5503.9407,3380.7,5500.85" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="3366.1276" y="5497.36">1</text></g><!--link FamixRepository to Access--><g id="link_FamixRepository_Access"><path codeLine="788" d="M1084.51,1695.18 C1198.46,2102.09 1391.3,2745.86 1525.91,2958 C1546.62,2990.65 1566.98,2986.15 1588.91,3018 C1683.67,3155.69 1621.07,3241.69 1733.91,3365 C1772.56,3407.24 1802.63,3389.95 1847.91,3425 C1876.84,3447.4 2719.27,4366.46 2733.91,4400 C2793.16,4535.73 2772.39,4917.06 2790.91,5064 C2793.34,5083.33 2795.4015,5097.8339 2798.5515,5117.7239 " fill="none" id="FamixRepository-to-Access" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="2799.49,5123.65,2802.033,5114.1351,2798.7079,5118.7115,2794.1314,5115.3865,2799.49,5123.65" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="2790.9714" y="5113.2826">1</text></g><!--link FamixRepository to Type--><g id="link_FamixRepository_Type"><path codeLine="789" d="M1233.54,1695.03 C1244.38,1714.99 1254.59,1735.06 1263.91,1755 C1293.38,1818.08 1570.03,2904.77 1614.91,2958 C1654.11,3004.5 1695.32,2974.58 1737.91,3018 C1856.95,3139.38 1762.68,3263.28 1898.91,3365 C2045.42,3474.39 2130.93,3371.94 2305.91,3425 C2768.18,3565.17 3261.4512,3818.6751 3568.1012,3989.8851 " fill="none" id="FamixRepository-to-Type" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="3573.34,3992.81,3567.4318,3984.9301,3568.9744,3990.3726,3563.5319,3991.9151,3573.34,3992.81" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="3552.7884" y="3982.0721">1</text></g><!--link Importer to FamixRepository--><g id="link_Importer_FamixRepository"><path codeLine="790" d="M989.91,539.34 C989.91,637.06 989.91,819.09 989.91,988.82 " fill="none" id="Importer-to-FamixRepository" style="stroke:#181818;stroke-width:1.0;"/><polygon fill="#181818" points="989.91,994.82,993.91,985.82,989.91,989.82,985.91,985.82,989.91,994.82" style="stroke:#181818;stroke-width:1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="7" x="982.828" y="983.9297">1</text></g><!--SRC=[xHrTSzmsxZs_GdDFojJktBsgdNGsJj9nhx7TE4qVEXsFLikrTTcLzYIjQq_j_txy_WH8hfFTQwVfGxeYG100GG02ARfPrUDOlAdNxTqFb-Tdh-ys_J2HeVZZMK7_EoOhiYRTL0cCb_L8NeiM0Pvlbqiop8QXlg-AkhiNhHptOY3BzgugncbeksiE-AfUB2w6VaE6wRxiwZLHqADYGvkhOjjzxFhVk-TLSTkt2z7dcaoCiVAv9lNuh9xJdtKp5OtXtk9DClzLkwYARhkUaq4y_w7wFHOXLO_1beplUwMDaiWVLQWfnUpZCy7Cwsvgf_k2t4saM-2yxO-1otuxDEJ7khlUrjT4CoBvalDwDNAi1M-bGrN59Pc-lRGQxry8ZknvqZmwYALDYzg10qpCvQSApVldoAAqSzAl-JGejJXeMZlj-CFbgxwfYddVhqZToUQcxwQwxHX7JZyBp1UBBToUP0OvH5gZR6T00vdyHjVqPbrpqm-OuMcF0Wos9rt5XaHWhaGBRr47rd8vRUU-iOoMCYf7DTfSk2bAUvM6-KABB1jAYLOfqxL5ExvQ4CheG1RkggyyBx1dKmp5XniJAad2OnhRHH6PkDe8cdv3jUKPmObQDvurhFl5TgMyq5l-O2PLF9VDJRkIlwj2_FyGZX9apKWvj9l94z8LNOaeWkhvyaSg_dY-V4-ndKXhC4vkQXPmoJ2weNXF0gOOoqV068_0bIA5OYqLMdfLcSauMyzRlggzLGEsCnU3TJYZyNdSr0t9XJ1YU2Tbb1dDZ13Slg6BgvkOxR15PPkGHEYtqtLF6q_NR1AbGOg7arMz7QqLS-wWbgs5L1LsbqCie8HWINY6tCgAx5Oqy70SFOPo9GxKv6Liqjs4HVY3omrfscNBf3z4uXBXEGU8ovD6YCgB0TM4p5PjFUgPi6ZhwH2pZwkxPXGCU-_lD-G0refg8m56kOK0IaclIDCFzMIbVv2Y5WgBiZsGSMpxpf5SOqJcSaywIx6MZH1XFOgXD6dhBVwoijokLlS_RUcqKBjTdFdlQyTN0sb8UqiMfzrjtzGJvLXv7jrW_Esx0BaC-rFFgt-x-MZRqIGjpxEVEgXbtOaVk5UdQKKedB16EH1VesO4_bXoZ4gito1v5dCfkslhDIHqKwcHAsFbXuWvYUbDmlDdFtVkmf80K2J0fYMYSsNw5pIrMXDMXTA6FmtRPjeEzIhgSb-Ic_gsxJNQ0RqhF7G2HmiiYs9fUTlnXFMuR1T-ZZQGUd7UhUwpcfbFWDjTZlbWnGDTxLJw9SqNLJxuYYpRhft8wdv6NU1rHnP1ofY1ShvXrbUlyW4_rBUrIAWlXlQM-j1TCPWAKvmn79W3NXbAi73RZksyNN7zVT2_MPGSyn2Ehv8azlOcZraN3iaoc1IIJdgx6pAqKzqrUE5oI-NZsDXe36SUnTXR8JB9MnxA_Ea8kix9_rKwPAPZ-P2Ph8C7YryBBtopyailmlAzHAMpgPhSq4hzzqs_KAK6_c1LGVXpAN1eai__x_RdUhBCGSSitMB8NNgufT-viWtB7sUUFShS7MEUCyB-bYeyYJWWCRduX6LFHLgNkaJ2wMlpz0CZ4jwnvVwnxHPULeZREEh960WD6HVR-Qfje0xzH9efY6q7oJcUw6mvKg0pe6Lt6tjA046q7ci79YFIZ4mH2361I6eBTg5V7ELVnb7-cTmUDUXrEz6NCMvCW6NjSLjOlbGDRUEc1k996VOrwIZRZNu3KqfJpunNCzFVUzYbtxqgd9xEn3HqmGq-XR5qhQxfksQW09-XmAlHtuvsxNqqZqGP40Myf4_l4AQwW_8_GI-XGOJEphHyCOo_dM6ysNODU_bDfMTxT5QpXZhIqQeYouJnW5xIIr4T1lvcvlTPdKrWNRhXYswVfjlPCFI__maMhPbZc2EtzSjiVz9A4auVUJlXBu0oWggt1aOHcQ27md_sayK7C5ju2DtbWt7T3q8N85NLA1cUroENqjfbFBwgX-kjTTh7dVAP19OAItGzt1c0luns_tBy0iO0je7seLP9uFrIfxROFa0zRGT_Ut63vLpMgxvsEniWlVKsCENn8Ti1E0Udz1vSpbxjQO1SXltnlLfr32vOUd-kP7zlrNfmoh7cb24aPZO9pvzuPDhGzhpPD9KlDHos0zFKtQ9Tr9CgTVXhpGhC2hFKVS9TKDScvMxr09sV6IatF9IxQpYwWlSMoVEKW8iJ0yK4JG1pRLfDzpko93G-D8aF1J2bJzGBa-a0PvbYRCI18OjEYrB4XtfewxbzRZD-vi0R2nbyhpb87WkPkEO32JT0fW-yPR51tGOxyqpnNQYkotgTB2V2-dbGSO0wDR1NCRflLlsQUhRcf5zlLkIETm5FBLzET67BtC91KEStzQgHpEldyDog1fL1vygiFZXBaAUKJtgsQG8oafKcd0V8PTWVJnDgdiFfippyoSh4-NCfa2gPy3a4rCJpymjGCi-Un8oQq0LIK8cYfE9abBxPg7P1M3rL1T395VTMEW8vYF8BXh9gAHLcfPt7uTu_FklQ5n7jAUipkQWoC1AhBWdFNPIfLPL6s67LuMjc0fV1CjUqKVDK3jof2s2lEzP7NqXWfrHcaQELxnMyr9ZW4SjHHb4o_j9EDw-S59L_fkT5MMiRKVNqEvOZ1gc2eEqoCtUJj1PZ2izeVKZ0spo1aCf_rMj0HeGvzL7Be3CIOVPOtefPLH8UDRedMj8dpdd6VEWFgFo4CPOwARgpQ70zTR1AjnCORA_mjy3zd4DAox73-wgx_uEzajIog8JvBXEN_IdHvtP-6ThWOCcUD1JdDWLEo9A4mw86hLRspmhKxHYj0CYAWaedFg4-Y9Q4LQLyVsFiURDshuplUuG3Q7-_GvZR6BPhU9FajbvjbRjYM1_OivtaqyUI8rM5XXyYY2ACsHBnfbq_Zc0T3tWuqGm7j9jYuuBSaSMRTkNV6k1S9Q1hKLCzJ1Uz_rPEEuIDIqep_1XcNzKfY36a5U0MR8C525g3VS6TN3XMeySsPojtMz95aqEQ5qQhCTYjbUsbsxVo8j3_utGDf8eyf2nrxOOLr-dZirQxnajI3ysDgVAh3V-HjyixUeJUVltDBeI286wxtocBf4vsIvVgacOd_aqthrhkSUj1dp1OCcs_8nkfT_gh7zkf7sJsjLpVyRJ-RKqnw3_VgZk0EFRNLihFK7amG51Le11FNW0n97JqGCZOqSKdfM66dFWa6Q5bt_V0a9bdYwBgCUrh0an_PW-w__lBj_smkM5juls5Mu6YnwER9u6zLSV8ENQ6y0KSik2IoD0ww-IfP4mi5PLzLNe0QoVOnrGWCxYp8uqPZeqZk_vyzk-pyr_EhZxCVlpvjUT8rtVoIgRp-Nz8CscgWfgOYAD2wbpWMFMQQUJjC8cWa-8ng75OKQwa75NA6EmFVO-AZbUY0ghFAst1NXYLPvlhZuGZSBY1oWkRNgkhRm1s-Hf-xLp-zJL-hnFrIVL4peVloIGALtIeSgdkKs5FHqLmLuJcFh8GOFBo4fMrkXx0MWmUKRi_RvTV18lNJVu0TUO0U6pkMyfcfJw-Whf7_H9CLlkPaZlqofm4WWR8ybW8_ohj5dEhJqhfkJQKU6cnamRXuLbSwP2jO9QRClrcvhG60vnHY_vs6hzMlr_y-jjpPEnW3YEVLbXiyHDKelLIxNvg1Ie8Ob_GLnSkQIgog4VrWmiGo7f4saAfgbCmBkeb2A0gsmwyQdzI5NyKltuaEZR_fiBnDyMZCVHCVwk6GbQisYrXTUXAdybq6TRrQ7tpmQxCPZZzSBhTupLMuWKj3Gt4wV0wxRGHXfX7pBV3S3rneleoCT344V-0BcPvnEy1Yik1T95DAKWo1GleiDUpaj1_xFSrY89vl_DwYpTdHk8jOVClI8ZVJc-E26irVkl2KH7Se04x06ZbxhWSJNc1UCse-zTy1kh1hdHxLtVNBEYkx-JLGOAGLJTcyTEzsizOaw01ArBOEhD0vxfDueL-BwNKj76xDmitSmYtG_u8Shrkx2TifC-mdfrL5eXb1P3OOfJbUf6sdIueS_nA8Jg9-aPI87-IYO3UesVT-JO36_bzBo1yPJiahMRrKuJUdC7CPtfWIcCVINPYLDlTd5YVeAUxq6OJDjWE34_0L5A0CcXTFbBwrpj1YyI_FyfE1fr1-jNY93gEU3ZjbZsBRABDakSxTKtDw_zkwvMl01_RVd_-HX8ZWqcFxLJvcyAxYOerNjJJZJ92HK2dR68uZSyOq0P2aSVJJjGzHkqyMEihigotgqc0BCXZDBLtthBAcZtP5o6PtopqcQSNksOA-Ebau6qFSBH-ZSarYB3OZARHwSmgp66EYcjos16jQ61BZYT1YIeSH2nqerwfqIuInMU4w-1yq29pswrNYXljqJET2-O-t47bAUDJchdJLujM2ewyoMNGKxft2MhUeUG3oAlpnj9Inzy_CoWnloiuRjhFeUs-kwM9r_l-7LdLB20oJrNMyx5VRIV7RHqLTYjDs5YrmGgiNZtRgnrw5vBRnsIisxLLnKY_gHFx0niRgWNJ9tYyGfyfD01NkKemzksu07-87IGJABa7sYHswp73ijQmRDWkJlgjg2BOEoBGdEW2soUKmevbAUn9DR2HXfLmzFB97Fdx1H3nvxlK-LXzt5ASl_SmUk2DfTo05_66nCPxUN-wA9tyBBWdFd2cFeKtmRrl9NuLt4uZYFJrvRrw7PfrvioZEQwWGuHzQE6eCE-VifmNdiYo2n8X5sBRXdtOzK-MAIpxOLrF9lTvz6RWYitGIX_kOHE4UmOVMoMYvNGZlo_IwaeGiOg1KQshQEy9gKcOmb-KZ9qSOAHasIfAHoSI616h49Io9TTHHMXguudIr0Vm8nAAmczSGkKPuqIqeJWtT1irjDdZEFSxHnJR1eE2xlihUICClw9vDbBiDqE_Lc6V_klnmSY91xV_1TzrpwLWURmhTZSUTP2i4-MJhCer-zSMdNfFuRYEr9_iC5iQgh2C_kKGvxZQBLKk-uhcpKzdoO- -t9kHpTyesQXKGkOKxYua4uEvvf7xvj7iSpv7zYSfEUQOj4FnoRkNSrgZY5UuaktGkt_SH7sUuYuVRroNOJ4KDBRVz_5P-CTRZezV5F_urp_2FzeIn007qwRnJ1eqZk3zdH65wFuT1GGffAR-BWTCneTYtCZp8Z5UF1ICqiAJt_bZ132AAiJ52EY_BG0Z0Tmu5_0hFBcx1GCX8fQBmj6aLz8SE_UNUq2xOkB3GihEPUQU423C_YGEH0Z74FTpGmHS2A_OkKqXCNEFDKGmX8OKx4E_Mccwk0U3RPr2269V4eAOcZC43RapL-mgdE1osX058ACkhjLhW6zn1ircKp800SPYNGBgqeKWXZG41HmDZo4AhZS2tMQH9dcD5dqF0YmbaMUvx7kDXdCF0Ab4fNy1uo58CXy2R052A3IxzdLbIMFIjItDerDknx2aoI1GotAmKPnIF8OLunhGBi9vYEbp3sazb02QJrYAd7dInT68SrJtCEJe0pHU50p9vw5WmYNj7hWs2ECgG83u2f0mpd9KwjIbSsI0U_Y2m5YGD30c9jAE_ChTPy-fm41a40Gx1yS_D9F22jI3OaO5qOSaKbGIxDkgzq2XmeExIW8lXADO6GMAmvb93n97WsAIlYW2pI4072Up2y7-Hp00IiYAkSG08nDYS773vf2uhajWj0C4wEt6_GnJOUhnKGnhWZ4KORGec0kA0VKv40mXbCMnPbyNxchYwQhJ57oav403-t6WHbc91HLy4E5f2eLpLQ5GBAgYol30WUmU73GRUtyDSuv9DECTawWgyqtXQGU8O485XUrQWytv7wSPxYK-Tx6x0isGW_8_Bia8Ud71tOGGnuP2C8hjRTccqB5IZNKGtq6rQaKeebYfA5YO6GhsxH55D7QOGIi3MLOGKBXpb1Z5ufEKOaZEF8xcJ3dEiLXU6UAdCFK2pA2LndLpCXGjfKgtu1Qn0_-yUaIlyZqNPrtbREafn55q78o8pjrE1Ahy6O9YIZGeYfqRuOjHbXapvZrpLZq7bDQZry7Vge-Ndm54uJOmg74468Rq0oXOB2KChESUGt3S28QK0Fkv0JgMdoHWY3ANmS3S3UcT4YGW_0y0]--></g></svg>