diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 0000000..dc1e22f --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,236 @@ +{ + "env": { + "browser": true, + "node": true, + "es6": true + }, + "extends": "eslint:recommended", + "rules": { + "accessor-pairs": "error", + "array-bracket-newline": "error", + "array-bracket-spacing": ["error", "never"], + "array-callback-return": "error", + "array-element-newline": "off", + "arrow-body-style": "error", + "arrow-parens": "error", + "arrow-spacing": "error", + "block-scoped-var": "off", + "block-spacing": "error", + "brace-style": "off", + "callback-return": "error", + "camelcase": "off", + "capitalized-comments": "off", + "class-methods-use-this": "off", + "comma-dangle": "off", + "comma-spacing": "off", + "comma-style": ["error", "last"], + "complexity": "off", + "computed-property-spacing": ["error", "never"], + "consistent-return": "error", + "consistent-this": "off", + "curly": "off", + "default-case": "off", + "dot-location": ["error", "property"], + "dot-notation": "off", + "eol-last": "error", + "eqeqeq": "error", + "for-direction": "error", + "func-call-spacing": "error", + "func-name-matching": "off", + "func-names": "off", + "func-style": "off", + "function-paren-newline": "off", + "generator-star-spacing": "error", + "getter-return": "error", + "global-require": "error", + "guard-for-in": "off", + "handle-callback-err": "error", + "id-blacklist": "error", + "id-length": "off", + "id-match": "error", + "implicit-arrow-linebreak": "error", + "indent": "off", + "indent-legacy": "off", + "init-declarations": "off", + "jsx-quotes": "error", + "key-spacing": "error", + "keyword-spacing": [ + "error", + { + "after": true, + "before": true + } + ], + "line-comment-position": "off", + "linebreak-style": ["error", "unix"], + "lines-around-comment": "error", + "lines-around-directive": "error", + "lines-between-class-members": "error", + "max-depth": "off", + "max-len": "off", + "max-lines": "off", + "max-nested-callbacks": "error", + "max-params": "off", + "max-statements": "off", + "max-statements-per-line": "error", + "multiline-comment-style": "off", + "multiline-ternary": ["error", "always-multiline"], + "new-parens": "error", + "newline-after-var": "off", + "newline-before-return": "off", + "newline-per-chained-call": "error", + "no-console": "off", + "no-alert": "error", + "no-array-constructor": "error", + "no-await-in-loop": "error", + "no-bitwise": "error", + "no-buffer-constructor": "error", + "no-caller": "error", + "no-catch-shadow": "error", + "no-confusing-arrow": "error", + "no-continue": "error", + "no-div-regex": "error", + "no-duplicate-imports": "error", + "no-else-return": "off", + "no-empty-function": "error", + "no-eq-null": "error", + "no-eval": "error", + "no-extend-native": "error", + "no-extra-bind": "error", + "no-extra-label": "error", + "no-extra-parens": "off", + "no-floating-decimal": "error", + "no-implicit-globals": "error", + "no-implied-eval": "error", + "no-inline-comments": "off", + "no-inner-declarations": ["error", "functions"], + "no-invalid-this": "off", + "no-iterator": "error", + "no-label-var": "error", + "no-labels": "error", + "no-lone-blocks": "error", + "no-lonely-if": "off", + "no-loop-func": "error", + "no-magic-numbers": "off", + "no-mixed-operators": "error", + "no-mixed-requires": "off", + "no-multi-assign": "error", + "no-multi-spaces": "off", + "no-multi-str": "error", + "no-multiple-empty-lines": "error", + "no-native-reassign": "error", + "no-negated-condition": "off", + "no-negated-in-lhs": "error", + "no-nested-ternary": "error", + "no-new": "error", + "no-new-func": "error", + "no-new-object": "error", + "no-new-require": "error", + "no-new-wrappers": "error", + "no-octal-escape": "error", + "no-param-reassign": "off", + "no-path-concat": "error", + "no-plusplus": "off", + "no-process-env": "error", + "no-process-exit": "error", + "no-proto": "error", + "no-prototype-builtins": "error", + "no-restricted-globals": "error", + "no-restricted-imports": "error", + "no-restricted-modules": "error", + "no-restricted-properties": "error", + "no-restricted-syntax": "error", + "no-return-assign": "error", + "no-return-await": "error", + "no-script-url": "error", + "no-self-compare": "error", + "no-sequences": "error", + "no-shadow": "off", + "no-shadow-restricted-names": "error", + "no-spaced-func": "error", + "no-sync": "warn", + "no-tabs": "error", + "no-template-curly-in-string": "error", + "no-ternary": "off", + "no-throw-literal": "error", + "no-trailing-spaces": "off", + "no-undef-init": "error", + "no-unused-vars":"off", + "no-undefined": "off", + "no-underscore-dangle": "off", + "no-unmodified-loop-condition": "error", + "no-unneeded-ternary": [ + "error", + { + "defaultAssignment": true + } + ], + "no-unused-expressions": "off", + "no-use-before-define": "off", + "no-useless-call": "error", + "no-useless-computed-key": "error", + "no-useless-concat": "error", + "no-useless-constructor": "error", + "no-useless-rename": "error", + "no-useless-return": "error", + "no-var": "error", + "no-void": "off", + "no-warning-comments": "error", + "no-whitespace-before-property": "error", + "no-with": "error", + "nonblock-statement-body-position": ["error", "any"], + "object-curly-newline": "error", + "object-curly-spacing": ["error", "always"], + "object-shorthand": "off", + "one-var": "off", + "one-var-declaration-per-line": "off", + "operator-assignment": "off", + "operator-linebreak": "off", + "padded-blocks": "off", + "padding-line-between-statements": "error", + "prefer-arrow-callback": "off", + "prefer-const": 1, + "prefer-destructuring": "off", + "prefer-numeric-literals": "error", + "prefer-promise-reject-errors": "error", + "prefer-reflect": "off", + "prefer-rest-params": "off", + "prefer-spread": "error", + "prefer-template": "off", + "quote-props": "off", + "quotes": "off", + "radix": "error", + "require-await": "error", + "require-jsdoc": "off", + "rest-spread-spacing": "error", + "semi": "off", + "semi-spacing": [ + "error", + { + "after": true, + "before": false + } + ], + "semi-style": ["error", "last"], + "sort-imports": "error", + "sort-keys": "off", + "sort-vars": "off", + "space-before-blocks": "error", + "space-before-function-paren": "off", + "space-in-parens": ["error", "never"], + "space-infix-ops": "off", + "space-unary-ops": "error", + "spaced-comment": "off", + "strict": "error", + "switch-colon-spacing": "error", + "symbol-description": "error", + "template-curly-spacing": "error", + "template-tag-spacing": "error", + "unicode-bom": ["error", "never"], + "valid-jsdoc": "off", + "vars-on-top": "off", + "wrap-regex": "error", + "yield-star-spacing": "error", + "yoda": ["error", "never"] + } +} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..010c4d6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +.DS_Store +node_modules +.vscode + + diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..9cecc1d --- /dev/null +++ b/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + {one line to give the program's name and a brief idea of what it does.} + Copyright (C) {year} {name of author} + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + {project} Copyright (C) {year} {fullname} + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/README.md b/README.md new file mode 100644 index 0000000..85b43a8 --- /dev/null +++ b/README.md @@ -0,0 +1,509 @@ +GraphQL Extension for StarUML 2 +============================ + +[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=N7GUM99ZAU738) + +This extension for StarUML(http://staruml.io) supports the generation of GraphQL IDL schemas from UML models. + +What's new +---- + +Jan 10th 2018: + +* **Bug:** Fixed a extend statement bug with the following structure Class->AbstractClass->Class + +Past: + +* **New Feature:** Give great flexibility to your diagram but using Abstract classes. Abstract classes keept their full meaning in a class hierachy, but are not generated. +* **New Feature:** Allow graphQL generation in a ui panel +* **New Feature:** You may now generate from the top project level +* **New Feature:** Added graphql file generation from context menu (right click on element) +* **New Feature:** Generated filename is now based from the picked element +* **New Feature:** Added a preference to control debug output +* **New Feature:** Unnamed associations are given a more meaningful name based on the entities they link. They are also pluralized when applicable +* **New Feature:** Attribute/Realtionship naming overrides are now properly implemented between attribute types , associations and hierarchies +* **Bug:** Default parameter value wasn't generated for mutators +* **Bug:** Removed _(c)copyright_ from preferences as this information is redundant with Project.copyright +* **Bug:** Cardinality generation was off +* **Extra:** Added a few more examples + +Installation +------------ +Install this extension from StarUML's Extension Manager. + +Usage +----- +1. Click the menu (`Tools > GraphQL > Generate Code...`) +2. Select a base model (or package) that will be generated to GraphQL. +3. Select a folder where generated GraphQL source files will be placed. + + file **schema.gql** will be generated at destination + +Generation +---------- + +**Disclaimer:** Neither StarUML nor this generator can enforce the limitations governed by the GraphQL expression language. It is of your responsibility to create data structures that will comply with the GraphQL specifications. + +###GraphQL IDL Notation + +Let's start with the basics. + +![](images/GraphqLCheatSheet.png) + +###Classes, Default values & Directives + +So let's start with a basic class generation. +Here class attributes are given a type and a default value. We also made v3 a required field. Finally we added documentation here and there to demo what the generator does. + +![](images/defaultValue__defaultValue_3.png) + +``` +# name: GraphQL Generation Samples +# version: 1.0 +# author Olivier Refalo +# copyright (c) Olivier Refalo + +# Just a few comments to demo documentation generation. +type MyClass { + + v1: String="helloworld" + v2: Int=5 + # This field is required, it has a multiplicity=1 + v3: String! +} +``` + +![](images/directives__directives_9.png) + +GraphQL offers a great way to implement custom behaviors using @directives. Using StarUML than can be modelled as Tags (if they need to be visually visible) or constraints. In the sample below, @const1 is not "visible" + +``` +type DirectiveClass { + name: String @fake(type: firstName) @const1(value1) + gender: String @examples(values: ["male", "female"]) +} +``` + + +###Scalars & Enums + +Scalars and Enumerations are supported by StarUML's native _Primitive_ and _Enumeration_ types. Please ensure you use these native StarUML types in order to generate the expected artifacts. + +![](images/scalars_enums__scalars_enums_4.png) + +``` +scalar UUID +scalar Date + +enum Enumeration1 { + L1 + L2 + L3 +} +``` + + +###Union types + +Union types are defined by using _Dependencies_. Typically Unions do not carry any attributes or relations. The generator will warn when it encounters such structure. + +![](images/unions__unions_5.png) + +``` +type Cat { + +} + +# test class doc +type Dog { + + f1: String! + # test field doc + f2: String + toInvalidUnion: InvalidUnion +} + +union AnimalUnionType = Cat | Dog + +# WARNING: Attributes on union types is not GraphQL compliant, ignoring. +``` + +###Associations, Aggregation & Composition + +Important facts, associations are: + +* directional +* multiplicity aware +* automatically named, unless specified (either on each end, or on association itself) + +![](images/associations__associations_1.png) + +``` +type Class3 { + + toC4: [Class4]! +} + +type Class4 { + + name: String + gender: String + toC3: Class3! +} + +type Class1 { + + query: [Class2]! + mutation: Class5 +} + +type Class2 { + + query: Class1 +} + +type Class5 { + +} +``` + +![](images/class_composition__composition_8.png) + +``` +type Team { + + subteams: [Team] + parent: Team + builds: [Airplan]! + teams: [Employee]! +} + +type Airplan { + + toComponent: [Component]! +} + +type Employee { + + members: [Team] +} + +type Component { + + toAirplan: Airplan! + subassembly: [Component] + assembly: [Component] +} +``` + +###Class and Interface hierarchies + +Unlike GraphQL syntax, there is no need to repeat the attribute definition across the hierarchy. The generator takes care of it, Neat! + +![](images/class_hierarchy__class_hierarchy_0.png) + +``` +type Vehicule { + + id: ID +} + +type Car extends PassengerVehicule { + + noOfDoors: Int + nrOfPasssengers: Int! + id: ID +} + +type Truck extends TransportationVehicule { + + numberOfCountainers: Int + loadCapacity: Int + id: ID +} + +type TransportationVehicule extends Vehicule { + + loadCapacity: Int + id: ID +} + +type PassengerVehicule extends Vehicule { + + nrOfPasssengers: Int! + id: ID +} + +type Bike extends PassengerVehicule { + + saddleHeight: Float + nrOfPasssengers: Int! + id: ID +} + +``` + +![](images/interface_impl__interface_impl_6.png) + +Here we use InterfaceRealization to implement an interface in a new class. Note how the child attributes are automatically inherited from the parent interface. + +``` +type Bar implements Foo { + + is_bar: String + is_foo: String +} + +type Baz implements Foo, Goo { + + is_baz: String + is_foo: String + is_goo: String +} + +interface Foo { + + is_foo: String +} + +interface Goo { + + is_goo: String +} +``` + +![](images/InterfaceInherit__interfaceInheritance_2.png) + +Finally a example showing interface extension. + +``` +type Class1 { + + r1: Class2 +} + +type Class2 { + +} + +type ClassB { + +} + +type ClassA { + + r2: ClassB +} + +interface I1 { + + f1: Int + i1ToC22: ClassA + i1ToC1: Class1 +} + +interface I2 extends I1 { + + f1: Int + i1ToC22: ClassA + i1ToC1: Class1 +} +``` + + +###Schemas, Mutations + +![](images/schema_query_mutation_subscriptions__schema_and_more_7.png) + +``` +type RootMutation { + + createTodo(input: CreateTodoInput!) : CreateTodoPayload + + toggleTodoCompleted(input: ToggleTodoCompletedInput!) : ToggleTodoCompletedPayload + +} + +schema { + mutation: RootMutation! +} + +# `id` is generated by the backend, and `completed` is automatically set to false +input CreateTodoInput { + + text: String! +} + +type Todo { + + id: ID + text: String + completed: Boolean +} + +type CreateTodoPayload { + + todo: Todo! +} + +input ToggleTodoCompletedInput { + + id: ID! +} + +type ToggleTodoCompletedPayload { + + todo: Todo +} + +``` + + +Rules +-------------------- +The following rules apply during generation. + +### Project Metadata + +* _name_, _company_, _version_, _author_ and _copyright_ are used to generate the document header. + +### UMLPackage + +* ignored - but browsed recursively for other uml entities. + +### UMLPrimaryType + +* converted to _GraphQL scalar_. + +### UMLClass + +* converted to _GraphQL type_. +* Abstract class are not generated, but still part of the hierarchy. +* `union` stereotype converted to an *union* type, using dependency connections to related types. +* `input` stereotype converted to an *input* type. +* `schema` stereotype converted to a GraphQL *schema*. +* Full support for UML inheritance and interface - no need to repeat attributes across the hierarchy. +* Documentation property to GraphQL comment. + +### UMLAttribute + +* converted to _GraphQL Field_. +* `name` property to field identifier. +* `type` property to field type, defaults to String. +* `multiplicity` property to array type and/or required constraint. +* GraphQL directives implemented via attribute's Tag(name, value) +* GraphQL directives can also be modeled via an attribute Constraint(name, specification) - in which case they will not display in the diagram +* Default values generation. +* Documentation property to GraphQL comment. + +### UMLOperation + +* converted to _GraphQL mutator_. +* `name` property to method identifier. +* _UMLParameter_ to _GraphQL Method Parameters_. +* _UMLParameter_'s name property to parameter identifier. +* _UMLParameter_'s type property to type of parameter. +* _UMLParameter_'s `multiplicity` property to array type and/or required constraint. +* _UMLParameter_ with `direction` = `return` to return type of method. +* GraphQL directives implemented via attribute's Tag(name, value) +* GraphQL directives can also be modeled via an attribute Constraint(name, specification) - in which case they will not display in the diagram +* Documentation property to GraphQL comment. + +### UMLInterface + +* converted to _GraphQL Interface_. (as a separate `.ts` file) +* Documentation property to GraphQL comment. + +### UMLEnumeration + +* converted to _GraphQL enum_. +* _UMLEnumerationLiteral_ to literals of enum. + +### UMLAssociationEnd + +* support for associations, aggregations and compositions +* be careful, by default starUML create bi-directional associations(like) relations. Use the "navigable" flag to pick on which side the accessor should be generated. +* converted to _GraphQL Field_. +* `name` property to field identifier. +* `type` property to field type. +* Documentation property to GraphQL comment. +* `multiplicity` property to array type and required constraint. + +| Cardinality property| => Generation | +| ------------------- |--------------| +| 0..1 | field | +| 1 | field! | +| n n>1 | [field!] | +| 0..* or * | [field] | +| 1..* | [field!] | + +### UMLGeneralization + +* converted to _GraphQL extends_ or _GraphQL implements_. +* Allowed only for _UMLClass_ to _UMLClass_, and _UMLInterface_ to _UMLInterface_. + +### UMLInterfaceRealization + +* converted to _GraphQL Implements_. +* Allowed only for _UMLClass_ to _UMLInterface_. + +FAQ +---- + +### How to create comments? +Ensure Preference's option is turned on, use starUML documentation area. The generator will pick it up. + +### How to create a union? +A Union is a class with a _union_ stereotype, types are referenced via a **Dependency** relationship + +### How do I get a schema.json from the IDL file? + +Use _gqlschema_ from npm's [gql-tools](https://www.npmjs.com/package/gql-tools) + +### I can't see Interface's attributes in diagrams +That StartUML default interface rendering. Right click on the interface, from the context menu, pick `Format > Stereotype display > Decorations and labels` + +### How to make an attribute _required_? +1. Select the attribute, the parameter or the relationship +2. Depending on what you want to make 'required', use one of the multiplicity below + +| Cardinality property| => Generation | +| ------------------- |--------------| +| 1 | field! | +| n n>1 | [field!] | +| 1..* | [field!] | + + +Contributing +---- + +* Clone this repo somewhere on your dsk +* Create a branch and switch to it +* Go to `StarUML.app/Contents/www/extensions/dev` +* ln -s staruml-graphql +* Relaunch StarUML - a Debug menu will now show +* Do your changes, commit and submit a pull request + +To Do +---- + +* Add/remove graphql-faker directives with a context-menu entry + + +About the Author +---- + +My name is [Olivier Refalo](https://www.linkedin.com/in/orefalo/), author behind this StarUML extension. I am an Innovator, a Digital transformer, a skilled Architect, a Leader and an Entrepreneur. + +Over the years I grew extensive knowledge around data modeling, reactive technologies, business processes, integrations and enterprise architecture. +Lately I grew my technical skills around GraphQL which I see as an elegant way to solve the "middleware mess" with an inversion of control approach. + +I believe in open source as a way to drive innovations and share knowledge, this project is yet another way to contribute back to the community. With that said, if you *do use* this project, please consider: + + 1. Buying StarUML + 2. Making a donation +[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=N7GUM99ZAU738) + +Thank you + +Licensed under GPLv3 \ No newline at end of file diff --git a/about-dialog.html b/about-dialog.html new file mode 100644 index 0000000..ce54dd4 --- /dev/null +++ b/about-dialog.html @@ -0,0 +1,34 @@ + \ No newline at end of file diff --git a/about-dialog.js b/about-dialog.js new file mode 100644 index 0000000..1c57510 --- /dev/null +++ b/about-dialog.js @@ -0,0 +1,31 @@ +//@ts-ignore + +"use strict"; + +/*global $, app, type, __dirname*/ + +const { shell } = require("electron"); +const fs = require("fs"); +const path = require("path"); + +const aboutDialogTemplate = fs.readFileSync(path.join(__dirname, "about-dialog.html"), "utf8"); + +/** + * Show About Dialog + * @private + * @return {Dialog} + */ +function showDialog() { + + const dialog = app.dialogs.showModalDialogUsingTemplate(aboutDialogTemplate) + const $dlg = dialog.getElement(); + const $thirdparty = $dlg.find(".thirdparty"); + + $thirdparty.click(function() { + shell.openExternal("http://www.snapcore.com"); + }); + + return dialog; +} + +exports.showDialog = showDialog; diff --git a/codegen-utils.js b/codegen-utils.js new file mode 100644 index 0000000..c784634 --- /dev/null +++ b/codegen-utils.js @@ -0,0 +1,75 @@ +/* + * Copyright (c) 2014-2018 MKLab. All rights reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. + * + */ + +//@ts-nocheck +/*global $, app, type*/ + +"use strict"; + +exports.CodeWriter = class CodeWriter { + + constructor(indentString) { + + this.lines = []; + + /** @member {string} indentString */ + this.indentString = indentString || " "; // default 4 spaces + + /** @member {Array.} indentations */ + this.indentations = []; + } + + /** + * Indent + */ + indent() { + this.indentations.push(this.indentString); + } + + /** + * Outdent + */ + outdent() { + this.indentations.splice(this.indentations.length - 1, 1); + } + + /** + * Write a line + * @param {string} line + */ + writeLine(line) { + if (line) { + this.lines.push(this.indentations.join("") + line); + } else { + this.lines.push(""); + } + } + + /** + * Return as all string data + * @return {string} + */ + getData() { + return this.lines.join("\n"); + } +}; diff --git a/graphql-panel.html b/graphql-panel.html new file mode 100644 index 0000000..ea5f22e --- /dev/null +++ b/graphql-panel.html @@ -0,0 +1,10 @@ +
+
+
GraphQL generation
+ +
+
+
+       
+
+
\ No newline at end of file diff --git a/idl-code-generator.js b/idl-code-generator.js new file mode 100644 index 0000000..33c0cb0 --- /dev/null +++ b/idl-code-generator.js @@ -0,0 +1,805 @@ +// @ts-nocheck +/*jslint vars: true, plusplus: true, devel: true, nomen: true, indent: 4, maxerr: 50, regexp: true */ +/*global define, $, _, window, app, type, document */ + +"use strict"; + +const fs = require("fs"); +const path = require("path"); +const codegen = require("./codegen-utils"); + +class IDLCodeGenerator { + constructor(baseModel, basePath) { + this.baseModel = baseModel; + this.basePath = basePath; + } + + /** + * Return Indent String based on options + * @param {Object} options + * @return {string} + */ + getIndentString(options) { + if (options.useTab) { + return "\t"; + } else { + const len = options.indentSpaces; + const indent = []; + for (let i = 0; i < len; i++) { + indent.push(" "); + } + return indent.join(""); + } + } + + /** + * Generate codes from a given element + * @param {type.Model} elem + * @param {string} path + * @param {Object} options + * @return {$.Promise} + */ + generate(elem, path, options) { + const codeWriter = new codegen.CodeWriter(this.getIndentString(options)); + + if (options.debug) console.log("generate", "elem", elem); + + // Doc + let doc = "\n"; + const project = app.project.getProject(); + + if (project.name && project.name.length > 0) { + doc += "\nname: " + project.name; + } + if (project.version && project.version.length > 0) { + doc += "\nversion: " + project.version; + } + if (project.author && project.author.length > 0) { + doc += "\nauthor " + project.author; + } + if (project.copyright && project.copyright.length > 0) { + doc += "\ncopyright " + project.copyright; + } + + this.writeDoc(codeWriter, doc, options); + codeWriter.writeLine(); + + this.recurGenerate(codeWriter, elem, options); + + if (options.debug) console.log("Saving to " + path); + + //const fullPath = path.join(basePath, elem.name); + fs.writeFileSync(path, codeWriter.getData()); + } + + recurGenerate(codeWriter, elem, options) { + const self = this; + let oe; + + // Package + if (elem instanceof type.UMLPackage || elem instanceof type.Project) { + oe = elem.ownedElements; + if (oe) { + const len = oe.length; + for (let i = 0; i < len; i++) { + const e = oe[i]; + self.recurGenerate(codeWriter, e, options); + } + } + } else if (elem instanceof type.UMLClass) { + if (elem.isAbstract === false) { + // Class + if (options.debug) console.log("Class generate " + elem.name); + + if (this.isUnion(elem)) this.writeUnion(codeWriter, elem, options); + else if (this.isInput(elem)) this.writeClass(codeWriter, elem, options, "input " + elem.name); + else if (this.isSchema(elem)) this.writeClass(codeWriter, elem, options, "schema"); + else this.writeClass(codeWriter, elem, options); + + codeWriter.writeLine(); + } + } else if (elem instanceof type.UMLPrimitiveType) { + // Scalar + if (options.debug) console.log("Scalar generate" + elem.name); + this.writeScalar(codeWriter, elem, options); + codeWriter.writeLine(); + } else if (elem instanceof type.UMLInterface) { + // Interface + if (options.debug) console.log("Interface generate" + elem.name); + this.writeInterface(codeWriter, elem, options); + codeWriter.writeLine(); + } else if (elem instanceof type.UMLEnumeration) { + // Enum + if (options.debug) console.log("Enumeration generate" + elem.name); + this.writeEnum(codeWriter, elem, options); + codeWriter.writeLine(); + } else { + // Others (Nothing generated.) + if (options.debug) console.log("nothing generate " + elem); + } + } + + /** + * Write Enum + * @param {StringWriter} codeWriter + * @param {type.Model} elem + * @param {Object} options + */ + writeEnum(codeWriter, elem, options) { + // Doc + this.writeDoc(codeWriter, elem.documentation, options); + + codeWriter.writeLine("enum " + elem.name + " {"); + codeWriter.indent(); + + // Literals + const len = elem.literals.length; + for (let i = 0; i < len; i++) { + if (elem.literals[i].documentation) { + codeWriter.writeLine("#" + elem.literals[i].documentation); + } + codeWriter.writeLine(elem.literals[i].name); + } + + codeWriter.outdent(); + codeWriter.writeLine("}"); + } + + /** + * Write Scalar + * @param {StringWriter} codeWriter + * @param {type.Model} elem + * @param {Object} options + */ + writeScalar(codeWriter, elem, options) { + // Doc + this.writeDoc(codeWriter, elem.documentation, options); + codeWriter.writeLine("scalar " + elem.name); + } + + /** + * Write Interface + * @param {StringWriter} codeWriter + * @param {type.Model} elem + * @param {Object} options + */ + writeInterface(codeWriter, elem, options) { + let terms = []; + + // Doc + this.writeDoc(codeWriter, elem.documentation, options); + + // Interface + terms.push("interface"); + terms.push(elem.name); + + // Extends + const _extends = this.getSuperClasses(elem); + if (_extends.length > 0) { + terms.push( + "extends " + + _extends + .map(function(e) { + return e.name; + }) + .join(", ") + ); + } + codeWriter.writeLine(terms.join(" ") + " {"); + codeWriter.writeLine(); + codeWriter.indent(); + + // holds {attrName:String -> attrValue:String} + // doc is modeled as attrName.doc + const attrDefs = {}; + + // Member Variables + this.recurWriteInterfaceAttributes2(attrDefs, elem, options); + + // render attrDef to codeWriter + for (const attr in attrDefs) { + // ignore comments which are coming a "attrname.doc" + if (attr.indexOf(".") <= 0) { + const doc = attrDefs[attr + ".doc"]; + if (doc) this.writeDoc(codeWriter, doc, options); + + codeWriter.writeLine(attr + attrDefs[attr]); + } + } + + // Methods + const len = elem.operations.length; + for (let i = 0; i < len; i++) { + this.writeMutator(codeWriter, elem.operations[i], options); + codeWriter.writeLine(); + } + + codeWriter.outdent(); + codeWriter.writeLine("}"); + } + + /** + * Write Class + * @param {StringWriter} codeWriter + * @param {type.Model} elem + * @param {Object} options + */ + writeClass(codeWriter, elem, options, keyword) { + let i, + len, + terms = []; + //, self = this; + + // Doc + this.writeDoc(codeWriter, elem.documentation, options); + + // Class + if (keyword) terms.push(keyword); + else { + terms.push("type"); + terms.push(elem.name); + } + + // Extends + // look for the 1st parent class that is not abstract + let _extends; + let e = elem; + do { + _extends = this.getSuperClasses(e); + if (_extends.length > 0) e = _extends[0]; + } while (_extends.length > 0 && _extends[0].isAbstract === true); + + if (_extends.length > 0) { + if (_extends.length > 1) + this.writeDoc(codeWriter, "WARNING: you can only extend one class, ignoring others", options); + + if (_extends[0].isAbstract === false) { + // can graphQL support more than one parent? + terms.push("extends " + _extends[0].name); + } + } + + // Implements + const _implements = this.getSuperInterfaces(elem); + if (_implements.length > 0) { + if (_extends.length > 0) { + terms.push( + ", " + + _implements + .map(function(e) { + return e.name; + }) + .join(", ") + ); + } else { + terms.push( + "implements " + + _implements + .map(function(e) { + return e.name; + }) + .join(", ") + ); + } + } + + codeWriter.writeLine(terms.join(" ") + " {"); + codeWriter.writeLine(); + codeWriter.indent(); + + // holds {attrName:String -> attrValue:String} + // doc is modeled as attrName.doc + const attrDefs = {}; + + // recursive interface attributes + for (i = 0, len = _implements.length; i < len; i++) { + this.recurWriteInterfaceAttributes2(attrDefs, _implements[i], options); + } + + // recursive class attributes + this.recurWriteClassAttributes2(attrDefs, elem, options); + + // render attrDef to codeWriter + for (const attr in attrDefs) { + // ignore comments which are coming a "attrname.doc" + if (attr.indexOf(".") <= 0) { + const doc = attrDefs[attr + ".doc"]; + if (doc) this.writeDoc(codeWriter, doc, options); + + codeWriter.writeLine(attr + attrDefs[attr]); + } + } + + // mutators + for (i = 0, len = elem.operations.length; i < len; i++) { + this.writeMutator(codeWriter, elem.operations[i], options); + codeWriter.writeLine(); + } + + codeWriter.outdent(); + codeWriter.writeLine("}"); + } + + recurWriteInterfaceAttributes2(attrDefs, elem, options) { + let i, len; + + // from parent interfaces + const _extends = this.getSuperClasses(elem); + for (i = 0, len = _extends.length; i < len; i++) this.recurWriteClassAttributes2(attrDefs, _extends[i], options); + + // Member Variables + // (from attributes) + for (i = 0, len = elem.attributes.length; i < len; i++) this.writeAttribute2(attrDefs, elem.attributes[i], options); + + // (from associations) + const associations = app.repository.getRelationshipsOf(elem, function(rel) { + return rel instanceof type.UMLAssociation; + }); + for (i = 0, len = associations.length; i < len; i++) { + const asso = associations[i]; + if (asso.end2.reference === elem && asso.end1.navigable === true) + this.writeAttribute2(attrDefs, asso.end1, options); + + if (asso.end1.reference === elem && asso.end2.navigable === true) + this.writeAttribute2(attrDefs, asso.end2, options); + } + } + + recurWriteClassAttributes2(attrDefs, elem, options) { + let i, len; + + const _extends = this.getSuperClasses(elem); + if (_extends.length > 0) { + this.recurWriteClassAttributes2(attrDefs, _extends[0], options); + } + + // attributes + for (i = 0, len = elem.attributes.length; i < len; i++) { + this.writeAttribute2(attrDefs, elem.attributes[i], options); + } + + // (from associations) + const associations = app.repository.getRelationshipsOf(elem, function(rel) { + return rel instanceof type.UMLAssociation; + }); + + if (options.debug) console.log("association length: " + associations.length); + for (i = 0, len = associations.length; i < len; i++) { + const asso = associations[i]; + if (asso.end2.reference === elem && asso.end1.navigable === true) { + this.writeAttribute2(attrDefs, asso.end1, options); + } + if (asso.end1.reference === elem && asso.end2.navigable === true) { + this.writeAttribute2(attrDefs, asso.end2, options); + } + } + } + + /** + * Write Union + * @param {StringWriter} codeWriter + * @param {type.Model} elem + * @param {Object} options + */ + writeUnion(codeWriter, elem, options) { + let i, + len, + terms = []; + + // Validations + const _extends = this.getSuperClasses(elem); + if (_extends.length > 0) + this.writeDoc(codeWriter, "WARNING: Inheritance on union types is not GraphQL compliant, ignoring", options); + + const _implements = this.getSuperInterfaces(elem); + if (_implements.length > 0) + this.writeDoc( + codeWriter, + "WARNING: Implementing interfaces of union types is not GraphQL compliant, ignoring", + options + ); + + if (elem.operations.length > 0) + this.writeDoc(codeWriter, "WARNING: Operations on union types is not GraphQL compliant, ignoring.", options); + + if (elem.attributes.length > 0) + this.writeDoc(codeWriter, "WARNING: Attributes on union types is not GraphQL compliant, ignoring.", options); + + // Class + terms.push("union"); + terms.push(elem.name); + terms.push("="); + + // (from dependencies) + const dependencies = app.repository.getRelationshipsOf(elem, function(rel) { + return rel instanceof type.UMLDependency; + }); + + if (options.debug) console.log("dependencies length: " + dependencies.length); + + if (dependencies.length > 0) { + // Doc + this.writeDoc(codeWriter, elem.documentation, options); + + for (i = 0, len = dependencies.length; i < len; i++) { + terms.push(dependencies[i].target.name); + terms.push("|"); + } + terms.pop(); + codeWriter.writeLine(terms.join(" ")); + } + } + + /** + * Write graphQL mutator + * @param {StringWriter} codeWriter + * @param {type.Model} elem + * @param {Object} options + * @param {boolean} skipBody + * @param {boolean} skipParams + */ + writeMutator(codeWriter, elem, options) { + if (elem.name.length > 0) { + let e; + const terms = []; + const params = elem.getNonReturnParameters(); + const returnParam = elem.getReturnParameter(); + + // doc + let doc = elem.documentation.trim(); + params.forEach(function(param) { + if (param.documentation.length > 0) doc += "\nparam: " + param.name + " " + param.documentation; + }); + if (returnParam && returnParam.documentation.length > 0) { + doc += "\nreturn: " + returnParam.documentation; + } + this.writeDoc(codeWriter, doc, options); + + // name + parameters + const paramTerms = []; + + let i, len; + for (i = 0, len = params.length; i < len; i++) { + const p = params[i]; + let s = p.name + ": " + this.getType(p); + + // initial value + if (p.defaultValue && p.defaultValue.length > 0) { + s = s + "=" + p.defaultValue; + } + + paramTerms.push(s); + } + + terms.push(elem.name + "(" + paramTerms.join(", ") + ")"); + + // return type + if (returnParam) { + terms.push(":"); + terms.push(this.getType(returnParam)); + } + + // graphql visual directives - modeled as Tags + const _tags = elem.tags; + if (_tags) { + for (i = 0, len = _tags.length; i < len; i++) { + e = _tags[i]; + terms.push(" @" + e.name + "(" + e.value + ")"); + } + } + + // graphql non-visible directives - modeled as Constraints + const _oe = elem.ownedElements; + if (_oe) { + for (i = 0, len = _oe.length; i < len; i++) { + e = _oe[i]; + if (e instanceof type.UMLConstraint) terms.push(" @" + e.name + "(" + e.specification + ")"); + } + } + + codeWriter.writeLine(terms.join(" ")); + } + } + + /** + * Return type expression + * @param {type.Model} elem + * @return {string} + */ + getType(elem) { + let _type = "String"; + // type name + if (elem instanceof type.UMLAssociationEnd) { + if (elem.reference instanceof type.UMLModelElement && elem.reference.name.length > 0) { + _type = elem.reference.name; + } + } else { + if (elem.type instanceof type.UMLModelElement && elem.type.name.length > 0) { + _type = elem.type.name; + } else if (typeof elem.type === "string" && elem.type.length > 0) { + _type = elem.type; + } + } + + // multiplicity + + // | Cardinality property| => Generation | + // | ------------------- |--------------| + // | 0..1 | field | + // | 1 | field! | + // | n n>1 | [field!] | + // | 0..* or * | [field] | + // | 1..* | [field!] | + + if (elem.multiplicity) { + const m = elem.multiplicity.trim(); + if (["0..1"].includes(m)) { + //skip + //_type = _type; + } else if (["1"].includes(m)) { + _type = _type + "!"; + } else if (m.match(/^\d+$/)) { + // number + _type = "[" + _type + "!]"; + } else if (["0..*", "*"].includes(m)) { + _type = "[" + _type + "]"; + } else if (["1..*"].includes(m)) { + _type = "[" + _type + "!]"; + } else { + console.log("WARNING: We have a problem Houston: unknown cardinality" + _type); + } + } + return _type; + } + + /** + * Write type attribute + * @param {StringWriter} codeWriter + * @param {type.Model} elem + * @param {Object} options + */ + writeAttribute2(attrDefs, elem, options) { + let i, len; + + if (options.debug) console.log("writeAttribute", "elem", elem); + + let name = elem.name; + + // if it's an association, try to guess the name + if (name.length === 0 && elem instanceof type.UMLAssociationEnd) { + name = elem._parent.name; + if (name.length === 0) { + // if neither the edge nor the relation has a name, make up a name based on the classname + // use multiplicity as pluralizer + name = elem.reference.name; + if (elem.multiplicity) { + if (["0", "1", "0..1"].includes(elem.multiplicity.trim())) { + name = this.pluralize(name, true); + } else name = this.pluralize(name); + } else { + name = this.pluralize(name, true); + } + + // minimize first latter + name = name.charAt(0).toLowerCase() + name.slice(1); + } + } + + if (name.length > 0) { + let e; + const terms = []; + // doc + attrDefs[name + ".doc"] = elem.documentation; + + // name + terms.push(": "); + + // type + terms.push(this.getType(elem)); + + // initial value + if (elem.defaultValue && elem.defaultValue.length > 0) { + terms.push("=" + elem.defaultValue); + } + + // graphql visual directives - modeled as Tags + const _tags = elem.tags; + if (_tags) { + for (i = 0, len = _tags.length; i < len; i++) { + e = _tags[i]; + terms.push(" @" + e.name + "(" + e.value + ")"); + } + } + + // graphql non-visible directives - modeled as Constraints + const _oe = elem.ownedElements; + if (_oe) { + for (i = 0, len = _oe.length; i < len; i++) { + e = _oe[i]; + if (e instanceof type.UMLConstraint) terms.push(" @" + e.name + "(" + e.specification + ")"); + } + } + attrDefs[name] = terms.join(""); + } + } + + /** + * Write documentation comments + * @param {StringWriter} codeWriter + * @param {string} text + * @param {Object} options + */ + writeDoc(codeWriter, text, options) { + let i, len, lines, v; + if (options.gqDoc && typeof text === "string") { + lines = text.trim().split("\n"); + for (i = 0, len = lines.length; i < len; i++) { + v = lines[i].trim(); + if (v.length > 0) codeWriter.writeLine("# " + lines[i]); + } + } + } + + isUnion(elem) { + return elem.stereotype === "union"; + } + + isInput(elem) { + return elem.stereotype === "input"; + } + + isSchema(elem) { + return elem.stereotype === "schema"; + } + + /** + * Collect super classes of a given element + * @param {type.Model} elem + * @return {Array.} + */ + getSuperClasses(elem) { + const generalizations = app.repository.getRelationshipsOf(elem, function(rel) { + return rel instanceof type.UMLGeneralization && rel.source === elem; + }); + return generalizations.map(function(gen) { + return gen.target; + }); + } + + /** + * Collect super interfaces of a given element + * @param {type.Model} elem + * @return {Array.} + */ + getSuperInterfaces(elem) { + const realizations = app.repository.getRelationshipsOf(elem, function(rel) { + return rel instanceof type.UMLInterfaceRealization && rel.source === elem; + }); + return realizations.map(function(gen) { + return gen.target; + }); + } + + pluralize(str, revert) { + const plural = { + "(quiz)$": "$1zes", + "^(ox)$": "$1en", + "([m|l])ouse$": "$1ice", + "(matr|vert|ind)ix|ex$": "$1ices", + "(x|ch|ss|sh)$": "$1es", + "([^aeiouy]|qu)y$": "$1ies", + "(hive)$": "$1s", + "(?:([^f])fe|([lr])f)$": "$1$2ves", + "(shea|lea|loa|thie)f$": "$1ves", + sis$: "ses", + "([ti])um$": "$1a", + "(tomat|potat|ech|her|vet)o$": "$1oes", + "(bu)s$": "$1ses", + "(alias)$": "$1es", + "(octop)us$": "$1i", + "(ax|test)is$": "$1es", + "(us)$": "$1es", + "([^s]+)$": "$1s" + }; + + const singular = { + "(quiz)zes$": "$1", + "(matr)ices$": "$1ix", + "(vert|ind)ices$": "$1ex", + "^(ox)en$": "$1", + "(alias)es$": "$1", + "(octop|vir)i$": "$1us", + "(cris|ax|test)es$": "$1is", + "(shoe)s$": "$1", + "(o)es$": "$1", + "(bus)es$": "$1", + "([m|l])ice$": "$1ouse", + "(x|ch|ss|sh)es$": "$1", + "(m)ovies$": "$1ovie", + "(s)eries$": "$1eries", + "([^aeiouy]|qu)ies$": "$1y", + "([lr])ves$": "$1f", + "(tive)s$": "$1", + "(hive)s$": "$1", + "(li|wi|kni)ves$": "$1fe", + "(shea|loa|lea|thie)ves$": "$1f", + "(^analy)ses$": "$1sis", + "((a)naly|(b)a|(d)iagno|(p)arenthe|(p)rogno|(s)ynop|(t)he)ses$": "$1$2sis", + "([ti])a$": "$1um", + "(n)ews$": "$1ews", + "(h|bl)ouses$": "$1ouse", + "(corpse)s$": "$1", + "(us)es$": "$1", + s$: "" + }; + + const irregular = { + move: "moves", + foot: "feet", + goose: "geese", + sex: "sexes", + child: "children", + man: "men", + tooth: "teeth", + person: "people" + }; + + const uncountable = ["sheep", "fish", "deer", "series", "species", "money", "rice", "information", "equipment"]; + + // save some time in the case that singular and plural are the same + if (uncountable.indexOf(str.toLowerCase()) >= 0) return str; + + let pattern; + // check for irregular forms + for (let word in irregular) { + let replace; + if (revert) { + pattern = new RegExp(irregular[word] + "$", "i"); + replace = word; + } else { + pattern = new RegExp(word + "$", "i"); + replace = irregular[word]; + } + if (pattern.test(this)) return str.replace(pattern, replace); + } + + let array; + if (revert) array = singular; + else array = plural; + + // check for matches using regular expressions + for (let reg in array) { + pattern = new RegExp(reg, "i"); + if (pattern.test(this)) return str.replace(pattern, array[reg]); + } + + return str; + } +} + +/** + * Generate + * @param {type.Model} baseModel + * @param {string} basePath + * @param {Object} options + */ +function generate(baseModel, basePath, options) { + const codeGenerator = new IDLCodeGenerator(baseModel, basePath); + codeGenerator.generate(baseModel, basePath, options); +} + +function generateString(elem, options) { + const codeGenerator = new IDLCodeGenerator(elem); + if (options.debug) { + console.log("generateString " + elem); + console.log("options " + options); + } + const codeWriter = new codegen.CodeWriter(codeGenerator.getIndentString(options)); + if (options.debug) console.log("codeWriter " + codeWriter); + codeGenerator.recurGenerate(codeWriter, elem, options); + if (options.debug) console.log("recurGenerate " + codeWriter); + return codeWriter.getData(); +} + +exports.generate = generate; +exports.generateString = generateString; diff --git a/images/GraphqLCheatSheet.png b/images/GraphqLCheatSheet.png new file mode 100644 index 0000000..64f2d04 Binary files /dev/null and b/images/GraphqLCheatSheet.png differ diff --git a/images/InterfaceInherit__interfaceInheritance_2.png b/images/InterfaceInherit__interfaceInheritance_2.png new file mode 100644 index 0000000..82b2067 Binary files /dev/null and b/images/InterfaceInherit__interfaceInheritance_2.png differ diff --git a/images/associations__associations_1.png b/images/associations__associations_1.png new file mode 100644 index 0000000..82b0e18 Binary files /dev/null and b/images/associations__associations_1.png differ diff --git a/images/class_composition__composition_8.png b/images/class_composition__composition_8.png new file mode 100644 index 0000000..07af839 Binary files /dev/null and b/images/class_composition__composition_8.png differ diff --git a/images/class_hierarchy__class_hierarchy_0.png b/images/class_hierarchy__class_hierarchy_0.png new file mode 100644 index 0000000..8d81be4 Binary files /dev/null and b/images/class_hierarchy__class_hierarchy_0.png differ diff --git a/images/defaultValue__defaultValue_3.png b/images/defaultValue__defaultValue_3.png new file mode 100644 index 0000000..5a09ce9 Binary files /dev/null and b/images/defaultValue__defaultValue_3.png differ diff --git a/images/directives__directives_9.png b/images/directives__directives_9.png new file mode 100644 index 0000000..8cab5f0 Binary files /dev/null and b/images/directives__directives_9.png differ diff --git a/images/interface_impl__interface_impl_6.png b/images/interface_impl__interface_impl_6.png new file mode 100644 index 0000000..5d74e7a Binary files /dev/null and b/images/interface_impl__interface_impl_6.png differ diff --git a/images/scalars_enums__scalars_enums_4.png b/images/scalars_enums__scalars_enums_4.png new file mode 100644 index 0000000..5ec8fea Binary files /dev/null and b/images/scalars_enums__scalars_enums_4.png differ diff --git a/images/schema_query_mutation_subscriptions__schema_and_more_7.png b/images/schema_query_mutation_subscriptions__schema_and_more_7.png new file mode 100644 index 0000000..1548597 Binary files /dev/null and b/images/schema_query_mutation_subscriptions__schema_and_more_7.png differ diff --git a/images/unions__unions_5.png b/images/unions__unions_5.png new file mode 100644 index 0000000..0250920 Binary files /dev/null and b/images/unions__unions_5.png differ diff --git a/main.js b/main.js new file mode 100644 index 0000000..79efecc --- /dev/null +++ b/main.js @@ -0,0 +1,191 @@ +//@ts-nocheck +/*global $, app, type*/ + +"use strict"; + +const fs = require("fs"); +const path = require("path"); +const AboutDialog = require("./about-dialog"); + +const PREFERENCE_KEY = "graphql:preview.visibility"; +const PREF_DEBUG_KEY = "graphql:debug.status"; +const PREF_GENDOC = "graphql.gen.idlDoc"; +const PREF_INDENTSPC = "graphql.gen.indentSpaces"; +const PREF_REVASSOC = "graphql.rev.association"; +const PREF_REVTYPEH = "graphql.rev.typeHierarchy"; + +const CMD_TOGGLE_PREVIEW = "graphql:toggle.preview"; +const CMD_GENERATE = "graphql:generate"; +const CMD_CONFIGURE = "graphql:configure"; +const CMD_ABOUT = "graphql:about"; + +const codeGenerator = require("./idl-code-generator"); + +// Toolbar Button +const $button = $(""); + +const graphqlPanelTemplate = fs.readFileSync(path.join(__dirname, "graphql-panel.html"), "utf8"); +let $graphqlPanel; +let graphqlPanel; + +// Selected element for preview purposes +let _currentElement; + +function getGenOptions() { + return { + idlDoc: app.preferences.get(PREF_GENDOC), + indentSpaces: app.preferences.get(PREF_INDENTSPC), + debug: app.preferences.get(PREF_DEBUG_KEY) + }; +} + +function getRevOptions() { + return { + association: app.preferences.get(PREF_REVASSOC), + typeHierarchy: app.preferences.get(PREF_REVTYPEH), + debug: app.preferences.get(PREF_DEBUG_KEY) + }; +} + +function updateMenus() { + app.menu.updateStates(null, null, { + "view.graphql-view": graphqlPanel.isVisible() + }); +} + +function generateGraphQL(base, path, options) { + if (options.debug) { + console.log("base", base); + console.log("path", path); + console.log("options", options); + } + + try { + codeGenerator.generate(base, path, options); + app.toast.info("GraphQL generation completed"); + } catch (e) { + app.toast.error("Generation Failed!"); + } +} + +function openFolder(base, path, options) { + // If path is not assigned, popup Open Dialog to select a folder + if (options.debug) console.log("main.openFolder()", "path", path); + + // If path is not assigned, popup Open Dialog to select a folder + if (!path) { + const file = app.dialogs.showSaveDialog("Save GraphQL File as...", null, "schema_" + base.name + ".gql"); + if (file) generateGraphQL(base, file, options); + else generateGraphQL(base, path, options); + } +} + +/** + * Command Handler for GraphQL Generate + * + * @param {Element} base + * @param {string} path + * @param {Object} options + */ +function _handleGenerate(base, path, options) { + // If options is not passed, get from preference + options = options || getGenOptions(); + // If base is not assigned, popup ElementPicker + if (!base) { + app.elementPickerDialog + .showDialog("Select the package to generate from", null, type.UMLPackage) + .then(function({ buttonId, returnValue }) { + if (buttonId === "ok") { + if (returnValue instanceof type.Project || returnValue instanceof type.UMLPackage) { + base = returnValue; + openFolder(base, path, options); + } else { + app.dialogs.showErrorDialog("Please select the project or a package"); + } + } + }); + } else { + openFolder(base, path, options); + } +} + +/** + * Popup PreferenceDialog with Java Preference Schema + */ +function _handleConfigure() { + app.commands.execute("application:preferences", "graphql"); +} + +// Handles show/hide actions +function show() { + graphqlPanel.show(); + $button.addClass("selected"); + updateMenus(); + app.preferences.set(PREFERENCE_KEY, true); +} + +function hide() { + graphqlPanel.hide(); + $button.removeClass("selected"); + updateMenus(); + app.preferences.set(PREFERENCE_KEY, false); +} + +function _handleTogglePreview() { + if (graphqlPanel.isVisible()) { + hide(); + } else { + show(); + } +} + +function _handleAbout() { + AboutDialog.showDialog(); +} + +function setCurrentElement(elem) { + _currentElement = elem; + const options = getGenOptions(); + const gql_code = codeGenerator.generateString(elem, options); + document.getElementById("graphqleditable").innerHTML = gql_code; +} +function init() { + $graphqlPanel = $(graphqlPanelTemplate); + const $close = $graphqlPanel.find(".close"); + $close.click(function() { + hide(); + }); + graphqlPanel = app.panelManager.createBottomPanel("?", $graphqlPanel, 29); + + app.commands.register(CMD_GENERATE, _handleGenerate); + app.commands.register(CMD_CONFIGURE, _handleConfigure); + app.commands.register(CMD_TOGGLE_PREVIEW, _handleTogglePreview); + app.commands.register(CMD_ABOUT, _handleAbout); + + $("#toolbar .buttons").append($button); + $button.click(function() { + app.commands.execute(CMD_TOGGLE_PREVIEW); + }); + + // Load Preference + const visible = app.preferences.get(PREFERENCE_KEY); + if (visible === true) { + show(); + } else { + hide(); + } + + // Handler for selectionChanged event + app.selections.on("selectionChanged", function(models, views) { + setCurrentElement(models.length > 0 ? models[0] : null); + }); + + // Handlers for element updated event + app.repository.on("updated", function(event, elems) { + if (elems && elems.length === 1 && elems[0] !== _currentElement) { + setCurrentElement(elems[0]); + } + }); +} + +exports.init = init; diff --git a/menus/menu.json b/menus/menu.json new file mode 100644 index 0000000..b1c21f4 --- /dev/null +++ b/menus/menu.json @@ -0,0 +1,32 @@ +{ + "menu": [ + { + "id": "tools", + "submenu": [ + { + "label": "GraphQL", + "id": "tools.graphql", + "submenu": [ + { "label": "Generate IDL...", "id": "tools.graphql.generate", "command": "graphql:generate" }, + { "type": "separator" }, + { "label": "Configure", "id": "tools.graphql.configure", "command": "graphql:configure" }, + { "label": "About", "id": "tools.graphql.about", "command": "graphql:about" } + + ] + } + ] + }, + { + "id": "view", + "submenu": [ + { "type": "separator" }, + { + "label": "GraphQL Preview", + "id": "view.graphql-view", + "type": "checkbox", + "command": "graphql:toggle.preview" + } + ] + } + ] +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..1cd6149 --- /dev/null +++ b/package.json @@ -0,0 +1,18 @@ +{ + "name": "orefalo.staruml-graphql", + "title": "GraphQL extension for StarUML", + "version": "3.0.0", + "description": "GraphQL IDL schema generation for StarUML", + "homepage": "https://github.com/orefalo/staruml3-graphql", + "issues": "https://github.com/orefalo/staruml3-graphql/issues", + "keywords": ["GraphQL", "UML", "staruml", "Modeling"], + "author": { + "name": "Olivier Refalo", + "email": "orefalo@yahoo.com", + "url": "https://github.com/orefalo" + }, + "license": "GPLv3", + "engines": { + "staruml": ">=3.0.0" + } +} \ No newline at end of file diff --git a/preferences/preference.json b/preferences/preference.json new file mode 100644 index 0000000..a5d5b40 --- /dev/null +++ b/preferences/preference.json @@ -0,0 +1,33 @@ +{ + "id": "graphql", + "name": "GraphQL", + "schema": { + "graphql.gen": { + "text": "GraphQL Code Generation", + "type": "section" + }, + "graphql.gen.idlDoc": { + "text": "IDL Comments", + "description": "Generate comments from Element's documentation.", + "type": "check", + "default": true + }, + "graphql.gen.indentSpaces": { + "text": "Indent Spaces", + "description": "Number of spaces for line indentation.", + "type": "number", + "default": 4 + }, + + "graphql.debug": { + "text": "Debug", + "type": "section" + }, + "graphql.debug.status": { + "text": "Debug on console", + "description": "Output debug information on Console.", + "type": "check", + "default": false + } + } +} diff --git a/stylesheets/icon_graphql.sketch b/stylesheets/icon_graphql.sketch new file mode 100644 index 0000000..65006eb Binary files /dev/null and b/stylesheets/icon_graphql.sketch differ diff --git a/stylesheets/icon_graphql.svg b/stylesheets/icon_graphql.svg new file mode 100644 index 0000000..c549895 --- /dev/null +++ b/stylesheets/icon_graphql.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/stylesheets/snapcore.svg b/stylesheets/snapcore.svg new file mode 100644 index 0000000..ca33d1e --- /dev/null +++ b/stylesheets/snapcore.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/stylesheets/styles.css b/stylesheets/styles.css new file mode 100644 index 0000000..f164c2e --- /dev/null +++ b/stylesheets/styles.css @@ -0,0 +1,37 @@ +#toolbar-graphql { + background-color: transparent; + background-image: url("icon_graphql.svg"); + background-position: 0 0; + background-repeat: no-repeat; + background-clip: content-box; +} +#toolbar-graphql.selected { + background-position: -24px 0; +} +#graphql-preview .toolbar { + height: 35px; +} +#graphql-preview .title { + padding-top: 8px; +} +#graphqleditable { + overflow: auto; + padding: 2px; + height: 100%; + width: 100%; + background-color: inherit; + text-shadow: none; + outline-color: transparent; + outline-style: none; +} + +#snapcore { + background-color: transparent; + background-image: url("snapcore.svg"); + background-position: 0 0; + background-repeat: no-repeat; + background-clip: content-box; + margin: 2em; + width: 140px; + height: 91px; +} diff --git a/test/Pagination.mdj b/test/Pagination.mdj new file mode 100644 index 0000000..ac66326 --- /dev/null +++ b/test/Pagination.mdj @@ -0,0 +1,4341 @@ +{ + "_type": "Project", + "_id": "AAAAAAFF+h6SjaM2Hec=", + "name": "Untitled", + "ownedElements": [ + { + "_type": "UMLModel", + "_id": "AAAAAAFF+qBWK6M3Z8Y=", + "_parent": { + "$ref": "AAAAAAFF+h6SjaM2Hec=" + }, + "name": "Model", + "ownedElements": [ + { + "_type": "UMLClassDiagram", + "_id": "AAAAAAFF+qBtyKM79qY=", + "_parent": { + "$ref": "AAAAAAFF+qBWK6M3Z8Y=" + }, + "name": "Main", + "visible": true, + "defaultDiagram": true, + "ownedViews": [ + { + "_type": "UMLClassView", + "_id": "AAAAAAFbqrAvHqL/T98=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAFbqrAvG6L9yH8=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbqrAvH6MAKrU=", + "_parent": { + "$ref": "AAAAAAFbqrAvHqL/T98=" + }, + "model": { + "$ref": "AAAAAAFbqrAvG6L9yH8=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbqrAvH6MBd9o=", + "_parent": { + "$ref": "AAAAAAFbqrAvH6MAKrU=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 48, + "top": -192, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbqrAvIKMC64I=", + "_parent": { + "$ref": "AAAAAAFbqrAvH6MAKrU=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 229, + "top": 55, + "width": 129, + "height": 13, + "autoResize": false, + "underline": false, + "text": "MasterEntity", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbqrAvIKMDa6w=", + "_parent": { + "$ref": "AAAAAAFbqrAvH6MAKrU=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 48, + "top": -192, + "width": 73, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from Model)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbqrAvIKMEwdY=", + "_parent": { + "$ref": "AAAAAAFbqrAvH6MAKrU=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 48, + "top": -192, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 224, + "top": 48, + "width": 139, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbqrAvH6MBd9o=" + }, + "nameLabel": { + "$ref": "AAAAAAFbqrAvIKMC64I=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbqrAvIKMDa6w=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbqrAvIKMEwdY=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbqrAvIKMF6hs=", + "_parent": { + "$ref": "AAAAAAFbqrAvHqL/T98=" + }, + "model": { + "$ref": "AAAAAAFbqrAvG6L9yH8=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFbqrrhD7Meytk=", + "_parent": { + "$ref": "AAAAAAFbqrAvIKMF6hs=" + }, + "model": { + "$ref": "AAAAAAFbqrrg4bMbtIk=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 229, + "top": 78, + "width": 129, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+someMasterAttribute", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 224, + "top": 73, + "width": 139, + "height": 23, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbqrAvIaMGZ0Y=", + "_parent": { + "$ref": "AAAAAAFbqrAvHqL/T98=" + }, + "model": { + "$ref": "AAAAAAFbqrAvG6L9yH8=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 224, + "top": 83, + "width": 87, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbqrAvIqMHzMw=", + "_parent": { + "$ref": "AAAAAAFbqrAvHqL/T98=" + }, + "model": { + "$ref": "AAAAAAFbqrAvG6L9yH8=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 24, + "top": -96, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbqrAvIqMIShc=", + "_parent": { + "$ref": "AAAAAAFbqrAvHqL/T98=" + }, + "model": { + "$ref": "AAAAAAFbqrAvG6L9yH8=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 24, + "top": -96, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 224, + "top": 48, + "width": 139, + "height": 48, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbqrAvH6MAKrU=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": true, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbqrAvIKMF6hs=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbqrAvIaMGZ0Y=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbqrAvIqMHzMw=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbqrAvIqMIShc=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFbqrDQxKMqU9Y=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAFbqrDQxKMoQC4=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbqrDQxaMrNao=", + "_parent": { + "$ref": "AAAAAAFbqrDQxKMqU9Y=" + }, + "model": { + "$ref": "AAAAAAFbqrDQxKMoQC4=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbqrDQxaMskso=", + "_parent": { + "$ref": "AAAAAAFbqrDQxaMrNao=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -80, + "top": 208, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbqrDQxaMts4A=", + "_parent": { + "$ref": "AAAAAAFbqrDQxaMrNao=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 389, + "top": 279, + "width": 105, + "height": 13, + "autoResize": false, + "underline": false, + "text": "SlaveConnection", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbqrDQxaMurG0=", + "_parent": { + "$ref": "AAAAAAFbqrDQxaMrNao=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -80, + "top": 208, + "width": 73, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from Model)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbqrDQxaMvwlk=", + "_parent": { + "$ref": "AAAAAAFbqrDQxaMrNao=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -80, + "top": 208, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 384, + "top": 272, + "width": 115, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbqrDQxaMskso=" + }, + "nameLabel": { + "$ref": "AAAAAAFbqrDQxaMts4A=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbqrDQxaMurG0=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbqrDQxaMvwlk=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbqrDQxaMwgsw=", + "_parent": { + "$ref": "AAAAAAFbqrDQxKMqU9Y=" + }, + "model": { + "$ref": "AAAAAAFbqrDQxKMoQC4=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFbqrYrEKgPnbc=", + "_parent": { + "$ref": "AAAAAAFbqrDQxaMwgsw=" + }, + "model": { + "$ref": "AAAAAAFbqrYq3qgM0bU=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 389, + "top": 302, + "width": 105, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+totalCount: Int", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 384, + "top": 297, + "width": 115, + "height": 23, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbqrDQxaMxWXw=", + "_parent": { + "$ref": "AAAAAAFbqrDQxKMqU9Y=" + }, + "model": { + "$ref": "AAAAAAFbqrDQxKMoQC4=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 384, + "top": 320, + "width": 115, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbqrDQxqMycHQ=", + "_parent": { + "$ref": "AAAAAAFbqrDQxKMqU9Y=" + }, + "model": { + "$ref": "AAAAAAFbqrDQxKMoQC4=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -40, + "top": 104, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbqrDQxqMz4Oc=", + "_parent": { + "$ref": "AAAAAAFbqrDQxKMqU9Y=" + }, + "model": { + "$ref": "AAAAAAFbqrDQxKMoQC4=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -40, + "top": 104, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 384, + "top": 272, + "width": 115, + "height": 58, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbqrDQxaMrNao=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": true, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbqrDQxaMwgsw=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbqrDQxaMxWXw=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbqrDQxqMycHQ=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbqrDQxqMz4Oc=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFbqrDvXKNUtHA=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAFbqrDvW6NSx50=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbqrDvXKNVh3g=", + "_parent": { + "$ref": "AAAAAAFbqrDvXKNUtHA=" + }, + "model": { + "$ref": "AAAAAAFbqrDvW6NSx50=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbqrDvXKNWzsc=", + "_parent": { + "$ref": "AAAAAAFbqrDvXKNVh3g=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 160, + "top": 208, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbqrDvXKNXsCw=", + "_parent": { + "$ref": "AAAAAAFbqrDvXKNVh3g=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 653, + "top": 167, + "width": 180, + "height": 13, + "autoResize": false, + "underline": false, + "text": "PageInfo", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbqrDvXKNYLlM=", + "_parent": { + "$ref": "AAAAAAFbqrDvXKNVh3g=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 160, + "top": 208, + "width": 73, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from Model)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbqrDvXKNZw5I=", + "_parent": { + "$ref": "AAAAAAFbqrDvXKNVh3g=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 160, + "top": 208, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 648, + "top": 160, + "width": 190, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbqrDvXKNWzsc=" + }, + "nameLabel": { + "$ref": "AAAAAAFbqrDvXKNXsCw=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbqrDvXKNYLlM=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbqrDvXKNZw5I=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbqrDvXKNapTw=", + "_parent": { + "$ref": "AAAAAAFbqrDvXKNUtHA=" + }, + "model": { + "$ref": "AAAAAAFbqrDvW6NSx50=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFbqrSECKV4qXo=", + "_parent": { + "$ref": "AAAAAAFbqrDvXKNapTw=" + }, + "model": { + "$ref": "AAAAAAFbqrSD2KV1NVg=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 653, + "top": 190, + "width": 180, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+hasNextPage: Boolean[1]", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFbqrSVs6WupJ4=", + "_parent": { + "$ref": "AAAAAAFbqrDvXKNapTw=" + }, + "model": { + "$ref": "AAAAAAFbqrSVg6Wr9Aw=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 653, + "top": 205, + "width": 180, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+hasPreviousPage: Boolean[1]", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFbqrSeUKXk4DM=", + "_parent": { + "$ref": "AAAAAAFbqrDvXKNapTw=" + }, + "model": { + "$ref": "AAAAAAFbqrSeIKXhQ/4=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 653, + "top": 220, + "width": 180, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+startCursor", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFbqrSmp6Yab2w=", + "_parent": { + "$ref": "AAAAAAFbqrDvXKNapTw=" + }, + "model": { + "$ref": "AAAAAAFbqrSmeaYXFA8=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 653, + "top": 235, + "width": 180, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+endCursor", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 648, + "top": 185, + "width": 190, + "height": 68, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbqrDvXKNbdkM=", + "_parent": { + "$ref": "AAAAAAFbqrDvXKNUtHA=" + }, + "model": { + "$ref": "AAAAAAFbqrDvW6NSx50=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 648, + "top": 253, + "width": 175, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbqrDvXKNcknU=", + "_parent": { + "$ref": "AAAAAAFbqrDvXKNUtHA=" + }, + "model": { + "$ref": "AAAAAAFbqrDvW6NSx50=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 80, + "top": 104, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbqrDvXKNdEk4=", + "_parent": { + "$ref": "AAAAAAFbqrDvXKNUtHA=" + }, + "model": { + "$ref": "AAAAAAFbqrDvW6NSx50=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 80, + "top": 104, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 648, + "top": 160, + "width": 190, + "height": 103, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbqrDvXKNVh3g=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": true, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbqrDvXKNapTw=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbqrDvXKNbdkM=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbqrDvXKNcknU=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbqrDvXKNdEk4=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFbqrHqW6OEQSM=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAFbqrHqWqOCWfI=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbqrHqXKOFexU=", + "_parent": { + "$ref": "AAAAAAFbqrHqW6OEQSM=" + }, + "model": { + "$ref": "AAAAAAFbqrHqWqOCWfI=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbqrHqXKOGiB4=", + "_parent": { + "$ref": "AAAAAAFbqrHqXKOFexU=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 48, + "top": 288, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbqrHqXaOHB68=", + "_parent": { + "$ref": "AAAAAAFbqrHqXKOFexU=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 573, + "top": 487, + "width": 66, + "height": 13, + "autoResize": false, + "underline": false, + "text": "SlaveEdge", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbqrHqXaOImEM=", + "_parent": { + "$ref": "AAAAAAFbqrHqXKOFexU=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 48, + "top": 288, + "width": 73, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from Model)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbqrHqXaOJSIc=", + "_parent": { + "$ref": "AAAAAAFbqrHqXKOFexU=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 48, + "top": 288, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 568, + "top": 480, + "width": 76, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbqrHqXKOGiB4=" + }, + "nameLabel": { + "$ref": "AAAAAAFbqrHqXaOHB68=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbqrHqXaOImEM=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbqrHqXaOJSIc=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbqrHqXaOKFps=", + "_parent": { + "$ref": "AAAAAAFbqrHqW6OEQSM=" + }, + "model": { + "$ref": "AAAAAAFbqrHqWqOCWfI=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFbqrgfYquVlLE=", + "_parent": { + "$ref": "AAAAAAFbqrHqXaOKFps=" + }, + "model": { + "$ref": "AAAAAAFbqrgfM6uSWIs=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 573, + "top": 510, + "width": 66, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+cursor[1]", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 568, + "top": 505, + "width": 76, + "height": 23, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbqrHqXaOLofQ=", + "_parent": { + "$ref": "AAAAAAFbqrHqW6OEQSM=" + }, + "model": { + "$ref": "AAAAAAFbqrHqWqOCWfI=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 568, + "top": 528, + "width": 76, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbqrHqXqOMD8E=", + "_parent": { + "$ref": "AAAAAAFbqrHqW6OEQSM=" + }, + "model": { + "$ref": "AAAAAAFbqrHqWqOCWfI=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 24, + "top": 144, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbqrHqXqONrEk=", + "_parent": { + "$ref": "AAAAAAFbqrHqW6OEQSM=" + }, + "model": { + "$ref": "AAAAAAFbqrHqWqOCWfI=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 24, + "top": 144, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 568, + "top": 480, + "width": 76, + "height": 58, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbqrHqXKOFexU=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": true, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbqrHqXaOKFps=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbqrHqXaOLofQ=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbqrHqXqOMD8E=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbqrHqXqONrEk=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFbqrKkcaQ1NV4=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAFbqrKkcKQz4Ug=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbqrKkcqQ2dM4=", + "_parent": { + "$ref": "AAAAAAFbqrKkcaQ1NV4=" + }, + "model": { + "$ref": "AAAAAAFbqrKkcKQz4Ug=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbqrKkcqQ3cu8=", + "_parent": { + "$ref": "AAAAAAFbqrKkcqQ2dM4=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -768, + "top": 80, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbqrKkc6Q49iA=", + "_parent": { + "$ref": "AAAAAAFbqrKkcqQ2dM4=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 253, + "top": 495, + "width": 123, + "height": 13, + "autoResize": false, + "underline": false, + "text": "SlaveEntity", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbqrKkc6Q5Qis=", + "_parent": { + "$ref": "AAAAAAFbqrKkcqQ2dM4=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -768, + "top": 80, + "width": 73, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from Model)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbqrKkdKQ6Q+s=", + "_parent": { + "$ref": "AAAAAAFbqrKkcqQ2dM4=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -768, + "top": 80, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 248, + "top": 488, + "width": 133, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbqrKkcqQ3cu8=" + }, + "nameLabel": { + "$ref": "AAAAAAFbqrKkc6Q49iA=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbqrKkc6Q5Qis=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbqrKkdKQ6Q+s=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbqrKkdKQ7+34=", + "_parent": { + "$ref": "AAAAAAFbqrKkcaQ1NV4=" + }, + "model": { + "$ref": "AAAAAAFbqrKkcKQz4Ug=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFbqrs9GrRwLWs=", + "_parent": { + "$ref": "AAAAAAFbqrKkdKQ7+34=" + }, + "model": { + "$ref": "AAAAAAFbqrs85rRtyOI=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 253, + "top": 518, + "width": 123, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+someEntityAttribute", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 248, + "top": 513, + "width": 133, + "height": 23, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbqrKkdaQ8T60=", + "_parent": { + "$ref": "AAAAAAFbqrKkcaQ1NV4=" + }, + "model": { + "$ref": "AAAAAAFbqrKkcKQz4Ug=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 248, + "top": 523, + "width": 80, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbqrKkdaQ9caw=", + "_parent": { + "$ref": "AAAAAAFbqrKkcaQ1NV4=" + }, + "model": { + "$ref": "AAAAAAFbqrKkcKQz4Ug=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -384, + "top": 40, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbqrKkdqQ+3GM=", + "_parent": { + "$ref": "AAAAAAFbqrKkcaQ1NV4=" + }, + "model": { + "$ref": "AAAAAAFbqrKkcKQz4Ug=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -384, + "top": 40, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 248, + "top": 488, + "width": 133, + "height": 48, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbqrKkcqQ2dM4=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": true, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbqrKkdKQ7+34=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbqrKkdaQ8T60=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbqrKkdaQ9caw=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbqrKkdqQ+3GM=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAFbqrL0QaRkU1o=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAFbqrL0P6Rg3dc=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqrL0QqRlkAE=", + "_parent": { + "$ref": "AAAAAAFbqrL0QaRkU1o=" + }, + "model": { + "$ref": "AAAAAAFbqrL0P6Rg3dc=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 357, + "top": 147, + "width": 138, + "height": 13, + "autoResize": false, + "alpha": 1.4443465774372615, + "distance": 68.15423684555495, + "hostEdge": { + "$ref": "AAAAAAFbqrL0QaRkU1o=" + }, + "edgePosition": 1, + "underline": false, + "text": "+slaveEntityConnection", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqrL0Q6Rm7p4=", + "_parent": { + "$ref": "AAAAAAFbqrL0QaRkU1o=" + }, + "model": { + "$ref": "AAAAAAFbqrL0P6Rg3dc=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 390, + "top": 160, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbqrL0QaRkU1o=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqrL0RKRnZAQ=", + "_parent": { + "$ref": "AAAAAAFbqrL0QaRkU1o=" + }, + "model": { + "$ref": "AAAAAAFbqrL0P6Rg3dc=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 352, + "top": 185, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbqrL0QaRkU1o=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqrL0RKRoRAw=", + "_parent": { + "$ref": "AAAAAAFbqrL0QaRkU1o=" + }, + "model": { + "$ref": "AAAAAAFbqrL0P6RhzKs=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 335, + "top": 103, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbqrL0QaRkU1o=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqrL0RKRpOG8=", + "_parent": { + "$ref": "AAAAAAFbqrL0QaRkU1o=" + }, + "model": { + "$ref": "AAAAAAFbqrL0P6RhzKs=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 348, + "top": 98, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFbqrL0QaRkU1o=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqrL0RKRqPgg=", + "_parent": { + "$ref": "AAAAAAFbqrL0QaRkU1o=" + }, + "model": { + "$ref": "AAAAAAFbqrL0P6RhzKs=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 310, + "top": 114, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFbqrL0QaRkU1o=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqrL0RKRryMQ=", + "_parent": { + "$ref": "AAAAAAFbqrL0QaRkU1o=" + }, + "model": { + "$ref": "AAAAAAFbqrL0P6RiN6U=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 420, + "top": 235, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbqrL0QaRkU1o=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqrL0RKRsf48=", + "_parent": { + "$ref": "AAAAAAFbqrL0QaRkU1o=" + }, + "model": { + "$ref": "AAAAAAFbqrL0P6RiN6U=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 430, + "top": 225, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFbqrL0QaRkU1o=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqrL0RKRtNik=", + "_parent": { + "$ref": "AAAAAAFbqrL0QaRkU1o=" + }, + "model": { + "$ref": "AAAAAAFbqrL0P6RiN6U=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 388, + "top": 253, + "width": 22, + "height": 13, + "autoResize": false, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFbqrL0QaRkU1o=" + }, + "edgePosition": 0, + "underline": false, + "text": "0..1", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFbqrL0RKRuCBo=", + "_parent": { + "$ref": "AAAAAAFbqrL0QaRkU1o=" + }, + "model": { + "$ref": "AAAAAAFbqrL0P6RhzKs=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 0, + "top": 0, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFbqrL0RaRvVvQ=", + "_parent": { + "$ref": "AAAAAAFbqrL0QaRkU1o=" + }, + "model": { + "$ref": "AAAAAAFbqrL0P6RiN6U=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 0, + "top": 0, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFbqrDQxKMqU9Y=" + }, + "tail": { + "$ref": "AAAAAAFbqrAvHqL/T98=" + }, + "lineStyle": 1, + "points": "309:96;422:271", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFbqrL0QqRlkAE=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFbqrL0Q6Rm7p4=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbqrL0RKRnZAQ=" + }, + "showMultiplicity": true, + "showType": true, + "tailRoleNameLabel": { + "$ref": "AAAAAAFbqrL0RKRoRAw=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAFbqrL0RKRpOG8=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAFbqrL0RKRqPgg=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAFbqrL0RKRryMQ=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAFbqrL0RKRsf48=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAFbqrL0RKRtNik=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAFbqrL0RKRuCBo=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAFbqrL0RaRvVvQ=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAFbqrRKMaTdQgY=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAFbqrRKMaTZ10c=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqrRKMqTe3wA=", + "_parent": { + "$ref": "AAAAAAFbqrRKMaTdQgY=" + }, + "model": { + "$ref": "AAAAAAFbqrRKMaTZ10c=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 519, + "top": 247, + "width": 58, + "height": 13, + "autoResize": false, + "alpha": -3.703576833613928, + "distance": 25.96150997149434, + "hostEdge": { + "$ref": "AAAAAAFbqrRKMaTdQgY=" + }, + "edgePosition": 1, + "underline": false, + "text": "+pageInfo", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqrRKMqTfkWg=", + "_parent": { + "$ref": "AAAAAAFbqrRKMaTdQgY=" + }, + "model": { + "$ref": "AAAAAAFbqrRKMaTZ10c=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 564, + "top": 226, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbqrRKMaTdQgY=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqrRKMqTgLpU=", + "_parent": { + "$ref": "AAAAAAFbqrRKMaTdQgY=" + }, + "model": { + "$ref": "AAAAAAFbqrRKMaTZ10c=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 577, + "top": 269, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbqrRKMaTdQgY=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqrRKMqThIgA=", + "_parent": { + "$ref": "AAAAAAFbqrRKMaTdQgY=" + }, + "model": { + "$ref": "AAAAAAFbqrRKMaTaaMY=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 519, + "top": 255, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbqrRKMaTdQgY=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqrRKMqTi7v0=", + "_parent": { + "$ref": "AAAAAAFbqrRKMaTdQgY=" + }, + "model": { + "$ref": "AAAAAAFbqrRKMaTaaMY=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 518, + "top": 241, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFbqrRKMaTdQgY=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqrRKMqTjwlc=", + "_parent": { + "$ref": "AAAAAAFbqrRKMaTdQgY=" + }, + "model": { + "$ref": "AAAAAAFbqrRKMaTaaMY=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 523, + "top": 282, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFbqrRKMaTdQgY=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqrRKMqTkBpk=", + "_parent": { + "$ref": "AAAAAAFbqrRKMaTdQgY=" + }, + "model": { + "$ref": "AAAAAAFbqrRKMaTb2Qw=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 617, + "top": 226, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbqrRKMaTdQgY=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqrRKMqTlJSk=", + "_parent": { + "$ref": "AAAAAAFbqrRKMaTdQgY=" + }, + "model": { + "$ref": "AAAAAAFbqrRKMaTb2Qw=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 611, + "top": 213, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFbqrRKMaTdQgY=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqrRKMqTmdWA=", + "_parent": { + "$ref": "AAAAAAFbqrRKMaTdQgY=" + }, + "model": { + "$ref": "AAAAAAFbqrRKMaTb2Qw=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 626, + "top": 251, + "width": 7, + "height": 13, + "autoResize": false, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFbqrRKMaTdQgY=" + }, + "edgePosition": 0, + "underline": false, + "text": "1", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFbqrRKMqTnI7w=", + "_parent": { + "$ref": "AAAAAAFbqrRKMaTdQgY=" + }, + "model": { + "$ref": "AAAAAAFbqrRKMaTaaMY=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 0, + "top": 0, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFbqrRKMqTozvY=", + "_parent": { + "$ref": "AAAAAAFbqrRKMaTdQgY=" + }, + "model": { + "$ref": "AAAAAAFbqrRKMaTb2Qw=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 0, + "top": 0, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFbqrDvXKNUtHA=" + }, + "tail": { + "$ref": "AAAAAAFbqrDQxKMqU9Y=" + }, + "lineStyle": 1, + "points": "499:283;647:239", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFbqrRKMqTe3wA=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFbqrRKMqTfkWg=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbqrRKMqTgLpU=" + }, + "showMultiplicity": true, + "showType": true, + "tailRoleNameLabel": { + "$ref": "AAAAAAFbqrRKMqThIgA=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAFbqrRKMqTi7v0=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAFbqrRKMqTjwlc=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAFbqrRKMqTkBpk=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAFbqrRKMqTlJSk=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAFbqrRKMqTmdWA=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAFbqrRKMqTnI7w=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAFbqrRKMqTozvY=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAFbqrVsMKdC/t0=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAFbqrVsMKc+feo=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqrVsMadDBss=", + "_parent": { + "$ref": "AAAAAAFbqrVsMKdC/t0=" + }, + "model": { + "$ref": "AAAAAAFbqrVsMKc+feo=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 520, + "top": 376, + "width": 43, + "height": 13, + "autoResize": false, + "alpha": 1.789304969213385, + "distance": 28.42534080710379, + "hostEdge": { + "$ref": "AAAAAAFbqrVsMKdC/t0=" + }, + "edgePosition": 1, + "underline": false, + "text": "+edges", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqrVsMadEJvs=", + "_parent": { + "$ref": "AAAAAAFbqrVsMKdC/t0=" + }, + "model": { + "$ref": "AAAAAAFbqrVsMKc+feo=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 546, + "top": 379, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbqrVsMKdC/t0=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqrVsMadFZAA=", + "_parent": { + "$ref": "AAAAAAFbqrVsMKdC/t0=" + }, + "model": { + "$ref": "AAAAAAFbqrVsMKc+feo=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 511, + "top": 407, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbqrVsMKdC/t0=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqrVsMadG7t4=", + "_parent": { + "$ref": "AAAAAAFbqrVsMKdC/t0=" + }, + "model": { + "$ref": "AAAAAAFbqrVsMKc/oAA=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 492, + "top": 335, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbqrVsMKdC/t0=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqrVsMadHL/8=", + "_parent": { + "$ref": "AAAAAAFbqrVsMKdC/t0=" + }, + "model": { + "$ref": "AAAAAAFbqrVsMKc/oAA=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 504, + "top": 328, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFbqrVsMKdC/t0=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqrVsMadIKzk=", + "_parent": { + "$ref": "AAAAAAFbqrVsMKdC/t0=" + }, + "model": { + "$ref": "AAAAAAFbqrVsMKc/oAA=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 468, + "top": 348, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFbqrVsMKdC/t0=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqrVsMadJPPs=", + "_parent": { + "$ref": "AAAAAAFbqrVsMKdC/t0=" + }, + "model": { + "$ref": "AAAAAAFbqrVsMKdAwxs=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 577, + "top": 443, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbqrVsMKdC/t0=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqrVsMadKxCg=", + "_parent": { + "$ref": "AAAAAAFbqrVsMKdC/t0=" + }, + "model": { + "$ref": "AAAAAAFbqrVsMKdAwxs=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 586, + "top": 433, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFbqrVsMKdC/t0=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqrVsMadLfCg=", + "_parent": { + "$ref": "AAAAAAFbqrVsMKdC/t0=" + }, + "model": { + "$ref": "AAAAAAFbqrVsMKdAwxs=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 548, + "top": 463, + "width": 20, + "height": 13, + "autoResize": false, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFbqrVsMKdC/t0=" + }, + "edgePosition": 0, + "underline": false, + "text": "0..*", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFbqrVsMadMWdk=", + "_parent": { + "$ref": "AAAAAAFbqrVsMKdC/t0=" + }, + "model": { + "$ref": "AAAAAAFbqrVsMKc/oAA=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 0, + "top": 0, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFbqrVsMqdNXNc=", + "_parent": { + "$ref": "AAAAAAFbqrVsMKdC/t0=" + }, + "model": { + "$ref": "AAAAAAFbqrVsMKdAwxs=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 0, + "top": 0, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFbqrHqW6OEQSM=" + }, + "tail": { + "$ref": "AAAAAAFbqrDQxKMqU9Y=" + }, + "lineStyle": 1, + "points": "465:330;582:479", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFbqrVsMadDBss=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFbqrVsMadEJvs=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbqrVsMadFZAA=" + }, + "showMultiplicity": true, + "showType": true, + "tailRoleNameLabel": { + "$ref": "AAAAAAFbqrVsMadG7t4=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAFbqrVsMadHL/8=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAFbqrVsMadIKzk=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAFbqrVsMadJPPs=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAFbqrVsMadKxCg=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAFbqrVsMadLfCg=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAFbqrVsMadMWdk=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAFbqrVsMqdNXNc=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAFbqrf2G6qVHvA=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAFbqrf2GqqRY/0=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqrf2G6qWgaU=", + "_parent": { + "$ref": "AAAAAAFbqrf2G6qVHvA=" + }, + "model": { + "$ref": "AAAAAAFbqrf2GqqRY/0=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 463, + "top": 515, + "width": 36, + "height": 13, + "autoResize": false, + "alpha": 2.0709577949098668, + "distance": 14.866068747318506, + "hostEdge": { + "$ref": "AAAAAAFbqrf2G6qVHvA=" + }, + "edgePosition": 1, + "underline": false, + "text": "+node", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqrf2G6qX6yU=", + "_parent": { + "$ref": "AAAAAAFbqrf2G6qVHvA=" + }, + "model": { + "$ref": "AAAAAAFbqrf2GqqRY/0=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 474, + "top": 532, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbqrf2G6qVHvA=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqrf2HKqYgCo=", + "_parent": { + "$ref": "AAAAAAFbqrf2G6qVHvA=" + }, + "model": { + "$ref": "AAAAAAFbqrf2GqqRY/0=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 473, + "top": 488, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbqrf2G6qVHvA=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqrf2HKqZd3o=", + "_parent": { + "$ref": "AAAAAAFbqrf2G6qVHvA=" + }, + "model": { + "$ref": "AAAAAAFbqrf2GqqSHEA=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 541, + "top": 517, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbqrf2G6qVHvA=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqrf2HKqaPvY=", + "_parent": { + "$ref": "AAAAAAFbqrf2G6qVHvA=" + }, + "model": { + "$ref": "AAAAAAFbqrf2GqqSHEA=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 539, + "top": 530, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFbqrf2G6qVHvA=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqrf2HKqbNoY=", + "_parent": { + "$ref": "AAAAAAFbqrf2G6qVHvA=" + }, + "model": { + "$ref": "AAAAAAFbqrf2GqqSHEA=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 545, + "top": 489, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFbqrf2G6qVHvA=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqrf2HKqc5FQ=", + "_parent": { + "$ref": "AAAAAAFbqrf2G6qVHvA=" + }, + "model": { + "$ref": "AAAAAAFbqrf2G6qTkCE=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 407, + "top": 518, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbqrf2G6qVHvA=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqrf2HKqd3wc=", + "_parent": { + "$ref": "AAAAAAFbqrf2G6qVHvA=" + }, + "model": { + "$ref": "AAAAAAFbqrf2G6qTkCE=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 409, + "top": 531, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFbqrf2G6qVHvA=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqrf2HKqeslA=", + "_parent": { + "$ref": "AAAAAAFbqrf2G6qVHvA=" + }, + "model": { + "$ref": "AAAAAAFbqrf2G6qTkCE=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 402, + "top": 491, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFbqrf2G6qVHvA=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFbqrf2HKqf/n8=", + "_parent": { + "$ref": "AAAAAAFbqrf2G6qVHvA=" + }, + "model": { + "$ref": "AAAAAAFbqrf2GqqSHEA=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 0, + "top": 0, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFbqrf2HKqg2NY=", + "_parent": { + "$ref": "AAAAAAFbqrf2G6qVHvA=" + }, + "model": { + "$ref": "AAAAAAFbqrf2G6qTkCE=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 0, + "top": 0, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFbqrKkcaQ1NV4=" + }, + "tail": { + "$ref": "AAAAAAFbqrHqW6OEQSM=" + }, + "lineStyle": 1, + "points": "567:508;381:510", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFbqrf2G6qWgaU=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFbqrf2G6qX6yU=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbqrf2HKqYgCo=" + }, + "showMultiplicity": true, + "showType": true, + "tailRoleNameLabel": { + "$ref": "AAAAAAFbqrf2HKqZd3o=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAFbqrf2HKqaPvY=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAFbqrf2HKqbNoY=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAFbqrf2HKqc5FQ=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAFbqrf2HKqd3wc=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAFbqrf2HKqeslA=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAFbqrf2HKqf/n8=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAFbqrf2HKqg2NY=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAFbqri6Ba0ecps=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAFbqri6BK0aA4k=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqri6Ba0fsEg=", + "_parent": { + "$ref": "AAAAAAFbqri6Ba0ecps=" + }, + "model": { + "$ref": "AAAAAAFbqri6BK0aA4k=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 323, + "top": 392, + "width": 46, + "height": 13, + "autoResize": false, + "alpha": -1.3525168351494459, + "distance": 30.14962686336267, + "hostEdge": { + "$ref": "AAAAAAFbqri6Ba0ecps=" + }, + "edgePosition": 1, + "underline": false, + "text": "+slaves", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqri6Ba0g4zw=", + "_parent": { + "$ref": "AAAAAAFbqri6Ba0ecps=" + }, + "model": { + "$ref": "AAAAAAFbqri6BK0aA4k=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 400, + "top": 417, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbqri6Ba0ecps=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqri6Ba0h7uI=", + "_parent": { + "$ref": "AAAAAAFbqri6Ba0ecps=" + }, + "model": { + "$ref": "AAAAAAFbqri6BK0aA4k=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 362, + "top": 394, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbqri6Ba0ecps=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqri6Ba0icP0=", + "_parent": { + "$ref": "AAAAAAFbqri6Ba0ecps=" + }, + "model": { + "$ref": "AAAAAAFbqri6BK0bkz8=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 422, + "top": 353, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbqri6Ba0ecps=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqri6Ba0jPXg=", + "_parent": { + "$ref": "AAAAAAFbqri6Ba0ecps=" + }, + "model": { + "$ref": "AAAAAAFbqri6BK0bkz8=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 432, + "top": 362, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFbqri6Ba0ecps=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqri6Ba0ksfk=", + "_parent": { + "$ref": "AAAAAAFbqri6Ba0ecps=" + }, + "model": { + "$ref": "AAAAAAFbqri6BK0bkz8=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 401, + "top": 336, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFbqri6Ba0ecps=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqri6Bq0lj3w=", + "_parent": { + "$ref": "AAAAAAFbqri6Ba0ecps=" + }, + "model": { + "$ref": "AAAAAAFbqri6BK0cRNs=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 354, + "top": 466, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbqri6Ba0ecps=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqri6Bq0m85s=", + "_parent": { + "$ref": "AAAAAAFbqri6Ba0ecps=" + }, + "model": { + "$ref": "AAAAAAFbqri6BK0cRNs=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 366, + "top": 471, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFbqri6Ba0ecps=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbqri6Bq0ncrw=", + "_parent": { + "$ref": "AAAAAAFbqri6Ba0ecps=" + }, + "model": { + "$ref": "AAAAAAFbqri6BK0cRNs=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 318, + "top": 456, + "width": 20, + "height": 13, + "autoResize": false, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFbqri6Ba0ecps=" + }, + "edgePosition": 0, + "underline": false, + "text": "0..*", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFbqri6Bq0o4Sg=", + "_parent": { + "$ref": "AAAAAAFbqri6Ba0ecps=" + }, + "model": { + "$ref": "AAAAAAFbqri6BK0bkz8=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 0, + "top": 0, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFbqri6Bq0piCU=", + "_parent": { + "$ref": "AAAAAAFbqri6Ba0ecps=" + }, + "model": { + "$ref": "AAAAAAFbqri6BK0cRNs=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 0, + "top": 0, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFbqrKkcaQ1NV4=" + }, + "tail": { + "$ref": "AAAAAAFbqrDQxKMqU9Y=" + }, + "lineStyle": 1, + "points": "423:330;328:487", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFbqri6Ba0fsEg=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFbqri6Ba0g4zw=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbqri6Ba0h7uI=" + }, + "showMultiplicity": true, + "showType": true, + "tailRoleNameLabel": { + "$ref": "AAAAAAFbqri6Ba0icP0=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAFbqri6Ba0jPXg=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAFbqri6Ba0ksfk=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAFbqri6Bq0lj3w=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAFbqri6Bq0m85s=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAFbqri6Bq0ncrw=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAFbqri6Bq0o4Sg=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAFbqri6Bq0piCU=" + } + }, + { + "_type": "UMLNoteView", + "_id": "AAAAAAFbquSf+cCoplM=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 544, + "top": 32, + "width": 99, + "height": 116, + "autoResize": false, + "text": "This example demonstrates a typical connection, used to paginate records", + "wordWrap": true + }, + { + "_type": "UMLNoteView", + "_id": "AAAAAAFbquUr+8GAch0=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 208, + "top": 304, + "width": 87, + "height": 90, + "autoResize": false, + "text": "Here slaves is only used to support API exploration.", + "wordWrap": true + } + ] + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFbqrAvG6L9yH8=", + "_parent": { + "$ref": "AAAAAAFF+qBWK6M3Z8Y=" + }, + "name": "MasterEntity", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAFbqrL0P6Rg3dc=", + "_parent": { + "$ref": "AAAAAAFbqrAvG6L9yH8=" + }, + "name": "slaveEntityConnection", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFbqrL0P6RhzKs=", + "_parent": { + "$ref": "AAAAAAFbqrL0P6Rg3dc=" + }, + "reference": { + "$ref": "AAAAAAFbqrAvG6L9yH8=" + }, + "visibility": "public", + "navigable": false, + "aggregation": "none", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFbqrL0P6RiN6U=", + "_parent": { + "$ref": "AAAAAAFbqrL0P6Rg3dc=" + }, + "reference": { + "$ref": "AAAAAAFbqrDQxKMoQC4=" + }, + "visibility": "public", + "navigable": true, + "aggregation": "none", + "multiplicity": "0..1", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "visibility": "public", + "isDerived": false + } + ], + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFbqrrg4bMbtIk=", + "_parent": { + "$ref": "AAAAAAFbqrAvG6L9yH8=" + }, + "name": "someMasterAttribute", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFbqrDQxKMoQC4=", + "_parent": { + "$ref": "AAAAAAFF+qBWK6M3Z8Y=" + }, + "name": "SlaveConnection", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAFbqrRKMaTZ10c=", + "_parent": { + "$ref": "AAAAAAFbqrDQxKMoQC4=" + }, + "name": "pageInfo", + "documentation": "Information to aid in pagination.", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFbqrRKMaTaaMY=", + "_parent": { + "$ref": "AAAAAAFbqrRKMaTZ10c=" + }, + "reference": { + "$ref": "AAAAAAFbqrDQxKMoQC4=" + }, + "visibility": "public", + "navigable": false, + "aggregation": "none", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFbqrRKMaTb2Qw=", + "_parent": { + "$ref": "AAAAAAFbqrRKMaTZ10c=" + }, + "reference": { + "$ref": "AAAAAAFbqrDvW6NSx50=" + }, + "visibility": "public", + "navigable": true, + "aggregation": "none", + "multiplicity": "1", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "visibility": "public", + "isDerived": false + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAFbqrVsMKc+feo=", + "_parent": { + "$ref": "AAAAAAFbqrDQxKMoQC4=" + }, + "name": "edges", + "documentation": "A list of edges.", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFbqrVsMKc/oAA=", + "_parent": { + "$ref": "AAAAAAFbqrVsMKc+feo=" + }, + "reference": { + "$ref": "AAAAAAFbqrDQxKMoQC4=" + }, + "visibility": "public", + "navigable": false, + "aggregation": "none", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFbqrVsMKdAwxs=", + "_parent": { + "$ref": "AAAAAAFbqrVsMKc+feo=" + }, + "reference": { + "$ref": "AAAAAAFbqrHqWqOCWfI=" + }, + "visibility": "public", + "navigable": true, + "aggregation": "none", + "multiplicity": "0..*", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "visibility": "public", + "isDerived": false + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAFbqri6BK0aA4k=", + "_parent": { + "$ref": "AAAAAAFbqrDQxKMoQC4=" + }, + "name": "slaves", + "documentation": "A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } }\" version should be used instead.", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFbqri6BK0bkz8=", + "_parent": { + "$ref": "AAAAAAFbqri6BK0aA4k=" + }, + "reference": { + "$ref": "AAAAAAFbqrDQxKMoQC4=" + }, + "visibility": "public", + "navigable": false, + "aggregation": "none", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFbqri6BK0cRNs=", + "_parent": { + "$ref": "AAAAAAFbqri6BK0aA4k=" + }, + "reference": { + "$ref": "AAAAAAFbqrKkcKQz4Ug=" + }, + "visibility": "public", + "navigable": true, + "aggregation": "none", + "multiplicity": "0..*", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "visibility": "public", + "isDerived": false + } + ], + "documentation": "A connection to a list of entities.", + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFbqrYq3qgM0bU=", + "_parent": { + "$ref": "AAAAAAFbqrDQxKMoQC4=" + }, + "name": "totalCount", + "documentation": "A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to \"first\", then fetch the total count so it could display \"5 of 83\", for example.", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "Int", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFbqrDvW6NSx50=", + "_parent": { + "$ref": "AAAAAAFF+qBWK6M3Z8Y=" + }, + "name": "PageInfo", + "documentation": "Information to aid in pagination.", + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFbqrSD2KV1NVg=", + "_parent": { + "$ref": "AAAAAAFbqrDvW6NSx50=" + }, + "name": "hasNextPage", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "Boolean", + "multiplicity": "1", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + }, + { + "_type": "UMLAttribute", + "_id": "AAAAAAFbqrSVg6Wr9Aw=", + "_parent": { + "$ref": "AAAAAAFbqrDvW6NSx50=" + }, + "name": "hasPreviousPage", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "Boolean", + "multiplicity": "1", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + }, + { + "_type": "UMLAttribute", + "_id": "AAAAAAFbqrSeIKXhQ/4=", + "_parent": { + "$ref": "AAAAAAFbqrDvW6NSx50=" + }, + "name": "startCursor", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + }, + { + "_type": "UMLAttribute", + "_id": "AAAAAAFbqrSmeaYXFA8=", + "_parent": { + "$ref": "AAAAAAFbqrDvW6NSx50=" + }, + "name": "endCursor", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFbqrHqWqOCWfI=", + "_parent": { + "$ref": "AAAAAAFF+qBWK6M3Z8Y=" + }, + "name": "SlaveEdge", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAFbqrf2GqqRY/0=", + "_parent": { + "$ref": "AAAAAAFbqrHqWqOCWfI=" + }, + "name": "node", + "documentation": "The entity at the end of the edge", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFbqrf2GqqSHEA=", + "_parent": { + "$ref": "AAAAAAFbqrf2GqqRY/0=" + }, + "reference": { + "$ref": "AAAAAAFbqrHqWqOCWfI=" + }, + "visibility": "public", + "navigable": false, + "aggregation": "none", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFbqrf2G6qTkCE=", + "_parent": { + "$ref": "AAAAAAFbqrf2GqqRY/0=" + }, + "reference": { + "$ref": "AAAAAAFbqrKkcKQz4Ug=" + }, + "visibility": "public", + "navigable": true, + "aggregation": "none", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "visibility": "public", + "isDerived": false + } + ], + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFbqrgfM6uSWIs=", + "_parent": { + "$ref": "AAAAAAFbqrHqWqOCWfI=" + }, + "name": "cursor", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "", + "multiplicity": "1", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFbqrKkcKQz4Ug=", + "_parent": { + "$ref": "AAAAAAFF+qBWK6M3Z8Y=" + }, + "name": "SlaveEntity", + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFbqrs85rRtyOI=", + "_parent": { + "$ref": "AAAAAAFbqrKkcKQz4Ug=" + }, + "name": "someEntityAttribute", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + } + ], + "visibility": "public" + } + ] +} \ No newline at end of file diff --git a/test/TestProject.mdj b/test/TestProject.mdj new file mode 100644 index 0000000..9cbb3eb --- /dev/null +++ b/test/TestProject.mdj @@ -0,0 +1,25351 @@ +{ + "_type": "Project", + "_id": "AAAAAAFF+h6SjaM2Hec=", + "name": "GraphQL Generation Samples", + "ownedElements": [ + { + "_type": "UMLModel", + "_id": "AAAAAAFF+qBWK6M3Z8Y=", + "_parent": { + "$ref": "AAAAAAFF+h6SjaM2Hec=" + }, + "name": "class_hierarchy", + "ownedElements": [ + { + "_type": "UMLClassDiagram", + "_id": "AAAAAAFF+qBtyKM79qY=", + "_parent": { + "$ref": "AAAAAAFF+qBWK6M3Z8Y=" + }, + "name": "class_hierarchy", + "visible": true, + "defaultDiagram": true, + "ownedViews": [ + { + "_type": "UMLClassView", + "_id": "AAAAAAFbOiEpa2kSCZ8=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAFbOiEpamkQZZw=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbOiEpa2kTATY=", + "_parent": { + "$ref": "AAAAAAFbOiEpa2kSCZ8=" + }, + "model": { + "$ref": "AAAAAAFbOiEpamkQZZw=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbOiEpa2kUciU=", + "_parent": { + "$ref": "AAAAAAFbOiEpa2kTATY=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -944, + "top": -112, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbOiEpbGkVg1s=", + "_parent": { + "$ref": "AAAAAAFbOiEpa2kTATY=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 205, + "top": 71, + "width": 143, + "height": 13, + "autoResize": false, + "underline": false, + "text": "Vehicule", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbOiEpbGkWIk4=", + "_parent": { + "$ref": "AAAAAAFbOiEpa2kTATY=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -944, + "top": -112, + "width": 129, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from class_hierarchy)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbOiEpbGkXxi4=", + "_parent": { + "$ref": "AAAAAAFbOiEpa2kTATY=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -944, + "top": -112, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 200, + "top": 64, + "width": 153, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbOiEpa2kUciU=" + }, + "nameLabel": { + "$ref": "AAAAAAFbOiEpbGkVg1s=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbOiEpbGkWIk4=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbOiEpbGkXxi4=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbOiEpbGkY4v4=", + "_parent": { + "$ref": "AAAAAAFbOiEpa2kSCZ8=" + }, + "model": { + "$ref": "AAAAAAFbOiEpamkQZZw=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFbO+JHi05a3To=", + "_parent": { + "$ref": "AAAAAAFbOiEpbGkY4v4=" + }, + "model": { + "$ref": "AAAAAAFbO+JHX05XxeM=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 205, + "top": 94, + "width": 143, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+id: ID", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 200, + "top": 89, + "width": 153, + "height": 23, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbOiEpbGkZq38=", + "_parent": { + "$ref": "AAAAAAFbOiEpa2kSCZ8=" + }, + "model": { + "$ref": "AAAAAAFbOiEpamkQZZw=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 200, + "top": 112, + "width": 153, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbOiEpbGkac2k=", + "_parent": { + "$ref": "AAAAAAFbOiEpa2kSCZ8=" + }, + "model": { + "$ref": "AAAAAAFbOiEpamkQZZw=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -472, + "top": -56, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbOiEpbWkbCZo=", + "_parent": { + "$ref": "AAAAAAFbOiEpa2kSCZ8=" + }, + "model": { + "$ref": "AAAAAAFbOiEpamkQZZw=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -472, + "top": -56, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 200, + "top": 64, + "width": 153, + "height": 58, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbOiEpa2kTATY=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": false, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbOiEpbGkY4v4=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbOiEpbGkZq38=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbOiEpbGkac2k=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbOiEpbWkbCZo=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFbO99OwE3hJys=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAFbO99Ov03ffeg=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbO99OwU3i2g8=", + "_parent": { + "$ref": "AAAAAAFbO99OwE3hJys=" + }, + "model": { + "$ref": "AAAAAAFbO99Ov03ffeg=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbO99OwU3j05o=", + "_parent": { + "$ref": "AAAAAAFbO99OwU3i2g8=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -528, + "top": 32, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbO99OwU3kICY=", + "_parent": { + "$ref": "AAAAAAFbO99OwU3i2g8=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 293, + "top": 327, + "width": 93, + "height": 13, + "autoResize": false, + "underline": false, + "text": "Car", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbO99OwU3l82Y=", + "_parent": { + "$ref": "AAAAAAFbO99OwU3i2g8=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -528, + "top": 32, + "width": 129, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from class_hierarchy)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbO99Owk3mjJw=", + "_parent": { + "$ref": "AAAAAAFbO99OwU3i2g8=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -528, + "top": 32, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 288, + "top": 320, + "width": 103, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbO99OwU3j05o=" + }, + "nameLabel": { + "$ref": "AAAAAAFbO99OwU3kICY=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbO99OwU3l82Y=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbO99Owk3mjJw=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbO99Owk3nzvk=", + "_parent": { + "$ref": "AAAAAAFbO99OwE3hJys=" + }, + "model": { + "$ref": "AAAAAAFbO99Ov03ffeg=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFbO+TQ0E7kj1w=", + "_parent": { + "$ref": "AAAAAAFbO99Owk3nzvk=" + }, + "model": { + "$ref": "AAAAAAFbO+TQoU7hZIA=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 293, + "top": 350, + "width": 93, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+noOfDoors: Int", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 288, + "top": 345, + "width": 103, + "height": 23, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbO99Owk3ooo0=", + "_parent": { + "$ref": "AAAAAAFbO99OwE3hJys=" + }, + "model": { + "$ref": "AAAAAAFbO99Ov03ffeg=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 288, + "top": 368, + "width": 103, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbO99Owk3p7CI=", + "_parent": { + "$ref": "AAAAAAFbO99OwE3hJys=" + }, + "model": { + "$ref": "AAAAAAFbO99Ov03ffeg=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -264, + "top": 16, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbO99Owk3qFDQ=", + "_parent": { + "$ref": "AAAAAAFbO99OwE3hJys=" + }, + "model": { + "$ref": "AAAAAAFbO99Ov03ffeg=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -264, + "top": 16, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 288, + "top": 320, + "width": 103, + "height": 58, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbO99OwU3i2g8=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": false, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbO99Owk3nzvk=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbO99Owk3ooo0=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbO99Owk3p7CI=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbO99Owk3qFDQ=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFbO99vCk4Lz4w=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAFbO99vCU4JMeI=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbO99vCk4Mq2M=", + "_parent": { + "$ref": "AAAAAAFbO99vCk4Lz4w=" + }, + "model": { + "$ref": "AAAAAAFbO99vCU4JMeI=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbO99vCk4Nn2E=", + "_parent": { + "$ref": "AAAAAAFbO99vCk4Mq2M=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -1200, + "top": 16, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbO99vCk4Oeoo=", + "_parent": { + "$ref": "AAAAAAFbO99vCk4Mq2M=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 77, + "top": 335, + "width": 157, + "height": 13, + "autoResize": false, + "underline": false, + "text": "Truck", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbO99vCk4P4Lo=", + "_parent": { + "$ref": "AAAAAAFbO99vCk4Mq2M=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -1200, + "top": 16, + "width": 129, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from class_hierarchy)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbO99vCk4Q3qQ=", + "_parent": { + "$ref": "AAAAAAFbO99vCk4Mq2M=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -1200, + "top": 16, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 72, + "top": 328, + "width": 167, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbO99vCk4Nn2E=" + }, + "nameLabel": { + "$ref": "AAAAAAFbO99vCk4Oeoo=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbO99vCk4P4Lo=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbO99vCk4Q3qQ=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbO99vCk4RFsw=", + "_parent": { + "$ref": "AAAAAAFbO99vCk4Lz4w=" + }, + "model": { + "$ref": "AAAAAAFbO99vCU4JMeI=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFbO+PbOk6aDdA=", + "_parent": { + "$ref": "AAAAAAFbO99vCk4RFsw=" + }, + "model": { + "$ref": "AAAAAAFbO+PbDk6XaTY=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 77, + "top": 358, + "width": 157, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+numberOfCountainers: Int", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 72, + "top": 353, + "width": 167, + "height": 23, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbO99vC04SdWA=", + "_parent": { + "$ref": "AAAAAAFbO99vCk4Lz4w=" + }, + "model": { + "$ref": "AAAAAAFbO99vCU4JMeI=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 72, + "top": 376, + "width": 167, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbO99vC04TH7s=", + "_parent": { + "$ref": "AAAAAAFbO99vCk4Lz4w=" + }, + "model": { + "$ref": "AAAAAAFbO99vCU4JMeI=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -600, + "top": 8, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbO99vC04UA5U=", + "_parent": { + "$ref": "AAAAAAFbO99vCk4Lz4w=" + }, + "model": { + "$ref": "AAAAAAFbO99vCU4JMeI=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -600, + "top": 8, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 72, + "top": 328, + "width": 167, + "height": 58, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbO99vCk4Mq2M=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": false, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbO99vCk4RFsw=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbO99vC04SdWA=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbO99vC04TH7s=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbO99vC04UA5U=" + } + }, + { + "_type": "UMLGeneralizationView", + "_id": "AAAAAAFbO9/Fnk43xWI=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAFbO9/FnU418jU=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbO9/Fn044HGg=", + "_parent": { + "$ref": "AAAAAAFbO9/Fnk43xWI=" + }, + "model": { + "$ref": "AAAAAAFbO9/FnU418jU=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 371, + "top": 269, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbO9/Fnk43xWI=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbO9/Fn0450nE=", + "_parent": { + "$ref": "AAAAAAFbO9/Fnk43xWI=" + }, + "model": { + "$ref": "AAAAAAFbO9/FnU418jU=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 359, + "top": 260, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbO9/Fnk43xWI=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbO9/FoE46G7w=", + "_parent": { + "$ref": "AAAAAAFbO9/Fnk43xWI=" + }, + "model": { + "$ref": "AAAAAAFbO9/FnU418jU=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 396, + "top": 286, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbO9/Fnk43xWI=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFbO+Rf0060tNM=" + }, + "tail": { + "$ref": "AAAAAAFbO99OwE3hJys=" + }, + "lineStyle": 1, + "points": "360:319;409:250", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFbO9/Fn044HGg=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFbO9/Fn0450nE=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbO9/FoE46G7w=" + } + }, + { + "_type": "UMLGeneralizationView", + "_id": "AAAAAAFbO9/V2U5I3BY=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAFbO9/V2E5G9JA=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbO9/V2U5Jr08=", + "_parent": { + "$ref": "AAAAAAFbO9/V2U5I3BY=" + }, + "model": { + "$ref": "AAAAAAFbO9/V2E5G9JA=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 141, + "top": 285, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbO9/V2U5I3BY=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbO9/V2U5Kk0w=", + "_parent": { + "$ref": "AAAAAAFbO9/V2U5I3BY=" + }, + "model": { + "$ref": "AAAAAAFbO9/V2E5G9JA=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 126, + "top": 285, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbO9/V2U5I3BY=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbO9/V2U5LFK0=", + "_parent": { + "$ref": "AAAAAAFbO9/V2U5I3BY=" + }, + "model": { + "$ref": "AAAAAAFbO9/V2E5G9JA=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 170, + "top": 286, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbO9/V2U5I3BY=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFbO+Lye05k5ps=" + }, + "tail": { + "$ref": "AAAAAAFbO99vCk4Lz4w=" + }, + "lineStyle": 1, + "points": "155:327;157:258", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFbO9/V2U5Jr08=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFbO9/V2U5Kk0w=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbO9/V2U5LFK0=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFbO+Lye05k5ps=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAFbO+Lyek5ibBU=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbO+Lye05ll8A=", + "_parent": { + "$ref": "AAAAAAFbO+Lye05k5ps=" + }, + "model": { + "$ref": "AAAAAAFbO+Lyek5ibBU=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbO+LyfE5mAAw=", + "_parent": { + "$ref": "AAAAAAFbO+Lye05ll8A=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -976, + "top": -464, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbO+LyfE5ngtw=", + "_parent": { + "$ref": "AAAAAAFbO+Lye05ll8A=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 85, + "top": 207, + "width": 145, + "height": 13, + "autoResize": false, + "underline": false, + "text": "TransportationVehicule", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbO+LyfU5omV8=", + "_parent": { + "$ref": "AAAAAAFbO+Lye05ll8A=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -976, + "top": -464, + "width": 129, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from class_hierarchy)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbO+LyfU5pmns=", + "_parent": { + "$ref": "AAAAAAFbO+Lye05ll8A=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -976, + "top": -464, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 80, + "top": 200, + "width": 155, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbO+LyfE5mAAw=" + }, + "nameLabel": { + "$ref": "AAAAAAFbO+LyfE5ngtw=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbO+LyfU5omV8=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbO+LyfU5pmns=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbO+LyfU5q0F4=", + "_parent": { + "$ref": "AAAAAAFbO+Lye05k5ps=" + }, + "model": { + "$ref": "AAAAAAFbO+Lyek5ibBU=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFbO+NkS06Swuw=", + "_parent": { + "$ref": "AAAAAAFbO+LyfU5q0F4=" + }, + "model": { + "$ref": "AAAAAAFbO+NkGU6P28s=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 85, + "top": 230, + "width": 145, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+loadCapacity: Int", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 80, + "top": 225, + "width": 155, + "height": 23, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbO+Lyfk5rMLA=", + "_parent": { + "$ref": "AAAAAAFbO+Lye05k5ps=" + }, + "model": { + "$ref": "AAAAAAFbO+Lyek5ibBU=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 80, + "top": 248, + "width": 155, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbO+Lyfk5sfMk=", + "_parent": { + "$ref": "AAAAAAFbO+Lye05k5ps=" + }, + "model": { + "$ref": "AAAAAAFbO+Lyek5ibBU=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -488, + "top": -232, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbO+Lyfk5tFLw=", + "_parent": { + "$ref": "AAAAAAFbO+Lye05k5ps=" + }, + "model": { + "$ref": "AAAAAAFbO+Lyek5ibBU=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -488, + "top": -232, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 80, + "top": 200, + "width": 155, + "height": 58, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbO+Lye05ll8A=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": false, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbO+LyfU5q0F4=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbO+Lyfk5rMLA=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbO+Lyfk5sfMk=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbO+Lyfk5tFLw=" + } + }, + { + "_type": "UMLGeneralizationView", + "_id": "AAAAAAFbO+Q6g06iKjY=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAFbO+Q6gk6gVU4=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbO+Q6hE6j+Sw=", + "_parent": { + "$ref": "AAAAAAFbO+Q6g06iKjY=" + }, + "model": { + "$ref": "AAAAAAFbO+Q6gk6gVU4=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 204, + "top": 143, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbO+Q6g06iKjY=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbO+Q6hE6kqXA=", + "_parent": { + "$ref": "AAAAAAFbO+Q6g06iKjY=" + }, + "model": { + "$ref": "AAAAAAFbO+Q6gk6gVU4=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 193, + "top": 133, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbO+Q6g06iKjY=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbO+Q6hU6liOk=", + "_parent": { + "$ref": "AAAAAAFbO+Q6g06iKjY=" + }, + "model": { + "$ref": "AAAAAAFbO+Q6gk6gVU4=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 227, + "top": 164, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbO+Q6g06iKjY=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFbOiEpa2kSCZ8=" + }, + "tail": { + "$ref": "AAAAAAFbO+Lye05k5ps=" + }, + "lineStyle": 1, + "points": "182:199;250:122", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFbO+Q6hE6j+Sw=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFbO+Q6hE6kqXA=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbO+Q6hU6liOk=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFbO+Rf0060tNM=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAFbO+Rf006yUP0=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbO+Rf1E61ShY=", + "_parent": { + "$ref": "AAAAAAFbO+Rf0060tNM=" + }, + "model": { + "$ref": "AAAAAAFbO+Rf006yUP0=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbO+Rf1E62XsE=", + "_parent": { + "$ref": "AAAAAAFbO+Rf1E61ShY=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 48, + "top": -576, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbO+Rf1E63gsk=", + "_parent": { + "$ref": "AAAAAAFbO+Rf1E61ShY=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 357, + "top": 199, + "width": 147, + "height": 13, + "autoResize": false, + "underline": false, + "text": "PassengerVehicule", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbO+Rf1U64Z5Q=", + "_parent": { + "$ref": "AAAAAAFbO+Rf1E61ShY=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 48, + "top": -576, + "width": 129, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from class_hierarchy)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbO+Rf1U65b4s=", + "_parent": { + "$ref": "AAAAAAFbO+Rf1E61ShY=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 48, + "top": -576, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 352, + "top": 192, + "width": 157, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbO+Rf1E62XsE=" + }, + "nameLabel": { + "$ref": "AAAAAAFbO+Rf1E63gsk=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbO+Rf1U64Z5Q=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbO+Rf1U65b4s=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbO+Rf1U667Yw=", + "_parent": { + "$ref": "AAAAAAFbO+Rf0060tNM=" + }, + "model": { + "$ref": "AAAAAAFbO+Rf006yUP0=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFbO+eoE09TvR0=", + "_parent": { + "$ref": "AAAAAAFbO+Rf1U667Yw=" + }, + "model": { + "$ref": "AAAAAAFbO+en3k9QJd0=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 357, + "top": 222, + "width": 147, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+nrOfPasssengers: Int[1]", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 352, + "top": 217, + "width": 157, + "height": 23, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbO+Rf1U679SU=", + "_parent": { + "$ref": "AAAAAAFbO+Rf0060tNM=" + }, + "model": { + "$ref": "AAAAAAFbO+Rf006yUP0=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 352, + "top": 240, + "width": 157, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbO+Rf1U68aEA=", + "_parent": { + "$ref": "AAAAAAFbO+Rf0060tNM=" + }, + "model": { + "$ref": "AAAAAAFbO+Rf006yUP0=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 24, + "top": -288, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbO+Rf1U69hJo=", + "_parent": { + "$ref": "AAAAAAFbO+Rf0060tNM=" + }, + "model": { + "$ref": "AAAAAAFbO+Rf006yUP0=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 24, + "top": -288, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 352, + "top": 192, + "width": 157, + "height": 58, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbO+Rf1E61ShY=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": false, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbO+Rf1U667Yw=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbO+Rf1U679SU=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbO+Rf1U68aEA=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbO+Rf1U69hJo=" + } + }, + { + "_type": "UMLGeneralizationView", + "_id": "AAAAAAFbO+VGsU7ufOs=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAFbO+VGsE7s064=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbO+VGsU7vrOI=", + "_parent": { + "$ref": "AAAAAAFbO+VGsU7ufOs=" + }, + "model": { + "$ref": "AAAAAAFbO+VGsE7s064=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 343, + "top": 161, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbO+VGsU7ufOs=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbO+VGsk7wUnY=", + "_parent": { + "$ref": "AAAAAAFbO+VGsU7ufOs=" + }, + "model": { + "$ref": "AAAAAAFbO+VGsE7s064=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 333, + "top": 173, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbO+VGsU7ufOs=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbO+VGsk7xKOo=", + "_parent": { + "$ref": "AAAAAAFbO+VGsU7ufOs=" + }, + "model": { + "$ref": "AAAAAAFbO+VGsE7s064=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 362, + "top": 138, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbO+VGsU7ufOs=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFbOiEpa2kSCZ8=" + }, + "tail": { + "$ref": "AAAAAAFbO+Rf0060tNM=" + }, + "lineStyle": 1, + "points": "395:191;312:122", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFbO+VGsU7vrOI=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFbO+VGsk7wUnY=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbO+VGsk7xKOo=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFbO+VdhU7/MHA=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAFbO+VdhU79bPo=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbO+Vdhk8Aqa0=", + "_parent": { + "$ref": "AAAAAAFbO+VdhU7/MHA=" + }, + "model": { + "$ref": "AAAAAAFbO+VdhU79bPo=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbO+Vdhk8BUw4=", + "_parent": { + "$ref": "AAAAAAFbO+Vdhk8Aqa0=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 128, + "top": -608, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbO+Vdhk8CiZ0=", + "_parent": { + "$ref": "AAAAAAFbO+Vdhk8Aqa0=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 429, + "top": 327, + "width": 120, + "height": 13, + "autoResize": false, + "underline": false, + "text": "Bike", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbO+Vdhk8DxqU=", + "_parent": { + "$ref": "AAAAAAFbO+Vdhk8Aqa0=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 128, + "top": -608, + "width": 129, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from class_hierarchy)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbO+Vdhk8ELeM=", + "_parent": { + "$ref": "AAAAAAFbO+Vdhk8Aqa0=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 128, + "top": -608, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 424, + "top": 320, + "width": 130, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbO+Vdhk8BUw4=" + }, + "nameLabel": { + "$ref": "AAAAAAFbO+Vdhk8CiZ0=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbO+Vdhk8DxqU=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbO+Vdhk8ELeM=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbO+Vdhk8Fj2Y=", + "_parent": { + "$ref": "AAAAAAFbO+VdhU7/MHA=" + }, + "model": { + "$ref": "AAAAAAFbO+VdhU79bPo=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFbO+XC008+d0Y=", + "_parent": { + "$ref": "AAAAAAFbO+Vdhk8Fj2Y=" + }, + "model": { + "$ref": "AAAAAAFbO+XCnU87OGU=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 429, + "top": 350, + "width": 120, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+saddleHeight: Float", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 424, + "top": 345, + "width": 130, + "height": 23, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbO+Vdh08GrHE=", + "_parent": { + "$ref": "AAAAAAFbO+VdhU7/MHA=" + }, + "model": { + "$ref": "AAAAAAFbO+VdhU79bPo=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 424, + "top": 368, + "width": 130, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbO+Vdh08H1cw=", + "_parent": { + "$ref": "AAAAAAFbO+VdhU7/MHA=" + }, + "model": { + "$ref": "AAAAAAFbO+VdhU79bPo=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 64, + "top": -304, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbO+Vdh08IxmA=", + "_parent": { + "$ref": "AAAAAAFbO+VdhU7/MHA=" + }, + "model": { + "$ref": "AAAAAAFbO+VdhU79bPo=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 64, + "top": -304, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 424, + "top": 320, + "width": 130, + "height": 58, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbO+Vdhk8Aqa0=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": false, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbO+Vdhk8Fj2Y=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbO+Vdh08GrHE=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbO+Vdh08H1cw=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbO+Vdh08IxmA=" + } + }, + { + "_type": "UMLGeneralizationView", + "_id": "AAAAAAFbO+V8Kk8pFCE=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAFbO+V8Kk8np1o=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbO+V8K08q5t0=", + "_parent": { + "$ref": "AAAAAAFbO+V8Kk8pFCE=" + }, + "model": { + "$ref": "AAAAAAFbO+V8Kk8np1o=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 445, + "top": 284, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbO+V8Kk8pFCE=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbO+V8K08rylk=", + "_parent": { + "$ref": "AAAAAAFbO+V8Kk8pFCE=" + }, + "model": { + "$ref": "AAAAAAFbO+V8Kk8np1o=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 431, + "top": 290, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbO+V8Kk8pFCE=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbO+V8K08smxc=", + "_parent": { + "$ref": "AAAAAAFbO+V8Kk8pFCE=" + }, + "model": { + "$ref": "AAAAAAFbO+V8Kk8np1o=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 472, + "top": 271, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbO+V8Kk8pFCE=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFbO+Rf0060tNM=" + }, + "tail": { + "$ref": "AAAAAAFbO+VdhU7/MHA=" + }, + "lineStyle": 1, + "points": "475:319;444:250", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFbO+V8K08q5t0=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFbO+V8K08rylk=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbO+V8K08smxc=" + } + } + ] + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFbOiEpamkQZZw=", + "_parent": { + "$ref": "AAAAAAFF+qBWK6M3Z8Y=" + }, + "name": "Vehicule", + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFbO+JHX05XxeM=", + "_parent": { + "$ref": "AAAAAAFbOiEpamkQZZw=" + }, + "name": "id", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "ID", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFbO99Ov03ffeg=", + "_parent": { + "$ref": "AAAAAAFF+qBWK6M3Z8Y=" + }, + "name": "Car", + "ownedElements": [ + { + "_type": "UMLGeneralization", + "_id": "AAAAAAFbO9/FnU418jU=", + "_parent": { + "$ref": "AAAAAAFbO99Ov03ffeg=" + }, + "source": { + "$ref": "AAAAAAFbO99Ov03ffeg=" + }, + "target": { + "$ref": "AAAAAAFbO+Rf006yUP0=" + }, + "visibility": "public" + } + ], + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFbO+TQoU7hZIA=", + "_parent": { + "$ref": "AAAAAAFbO99Ov03ffeg=" + }, + "name": "noOfDoors", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "Int", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFbO99vCU4JMeI=", + "_parent": { + "$ref": "AAAAAAFF+qBWK6M3Z8Y=" + }, + "name": "Truck", + "ownedElements": [ + { + "_type": "UMLGeneralization", + "_id": "AAAAAAFbO9/V2E5G9JA=", + "_parent": { + "$ref": "AAAAAAFbO99vCU4JMeI=" + }, + "source": { + "$ref": "AAAAAAFbO99vCU4JMeI=" + }, + "target": { + "$ref": "AAAAAAFbO+Lyek5ibBU=" + }, + "visibility": "public" + } + ], + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFbO+PbDk6XaTY=", + "_parent": { + "$ref": "AAAAAAFbO99vCU4JMeI=" + }, + "name": "numberOfCountainers", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "Int", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFbO+Lyek5ibBU=", + "_parent": { + "$ref": "AAAAAAFF+qBWK6M3Z8Y=" + }, + "name": "TransportationVehicule", + "ownedElements": [ + { + "_type": "UMLGeneralization", + "_id": "AAAAAAFbO+Q6gk6gVU4=", + "_parent": { + "$ref": "AAAAAAFbO+Lyek5ibBU=" + }, + "source": { + "$ref": "AAAAAAFbO+Lyek5ibBU=" + }, + "target": { + "$ref": "AAAAAAFbOiEpamkQZZw=" + }, + "visibility": "public" + } + ], + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFbO+NkGU6P28s=", + "_parent": { + "$ref": "AAAAAAFbO+Lyek5ibBU=" + }, + "name": "loadCapacity", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "Int", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFbO+Rf006yUP0=", + "_parent": { + "$ref": "AAAAAAFF+qBWK6M3Z8Y=" + }, + "name": "PassengerVehicule", + "ownedElements": [ + { + "_type": "UMLGeneralization", + "_id": "AAAAAAFbO+VGsE7s064=", + "_parent": { + "$ref": "AAAAAAFbO+Rf006yUP0=" + }, + "source": { + "$ref": "AAAAAAFbO+Rf006yUP0=" + }, + "target": { + "$ref": "AAAAAAFbOiEpamkQZZw=" + }, + "visibility": "public" + } + ], + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFbO+en3k9QJd0=", + "_parent": { + "$ref": "AAAAAAFbO+Rf006yUP0=" + }, + "name": "nrOfPasssengers", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "Int", + "multiplicity": "1", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFbO+VdhU79bPo=", + "_parent": { + "$ref": "AAAAAAFF+qBWK6M3Z8Y=" + }, + "name": "Bike", + "ownedElements": [ + { + "_type": "UMLGeneralization", + "_id": "AAAAAAFbO+V8Kk8np1o=", + "_parent": { + "$ref": "AAAAAAFbO+VdhU79bPo=" + }, + "source": { + "$ref": "AAAAAAFbO+VdhU79bPo=" + }, + "target": { + "$ref": "AAAAAAFbO+Rf006yUP0=" + }, + "visibility": "public" + } + ], + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFbO+XCnU87OGU=", + "_parent": { + "$ref": "AAAAAAFbO+VdhU79bPo=" + }, + "name": "saddleHeight", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "Float", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + } + ], + "visibility": "public" + }, + { + "_type": "UMLPackage", + "_id": "AAAAAAFbS1m6qhmUQAs=", + "_parent": { + "$ref": "AAAAAAFF+h6SjaM2Hec=" + }, + "name": "associations", + "ownedElements": [ + { + "_type": "UMLClassDiagram", + "_id": "AAAAAAFbS1ohZxmzCQ0=", + "_parent": { + "$ref": "AAAAAAFbS1m6qhmUQAs=" + }, + "name": "associations", + "visible": true, + "defaultDiagram": false, + "ownedViews": [ + { + "_type": "UMLClassView", + "_id": "AAAAAAFbTavfuRsXrP8=", + "_parent": { + "$ref": "AAAAAAFbS1ohZxmzCQ0=" + }, + "model": { + "$ref": "AAAAAAFbTavfuBsVyrc=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbTavfuRsYcDQ=", + "_parent": { + "$ref": "AAAAAAFbTavfuRsXrP8=" + }, + "model": { + "$ref": "AAAAAAFbTavfuBsVyrc=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbTavfuRsZH/A=", + "_parent": { + "$ref": "AAAAAAFbTavfuRsYcDQ=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -592, + "top": -192, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbTavfuRsayTk=", + "_parent": { + "$ref": "AAAAAAFbTavfuRsYcDQ=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 45, + "top": 343, + "width": 41, + "height": 13, + "autoResize": false, + "underline": false, + "text": "Class3", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbTavfuRsbFoA=", + "_parent": { + "$ref": "AAAAAAFbTavfuRsYcDQ=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -592, + "top": -192, + "width": 111, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from associations)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbTavfuhscPps=", + "_parent": { + "$ref": "AAAAAAFbTavfuRsYcDQ=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -592, + "top": -192, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 40, + "top": 336, + "width": 51, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbTavfuRsZH/A=" + }, + "nameLabel": { + "$ref": "AAAAAAFbTavfuRsayTk=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbTavfuRsbFoA=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbTavfuhscPps=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbTavfuhsdvAE=", + "_parent": { + "$ref": "AAAAAAFbTavfuRsXrP8=" + }, + "model": { + "$ref": "AAAAAAFbTavfuBsVyrc=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 40, + "top": 361, + "width": 51, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbTavfuhselNU=", + "_parent": { + "$ref": "AAAAAAFbTavfuRsXrP8=" + }, + "model": { + "$ref": "AAAAAAFbTavfuBsVyrc=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 40, + "top": 371, + "width": 51, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbTavfuhsfrCA=", + "_parent": { + "$ref": "AAAAAAFbTavfuRsXrP8=" + }, + "model": { + "$ref": "AAAAAAFbTavfuBsVyrc=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -296, + "top": -96, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbTavfuhsgQZ8=", + "_parent": { + "$ref": "AAAAAAFbTavfuRsXrP8=" + }, + "model": { + "$ref": "AAAAAAFbTavfuBsVyrc=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -296, + "top": -96, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 40, + "top": 336, + "width": 51, + "height": 45, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbTavfuRsYcDQ=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": false, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbTavfuhsdvAE=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbTavfuhselNU=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbTavfuhsfrCA=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbTavfuhsgQZ8=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFbTavtbBtPBm8=", + "_parent": { + "$ref": "AAAAAAFbS1ohZxmzCQ0=" + }, + "model": { + "$ref": "AAAAAAFbTavtbBtNDWE=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbTavtbBtQgGQ=", + "_parent": { + "$ref": "AAAAAAFbTavtbBtPBm8=" + }, + "model": { + "$ref": "AAAAAAFbTavtbBtNDWE=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbTavtbBtRY68=", + "_parent": { + "$ref": "AAAAAAFbTavtbBtQgGQ=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -560, + "top": -272, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbTavtbBtSchs=", + "_parent": { + "$ref": "AAAAAAFbTavtbBtQgGQ=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 341, + "top": 327, + "width": 151, + "height": 13, + "autoResize": false, + "underline": false, + "text": "Class4", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbTavtbBtT1QY=", + "_parent": { + "$ref": "AAAAAAFbTavtbBtQgGQ=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -560, + "top": -272, + "width": 111, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from associations)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbTavtbBtUgRY=", + "_parent": { + "$ref": "AAAAAAFbTavtbBtQgGQ=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -560, + "top": -272, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 336, + "top": 320, + "width": 161, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbTavtbBtRY68=" + }, + "nameLabel": { + "$ref": "AAAAAAFbTavtbBtSchs=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbTavtbBtT1QY=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbTavtbBtUgRY=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbTavtbBtVPrs=", + "_parent": { + "$ref": "AAAAAAFbTavtbBtPBm8=" + }, + "model": { + "$ref": "AAAAAAFbTavtbBtNDWE=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFbTg4ZlCzcF3A=", + "_parent": { + "$ref": "AAAAAAFbTavtbBtVPrs=" + }, + "model": { + "$ref": "AAAAAAFbTg4ZVyzZUsc=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 341, + "top": 350, + "width": 151, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+name: String", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFbThR7my3c7RM=", + "_parent": { + "$ref": "AAAAAAFbTavtbBtVPrs=" + }, + "model": { + "$ref": "AAAAAAFbThR7cC3ZrNg=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 341, + "top": 365, + "width": 151, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+gender: String", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 336, + "top": 345, + "width": 161, + "height": 38, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbTavtcRtWxdk=", + "_parent": { + "$ref": "AAAAAAFbTavtbBtPBm8=" + }, + "model": { + "$ref": "AAAAAAFbTavtbBtNDWE=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 336, + "top": 383, + "width": 161, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbTavtchtXN7Y=", + "_parent": { + "$ref": "AAAAAAFbTavtbBtPBm8=" + }, + "model": { + "$ref": "AAAAAAFbTavtbBtNDWE=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -280, + "top": -136, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbTavtchtYzSA=", + "_parent": { + "$ref": "AAAAAAFbTavtbBtPBm8=" + }, + "model": { + "$ref": "AAAAAAFbTavtbBtNDWE=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -280, + "top": -136, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 336, + "top": 320, + "width": 161, + "height": 73, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbTavtbBtQgGQ=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": false, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbTavtbBtVPrs=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbTavtcRtWxdk=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbTavtchtXN7Y=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbTavtchtYzSA=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAFbTa0DpRz8N6o=", + "_parent": { + "$ref": "AAAAAAFbS1ohZxmzCQ0=" + }, + "model": { + "$ref": "AAAAAAFbTa0DpRz4QvY=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbTa0DpRz9QNY=", + "_parent": { + "$ref": "AAAAAAFbTa0DpRz8N6o=" + }, + "model": { + "$ref": "AAAAAAFbTa0DpRz4QvY=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 212, + "top": 336, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbTa0DpRz8N6o=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbTa0DpRz++ps=", + "_parent": { + "$ref": "AAAAAAFbTa0DpRz8N6o=" + }, + "model": { + "$ref": "AAAAAAFbTa0DpRz4QvY=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 212, + "top": 321, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbTa0DpRz8N6o=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbTa0DpRz/A84=", + "_parent": { + "$ref": "AAAAAAFbTa0DpRz8N6o=" + }, + "model": { + "$ref": "AAAAAAFbTa0DpRz4QvY=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 213, + "top": 365, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbTa0DpRz8N6o=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbTa0DpR0A2O4=", + "_parent": { + "$ref": "AAAAAAFbTa0DpRz8N6o=" + }, + "model": { + "$ref": "AAAAAAFbTa0DpRz51tU=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 94, + "top": 335, + "width": 74, + "height": 13, + "autoResize": false, + "alpha": 0.3653110227769076, + "distance": 44.01136216933077, + "hostEdge": { + "$ref": "AAAAAAFbTa0DpRz8N6o=" + }, + "edgePosition": 2, + "underline": false, + "text": "+toC3", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbTa0DpR0BNT0=", + "_parent": { + "$ref": "AAAAAAFbTa0DpRz8N6o=" + }, + "model": { + "$ref": "AAAAAAFbTa0DpRz51tU=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 119, + "top": 323, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFbTa0DpRz8N6o=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbTa0DpR0CU5k=", + "_parent": { + "$ref": "AAAAAAFbTa0DpRz8N6o=" + }, + "model": { + "$ref": "AAAAAAFbTa0DpRz51tU=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 109, + "top": 364, + "width": 7, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFbTa0DpRz8N6o=" + }, + "edgePosition": 2, + "underline": false, + "text": "1", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbTa0DpR0DKtE=", + "_parent": { + "$ref": "AAAAAAFbTa0DpRz8N6o=" + }, + "model": { + "$ref": "AAAAAAFbTa0DpRz6jGA=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 291, + "top": 335, + "width": 35, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbTa0DpRz8N6o=" + }, + "edgePosition": 0, + "underline": false, + "text": "+toC4", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbTa0DpR0ER4A=", + "_parent": { + "$ref": "AAAAAAFbTa0DpRz8N6o=" + }, + "model": { + "$ref": "AAAAAAFbTa0DpRz6jGA=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 306, + "top": 321, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFbTa0DpRz8N6o=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbTa0DpR0Fo3A=", + "_parent": { + "$ref": "AAAAAAFbTa0DpRz8N6o=" + }, + "model": { + "$ref": "AAAAAAFbTa0DpRz6jGA=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 303, + "top": 362, + "width": 20, + "height": 13, + "autoResize": false, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFbTa0DpRz8N6o=" + }, + "edgePosition": 0, + "underline": false, + "text": "1..*", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFbTa0DpR0GEV8=", + "_parent": { + "$ref": "AAAAAAFbTa0DpRz8N6o=" + }, + "model": { + "$ref": "AAAAAAFbTa0DpRz51tU=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -24, + "top": -96, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFbTa0Dph0HG5E=", + "_parent": { + "$ref": "AAAAAAFbTa0DpRz8N6o=" + }, + "model": { + "$ref": "AAAAAAFbTa0DpRz6jGA=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -24, + "top": -96, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFbTavtbBtPBm8=" + }, + "tail": { + "$ref": "AAAAAAFbTavfuRsXrP8=" + }, + "lineStyle": 1, + "points": "91:358;335:356", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFbTa0DpRz9QNY=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFbTa0DpRz++ps=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbTa0DpRz/A84=" + }, + "showMultiplicity": true, + "showType": true, + "tailRoleNameLabel": { + "$ref": "AAAAAAFbTa0DpR0A2O4=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAFbTa0DpR0BNT0=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAFbTa0DpR0CU5k=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAFbTa0DpR0DKtE=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAFbTa0DpR0ER4A=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAFbTa0DpR0Fo3A=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAFbTa0DpR0GEV8=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAFbTa0Dph0HG5E=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFbWgSmw25r6xM=", + "_parent": { + "$ref": "AAAAAAFbS1ohZxmzCQ0=" + }, + "model": { + "$ref": "AAAAAAFbWgSmwm5pjY8=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbWgSmw25seMo=", + "_parent": { + "$ref": "AAAAAAFbWgSmw25r6xM=" + }, + "model": { + "$ref": "AAAAAAFbWgSmwm5pjY8=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbWgSmw25tDBU=", + "_parent": { + "$ref": "AAAAAAFbWgSmw25seMo=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 96, + "top": -144, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbWgSmxG5uiKM=", + "_parent": { + "$ref": "AAAAAAFbWgSmw25seMo=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 205, + "top": 31, + "width": 41, + "height": 13, + "autoResize": false, + "underline": false, + "text": "Class1", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbWgSmxG5v/iE=", + "_parent": { + "$ref": "AAAAAAFbWgSmw25seMo=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 96, + "top": -144, + "width": 111, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from associations)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbWgSmxG5wl5k=", + "_parent": { + "$ref": "AAAAAAFbWgSmw25seMo=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 96, + "top": -144, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 200, + "top": 24, + "width": 51, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbWgSmw25tDBU=" + }, + "nameLabel": { + "$ref": "AAAAAAFbWgSmxG5uiKM=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbWgSmxG5v/iE=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbWgSmxG5wl5k=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbWgSmxG5xJtQ=", + "_parent": { + "$ref": "AAAAAAFbWgSmw25r6xM=" + }, + "model": { + "$ref": "AAAAAAFbWgSmwm5pjY8=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 200, + "top": 49, + "width": 51, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbWgSmxG5yrJk=", + "_parent": { + "$ref": "AAAAAAFbWgSmw25r6xM=" + }, + "model": { + "$ref": "AAAAAAFbWgSmwm5pjY8=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 200, + "top": 59, + "width": 51, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbWgSmxW5z38w=", + "_parent": { + "$ref": "AAAAAAFbWgSmw25r6xM=" + }, + "model": { + "$ref": "AAAAAAFbWgSmwm5pjY8=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 48, + "top": -72, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbWgSmxW50kGs=", + "_parent": { + "$ref": "AAAAAAFbWgSmw25r6xM=" + }, + "model": { + "$ref": "AAAAAAFbWgSmwm5pjY8=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 48, + "top": -72, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 200, + "top": 24, + "width": 51, + "height": 45, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbWgSmw25seMo=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": false, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbWgSmxG5xJtQ=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbWgSmxG5yrJk=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbWgSmxW5z38w=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbWgSmxW50kGs=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFbWgSxtW6jwxQ=", + "_parent": { + "$ref": "AAAAAAFbS1ohZxmzCQ0=" + }, + "model": { + "$ref": "AAAAAAFbWgSxtW6h3EA=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbWgSxtW6kibA=", + "_parent": { + "$ref": "AAAAAAFbWgSxtW6jwxQ=" + }, + "model": { + "$ref": "AAAAAAFbWgSxtW6h3EA=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbWgSxtW6lMhQ=", + "_parent": { + "$ref": "AAAAAAFbWgSxtW6kibA=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -320, + "top": -96, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbWgSxtW6mq/g=", + "_parent": { + "$ref": "AAAAAAFbWgSxtW6kibA=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 325, + "top": 191, + "width": 41, + "height": 13, + "autoResize": false, + "underline": false, + "text": "Class2", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbWgSxtm6n/u4=", + "_parent": { + "$ref": "AAAAAAFbWgSxtW6kibA=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -320, + "top": -96, + "width": 111, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from associations)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbWgSxtm6oyiA=", + "_parent": { + "$ref": "AAAAAAFbWgSxtW6kibA=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -320, + "top": -96, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 320, + "top": 184, + "width": 51, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbWgSxtW6lMhQ=" + }, + "nameLabel": { + "$ref": "AAAAAAFbWgSxtW6mq/g=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbWgSxtm6n/u4=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbWgSxtm6oyiA=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbWgSxtm6pvTQ=", + "_parent": { + "$ref": "AAAAAAFbWgSxtW6jwxQ=" + }, + "model": { + "$ref": "AAAAAAFbWgSxtW6h3EA=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 320, + "top": 209, + "width": 51, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbWgSxtm6qVQ8=", + "_parent": { + "$ref": "AAAAAAFbWgSxtW6jwxQ=" + }, + "model": { + "$ref": "AAAAAAFbWgSxtW6h3EA=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 320, + "top": 219, + "width": 51, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbWgSxtm6rmHA=", + "_parent": { + "$ref": "AAAAAAFbWgSxtW6jwxQ=" + }, + "model": { + "$ref": "AAAAAAFbWgSxtW6h3EA=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -160, + "top": -48, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbWgSxtm6s6ic=", + "_parent": { + "$ref": "AAAAAAFbWgSxtW6jwxQ=" + }, + "model": { + "$ref": "AAAAAAFbWgSxtW6h3EA=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -160, + "top": -48, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 320, + "top": 184, + "width": 51, + "height": 45, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbWgSxtW6kibA=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": false, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbWgSxtm6pvTQ=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbWgSxtm6qVQ8=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbWgSxtm6rmHA=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbWgSxtm6s6ic=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFbWgS7Um7bKa0=", + "_parent": { + "$ref": "AAAAAAFbS1ohZxmzCQ0=" + }, + "model": { + "$ref": "AAAAAAFbWgS7UW7Zlj0=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbWgS7Um7cCic=", + "_parent": { + "$ref": "AAAAAAFbWgS7Um7bKa0=" + }, + "model": { + "$ref": "AAAAAAFbWgS7UW7Zlj0=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbWgS7Um7dtWY=", + "_parent": { + "$ref": "AAAAAAFbWgS7Um7cCic=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -224, + "top": -176, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbWgS7Um7eCHo=", + "_parent": { + "$ref": "AAAAAAFbWgS7Um7cCic=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 69, + "top": 191, + "width": 41, + "height": 13, + "autoResize": false, + "underline": false, + "text": "Class5", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbWgS7Um7fPs4=", + "_parent": { + "$ref": "AAAAAAFbWgS7Um7cCic=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -224, + "top": -176, + "width": 111, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from associations)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbWgS7Um7g8Gs=", + "_parent": { + "$ref": "AAAAAAFbWgS7Um7cCic=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -224, + "top": -176, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 64, + "top": 184, + "width": 51, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbWgS7Um7dtWY=" + }, + "nameLabel": { + "$ref": "AAAAAAFbWgS7Um7eCHo=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbWgS7Um7fPs4=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbWgS7Um7g8Gs=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbWgS7Um7h1w0=", + "_parent": { + "$ref": "AAAAAAFbWgS7Um7bKa0=" + }, + "model": { + "$ref": "AAAAAAFbWgS7UW7Zlj0=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 64, + "top": 209, + "width": 51, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbWgS7U27iWfU=", + "_parent": { + "$ref": "AAAAAAFbWgS7Um7bKa0=" + }, + "model": { + "$ref": "AAAAAAFbWgS7UW7Zlj0=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 64, + "top": 219, + "width": 51, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbWgS7U27jRMs=", + "_parent": { + "$ref": "AAAAAAFbWgS7Um7bKa0=" + }, + "model": { + "$ref": "AAAAAAFbWgS7UW7Zlj0=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -112, + "top": -88, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbWgS7U27kdwA=", + "_parent": { + "$ref": "AAAAAAFbWgS7Um7bKa0=" + }, + "model": { + "$ref": "AAAAAAFbWgS7UW7Zlj0=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -112, + "top": -88, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 64, + "top": 184, + "width": 51, + "height": 45, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbWgS7Um7cCic=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": false, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbWgS7Um7h1w0=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbWgS7U27iWfU=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbWgS7U27jRMs=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbWgS7U27kdwA=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAFbWgTfb28o3gw=", + "_parent": { + "$ref": "AAAAAAFbS1ohZxmzCQ0=" + }, + "model": { + "$ref": "AAAAAAFbWgTfbW8kGY0=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbWgTfb28pugE=", + "_parent": { + "$ref": "AAAAAAFbWgTfb28o3gw=" + }, + "model": { + "$ref": "AAAAAAFbWgTfbW8kGY0=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 287, + "top": 112, + "width": 40, + "height": 13, + "autoResize": false, + "alpha": 1.2732648506695408, + "distance": 23.40939982143925, + "hostEdge": { + "$ref": "AAAAAAFbWgTfb28o3gw=" + }, + "edgePosition": 1, + "underline": false, + "text": "+query", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbWgTfcG8q/0o=", + "_parent": { + "$ref": "AAAAAAFbWgTfb28o3gw=" + }, + "model": { + "$ref": "AAAAAAFbWgTfbW8kGY0=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 308, + "top": 101, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbWgTfb28o3gw=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbWgTfcG8rdOY=", + "_parent": { + "$ref": "AAAAAAFbWgTfb28o3gw=" + }, + "model": { + "$ref": "AAAAAAFbWgTfbW8kGY0=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 273, + "top": 129, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbWgTfb28o3gw=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbWgTfcG8sXFQ=", + "_parent": { + "$ref": "AAAAAAFbWgTfb28o3gw=" + }, + "model": { + "$ref": "AAAAAAFbWgTfbW8l4Ss=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 249, + "top": 74, + "width": 40, + "height": 13, + "autoResize": false, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbWgTfb28o3gw=" + }, + "edgePosition": 2, + "underline": false, + "text": "+query", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbWgTfcG8taGw=", + "_parent": { + "$ref": "AAAAAAFbWgTfb28o3gw=" + }, + "model": { + "$ref": "AAAAAAFbWgTfbW8l4Ss=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 281, + "top": 68, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFbWgTfb28o3gw=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbWgTfcG8unqo=", + "_parent": { + "$ref": "AAAAAAFbWgTfb28o3gw=" + }, + "model": { + "$ref": "AAAAAAFbWgTfbW8l4Ss=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 245, + "top": 87, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFbWgTfb28o3gw=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbWgTfcG8vYYc=", + "_parent": { + "$ref": "AAAAAAFbWgTfb28o3gw=" + }, + "model": { + "$ref": "AAAAAAFbWgTfbm8mRWo=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 324, + "top": 147, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbWgTfb28o3gw=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbWgTfcG8wkWQ=", + "_parent": { + "$ref": "AAAAAAFbWgTfb28o3gw=" + }, + "model": { + "$ref": "AAAAAAFbWgTfbm8mRWo=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 333, + "top": 137, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFbWgTfb28o3gw=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbWgTfcG8x7hU=", + "_parent": { + "$ref": "AAAAAAFbWgTfb28o3gw=" + }, + "model": { + "$ref": "AAAAAAFbWgTfbm8mRWo=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 294, + "top": 167, + "width": 20, + "height": 13, + "autoResize": false, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFbWgTfb28o3gw=" + }, + "edgePosition": 0, + "underline": false, + "text": "1..*", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFbWgTfcG8yMX4=", + "_parent": { + "$ref": "AAAAAAFbWgTfb28o3gw=" + }, + "model": { + "$ref": "AAAAAAFbWgTfbW8l4Ss=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -112, + "top": -88, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFbWgTfcG8z9SA=", + "_parent": { + "$ref": "AAAAAAFbWgTfb28o3gw=" + }, + "model": { + "$ref": "AAAAAAFbWgTfbm8mRWo=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -112, + "top": -88, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFbWgSxtW6jwxQ=" + }, + "tail": { + "$ref": "AAAAAAFbWgSmw25r6xM=" + }, + "lineStyle": 1, + "points": "242:69;328:183", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFbWgTfb28pugE=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFbWgTfcG8q/0o=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbWgTfcG8rdOY=" + }, + "showMultiplicity": true, + "showType": true, + "tailRoleNameLabel": { + "$ref": "AAAAAAFbWgTfcG8sXFQ=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAFbWgTfcG8taGw=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAFbWgTfcG8unqo=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAFbWgTfcG8vYYc=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAFbWgTfcG8wkWQ=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAFbWgTfcG8x7hU=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAFbWgTfcG8yMX4=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAFbWgTfcG8z9SA=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAFbWgUQfm+Hj3I=", + "_parent": { + "$ref": "AAAAAAFbS1ohZxmzCQ0=" + }, + "model": { + "$ref": "AAAAAAFbWgUQfG+DUsk=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbWgUQfm+IGFk=", + "_parent": { + "$ref": "AAAAAAFbWgUQfm+Hj3I=" + }, + "model": { + "$ref": "AAAAAAFbWgUQfG+DUsk=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 151, + "top": 135, + "width": 58, + "height": 13, + "autoResize": false, + "alpha": 1.6628873015745493, + "distance": 28.0178514522438, + "hostEdge": { + "$ref": "AAAAAAFbWgUQfm+Hj3I=" + }, + "edgePosition": 1, + "underline": false, + "text": "+mutation", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbWgUQf2+JELg=", + "_parent": { + "$ref": "AAAAAAFbWgUQfm+Hj3I=" + }, + "model": { + "$ref": "AAAAAAFbWgUQfG+DUsk=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 179, + "top": 139, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbWgUQfm+Hj3I=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbWgUQf2+KZII=", + "_parent": { + "$ref": "AAAAAAFbWgUQfm+Hj3I=" + }, + "model": { + "$ref": "AAAAAAFbWgUQfG+DUsk=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 145, + "top": 110, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbWgUQfm+Hj3I=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbWgUQf2+LJ+s=", + "_parent": { + "$ref": "AAAAAAFbWgUQfm+Hj3I=" + }, + "model": { + "$ref": "AAAAAAFbWgUQfW+EVVM=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 199, + "top": 92, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbWgUQfm+Hj3I=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbWgUQf2+MaRE=", + "_parent": { + "$ref": "AAAAAAFbWgUQfm+Hj3I=" + }, + "model": { + "$ref": "AAAAAAFbWgUQfW+EVVM=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 208, + "top": 102, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFbWgUQfm+Hj3I=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbWgUQf2+NkZI=", + "_parent": { + "$ref": "AAAAAAFbWgUQfm+Hj3I=" + }, + "model": { + "$ref": "AAAAAAFbWgUQfW+EVVM=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 181, + "top": 71, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFbWgUQfm+Hj3I=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbWgUQf2+Ow50=", + "_parent": { + "$ref": "AAAAAAFbWgUQfm+Hj3I=" + }, + "model": { + "$ref": "AAAAAAFbWgUQfW+FcIg=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 137, + "top": 166, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbWgUQfm+Hj3I=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbWgUQf2+P0hM=", + "_parent": { + "$ref": "AAAAAAFbWgUQfm+Hj3I=" + }, + "model": { + "$ref": "AAAAAAFbWgUQfW+FcIg=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 148, + "top": 173, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFbWgUQfm+Hj3I=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbWgUQf2+QFL0=", + "_parent": { + "$ref": "AAAAAAFbWgUQfm+Hj3I=" + }, + "model": { + "$ref": "AAAAAAFbWgUQfW+FcIg=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 113, + "top": 152, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFbWgUQfm+Hj3I=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFbWgUQf2+RgTA=", + "_parent": { + "$ref": "AAAAAAFbWgUQfm+Hj3I=" + }, + "model": { + "$ref": "AAAAAAFbWgUQfW+EVVM=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -112, + "top": -88, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFbWgUQgG+SSPg=", + "_parent": { + "$ref": "AAAAAAFbWgUQfm+Hj3I=" + }, + "model": { + "$ref": "AAAAAAFbWgUQfW+FcIg=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -112, + "top": -88, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFbWgS7Um7bKa0=" + }, + "tail": { + "$ref": "AAAAAAFbWgSmw25r6xM=" + }, + "lineStyle": 1, + "points": "205:69;109:183", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFbWgUQfm+IGFk=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFbWgUQf2+JELg=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbWgUQf2+KZII=" + }, + "showMultiplicity": true, + "showType": true, + "tailRoleNameLabel": { + "$ref": "AAAAAAFbWgUQf2+LJ+s=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAFbWgUQf2+MaRE=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAFbWgUQf2+NkZI=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAFbWgUQf2+Ow50=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAFbWgUQf2+P0hM=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAFbWgUQf2+QFL0=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAFbWgUQf2+RgTA=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAFbWgUQgG+SSPg=" + } + }, + { + "_type": "UMLNoteView", + "_id": "AAAAAAFbbMcbyuFBOpw=", + "_parent": { + "$ref": "AAAAAAFbS1ohZxmzCQ0=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 296, + "top": 48, + "width": 95, + "height": 40, + "autoResize": false, + "text": "Bi-directional association", + "wordWrap": true + } + ] + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFbTavfuBsVyrc=", + "_parent": { + "$ref": "AAAAAAFbS1m6qhmUQAs=" + }, + "name": "Class3", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAFbTa0DpRz4QvY=", + "_parent": { + "$ref": "AAAAAAFbTavfuBsVyrc=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFbTa0DpRz51tU=", + "_parent": { + "$ref": "AAAAAAFbTa0DpRz4QvY=" + }, + "name": "toC3", + "reference": { + "$ref": "AAAAAAFbTavfuBsVyrc=" + }, + "visibility": "public", + "navigable": true, + "aggregation": "none", + "multiplicity": "1", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFbTa0DpRz6jGA=", + "_parent": { + "$ref": "AAAAAAFbTa0DpRz4QvY=" + }, + "name": "toC4", + "reference": { + "$ref": "AAAAAAFbTavtbBtNDWE=" + }, + "visibility": "public", + "navigable": true, + "aggregation": "none", + "multiplicity": "1..*", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "visibility": "public", + "isDerived": false + } + ], + "visibility": "public", + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFbTavtbBtNDWE=", + "_parent": { + "$ref": "AAAAAAFbS1m6qhmUQAs=" + }, + "name": "Class4", + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFbTg4ZVyzZUsc=", + "_parent": { + "$ref": "AAAAAAFbTavtbBtNDWE=" + }, + "name": "name", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "String", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + }, + { + "_type": "UMLAttribute", + "_id": "AAAAAAFbThR7cC3ZrNg=", + "_parent": { + "$ref": "AAAAAAFbTavtbBtNDWE=" + }, + "name": "gender", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "String", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFbWgSmwm5pjY8=", + "_parent": { + "$ref": "AAAAAAFbS1m6qhmUQAs=" + }, + "name": "Class1", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAFbWgTfbW8kGY0=", + "_parent": { + "$ref": "AAAAAAFbWgSmwm5pjY8=" + }, + "name": "query", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFbWgTfbW8l4Ss=", + "_parent": { + "$ref": "AAAAAAFbWgTfbW8kGY0=" + }, + "reference": { + "$ref": "AAAAAAFbWgSmwm5pjY8=" + }, + "visibility": "public", + "navigable": true, + "aggregation": "none", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFbWgTfbm8mRWo=", + "_parent": { + "$ref": "AAAAAAFbWgTfbW8kGY0=" + }, + "reference": { + "$ref": "AAAAAAFbWgSxtW6h3EA=" + }, + "visibility": "public", + "navigable": true, + "aggregation": "none", + "multiplicity": "1..*", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "visibility": "public", + "isDerived": false + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAFbWgUQfG+DUsk=", + "_parent": { + "$ref": "AAAAAAFbWgSmwm5pjY8=" + }, + "name": "mutation", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFbWgUQfW+EVVM=", + "_parent": { + "$ref": "AAAAAAFbWgUQfG+DUsk=" + }, + "reference": { + "$ref": "AAAAAAFbWgSmwm5pjY8=" + }, + "visibility": "public", + "navigable": false, + "aggregation": "none", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFbWgUQfW+FcIg=", + "_parent": { + "$ref": "AAAAAAFbWgUQfG+DUsk=" + }, + "reference": { + "$ref": "AAAAAAFbWgS7UW7Zlj0=" + }, + "visibility": "public", + "navigable": true, + "aggregation": "none", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "visibility": "public", + "isDerived": false + } + ], + "visibility": "public", + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFbWgSxtW6h3EA=", + "_parent": { + "$ref": "AAAAAAFbS1m6qhmUQAs=" + }, + "name": "Class2", + "visibility": "public", + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFbWgS7UW7Zlj0=", + "_parent": { + "$ref": "AAAAAAFbS1m6qhmUQAs=" + }, + "name": "Class5", + "visibility": "public", + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + } + ], + "visibility": "public" + }, + { + "_type": "UMLPackage", + "_id": "AAAAAAFbWxM6Rp+O4Wc=", + "_parent": { + "$ref": "AAAAAAFF+h6SjaM2Hec=" + }, + "name": "InterfaceInherit", + "ownedElements": [ + { + "_type": "UMLClassDiagram", + "_id": "AAAAAAFbWxNvU5+tyzY=", + "_parent": { + "$ref": "AAAAAAFbWxM6Rp+O4Wc=" + }, + "name": "interfaceInheritance", + "visible": true, + "defaultDiagram": false, + "ownedViews": [ + { + "_type": "UMLClassView", + "_id": "AAAAAAFbWxOjrZ/PJDk=", + "_parent": { + "$ref": "AAAAAAFbWxNvU5+tyzY=" + }, + "model": { + "$ref": "AAAAAAFbWxOG/5/LBOs=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbWxOjrZ/QmL0=", + "_parent": { + "$ref": "AAAAAAFbWxOjrZ/PJDk=" + }, + "model": { + "$ref": "AAAAAAFbWxOG/5/LBOs=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbWxOjrZ/RVLY=", + "_parent": { + "$ref": "AAAAAAFbWxOjrZ/QmL0=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -812, + "top": -270, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbWxOjrp/SvYw=", + "_parent": { + "$ref": "AAAAAAFbWxOjrZ/QmL0=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 21, + "top": 23, + "width": 41, + "height": 13, + "autoResize": false, + "underline": false, + "text": "Class1", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbWxOjrp/Tvao=", + "_parent": { + "$ref": "AAAAAAFbWxOjrZ/QmL0=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -812, + "top": -270, + "width": 125, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from InterfaceInherit)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbWxOjrp/UOEM=", + "_parent": { + "$ref": "AAAAAAFbWxOjrZ/QmL0=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -812, + "top": -270, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 16, + "top": 16, + "width": 51, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbWxOjrZ/RVLY=" + }, + "nameLabel": { + "$ref": "AAAAAAFbWxOjrp/SvYw=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbWxOjrp/Tvao=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbWxOjrp/UOEM=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbWxOjrp/VG0U=", + "_parent": { + "$ref": "AAAAAAFbWxOjrZ/PJDk=" + }, + "model": { + "$ref": "AAAAAAFbWxOG/5/LBOs=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 16, + "top": 41, + "width": 51, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbWxOjrp/Wh9U=", + "_parent": { + "$ref": "AAAAAAFbWxOjrZ/PJDk=" + }, + "model": { + "$ref": "AAAAAAFbWxOG/5/LBOs=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 16, + "top": 51, + "width": 51, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbWxOjr5/Xkk8=", + "_parent": { + "$ref": "AAAAAAFbWxOjrZ/PJDk=" + }, + "model": { + "$ref": "AAAAAAFbWxOG/5/LBOs=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -406, + "top": -135, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbWxOjr5/Yfs4=", + "_parent": { + "$ref": "AAAAAAFbWxOjrZ/PJDk=" + }, + "model": { + "$ref": "AAAAAAFbWxOG/5/LBOs=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -406, + "top": -135, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 16, + "top": 16, + "width": 51, + "height": 45, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbWxOjrZ/QmL0=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": false, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbWxOjrp/VG0U=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbWxOjrp/Wh9U=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbWxOjr5/Xkk8=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbWxOjr5/Yfs4=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFbWxPVVKA4PO0=", + "_parent": { + "$ref": "AAAAAAFbWxNvU5+tyzY=" + }, + "model": { + "$ref": "AAAAAAFbWxPVVKA2cvA=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbWxPVVKA55C4=", + "_parent": { + "$ref": "AAAAAAFbWxPVVKA4PO0=" + }, + "model": { + "$ref": "AAAAAAFbWxPVVKA2cvA=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbWxPVVKA6SGo=", + "_parent": { + "$ref": "AAAAAAFbWxPVVKA55C4=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -512, + "top": -352, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbWxPVVKA7Fck=", + "_parent": { + "$ref": "AAAAAAFbWxPVVKA55C4=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 213, + "top": 23, + "width": 41, + "height": 13, + "autoResize": false, + "underline": false, + "text": "Class2", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbWxPVVKA8FFo=", + "_parent": { + "$ref": "AAAAAAFbWxPVVKA55C4=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -512, + "top": -352, + "width": 125, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from InterfaceInherit)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbWxPVVKA9si0=", + "_parent": { + "$ref": "AAAAAAFbWxPVVKA55C4=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -512, + "top": -352, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 208, + "top": 16, + "width": 51, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbWxPVVKA6SGo=" + }, + "nameLabel": { + "$ref": "AAAAAAFbWxPVVKA7Fck=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbWxPVVKA8FFo=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbWxPVVKA9si0=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbWxPVVKA+A7k=", + "_parent": { + "$ref": "AAAAAAFbWxPVVKA4PO0=" + }, + "model": { + "$ref": "AAAAAAFbWxPVVKA2cvA=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 208, + "top": 41, + "width": 51, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbWxPVVaA/6cc=", + "_parent": { + "$ref": "AAAAAAFbWxPVVKA4PO0=" + }, + "model": { + "$ref": "AAAAAAFbWxPVVKA2cvA=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 208, + "top": 51, + "width": 51, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbWxPVVaBAxnA=", + "_parent": { + "$ref": "AAAAAAFbWxPVVKA4PO0=" + }, + "model": { + "$ref": "AAAAAAFbWxPVVKA2cvA=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -256, + "top": -176, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbWxPVVaBBgZ4=", + "_parent": { + "$ref": "AAAAAAFbWxPVVKA4PO0=" + }, + "model": { + "$ref": "AAAAAAFbWxPVVKA2cvA=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -256, + "top": -176, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 208, + "top": 16, + "width": 51, + "height": 45, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbWxPVVKA55C4=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": false, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbWxPVVKA+A7k=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbWxPVVaA/6cc=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbWxPVVaBAxnA=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbWxPVVaBBgZ4=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFbWxPq6aBhvO8=", + "_parent": { + "$ref": "AAAAAAFbWxNvU5+tyzY=" + }, + "model": { + "$ref": "AAAAAAFbWxPq6aBfSxc=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbWxPq6aBi4ro=", + "_parent": { + "$ref": "AAAAAAFbWxPq6aBhvO8=" + }, + "model": { + "$ref": "AAAAAAFbWxPq6aBfSxc=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbWxPq6aBjsyc=", + "_parent": { + "$ref": "AAAAAAFbWxPq6aBi4ro=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 304, + "top": -816, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbWxPq6aBk8f4=", + "_parent": { + "$ref": "AAAAAAFbWxPq6aBi4ro=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 317, + "top": 23, + "width": 48, + "height": 13, + "autoResize": false, + "underline": false, + "text": "ClassB", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbWxPq6aBlVTE=", + "_parent": { + "$ref": "AAAAAAFbWxPq6aBi4ro=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 304, + "top": -816, + "width": 125, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from InterfaceInherit)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbWxPq6aBmIgo=", + "_parent": { + "$ref": "AAAAAAFbWxPq6aBi4ro=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 304, + "top": -816, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 312, + "top": 16, + "width": 58, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbWxPq6aBjsyc=" + }, + "nameLabel": { + "$ref": "AAAAAAFbWxPq6aBk8f4=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbWxPq6aBlVTE=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbWxPq6aBmIgo=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbWxPq6aBnw4s=", + "_parent": { + "$ref": "AAAAAAFbWxPq6aBhvO8=" + }, + "model": { + "$ref": "AAAAAAFbWxPq6aBfSxc=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 312, + "top": 41, + "width": 58, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbWxPq6aBorig=", + "_parent": { + "$ref": "AAAAAAFbWxPq6aBhvO8=" + }, + "model": { + "$ref": "AAAAAAFbWxPq6aBfSxc=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 312, + "top": 51, + "width": 58, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbWxPq6aBpS60=", + "_parent": { + "$ref": "AAAAAAFbWxPq6aBhvO8=" + }, + "model": { + "$ref": "AAAAAAFbWxPq6aBfSxc=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 152, + "top": -408, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbWxPq6aBq2Bw=", + "_parent": { + "$ref": "AAAAAAFbWxPq6aBhvO8=" + }, + "model": { + "$ref": "AAAAAAFbWxPq6aBfSxc=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 152, + "top": -408, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 312, + "top": 16, + "width": 58, + "height": 45, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbWxPq6aBi4ro=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": false, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbWxPq6aBnw4s=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbWxPq6aBorig=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbWxPq6aBpS60=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbWxPq6aBq2Bw=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFbWxP2D6CKWHM=", + "_parent": { + "$ref": "AAAAAAFbWxNvU5+tyzY=" + }, + "model": { + "$ref": "AAAAAAFbWxP2D6CIkfE=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbWxP2D6CLerM=", + "_parent": { + "$ref": "AAAAAAFbWxP2D6CKWHM=" + }, + "model": { + "$ref": "AAAAAAFbWxP2D6CIkfE=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbWxP2D6CMO3w=", + "_parent": { + "$ref": "AAAAAAFbWxP2D6CLerM=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -224, + "top": -848, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbWxP2D6CNEDI=", + "_parent": { + "$ref": "AAAAAAFbWxP2D6CLerM=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 493, + "top": 23, + "width": 48, + "height": 13, + "autoResize": false, + "underline": false, + "text": "ClassA", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbWxP2D6COEYg=", + "_parent": { + "$ref": "AAAAAAFbWxP2D6CLerM=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -224, + "top": -848, + "width": 125, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from InterfaceInherit)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbWxP2D6CPYQw=", + "_parent": { + "$ref": "AAAAAAFbWxP2D6CLerM=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -224, + "top": -848, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 488, + "top": 16, + "width": 58, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbWxP2D6CMO3w=" + }, + "nameLabel": { + "$ref": "AAAAAAFbWxP2D6CNEDI=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbWxP2D6COEYg=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbWxP2D6CPYQw=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbWxP2D6CQHm8=", + "_parent": { + "$ref": "AAAAAAFbWxP2D6CKWHM=" + }, + "model": { + "$ref": "AAAAAAFbWxP2D6CIkfE=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 488, + "top": 41, + "width": 58, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbWxP2D6CRbB4=", + "_parent": { + "$ref": "AAAAAAFbWxP2D6CKWHM=" + }, + "model": { + "$ref": "AAAAAAFbWxP2D6CIkfE=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 488, + "top": 51, + "width": 58, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbWxP2D6CSUdo=", + "_parent": { + "$ref": "AAAAAAFbWxP2D6CKWHM=" + }, + "model": { + "$ref": "AAAAAAFbWxP2D6CIkfE=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -112, + "top": -424, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbWxP2D6CTl78=", + "_parent": { + "$ref": "AAAAAAFbWxP2D6CKWHM=" + }, + "model": { + "$ref": "AAAAAAFbWxP2D6CIkfE=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -112, + "top": -424, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 488, + "top": 16, + "width": 58, + "height": 45, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbWxP2D6CLerM=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": false, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbWxP2D6CQHm8=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbWxP2D6CRbB4=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbWxP2D6CSUdo=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbWxP2D6CTl78=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAFbWxRI56C2GEw=", + "_parent": { + "$ref": "AAAAAAFbWxNvU5+tyzY=" + }, + "model": { + "$ref": "AAAAAAFbWxRI5qCyU1U=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbWxRI56C3dpg=", + "_parent": { + "$ref": "AAAAAAFbWxRI56C2GEw=" + }, + "model": { + "$ref": "AAAAAAFbWxRI5qCyU1U=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 128, + "top": 17, + "width": 19, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbWxRI56C2GEw=" + }, + "edgePosition": 1, + "underline": false, + "text": "+r1", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbWxRI56C4Hl4=", + "_parent": { + "$ref": "AAAAAAFbWxRI56C2GEw=" + }, + "model": { + "$ref": "AAAAAAFbWxRI5qCyU1U=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 137, + "top": 2, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbWxRI56C2GEw=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbWxRI56C5tK8=", + "_parent": { + "$ref": "AAAAAAFbWxRI56C2GEw=" + }, + "model": { + "$ref": "AAAAAAFbWxRI5qCyU1U=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 137, + "top": 47, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbWxRI56C2GEw=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbWxRI56C6B8Y=", + "_parent": { + "$ref": "AAAAAAFbWxRI56C2GEw=" + }, + "model": { + "$ref": "AAAAAAFbWxRI56CzU30=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 92, + "top": 17, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbWxRI56C2GEw=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbWxRI56C7Dmc=", + "_parent": { + "$ref": "AAAAAAFbWxRI56C2GEw=" + }, + "model": { + "$ref": "AAAAAAFbWxRI56CzU30=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 95, + "top": 3, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFbWxRI56C2GEw=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbWxRI6KC8CDI=", + "_parent": { + "$ref": "AAAAAAFbWxRI56C2GEw=" + }, + "model": { + "$ref": "AAAAAAFbWxRI56CzU30=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 88, + "top": 44, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFbWxRI56C2GEw=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbWxRI6KC9/PY=", + "_parent": { + "$ref": "AAAAAAFbWxRI56C2GEw=" + }, + "model": { + "$ref": "AAAAAAFbWxRI56C0ZJk=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 181, + "top": 17, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbWxRI56C2GEw=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbWxRI6KC+FX4=", + "_parent": { + "$ref": "AAAAAAFbWxRI56C2GEw=" + }, + "model": { + "$ref": "AAAAAAFbWxRI56C0ZJk=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 178, + "top": 3, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFbWxRI56C2GEw=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbWxRI6KC/XUY=", + "_parent": { + "$ref": "AAAAAAFbWxRI56C2GEw=" + }, + "model": { + "$ref": "AAAAAAFbWxRI56C0ZJk=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 185, + "top": 44, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFbWxRI56C2GEw=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFbWxRI6KDAx4Q=", + "_parent": { + "$ref": "AAAAAAFbWxRI56C2GEw=" + }, + "model": { + "$ref": "AAAAAAFbWxRI56CzU30=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -72, + "top": -272, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFbWxRI6KDBTwU=", + "_parent": { + "$ref": "AAAAAAFbWxRI56C2GEw=" + }, + "model": { + "$ref": "AAAAAAFbWxRI56C0ZJk=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -72, + "top": -272, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFbWxPVVKA4PO0=" + }, + "tail": { + "$ref": "AAAAAAFbWxOjrZ/PJDk=" + }, + "lineStyle": 1, + "points": "67:38;207:38", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFbWxRI56C3dpg=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFbWxRI56C4Hl4=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbWxRI56C5tK8=" + }, + "showMultiplicity": true, + "showType": true, + "tailRoleNameLabel": { + "$ref": "AAAAAAFbWxRI56C6B8Y=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAFbWxRI56C7Dmc=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAFbWxRI6KC8CDI=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAFbWxRI6KC9/PY=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAFbWxRI6KC+FX4=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAFbWxRI6KC/XUY=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAFbWxRI6KDAx4Q=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAFbWxRI6KDBTwU=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAFbWxRzcqD/mU4=", + "_parent": { + "$ref": "AAAAAAFbWxNvU5+tyzY=" + }, + "model": { + "$ref": "AAAAAAFbWxRzcqD7nUc=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbWxRzc6EA7X8=", + "_parent": { + "$ref": "AAAAAAFbWxRzcqD/mU4=" + }, + "model": { + "$ref": "AAAAAAFbWxRzcqD7nUc=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 418, + "top": 47, + "width": 19, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbWxRzcqD/mU4=" + }, + "edgePosition": 1, + "underline": false, + "text": "+r2", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbWxRzc6EBYN0=", + "_parent": { + "$ref": "AAAAAAFbWxRzcqD/mU4=" + }, + "model": { + "$ref": "AAAAAAFbWxRzcqD7nUc=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 427, + "top": 62, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbWxRzcqD/mU4=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbWxRzc6ECQPU=", + "_parent": { + "$ref": "AAAAAAFbWxRzcqD/mU4=" + }, + "model": { + "$ref": "AAAAAAFbWxRzcqD7nUc=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 428, + "top": 17, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbWxRzcqD/mU4=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbWxRzc6EDqtc=", + "_parent": { + "$ref": "AAAAAAFbWxRzcqD/mU4=" + }, + "model": { + "$ref": "AAAAAAFbWxRzcqD8ZeA=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 461, + "top": 46, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbWxRzcqD/mU4=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbWxRzc6EEbpM=", + "_parent": { + "$ref": "AAAAAAFbWxRzcqD/mU4=" + }, + "model": { + "$ref": "AAAAAAFbWxRzcqD8ZeA=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 458, + "top": 60, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFbWxRzcqD/mU4=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbWxRzc6EF2lU=", + "_parent": { + "$ref": "AAAAAAFbWxRzcqD/mU4=" + }, + "model": { + "$ref": "AAAAAAFbWxRzcqD8ZeA=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 465, + "top": 19, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFbWxRzcqD/mU4=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbWxRzc6EGbAk=", + "_parent": { + "$ref": "AAAAAAFbWxRzcqD/mU4=" + }, + "model": { + "$ref": "AAAAAAFbWxRzcqD95bo=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 395, + "top": 46, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbWxRzcqD/mU4=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbWxRzc6EHq0k=", + "_parent": { + "$ref": "AAAAAAFbWxRzcqD/mU4=" + }, + "model": { + "$ref": "AAAAAAFbWxRzcqD95bo=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 398, + "top": 60, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFbWxRzcqD/mU4=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbWxRzc6EIQ8g=", + "_parent": { + "$ref": "AAAAAAFbWxRzcqD/mU4=" + }, + "model": { + "$ref": "AAAAAAFbWxRzcqD95bo=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 391, + "top": 19, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFbWxRzcqD/mU4=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFbWxRzc6EJVoo=", + "_parent": { + "$ref": "AAAAAAFbWxRzcqD/mU4=" + }, + "model": { + "$ref": "AAAAAAFbWxRzcqD8ZeA=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -72, + "top": -272, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFbWxRzc6EKIzA=", + "_parent": { + "$ref": "AAAAAAFbWxRzcqD/mU4=" + }, + "model": { + "$ref": "AAAAAAFbWxRzcqD95bo=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -72, + "top": -272, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFbWxPq6aBhvO8=" + }, + "tail": { + "$ref": "AAAAAAFbWxP2D6CKWHM=" + }, + "lineStyle": 1, + "points": "487:38;370:38", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFbWxRzc6EA7X8=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFbWxRzc6EBYN0=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbWxRzc6ECQPU=" + }, + "showMultiplicity": true, + "showType": true, + "tailRoleNameLabel": { + "$ref": "AAAAAAFbWxRzc6EDqtc=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAFbWxRzc6EEbpM=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAFbWxRzc6EF2lU=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAFbWxRzc6EGbAk=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAFbWxRzc6EHq0k=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAFbWxRzc6EIQ8g=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAFbWxRzc6EJVoo=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAFbWxRzc6EKIzA=" + } + }, + { + "_type": "UMLInterfaceView", + "_id": "AAAAAAFbXQC/rIEyznM=", + "_parent": { + "$ref": "AAAAAAFbWxNvU5+tyzY=" + }, + "model": { + "$ref": "AAAAAAFbXQC/q4EwEiA=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbXQC/rIEzWOM=", + "_parent": { + "$ref": "AAAAAAFbXQC/rIEyznM=" + }, + "model": { + "$ref": "AAAAAAFbXQC/q4EwEiA=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbXQC/rIE03JM=", + "_parent": { + "$ref": "AAAAAAFbXQC/rIEzWOM=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 261, + "top": 205, + "width": 74, + "height": 13, + "autoResize": false, + "underline": false, + "text": "«interface»", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXQC/rIE1cXs=", + "_parent": { + "$ref": "AAAAAAFbXQC/rIEzWOM=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 261, + "top": 220, + "width": 74, + "height": 13, + "autoResize": false, + "underline": false, + "text": "I1", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXQC/rYE2Whs=", + "_parent": { + "$ref": "AAAAAAFbXQC/rIEzWOM=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -432, + "top": -560, + "width": 125, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from InterfaceInherit)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXQC/rYE3wN8=", + "_parent": { + "$ref": "AAAAAAFbXQC/rIEzWOM=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -432, + "top": -560, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 256, + "top": 200, + "width": 84, + "height": 38, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbXQC/rIE03JM=" + }, + "nameLabel": { + "$ref": "AAAAAAFbXQC/rIE1cXs=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbXQC/rYE2Whs=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbXQC/rYE3wN8=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbXQC/rYE4Bp4=", + "_parent": { + "$ref": "AAAAAAFbXQC/rIEyznM=" + }, + "model": { + "$ref": "AAAAAAFbXQC/q4EwEiA=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFbXQPeC4Zp2TY=", + "_parent": { + "$ref": "AAAAAAFbXQC/rYE4Bp4=" + }, + "model": { + "$ref": "AAAAAAFbXQPd3YZgfXc=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 261, + "top": 243, + "width": 98, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+f1: Int", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 256, + "top": 238, + "width": 108, + "height": 23, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbXQC/rYE5iaU=", + "_parent": { + "$ref": "AAAAAAFbXQC/rIEyznM=" + }, + "model": { + "$ref": "AAAAAAFbXQC/q4EwEiA=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -216, + "top": -280, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbXQC/rYE67F0=", + "_parent": { + "$ref": "AAAAAAFbXQC/rIEyznM=" + }, + "model": { + "$ref": "AAAAAAFbXQC/q4EwEiA=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -216, + "top": -280, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbXQC/rYE7gJ0=", + "_parent": { + "$ref": "AAAAAAFbXQC/rIEyznM=" + }, + "model": { + "$ref": "AAAAAAFbXQC/q4EwEiA=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -216, + "top": -280, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 256, + "top": 200, + "width": 108, + "height": 72, + "autoResize": false, + "stereotypeDisplay": "decoration-label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbXQC/rIEzWOM=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": true, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbXQC/rYE4Bp4=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbXQC/rYE5iaU=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbXQC/rYE67F0=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbXQC/rYE7gJ0=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAFbXQLi44McFTs=", + "_parent": { + "$ref": "AAAAAAFbWxNvU5+tyzY=" + }, + "model": { + "$ref": "AAAAAAFbXQLi4oMY2lc=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXQLi44MdgsY=", + "_parent": { + "$ref": "AAAAAAFbXQLi44McFTs=" + }, + "model": { + "$ref": "AAAAAAFbXQLi4oMY2lc=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 380, + "top": 113, + "width": 56, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbXQLi44McFTs=" + }, + "edgePosition": 1, + "underline": false, + "text": "+i1ToC22", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXQLi44MefPE=", + "_parent": { + "$ref": "AAAAAAFbXQLi44McFTs=" + }, + "model": { + "$ref": "AAAAAAFbXQLi4oMY2lc=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 398, + "top": 102, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbXQLi44McFTs=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXQLi44MfUsc=", + "_parent": { + "$ref": "AAAAAAFbXQLi44McFTs=" + }, + "model": { + "$ref": "AAAAAAFbXQLi4oMY2lc=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 429, + "top": 134, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbXQLi44McFTs=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXQLi44MgsT0=", + "_parent": { + "$ref": "AAAAAAFbXQLi44McFTs=" + }, + "model": { + "$ref": "AAAAAAFbXQLi44MZ5ys=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 355, + "top": 164, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbXQLi44McFTs=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXQLi44MhKjE=", + "_parent": { + "$ref": "AAAAAAFbXQLi44McFTs=" + }, + "model": { + "$ref": "AAAAAAFbXQLi44MZ5ys=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 347, + "top": 153, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFbXQLi44McFTs=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXQLi44MixPw=", + "_parent": { + "$ref": "AAAAAAFbXQLi44McFTs=" + }, + "model": { + "$ref": "AAAAAAFbXQLi44MZ5ys=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 371, + "top": 187, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFbXQLi44McFTs=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXQLi44Mjkz8=", + "_parent": { + "$ref": "AAAAAAFbXQLi44McFTs=" + }, + "model": { + "$ref": "AAAAAAFbXQLi44MawSs=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 462, + "top": 62, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbXQLi44McFTs=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXQLi5IMkess=", + "_parent": { + "$ref": "AAAAAAFbXQLi44McFTs=" + }, + "model": { + "$ref": "AAAAAAFbXQLi44MawSs=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 452, + "top": 54, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFbXQLi44McFTs=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXQLi5IMl/Pk=", + "_parent": { + "$ref": "AAAAAAFbXQLi44McFTs=" + }, + "model": { + "$ref": "AAAAAAFbXQLi44MawSs=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 484, + "top": 78, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFbXQLi44McFTs=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFbXQLi5IMmC5U=", + "_parent": { + "$ref": "AAAAAAFbXQLi44McFTs=" + }, + "model": { + "$ref": "AAAAAAFbXQLi44MZ5ys=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -72, + "top": -272, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFbXQLi5IMn/P4=", + "_parent": { + "$ref": "AAAAAAFbXQLi44McFTs=" + }, + "model": { + "$ref": "AAAAAAFbXQLi44MawSs=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -72, + "top": -272, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFbWxP2D6CKWHM=" + }, + "tail": { + "$ref": "AAAAAAFbXQC/rIEyznM=" + }, + "lineStyle": 1, + "points": "347:199;492:61", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFbXQLi44MdgsY=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFbXQLi44MefPE=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbXQLi44MfUsc=" + }, + "showMultiplicity": true, + "showType": true, + "tailRoleNameLabel": { + "$ref": "AAAAAAFbXQLi44MgsT0=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAFbXQLi44MhKjE=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAFbXQLi44MixPw=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAFbXQLi44Mjkz8=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAFbXQLi5IMkess=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAFbXQLi5IMl/Pk=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAFbXQLi5IMmC5U=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAFbXQLi5IMn/P4=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAFbXQNaTYQrA7U=", + "_parent": { + "$ref": "AAAAAAFbWxNvU5+tyzY=" + }, + "model": { + "$ref": "AAAAAAFbXQNaTYQnrFA=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXQNaTYQs1Fs=", + "_parent": { + "$ref": "AAAAAAFbXQNaTYQrA7U=" + }, + "model": { + "$ref": "AAAAAAFbXQNaTYQnrFA=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 130, + "top": 134, + "width": 49, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbXQNaTYQrA7U=" + }, + "edgePosition": 1, + "underline": false, + "text": "+i1ToC1", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXQNaTYQttIM=", + "_parent": { + "$ref": "AAAAAAFbXQNaTYQrA7U=" + }, + "model": { + "$ref": "AAAAAAFbXQNaTYQnrFA=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 145, + "top": 146, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbXQNaTYQrA7U=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXQNaTYQu9dg=", + "_parent": { + "$ref": "AAAAAAFbXQNaTYQrA7U=" + }, + "model": { + "$ref": "AAAAAAFbXQNaTYQnrFA=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 171, + "top": 109, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbXQNaTYQrA7U=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXQNaTYQvQSw=", + "_parent": { + "$ref": "AAAAAAFbXQNaTYQrA7U=" + }, + "model": { + "$ref": "AAAAAAFbXQNaTYQoesw=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 230, + "top": 189, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbXQNaTYQrA7U=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXQNaTYQwKjg=", + "_parent": { + "$ref": "AAAAAAFbXQNaTYQrA7U=" + }, + "model": { + "$ref": "AAAAAAFbXQNaTYQoesw=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 220, + "top": 199, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFbXQNaTYQrA7U=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXQNaToQxmWQ=", + "_parent": { + "$ref": "AAAAAAFbXQNaTYQrA7U=" + }, + "model": { + "$ref": "AAAAAAFbXQNaTYQoesw=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 249, + "top": 170, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFbXQNaTYQrA7U=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXQNaToQy5qk=", + "_parent": { + "$ref": "AAAAAAFbXQNaTYQrA7U=" + }, + "model": { + "$ref": "AAAAAAFbXQNaTYQpS1c=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 79, + "top": 78, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbXQNaTYQrA7U=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXQNaToQzb80=", + "_parent": { + "$ref": "AAAAAAFbXQNaTYQrA7U=" + }, + "model": { + "$ref": "AAAAAAFbXQNaTYQpS1c=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 73, + "top": 90, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFbXQNaTYQrA7U=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXQNaToQ0d/0=", + "_parent": { + "$ref": "AAAAAAFbXQNaTYQrA7U=" + }, + "model": { + "$ref": "AAAAAAFbXQNaTYQpS1c=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 91, + "top": 53, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFbXQNaTYQrA7U=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFbXQNaToQ1wQk=", + "_parent": { + "$ref": "AAAAAAFbXQNaTYQrA7U=" + }, + "model": { + "$ref": "AAAAAAFbXQNaTYQoesw=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -72, + "top": -272, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFbXQNaToQ2xN0=", + "_parent": { + "$ref": "AAAAAAFbXQNaTYQrA7U=" + }, + "model": { + "$ref": "AAAAAAFbXQNaTYQpS1c=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -72, + "top": -272, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFbWxOjrZ/PJDk=" + }, + "tail": { + "$ref": "AAAAAAFbXQC/rIEyznM=" + }, + "lineStyle": 1, + "points": "260:199;67:57", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFbXQNaTYQs1Fs=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFbXQNaTYQttIM=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbXQNaTYQu9dg=" + }, + "showMultiplicity": true, + "showType": true, + "tailRoleNameLabel": { + "$ref": "AAAAAAFbXQNaTYQvQSw=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAFbXQNaTYQwKjg=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAFbXQNaToQxmWQ=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAFbXQNaToQy5qk=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAFbXQNaToQzb80=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAFbXQNaToQ0d/0=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAFbXQNaToQ1wQk=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAFbXQNaToQ2xN0=" + } + }, + { + "_type": "UMLInterfaceView", + "_id": "AAAAAAFbXQOEd4Syooo=", + "_parent": { + "$ref": "AAAAAAFbWxNvU5+tyzY=" + }, + "model": { + "$ref": "AAAAAAFbXQOEd4Sw8rc=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbXQOEd4SzH6g=", + "_parent": { + "$ref": "AAAAAAFbXQOEd4Syooo=" + }, + "model": { + "$ref": "AAAAAAFbXQOEd4Sw8rc=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbXQOEd4S0w/o=", + "_parent": { + "$ref": "AAAAAAFbXQOEd4SzH6g=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 261, + "top": 357, + "width": 74, + "height": 13, + "autoResize": false, + "underline": false, + "text": "«interface»", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXQOEd4S1oI0=", + "_parent": { + "$ref": "AAAAAAFbXQOEd4SzH6g=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 261, + "top": 372, + "width": 74, + "height": 13, + "autoResize": false, + "underline": false, + "text": "I2", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXQOEd4S2JxE=", + "_parent": { + "$ref": "AAAAAAFbXQOEd4SzH6g=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -432, + "top": -592, + "width": 125, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from InterfaceInherit)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXQOEd4S3sTU=", + "_parent": { + "$ref": "AAAAAAFbXQOEd4SzH6g=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -432, + "top": -592, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 256, + "top": 352, + "width": 84, + "height": 38, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbXQOEd4S0w/o=" + }, + "nameLabel": { + "$ref": "AAAAAAFbXQOEd4S1oI0=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbXQOEd4S2JxE=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbXQOEd4S3sTU=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbXQOEd4S44vk=", + "_parent": { + "$ref": "AAAAAAFbXQOEd4Syooo=" + }, + "model": { + "$ref": "AAAAAAFbXQOEd4Sw8rc=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -216, + "top": -296, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbXQOEd4S5QME=", + "_parent": { + "$ref": "AAAAAAFbXQOEd4Syooo=" + }, + "model": { + "$ref": "AAAAAAFbXQOEd4Sw8rc=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 256, + "top": 390, + "width": 108, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbXQOEd4S6T2o=", + "_parent": { + "$ref": "AAAAAAFbXQOEd4Syooo=" + }, + "model": { + "$ref": "AAAAAAFbXQOEd4Sw8rc=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -216, + "top": -296, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbXQOEeIS7jzg=", + "_parent": { + "$ref": "AAAAAAFbXQOEd4Syooo=" + }, + "model": { + "$ref": "AAAAAAFbXQOEd4Sw8rc=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -216, + "top": -296, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 256, + "top": 352, + "width": 108, + "height": 59, + "autoResize": false, + "stereotypeDisplay": "decoration-label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbXQOEd4SzH6g=" + }, + "wordWrap": false, + "suppressAttributes": true, + "suppressOperations": false, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbXQOEd4S44vk=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbXQOEd4S5QME=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbXQOEd4S6T2o=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbXQOEeIS7jzg=" + } + }, + { + "_type": "UMLGeneralizationView", + "_id": "AAAAAAFbXcG11L5rzks=", + "_parent": { + "$ref": "AAAAAAFbWxNvU5+tyzY=" + }, + "model": { + "$ref": "AAAAAAFbXcG1075p7fw=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXcG11L5sCc0=", + "_parent": { + "$ref": "AAAAAAFbXcG11L5rzks=" + }, + "model": { + "$ref": "AAAAAAFbXcG1075p7fw=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 294, + "top": 304, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbXcG11L5rzks=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXcG11L5tyzI=", + "_parent": { + "$ref": "AAAAAAFbXcG11L5rzks=" + }, + "model": { + "$ref": "AAAAAAFbXcG1075p7fw=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 279, + "top": 304, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbXcG11L5rzks=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXcG11L5u3q0=", + "_parent": { + "$ref": "AAAAAAFbXcG11L5rzks=" + }, + "model": { + "$ref": "AAAAAAFbXcG1075p7fw=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 323, + "top": 305, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbXcG11L5rzks=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFbXQC/rIEyznM=" + }, + "tail": { + "$ref": "AAAAAAFbXQOEd4Syooo=" + }, + "lineStyle": 1, + "points": "309:351;309:272", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFbXcG11L5sCc0=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFbXcG11L5tyzI=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbXcG11L5u3q0=" + } + } + ] + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFbWxOG/5/LBOs=", + "_parent": { + "$ref": "AAAAAAFbWxM6Rp+O4Wc=" + }, + "name": "Class1", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAFbWxRI5qCyU1U=", + "_parent": { + "$ref": "AAAAAAFbWxOG/5/LBOs=" + }, + "name": "r1", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFbWxRI56CzU30=", + "_parent": { + "$ref": "AAAAAAFbWxRI5qCyU1U=" + }, + "reference": { + "$ref": "AAAAAAFbWxOG/5/LBOs=" + }, + "visibility": "public", + "navigable": false, + "aggregation": "none", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFbWxRI56C0ZJk=", + "_parent": { + "$ref": "AAAAAAFbWxRI5qCyU1U=" + }, + "reference": { + "$ref": "AAAAAAFbWxPVVKA2cvA=" + }, + "visibility": "public", + "navigable": true, + "aggregation": "none", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "visibility": "public", + "isDerived": false + } + ], + "visibility": "public", + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFbWxPVVKA2cvA=", + "_parent": { + "$ref": "AAAAAAFbWxM6Rp+O4Wc=" + }, + "name": "Class2", + "visibility": "public", + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFbWxPq6aBfSxc=", + "_parent": { + "$ref": "AAAAAAFbWxM6Rp+O4Wc=" + }, + "name": "ClassB", + "visibility": "public", + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFbWxP2D6CIkfE=", + "_parent": { + "$ref": "AAAAAAFbWxM6Rp+O4Wc=" + }, + "name": "ClassA", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAFbWxRzcqD7nUc=", + "_parent": { + "$ref": "AAAAAAFbWxP2D6CIkfE=" + }, + "name": "r2", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFbWxRzcqD8ZeA=", + "_parent": { + "$ref": "AAAAAAFbWxRzcqD7nUc=" + }, + "reference": { + "$ref": "AAAAAAFbWxP2D6CIkfE=" + }, + "visibility": "public", + "navigable": false, + "aggregation": "none", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFbWxRzcqD95bo=", + "_parent": { + "$ref": "AAAAAAFbWxRzcqD7nUc=" + }, + "reference": { + "$ref": "AAAAAAFbWxPq6aBfSxc=" + }, + "visibility": "public", + "navigable": true, + "aggregation": "none", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "visibility": "public", + "isDerived": false + } + ], + "visibility": "public", + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLInterface", + "_id": "AAAAAAFbXQC/q4EwEiA=", + "_parent": { + "$ref": "AAAAAAFbWxM6Rp+O4Wc=" + }, + "name": "I1", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAFbXQLi4oMY2lc=", + "_parent": { + "$ref": "AAAAAAFbXQC/q4EwEiA=" + }, + "name": "i1ToC22", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFbXQLi44MZ5ys=", + "_parent": { + "$ref": "AAAAAAFbXQLi4oMY2lc=" + }, + "reference": { + "$ref": "AAAAAAFbXQC/q4EwEiA=" + }, + "visibility": "public", + "navigable": false, + "aggregation": "none", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFbXQLi44MawSs=", + "_parent": { + "$ref": "AAAAAAFbXQLi4oMY2lc=" + }, + "reference": { + "$ref": "AAAAAAFbWxP2D6CIkfE=" + }, + "visibility": "public", + "navigable": true, + "aggregation": "none", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "visibility": "public", + "isDerived": false + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAFbXQNaTYQnrFA=", + "_parent": { + "$ref": "AAAAAAFbXQC/q4EwEiA=" + }, + "name": "i1ToC1", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFbXQNaTYQoesw=", + "_parent": { + "$ref": "AAAAAAFbXQNaTYQnrFA=" + }, + "reference": { + "$ref": "AAAAAAFbXQC/q4EwEiA=" + }, + "visibility": "public", + "navigable": false, + "aggregation": "none", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFbXQNaTYQpS1c=", + "_parent": { + "$ref": "AAAAAAFbXQNaTYQnrFA=" + }, + "reference": { + "$ref": "AAAAAAFbWxOG/5/LBOs=" + }, + "visibility": "public", + "navigable": true, + "aggregation": "none", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "visibility": "public", + "isDerived": false + } + ], + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFbXQPd3YZgfXc=", + "_parent": { + "$ref": "AAAAAAFbXQC/q4EwEiA=" + }, + "name": "f1", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "Int", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false + }, + { + "_type": "UMLInterface", + "_id": "AAAAAAFbXQOEd4Sw8rc=", + "_parent": { + "$ref": "AAAAAAFbWxM6Rp+O4Wc=" + }, + "name": "I2", + "ownedElements": [ + { + "_type": "UMLGeneralization", + "_id": "AAAAAAFbXcG1075p7fw=", + "_parent": { + "$ref": "AAAAAAFbXQOEd4Sw8rc=" + }, + "source": { + "$ref": "AAAAAAFbXQOEd4Sw8rc=" + }, + "target": { + "$ref": "AAAAAAFbXQC/q4EwEiA=" + }, + "visibility": "public" + } + ], + "visibility": "public", + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false + } + ], + "visibility": "public" + }, + { + "_type": "UMLPackage", + "_id": "AAAAAAFbXbOccEs/NuE=", + "_parent": { + "$ref": "AAAAAAFF+h6SjaM2Hec=" + }, + "name": "defaultValue", + "ownedElements": [ + { + "_type": "UMLClassDiagram", + "_id": "AAAAAAFbXbSXUEwkQ6Y=", + "_parent": { + "$ref": "AAAAAAFbXbOccEs/NuE=" + }, + "name": "defaultValue", + "visible": true, + "defaultDiagram": false, + "ownedViews": [ + { + "_type": "UMLClassView", + "_id": "AAAAAAFbXbSuOExQOOc=", + "_parent": { + "$ref": "AAAAAAFbXbSXUEwkQ6Y=" + }, + "model": { + "$ref": "AAAAAAFbXbSuN0xOXl4=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbXbSuOExR3lA=", + "_parent": { + "$ref": "AAAAAAFbXbSuOExQOOc=" + }, + "model": { + "$ref": "AAAAAAFbXbSuN0xOXl4=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbXbSuOExSfC0=", + "_parent": { + "$ref": "AAAAAAFbXbSuOExR3lA=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -544, + "top": -688, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXbSuOUxTxgk=", + "_parent": { + "$ref": "AAAAAAFbXbSuOExR3lA=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 37, + "top": 31, + "width": 147, + "height": 13, + "autoResize": false, + "underline": false, + "text": "MyClass", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXbSuOUxUqwg=", + "_parent": { + "$ref": "AAAAAAFbXbSuOExR3lA=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -544, + "top": -688, + "width": 110, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from defaultValue)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXbSuOUxVPT8=", + "_parent": { + "$ref": "AAAAAAFbXbSuOExR3lA=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -544, + "top": -688, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 32, + "top": 24, + "width": 157, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbXbSuOExSfC0=" + }, + "nameLabel": { + "$ref": "AAAAAAFbXbSuOUxTxgk=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbXbSuOUxUqwg=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbXbSuOUxVPT8=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbXbSuOUxW3Y8=", + "_parent": { + "$ref": "AAAAAAFbXbSuOExQOOc=" + }, + "model": { + "$ref": "AAAAAAFbXbSuN0xOXl4=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFbXbTLckx6SEE=", + "_parent": { + "$ref": "AAAAAAFbXbSuOUxW3Y8=" + }, + "model": { + "$ref": "AAAAAAFbXbTLPUx3fQg=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 37, + "top": 54, + "width": 147, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+v1: String = \"helloworld\"", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFbXbVsUkyEe/U=", + "_parent": { + "$ref": "AAAAAAFbXbSuOUxW3Y8=" + }, + "model": { + "$ref": "AAAAAAFbXbVsHkyBmdQ=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 37, + "top": 69, + "width": 147, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+v2: Int = 5", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFbbhmxkt2t+uY=", + "_parent": { + "$ref": "AAAAAAFbXbSuOUxW3Y8=" + }, + "model": { + "$ref": "AAAAAAFbbhmxYd2q5uQ=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 37, + "top": 84, + "width": 147, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+v3[1]", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 32, + "top": 49, + "width": 157, + "height": 53, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbXbSuOUxXrUI=", + "_parent": { + "$ref": "AAAAAAFbXbSuOExQOOc=" + }, + "model": { + "$ref": "AAAAAAFbXbSuN0xOXl4=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 32, + "top": 102, + "width": 157, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbXbSuOUxYMcg=", + "_parent": { + "$ref": "AAAAAAFbXbSuOExQOOc=" + }, + "model": { + "$ref": "AAAAAAFbXbSuN0xOXl4=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -272, + "top": -344, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbXbSuOUxZhRc=", + "_parent": { + "$ref": "AAAAAAFbXbSuOExQOOc=" + }, + "model": { + "$ref": "AAAAAAFbXbSuN0xOXl4=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -272, + "top": -344, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 32, + "top": 24, + "width": 157, + "height": 88, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbXbSuOExR3lA=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": false, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbXbSuOUxW3Y8=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbXbSuOUxXrUI=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbXbSuOUxYMcg=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbXbSuOUxZhRc=" + } + } + ] + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFbXbSuN0xOXl4=", + "_parent": { + "$ref": "AAAAAAFbXbOccEs/NuE=" + }, + "name": "MyClass", + "documentation": "Just a few comments to demo documentation generation.", + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFbXbTLPUx3fQg=", + "_parent": { + "$ref": "AAAAAAFbXbSuN0xOXl4=" + }, + "name": "v1", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "String", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "defaultValue": "\"helloworld\"", + "isDerived": false, + "aggregation": "none", + "isID": false + }, + { + "_type": "UMLAttribute", + "_id": "AAAAAAFbXbVsHkyBmdQ=", + "_parent": { + "$ref": "AAAAAAFbXbSuN0xOXl4=" + }, + "name": "v2", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "Int", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "defaultValue": "5", + "isDerived": false, + "aggregation": "none", + "isID": false + }, + { + "_type": "UMLAttribute", + "_id": "AAAAAAFbbhmxYd2q5uQ=", + "_parent": { + "$ref": "AAAAAAFbXbSuN0xOXl4=" + }, + "name": "v3", + "documentation": "This field is required, it has a multiplicity=1", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "", + "multiplicity": "1", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + } + ], + "visibility": "public" + }, + { + "_type": "UMLPackage", + "_id": "AAAAAAFbXeOQesKCgKI=", + "_parent": { + "$ref": "AAAAAAFF+h6SjaM2Hec=" + }, + "name": "scalars_enums", + "ownedElements": [ + { + "_type": "UMLPrimitiveType", + "_id": "AAAAAAFbXeS+xmPaGqM=", + "_parent": { + "$ref": "AAAAAAFbXeOQesKCgKI=" + }, + "name": "UUID", + "visibility": "public", + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false + }, + { + "_type": "UMLPrimitiveType", + "_id": "AAAAAAFbXeTvkWPbnBI=", + "_parent": { + "$ref": "AAAAAAFbXeOQesKCgKI=" + }, + "name": "Date", + "visibility": "public", + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false + }, + { + "_type": "UMLClassDiagram", + "_id": "AAAAAAFbXeUBJMONGPE=", + "_parent": { + "$ref": "AAAAAAFbXeOQesKCgKI=" + }, + "name": "scalars_enums", + "visible": true, + "defaultDiagram": false, + "ownedViews": [ + { + "_type": "UMLPrimitiveTypeView", + "_id": "AAAAAAFbXeUJW8O4U00=", + "_parent": { + "$ref": "AAAAAAFbXeUBJMONGPE=" + }, + "model": { + "$ref": "AAAAAAFbXeS+xmPaGqM=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbXeUJW8O5Hjg=", + "_parent": { + "$ref": "AAAAAAFbXeUJW8O4U00=" + }, + "model": { + "$ref": "AAAAAAFbXeS+xmPaGqM=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbXeUJW8O6EnI=", + "_parent": { + "$ref": "AAAAAAFbXeUJW8O5Hjg=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 317, + "top": 13, + "width": 92, + "height": 13, + "autoResize": false, + "underline": false, + "text": "«primitiveType»", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXeUJW8O7o58=", + "_parent": { + "$ref": "AAAAAAFbXeUJW8O5Hjg=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 317, + "top": 28, + "width": 92, + "height": 13, + "autoResize": false, + "underline": false, + "text": "UUID", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXeUJW8O8HWM=", + "_parent": { + "$ref": "AAAAAAFbXeUJW8O5Hjg=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -282, + "top": -640, + "width": 126, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from scalars_enums)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXeUJW8O9xSI=", + "_parent": { + "$ref": "AAAAAAFbXeUJW8O5Hjg=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -282, + "top": -640, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 312, + "top": 8, + "width": 102, + "height": 38, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbXeUJW8O6EnI=" + }, + "nameLabel": { + "$ref": "AAAAAAFbXeUJW8O7o58=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbXeUJW8O8HWM=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbXeUJW8O9xSI=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbXeUJW8O+KBM=", + "_parent": { + "$ref": "AAAAAAFbXeUJW8O4U00=" + }, + "model": { + "$ref": "AAAAAAFbXeS+xmPaGqM=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -141, + "top": -320, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbXeUJW8O/qyo=", + "_parent": { + "$ref": "AAAAAAFbXeUJW8O4U00=" + }, + "model": { + "$ref": "AAAAAAFbXeS+xmPaGqM=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -141, + "top": -320, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbXeUJW8PAjBY=", + "_parent": { + "$ref": "AAAAAAFbXeUJW8O4U00=" + }, + "model": { + "$ref": "AAAAAAFbXeS+xmPaGqM=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -141, + "top": -320, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbXeUJXMPBXg8=", + "_parent": { + "$ref": "AAAAAAFbXeUJW8O4U00=" + }, + "model": { + "$ref": "AAAAAAFbXeS+xmPaGqM=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -141, + "top": -320, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 312, + "top": 8, + "width": 102, + "height": 38, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbXeUJW8O5Hjg=" + }, + "wordWrap": false, + "suppressAttributes": true, + "suppressOperations": true, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbXeUJW8O+KBM=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbXeUJW8O/qyo=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbXeUJW8PAjBY=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbXeUJXMPBXg8=" + } + }, + { + "_type": "UMLPrimitiveTypeView", + "_id": "AAAAAAFbXeUTMsPfij0=", + "_parent": { + "$ref": "AAAAAAFbXeUBJMONGPE=" + }, + "model": { + "$ref": "AAAAAAFbXeTvkWPbnBI=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbXeUTMsPgWIw=", + "_parent": { + "$ref": "AAAAAAFbXeUTMsPfij0=" + }, + "model": { + "$ref": "AAAAAAFbXeTvkWPbnBI=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbXeUTMsPhh5c=", + "_parent": { + "$ref": "AAAAAAFbXeUTMsPgWIw=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 173, + "top": 13, + "width": 92, + "height": 13, + "autoResize": false, + "underline": false, + "text": "«primitiveType»", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXeUTMsPiWec=", + "_parent": { + "$ref": "AAAAAAFbXeUTMsPgWIw=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 173, + "top": 28, + "width": 92, + "height": 13, + "autoResize": false, + "underline": false, + "text": "Date", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXeUTMsPjR1U=", + "_parent": { + "$ref": "AAAAAAFbXeUTMsPgWIw=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -282, + "top": -616, + "width": 126, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from scalars_enums)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXeUTM8Pks0Y=", + "_parent": { + "$ref": "AAAAAAFbXeUTMsPgWIw=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -282, + "top": -616, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 168, + "top": 8, + "width": 102, + "height": 38, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbXeUTMsPhh5c=" + }, + "nameLabel": { + "$ref": "AAAAAAFbXeUTMsPiWec=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbXeUTMsPjR1U=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbXeUTM8Pks0Y=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbXeUTM8Pla2k=", + "_parent": { + "$ref": "AAAAAAFbXeUTMsPfij0=" + }, + "model": { + "$ref": "AAAAAAFbXeTvkWPbnBI=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -141, + "top": -308, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbXeUTM8PmA8U=", + "_parent": { + "$ref": "AAAAAAFbXeUTMsPfij0=" + }, + "model": { + "$ref": "AAAAAAFbXeTvkWPbnBI=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -141, + "top": -308, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbXeUTM8PnLpg=", + "_parent": { + "$ref": "AAAAAAFbXeUTMsPfij0=" + }, + "model": { + "$ref": "AAAAAAFbXeTvkWPbnBI=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -141, + "top": -308, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbXeUTM8Po0KU=", + "_parent": { + "$ref": "AAAAAAFbXeUTMsPfij0=" + }, + "model": { + "$ref": "AAAAAAFbXeTvkWPbnBI=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -141, + "top": -308, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 168, + "top": 8, + "width": 102, + "height": 38, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbXeUTMsPgWIw=" + }, + "wordWrap": false, + "suppressAttributes": true, + "suppressOperations": true, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbXeUTM8Pla2k=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbXeUTM8PmA8U=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbXeUTM8PnLpg=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbXeUTM8Po0KU=" + } + }, + { + "_type": "UMLEnumerationView", + "_id": "AAAAAAFbXeuDvNVz8VQ=", + "_parent": { + "$ref": "AAAAAAFbXeUBJMONGPE=" + }, + "model": { + "$ref": "AAAAAAFbXetaJWPhCiY=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbXeuDvNV0A30=", + "_parent": { + "$ref": "AAAAAAFbXeuDvNVz8VQ=" + }, + "model": { + "$ref": "AAAAAAFbXetaJWPhCiY=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbXeuDvNV1QKc=", + "_parent": { + "$ref": "AAAAAAFbXeuDvNV0A30=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 13, + "top": 13, + "width": 87, + "height": 13, + "autoResize": false, + "underline": false, + "text": "«enumeration»", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXeuDvNV20UA=", + "_parent": { + "$ref": "AAAAAAFbXeuDvNV0A30=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 13, + "top": 28, + "width": 87, + "height": 13, + "autoResize": false, + "underline": false, + "text": "Enumeration1", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXeuDvNV3G0Y=", + "_parent": { + "$ref": "AAAAAAFbXeuDvNV0A30=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -1014, + "top": -1390, + "width": 126, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from scalars_enums)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXeuDvNV4+d4=", + "_parent": { + "$ref": "AAAAAAFbXeuDvNV0A30=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -1014, + "top": -1390, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 8, + "top": 8, + "width": 97, + "height": 38, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbXeuDvNV1QKc=" + }, + "nameLabel": { + "$ref": "AAAAAAFbXeuDvNV20UA=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbXeuDvNV3G0Y=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbXeuDvNV4+d4=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbXeuDvNV5Rrg=", + "_parent": { + "$ref": "AAAAAAFbXeuDvNVz8VQ=" + }, + "model": { + "$ref": "AAAAAAFbXetaJWPhCiY=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -507, + "top": -695, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbXeuDvNV6GWM=", + "_parent": { + "$ref": "AAAAAAFbXeuDvNVz8VQ=" + }, + "model": { + "$ref": "AAAAAAFbXetaJWPhCiY=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -507, + "top": -695, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbXeuDvdV7Jzs=", + "_parent": { + "$ref": "AAAAAAFbXeuDvNVz8VQ=" + }, + "model": { + "$ref": "AAAAAAFbXetaJWPhCiY=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -507, + "top": -695, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbXeuDvdV8QW8=", + "_parent": { + "$ref": "AAAAAAFbXeuDvNVz8VQ=" + }, + "model": { + "$ref": "AAAAAAFbXetaJWPhCiY=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -507, + "top": -695, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLEnumerationLiteralCompartmentView", + "_id": "AAAAAAFbXeuDvdV9nv8=", + "_parent": { + "$ref": "AAAAAAFbXeuDvNVz8VQ=" + }, + "model": { + "$ref": "AAAAAAFbXetaJWPhCiY=" + }, + "subViews": [ + { + "_type": "UMLEnumerationLiteralView", + "_id": "AAAAAAFbXeuD7tWdnT4=", + "_parent": { + "$ref": "AAAAAAFbXeuDvdV9nv8=" + }, + "model": { + "$ref": "AAAAAAFbXetaJWPiY0A=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 13, + "top": 51, + "width": 87, + "height": 13, + "autoResize": false, + "underline": false, + "text": "L1", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLEnumerationLiteralView", + "_id": "AAAAAAFbXeuD7tWg21M=", + "_parent": { + "$ref": "AAAAAAFbXeuDvdV9nv8=" + }, + "model": { + "$ref": "AAAAAAFbXetaJWPjXhQ=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 13, + "top": 66, + "width": 87, + "height": 13, + "autoResize": false, + "underline": false, + "text": "L2", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLEnumerationLiteralView", + "_id": "AAAAAAFbXeuD79WjcoE=", + "_parent": { + "$ref": "AAAAAAFbXeuDvdV9nv8=" + }, + "model": { + "$ref": "AAAAAAFbXetaJWPkTUA=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 13, + "top": 81, + "width": 87, + "height": 13, + "autoResize": false, + "underline": false, + "text": "L3", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 8, + "top": 46, + "width": 97, + "height": 53, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 8, + "top": 8, + "width": 97, + "height": 91, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbXeuDvNV0A30=" + }, + "wordWrap": false, + "suppressAttributes": true, + "suppressOperations": true, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbXeuDvNV5Rrg=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbXeuDvNV6GWM=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbXeuDvdV7Jzs=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbXeuDvdV8QW8=" + }, + "suppressLiterals": false, + "enumerationLiteralCompartment": { + "$ref": "AAAAAAFbXeuDvdV9nv8=" + } + } + ] + }, + { + "_type": "UMLEnumeration", + "_id": "AAAAAAFbXetaJWPhCiY=", + "_parent": { + "$ref": "AAAAAAFbXeOQesKCgKI=" + }, + "name": "Enumeration1", + "visibility": "public", + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "literals": [ + { + "_type": "UMLEnumerationLiteral", + "_id": "AAAAAAFbXetaJWPiY0A=", + "_parent": { + "$ref": "AAAAAAFbXetaJWPhCiY=" + }, + "name": "L1", + "visibility": "public" + }, + { + "_type": "UMLEnumerationLiteral", + "_id": "AAAAAAFbXetaJWPjXhQ=", + "_parent": { + "$ref": "AAAAAAFbXetaJWPhCiY=" + }, + "name": "L2", + "visibility": "public" + }, + { + "_type": "UMLEnumerationLiteral", + "_id": "AAAAAAFbXetaJWPkTUA=", + "_parent": { + "$ref": "AAAAAAFbXetaJWPhCiY=" + }, + "name": "L3", + "visibility": "public" + } + ] + } + ], + "visibility": "public" + }, + { + "_type": "UMLPackage", + "_id": "AAAAAAFbXeWeH8Qrurk=", + "_parent": { + "$ref": "AAAAAAFF+h6SjaM2Hec=" + }, + "name": "unions", + "ownedElements": [ + { + "_type": "UMLClass", + "_id": "AAAAAAFbXeaoemPcONc=", + "_parent": { + "$ref": "AAAAAAFbXeWeH8Qrurk=" + }, + "name": "Cat", + "visibility": "public", + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFbXebKymPdRcE=", + "_parent": { + "$ref": "AAAAAAFbXeWeH8Qrurk=" + }, + "name": "Dog", + "documentation": "test class doc", + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFbXebKymPeMtM=", + "_parent": { + "$ref": "AAAAAAFbXebKymPdRcE=" + }, + "name": "f1", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "", + "multiplicity": "1", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + }, + { + "_type": "UMLAttribute", + "_id": "AAAAAAFbXebKymPf2mY=", + "_parent": { + "$ref": "AAAAAAFbXebKymPdRcE=" + }, + "name": "f2", + "documentation": "test field doc", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFbXebvE2PgVvE=", + "_parent": { + "$ref": "AAAAAAFbXeWeH8Qrurk=" + }, + "name": "AnimalUnionType", + "ownedElements": [ + { + "_type": "UMLDependency", + "_id": "AAAAAAFbXed+RsZ2TBY=", + "_parent": { + "$ref": "AAAAAAFbXebvE2PgVvE=" + }, + "source": { + "$ref": "AAAAAAFbXebvE2PgVvE=" + }, + "target": { + "$ref": "AAAAAAFbXeaoemPcONc=" + }, + "visibility": "public" + }, + { + "_type": "UMLDependency", + "_id": "AAAAAAFbXeeRqsaHwwg=", + "_parent": { + "$ref": "AAAAAAFbXebvE2PgVvE=" + }, + "source": { + "$ref": "AAAAAAFbXebvE2PgVvE=" + }, + "target": { + "$ref": "AAAAAAFbXebKymPdRcE=" + }, + "visibility": "public" + } + ], + "stereotype": "union", + "visibility": "public", + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClassDiagram", + "_id": "AAAAAAFbXecAKMXNyVU=", + "_parent": { + "$ref": "AAAAAAFbXeWeH8Qrurk=" + }, + "name": "unions", + "visible": true, + "defaultDiagram": false, + "ownedViews": [ + { + "_type": "UMLClassView", + "_id": "AAAAAAFbXecOp8X4018=", + "_parent": { + "$ref": "AAAAAAFbXecAKMXNyVU=" + }, + "model": { + "$ref": "AAAAAAFbXebvE2PgVvE=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbXecOp8X5e6Y=", + "_parent": { + "$ref": "AAAAAAFbXecOp8X4018=" + }, + "model": { + "$ref": "AAAAAAFbXebvE2PgVvE=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbXecOp8X6HtU=", + "_parent": { + "$ref": "AAAAAAFbXecOp8X5e6Y=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 85, + "top": 21, + "width": 118, + "height": 13, + "autoResize": false, + "underline": false, + "text": "«union»", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXecOp8X75C8=", + "_parent": { + "$ref": "AAAAAAFbXecOp8X5e6Y=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 85, + "top": 36, + "width": 118, + "height": 13, + "autoResize": false, + "underline": false, + "text": "AnimalUnionType", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXecOp8X8h2c=", + "_parent": { + "$ref": "AAAAAAFbXecOp8X5e6Y=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -876, + "top": -342, + "width": 76, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from unions)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXecOp8X9HqY=", + "_parent": { + "$ref": "AAAAAAFbXecOp8X5e6Y=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -876, + "top": -342, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 80, + "top": 16, + "width": 128, + "height": 38, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbXecOp8X6HtU=" + }, + "nameLabel": { + "$ref": "AAAAAAFbXecOp8X75C8=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbXecOp8X8h2c=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbXecOp8X9HqY=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbXecOp8X+zKc=", + "_parent": { + "$ref": "AAAAAAFbXecOp8X4018=" + }, + "model": { + "$ref": "AAAAAAFbXebvE2PgVvE=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 80, + "top": 54, + "width": 128, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbXecOp8X/5NI=", + "_parent": { + "$ref": "AAAAAAFbXecOp8X4018=" + }, + "model": { + "$ref": "AAAAAAFbXebvE2PgVvE=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 80, + "top": 64, + "width": 128, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbXecOp8YAKqE=", + "_parent": { + "$ref": "AAAAAAFbXecOp8X4018=" + }, + "model": { + "$ref": "AAAAAAFbXebvE2PgVvE=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -438, + "top": -171, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbXecOp8YBDc4=", + "_parent": { + "$ref": "AAAAAAFbXecOp8X4018=" + }, + "model": { + "$ref": "AAAAAAFbXebvE2PgVvE=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -438, + "top": -171, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 80, + "top": 16, + "width": 128, + "height": 58, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbXecOp8X5e6Y=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": false, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbXecOp8X+zKc=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbXecOp8X/5NI=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbXecOp8YAKqE=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbXecOp8YBDc4=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFbXecVksYffQI=", + "_parent": { + "$ref": "AAAAAAFbXecAKMXNyVU=" + }, + "model": { + "$ref": "AAAAAAFbXebKymPdRcE=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbXecVksYgKgU=", + "_parent": { + "$ref": "AAAAAAFbXecVksYffQI=" + }, + "model": { + "$ref": "AAAAAAFbXebKymPdRcE=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbXecVksYhccA=", + "_parent": { + "$ref": "AAAAAAFbXecVksYgKgU=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -778, + "top": -212, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXecVksYiZXc=", + "_parent": { + "$ref": "AAAAAAFbXecVksYgKgU=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 197, + "top": 239, + "width": 79, + "height": 13, + "autoResize": false, + "underline": false, + "text": "Dog", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXecVksYjks4=", + "_parent": { + "$ref": "AAAAAAFbXecVksYgKgU=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -778, + "top": -212, + "width": 76, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from unions)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXecVk8Yk3lg=", + "_parent": { + "$ref": "AAAAAAFbXecVksYgKgU=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -778, + "top": -212, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 192, + "top": 232, + "width": 89, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbXecVksYhccA=" + }, + "nameLabel": { + "$ref": "AAAAAAFbXecVksYiZXc=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbXecVksYjks4=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbXecVk8Yk3lg=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbXecVk8Yl0EY=", + "_parent": { + "$ref": "AAAAAAFbXecVksYffQI=" + }, + "model": { + "$ref": "AAAAAAFbXebKymPdRcE=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFbXecVw8ZF9RM=", + "_parent": { + "$ref": "AAAAAAFbXecVk8Yl0EY=" + }, + "model": { + "$ref": "AAAAAAFbXebKymPeMtM=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 197, + "top": 262, + "width": 79, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+f1[1]", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFbXecVxMZIdgE=", + "_parent": { + "$ref": "AAAAAAFbXecVk8Yl0EY=" + }, + "model": { + "$ref": "AAAAAAFbXebKymPf2mY=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 197, + "top": 277, + "width": 79, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+f2", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 192, + "top": 257, + "width": 89, + "height": 38, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbXecVk8YmkoQ=", + "_parent": { + "$ref": "AAAAAAFbXecVksYffQI=" + }, + "model": { + "$ref": "AAAAAAFbXebKymPdRcE=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 192, + "top": 295, + "width": 89, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbXecVlMYnWhY=", + "_parent": { + "$ref": "AAAAAAFbXecVksYffQI=" + }, + "model": { + "$ref": "AAAAAAFbXebKymPdRcE=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -389, + "top": -106, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbXecVlMYoZTA=", + "_parent": { + "$ref": "AAAAAAFbXecVksYffQI=" + }, + "model": { + "$ref": "AAAAAAFbXebKymPdRcE=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -389, + "top": -106, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 192, + "top": 232, + "width": 89, + "height": 73, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbXecVksYgKgU=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": false, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbXecVk8Yl0EY=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbXecVk8YmkoQ=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbXecVlMYnWhY=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbXecVlMYoZTA=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFbXeccScZMZDk=", + "_parent": { + "$ref": "AAAAAAFbXecAKMXNyVU=" + }, + "model": { + "$ref": "AAAAAAFbXeaoemPcONc=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbXeccSsZNAOo=", + "_parent": { + "$ref": "AAAAAAFbXeccScZMZDk=" + }, + "model": { + "$ref": "AAAAAAFbXeaoemPcONc=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbXeccSsZOWpw=", + "_parent": { + "$ref": "AAAAAAFbXeccSsZNAOo=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -678, + "top": -168, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXeccSsZPmV0=", + "_parent": { + "$ref": "AAAAAAFbXeccSsZNAOo=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 13, + "top": 239, + "width": 27, + "height": 13, + "autoResize": false, + "underline": false, + "text": "Cat", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXeccSsZQAIA=", + "_parent": { + "$ref": "AAAAAAFbXeccSsZNAOo=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -678, + "top": -168, + "width": 76, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from unions)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXeccSsZR20M=", + "_parent": { + "$ref": "AAAAAAFbXeccSsZNAOo=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -678, + "top": -168, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 8, + "top": 232, + "width": 37, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbXeccSsZOWpw=" + }, + "nameLabel": { + "$ref": "AAAAAAFbXeccSsZPmV0=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbXeccSsZQAIA=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbXeccSsZR20M=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbXeccSsZSqYY=", + "_parent": { + "$ref": "AAAAAAFbXeccScZMZDk=" + }, + "model": { + "$ref": "AAAAAAFbXeaoemPcONc=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 8, + "top": 257, + "width": 37, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbXeccSsZToug=", + "_parent": { + "$ref": "AAAAAAFbXeccScZMZDk=" + }, + "model": { + "$ref": "AAAAAAFbXeaoemPcONc=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 8, + "top": 267, + "width": 37, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbXeccSsZUQSw=", + "_parent": { + "$ref": "AAAAAAFbXeccScZMZDk=" + }, + "model": { + "$ref": "AAAAAAFbXeaoemPcONc=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -339, + "top": -84, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbXeccSsZVExg=", + "_parent": { + "$ref": "AAAAAAFbXeccScZMZDk=" + }, + "model": { + "$ref": "AAAAAAFbXeaoemPcONc=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -339, + "top": -84, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 8, + "top": 232, + "width": 37, + "height": 45, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbXeccSsZNAOo=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": false, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbXeccSsZSqYY=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbXeccSsZToug=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbXeccSsZUQSw=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbXeccSsZVExg=" + } + }, + { + "_type": "UMLDependencyView", + "_id": "AAAAAAFbXed+RsZ4k80=", + "_parent": { + "$ref": "AAAAAAFbXecAKMXNyVU=" + }, + "model": { + "$ref": "AAAAAAFbXed+RsZ2TBY=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXed+RsZ53OI=", + "_parent": { + "$ref": "AAAAAAFbXed+RsZ4k80=" + }, + "model": { + "$ref": "AAAAAAFbXed+RsZ2TBY=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 95, + "top": 153, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbXed+RsZ4k80=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXed+RsZ6iNc=", + "_parent": { + "$ref": "AAAAAAFbXed+RsZ4k80=" + }, + "model": { + "$ref": "AAAAAAFbXed+RsZ2TBY=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 108, + "top": 160, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbXed+RsZ4k80=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXed+R8Z7uA0=", + "_parent": { + "$ref": "AAAAAAFbXed+RsZ4k80=" + }, + "model": { + "$ref": "AAAAAAFbXed+RsZ2TBY=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 68, + "top": 138, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbXed+RsZ4k80=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFbXeccScZMZDk=" + }, + "tail": { + "$ref": "AAAAAAFbXecOp8X4018=" + }, + "lineStyle": 1, + "points": "126:74;39:231", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFbXed+RsZ53OI=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFbXed+RsZ6iNc=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbXed+R8Z7uA0=" + } + }, + { + "_type": "UMLDependencyView", + "_id": "AAAAAAFbXeeRqsaJN+M=", + "_parent": { + "$ref": "AAAAAAFbXecAKMXNyVU=" + }, + "model": { + "$ref": "AAAAAAFbXeeRqsaHwwg=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXeeRqsaKLe8=", + "_parent": { + "$ref": "AAAAAAFbXeeRqsaJN+M=" + }, + "model": { + "$ref": "AAAAAAFbXeeRqsaHwwg=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 201, + "top": 140, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbXeeRqsaJN+M=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXeeRq8aLwCQ=", + "_parent": { + "$ref": "AAAAAAFbXeeRqsaJN+M=" + }, + "model": { + "$ref": "AAAAAAFbXeeRqsaHwwg=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 215, + "top": 134, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbXeeRqsaJN+M=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXeeRq8aM1nI=", + "_parent": { + "$ref": "AAAAAAFbXeeRqsaJN+M=" + }, + "model": { + "$ref": "AAAAAAFbXeeRqsaHwwg=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 174, + "top": 151, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbXeeRqsaJN+M=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFbXecVksYffQI=" + }, + "tail": { + "$ref": "AAAAAAFbXecOp8X4018=" + }, + "lineStyle": 1, + "points": "155:74;221:231", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFbXeeRqsaKLe8=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFbXeeRq8aLwCQ=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbXeeRq8aM1nI=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFbXehxvsahlXA=", + "_parent": { + "$ref": "AAAAAAFbXecAKMXNyVU=" + }, + "model": { + "$ref": "AAAAAAFbXehxvsafpK4=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbXehxvsai5eI=", + "_parent": { + "$ref": "AAAAAAFbXehxvsahlXA=" + }, + "model": { + "$ref": "AAAAAAFbXehxvsafpK4=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbXehxv8aj8kw=", + "_parent": { + "$ref": "AAAAAAFbXehxvsai5eI=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 357, + "top": 13, + "width": 79, + "height": 13, + "autoResize": false, + "underline": false, + "text": "«union»", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXehxv8akIuQ=", + "_parent": { + "$ref": "AAAAAAFbXehxvsai5eI=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 357, + "top": 28, + "width": 79, + "height": 13, + "autoResize": false, + "underline": false, + "text": "InvalidUnion", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXehxv8alt/M=", + "_parent": { + "$ref": "AAAAAAFbXehxvsai5eI=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -336, + "top": -208, + "width": 76, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from unions)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXehxv8amIc0=", + "_parent": { + "$ref": "AAAAAAFbXehxvsai5eI=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -336, + "top": -208, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 352, + "top": 8, + "width": 89, + "height": 38, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbXehxv8aj8kw=" + }, + "nameLabel": { + "$ref": "AAAAAAFbXehxv8akIuQ=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbXehxv8alt/M=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbXehxv8amIc0=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbXehxv8an3Pc=", + "_parent": { + "$ref": "AAAAAAFbXehxvsahlXA=" + }, + "model": { + "$ref": "AAAAAAFbXehxvsafpK4=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFbXei0KMbOFpE=", + "_parent": { + "$ref": "AAAAAAFbXehxv8an3Pc=" + }, + "model": { + "$ref": "AAAAAAFbXeiz+sbLcGg=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 357, + "top": 51, + "width": 79, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+Attribute1", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 352, + "top": 46, + "width": 89, + "height": 23, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbXehxv8aoRAM=", + "_parent": { + "$ref": "AAAAAAFbXehxvsahlXA=" + }, + "model": { + "$ref": "AAAAAAFbXehxvsafpK4=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 352, + "top": 69, + "width": 89, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbXehxv8ap178=", + "_parent": { + "$ref": "AAAAAAFbXehxvsahlXA=" + }, + "model": { + "$ref": "AAAAAAFbXehxvsafpK4=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -168, + "top": -104, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbXehxv8aqy1U=", + "_parent": { + "$ref": "AAAAAAFbXehxvsahlXA=" + }, + "model": { + "$ref": "AAAAAAFbXehxvsafpK4=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -168, + "top": -104, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 352, + "top": 8, + "width": 89, + "height": 71, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbXehxvsai5eI=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": false, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbXehxv8an3Pc=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbXehxv8aoRAM=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbXehxv8ap178=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbXehxv8aqy1U=" + } + }, + { + "_type": "UMLNoteView", + "_id": "AAAAAAFbXeknOMbS5UI=", + "_parent": { + "$ref": "AAAAAAFbXecAKMXNyVU=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 344, + "top": 152, + "width": 169, + "height": 81, + "autoResize": false, + "text": "Unions cannot hold attributes nor associations\nThey need at least one dependency type", + "wordWrap": true + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAFbXem/2sbb2yE=", + "_parent": { + "$ref": "AAAAAAFbXecAKMXNyVU=" + }, + "model": { + "$ref": "AAAAAAFbXem/2sbXS28=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXem/2sbcZuA=", + "_parent": { + "$ref": "AAAAAAFbXem/2sbb2yE=" + }, + "model": { + "$ref": "AAAAAAFbXem/2sbXS28=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 328, + "top": 157, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbXem/2sbb2yE=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXem/2sbdV/k=", + "_parent": { + "$ref": "AAAAAAFbXem/2sbb2yE=" + }, + "model": { + "$ref": "AAAAAAFbXem/2sbXS28=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 340, + "top": 166, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbXem/2sbb2yE=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXem/2sbegQg=", + "_parent": { + "$ref": "AAAAAAFbXem/2sbb2yE=" + }, + "model": { + "$ref": "AAAAAAFbXem/2sbXS28=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 303, + "top": 140, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbXem/2sbb2yE=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXem/2sbfNI8=", + "_parent": { + "$ref": "AAAAAAFbXem/2sbb2yE=" + }, + "model": { + "$ref": "AAAAAAFbXem/2sbYnUw=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 367, + "top": 102, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbXem/2sbb2yE=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXem/28bgtyk=", + "_parent": { + "$ref": "AAAAAAFbXem/2sbb2yE=" + }, + "model": { + "$ref": "AAAAAAFbXem/2sbYnUw=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 376, + "top": 112, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFbXem/2sbb2yE=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXem/28bh1DA=", + "_parent": { + "$ref": "AAAAAAFbXem/2sbb2yE=" + }, + "model": { + "$ref": "AAAAAAFbXem/2sbYnUw=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 347, + "top": 83, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFbXem/2sbb2yE=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXem/28bi6UE=", + "_parent": { + "$ref": "AAAAAAFbXem/2sbb2yE=" + }, + "model": { + "$ref": "AAAAAAFbXem/2sbZwtQ=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 289, + "top": 212, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbXem/2sbb2yE=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXem/28bjo8o=", + "_parent": { + "$ref": "AAAAAAFbXem/2sbb2yE=" + }, + "model": { + "$ref": "AAAAAAFbXem/2sbZwtQ=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 301, + "top": 218, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFbXem/2sbb2yE=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXem/28bkVpM=", + "_parent": { + "$ref": "AAAAAAFbXem/2sbb2yE=" + }, + "model": { + "$ref": "AAAAAAFbXem/2sbZwtQ=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 264, + "top": 200, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFbXem/2sbb2yE=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFbXem/28blwF4=", + "_parent": { + "$ref": "AAAAAAFbXem/2sbb2yE=" + }, + "model": { + "$ref": "AAAAAAFbXem/2sbYnUw=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -144, + "top": -72, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFbXem/28bmDcE=", + "_parent": { + "$ref": "AAAAAAFbXem/2sbb2yE=" + }, + "model": { + "$ref": "AAAAAAFbXem/2sbZwtQ=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -144, + "top": -72, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFbXecVksYffQI=" + }, + "tail": { + "$ref": "AAAAAAFbXehxvsahlXA=" + }, + "lineStyle": 1, + "points": "370:79;262:231", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFbXem/2sbcZuA=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFbXem/2sbdV/k=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbXem/2sbegQg=" + }, + "showMultiplicity": true, + "showType": true, + "tailRoleNameLabel": { + "$ref": "AAAAAAFbXem/2sbfNI8=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAFbXem/28bgtyk=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAFbXem/28bh1DA=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAFbXem/28bi6UE=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAFbXem/28bjo8o=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAFbXem/28bkVpM=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAFbXem/28blwF4=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAFbXem/28bmDcE=" + } + } + ] + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFbXehxvsafpK4=", + "_parent": { + "$ref": "AAAAAAFbXeWeH8Qrurk=" + }, + "name": "InvalidUnion", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAFbXem/2sbXS28=", + "_parent": { + "$ref": "AAAAAAFbXehxvsafpK4=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFbXem/2sbYnUw=", + "_parent": { + "$ref": "AAAAAAFbXem/2sbXS28=" + }, + "reference": { + "$ref": "AAAAAAFbXehxvsafpK4=" + }, + "visibility": "public", + "navigable": true, + "aggregation": "none", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFbXem/2sbZwtQ=", + "_parent": { + "$ref": "AAAAAAFbXem/2sbXS28=" + }, + "reference": { + "$ref": "AAAAAAFbXebKymPdRcE=" + }, + "visibility": "public", + "navigable": true, + "aggregation": "none", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "visibility": "public", + "isDerived": false + } + ], + "stereotype": "union", + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFbXeiz+sbLcGg=", + "_parent": { + "$ref": "AAAAAAFbXehxvsafpK4=" + }, + "name": "Attribute1", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + } + ], + "visibility": "public" + }, + { + "_type": "UMLPackage", + "_id": "AAAAAAFbXo7LE+SdPxg=", + "_parent": { + "$ref": "AAAAAAFF+h6SjaM2Hec=" + }, + "name": "interface_impl", + "ownedElements": [ + { + "_type": "UMLClassDiagram", + "_id": "AAAAAAFbXpf65+TXbbw=", + "_parent": { + "$ref": "AAAAAAFbXo7LE+SdPxg=" + }, + "name": "interface_impl", + "visible": true, + "defaultDiagram": false, + "ownedViews": [ + { + "_type": "UMLClassView", + "_id": "AAAAAAFbXpj+o+UgJ4A=", + "_parent": { + "$ref": "AAAAAAFbXpf65+TXbbw=" + }, + "model": { + "$ref": "AAAAAAFbXphwgWPoA0o=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbXpj+pOUhn8c=", + "_parent": { + "$ref": "AAAAAAFbXpj+o+UgJ4A=" + }, + "model": { + "$ref": "AAAAAAFbXphwgWPoA0o=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbXpj+pOUixmo=", + "_parent": { + "$ref": "AAAAAAFbXpj+pOUhn8c=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -938, + "top": -1168, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXpj+pOUjwLY=", + "_parent": { + "$ref": "AAAAAAFbXpj+pOUhn8c=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 37, + "top": 247, + "width": 43, + "height": 13, + "autoResize": false, + "underline": false, + "text": "Bar", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXpj+peUktkg=", + "_parent": { + "$ref": "AAAAAAFbXpj+pOUhn8c=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -938, + "top": -1168, + "width": 119, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from interface_impl)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXpj+peUlPwM=", + "_parent": { + "$ref": "AAAAAAFbXpj+pOUhn8c=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -938, + "top": -1168, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 32, + "top": 240, + "width": 53, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbXpj+pOUixmo=" + }, + "nameLabel": { + "$ref": "AAAAAAFbXpj+pOUjwLY=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbXpj+peUktkg=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbXpj+peUlPwM=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbXpj+peUm5/Y=", + "_parent": { + "$ref": "AAAAAAFbXpj+o+UgJ4A=" + }, + "model": { + "$ref": "AAAAAAFbXphwgWPoA0o=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFbXpj+1+VG0hw=", + "_parent": { + "$ref": "AAAAAAFbXpj+peUm5/Y=" + }, + "model": { + "$ref": "AAAAAAFbXphwgWPqGyQ=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 37, + "top": 270, + "width": 43, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+is_bar", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 32, + "top": 265, + "width": 53, + "height": 23, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbXpj+peUnL8c=", + "_parent": { + "$ref": "AAAAAAFbXpj+o+UgJ4A=" + }, + "model": { + "$ref": "AAAAAAFbXphwgWPoA0o=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 32, + "top": 288, + "width": 53, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbXpj+peUojBQ=", + "_parent": { + "$ref": "AAAAAAFbXpj+o+UgJ4A=" + }, + "model": { + "$ref": "AAAAAAFbXphwgWPoA0o=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -469, + "top": -584, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbXpj+peUprOY=", + "_parent": { + "$ref": "AAAAAAFbXpj+o+UgJ4A=" + }, + "model": { + "$ref": "AAAAAAFbXphwgWPoA0o=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -469, + "top": -584, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 32, + "top": 240, + "width": 53, + "height": 58, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbXpj+pOUhn8c=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": false, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbXpj+peUm5/Y=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbXpj+peUnL8c=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbXpj+peUojBQ=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbXpj+peUprOY=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFbXpkFkOVK1n4=", + "_parent": { + "$ref": "AAAAAAFbXpf65+TXbbw=" + }, + "model": { + "$ref": "AAAAAAFbXpiTBmPrIso=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbXpkFkOVLUaw=", + "_parent": { + "$ref": "AAAAAAFbXpkFkOVK1n4=" + }, + "model": { + "$ref": "AAAAAAFbXpiTBmPrIso=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbXpkFkOVM4fo=", + "_parent": { + "$ref": "AAAAAAFbXpkFkOVLUaw=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 26, + "top": -1160, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXpkFkOVNDH8=", + "_parent": { + "$ref": "AAAAAAFbXpkFkOVLUaw=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 197, + "top": 247, + "width": 46, + "height": 13, + "autoResize": false, + "underline": false, + "text": "Baz", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXpkFkOVONCE=", + "_parent": { + "$ref": "AAAAAAFbXpkFkOVLUaw=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 26, + "top": -1160, + "width": 119, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from interface_impl)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXpkFkOVP6v0=", + "_parent": { + "$ref": "AAAAAAFbXpkFkOVLUaw=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 26, + "top": -1160, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 192, + "top": 240, + "width": 56, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbXpkFkOVM4fo=" + }, + "nameLabel": { + "$ref": "AAAAAAFbXpkFkOVNDH8=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbXpkFkOVONCE=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbXpkFkOVP6v0=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbXpkFkOVQQ2U=", + "_parent": { + "$ref": "AAAAAAFbXpkFkOVK1n4=" + }, + "model": { + "$ref": "AAAAAAFbXpiTBmPrIso=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFbXpkFxeVwmyA=", + "_parent": { + "$ref": "AAAAAAFbXpkFkOVQQ2U=" + }, + "model": { + "$ref": "AAAAAAFbXpiTBmPu6io=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 197, + "top": 270, + "width": 46, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+is_baz", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 192, + "top": 265, + "width": 56, + "height": 23, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbXpkFkeVRzco=", + "_parent": { + "$ref": "AAAAAAFbXpkFkOVK1n4=" + }, + "model": { + "$ref": "AAAAAAFbXpiTBmPrIso=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 192, + "top": 288, + "width": 56, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbXpkFkeVSElQ=", + "_parent": { + "$ref": "AAAAAAFbXpkFkOVK1n4=" + }, + "model": { + "$ref": "AAAAAAFbXpiTBmPrIso=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 13, + "top": -580, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbXpkFkeVTdzU=", + "_parent": { + "$ref": "AAAAAAFbXpkFkOVK1n4=" + }, + "model": { + "$ref": "AAAAAAFbXpiTBmPrIso=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 13, + "top": -580, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 192, + "top": 240, + "width": 56, + "height": 58, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbXpkFkOVLUaw=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": false, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbXpkFkOVQQ2U=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbXpkFkeVRzco=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbXpkFkeVSElQ=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbXpkFkeVTdzU=" + } + }, + { + "_type": "UMLInterfaceView", + "_id": "AAAAAAFbXpkM2uV0wrY=", + "_parent": { + "$ref": "AAAAAAFbXpf65+TXbbw=" + }, + "model": { + "$ref": "AAAAAAFbXpiyyGPv0b4=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbXpkM2+V1Qdc=", + "_parent": { + "$ref": "AAAAAAFbXpkM2uV0wrY=" + }, + "model": { + "$ref": "AAAAAAFbXpiyyGPv0b4=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbXpkM2+V2ycE=", + "_parent": { + "$ref": "AAAAAAFbXpkM2+V1Qdc=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 13, + "top": 13, + "width": 74, + "height": 13, + "autoResize": false, + "underline": false, + "text": "«interface»", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXpkM2+V3C3w=", + "_parent": { + "$ref": "AAAAAAFbXpkM2+V1Qdc=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 13, + "top": 28, + "width": 74, + "height": 13, + "autoResize": false, + "underline": false, + "text": "Foo", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXpkM2+V49j0=", + "_parent": { + "$ref": "AAAAAAFbXpkM2+V1Qdc=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -1124, + "top": -1840, + "width": 119, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from interface_impl)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXpkM2+V5O1A=", + "_parent": { + "$ref": "AAAAAAFbXpkM2+V1Qdc=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -1124, + "top": -1840, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 8, + "top": 8, + "width": 84, + "height": 38, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbXpkM2+V2ycE=" + }, + "nameLabel": { + "$ref": "AAAAAAFbXpkM2+V3C3w=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbXpkM2+V49j0=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbXpkM2+V5O1A=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbXpkM2+V67fg=", + "_parent": { + "$ref": "AAAAAAFbXpkM2uV0wrY=" + }, + "model": { + "$ref": "AAAAAAFbXpiyyGPv0b4=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFbXpkNEOWaYXk=", + "_parent": { + "$ref": "AAAAAAFbXpkM2+V67fg=" + }, + "model": { + "$ref": "AAAAAAFbXpiyyGPwYWw=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 13, + "top": 51, + "width": 98, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+is_foo", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 8, + "top": 46, + "width": 108, + "height": 23, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbXpkM2+V7A4E=", + "_parent": { + "$ref": "AAAAAAFbXpkM2uV0wrY=" + }, + "model": { + "$ref": "AAAAAAFbXpiyyGPv0b4=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -562, + "top": -920, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbXpkM2+V8XTs=", + "_parent": { + "$ref": "AAAAAAFbXpkM2uV0wrY=" + }, + "model": { + "$ref": "AAAAAAFbXpiyyGPv0b4=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -562, + "top": -920, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbXpkM2+V9sVU=", + "_parent": { + "$ref": "AAAAAAFbXpkM2uV0wrY=" + }, + "model": { + "$ref": "AAAAAAFbXpiyyGPv0b4=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -562, + "top": -920, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 8, + "top": 8, + "width": 108, + "height": 72, + "autoResize": false, + "stereotypeDisplay": "decoration-label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbXpkM2+V1Qdc=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": true, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbXpkM2+V67fg=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbXpkM2+V7A4E=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbXpkM2+V8XTs=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbXpkM2+V9sVU=" + } + }, + { + "_type": "UMLInterfaceView", + "_id": "AAAAAAFbXpkUiOWe4HQ=", + "_parent": { + "$ref": "AAAAAAFbXpf65+TXbbw=" + }, + "model": { + "$ref": "AAAAAAFbXpjSEGPxiMI=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbXpkUiOWfW1c=", + "_parent": { + "$ref": "AAAAAAFbXpkUiOWe4HQ=" + }, + "model": { + "$ref": "AAAAAAFbXpjSEGPxiMI=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbXpkUiOWg+4w=", + "_parent": { + "$ref": "AAAAAAFbXpkUiOWfW1c=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 197, + "top": 13, + "width": 74, + "height": 13, + "autoResize": false, + "underline": false, + "text": "«interface»", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXpkUieWhPYM=", + "_parent": { + "$ref": "AAAAAAFbXpkUiOWfW1c=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 197, + "top": 28, + "width": 74, + "height": 13, + "autoResize": false, + "underline": false, + "text": "Goo", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXpkUieWi6cY=", + "_parent": { + "$ref": "AAAAAAFbXpkUiOWfW1c=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -152, + "top": -1892, + "width": 119, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from interface_impl)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXpkUieWjjyw=", + "_parent": { + "$ref": "AAAAAAFbXpkUiOWfW1c=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -152, + "top": -1892, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 192, + "top": 8, + "width": 84, + "height": 38, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbXpkUiOWg+4w=" + }, + "nameLabel": { + "$ref": "AAAAAAFbXpkUieWhPYM=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbXpkUieWi6cY=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbXpkUieWjjyw=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbXpkUieWktNo=", + "_parent": { + "$ref": "AAAAAAFbXpkUiOWe4HQ=" + }, + "model": { + "$ref": "AAAAAAFbXpjSEGPxiMI=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFbXpkUvuXEdPc=", + "_parent": { + "$ref": "AAAAAAFbXpkUieWktNo=" + }, + "model": { + "$ref": "AAAAAAFbXpjSEGPyve4=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 197, + "top": 51, + "width": 98, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+is_goo", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 192, + "top": 46, + "width": 108, + "height": 23, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbXpkUieWlJIU=", + "_parent": { + "$ref": "AAAAAAFbXpkUiOWe4HQ=" + }, + "model": { + "$ref": "AAAAAAFbXpjSEGPxiMI=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -76, + "top": -946, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbXpkUieWm69I=", + "_parent": { + "$ref": "AAAAAAFbXpkUiOWe4HQ=" + }, + "model": { + "$ref": "AAAAAAFbXpjSEGPxiMI=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -76, + "top": -946, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbXpkUieWnosA=", + "_parent": { + "$ref": "AAAAAAFbXpkUiOWe4HQ=" + }, + "model": { + "$ref": "AAAAAAFbXpjSEGPxiMI=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -76, + "top": -946, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 192, + "top": 8, + "width": 108, + "height": 61, + "autoResize": false, + "stereotypeDisplay": "decoration-label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbXpkUiOWfW1c=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": true, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbXpkUieWktNo=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbXpkUieWlJIU=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbXpkUieWm69I=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbXpkUieWnosA=" + } + }, + { + "_type": "UMLInterfaceRealizationView", + "_id": "AAAAAAFbXppRVOYyNU0=", + "_parent": { + "$ref": "AAAAAAFbXpf65+TXbbw=" + }, + "model": { + "$ref": "AAAAAAFbXppRU+YxN+o=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXppRVOYznMQ=", + "_parent": { + "$ref": "AAAAAAFbXppRVOYyNU0=" + }, + "model": { + "$ref": "AAAAAAFbXppRU+YxN+o=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 44, + "top": 152, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbXppRVOYyNU0=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXppRVOY00SA=", + "_parent": { + "$ref": "AAAAAAFbXppRVOYyNU0=" + }, + "model": { + "$ref": "AAAAAAFbXppRU+YxN+o=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 29, + "top": 152, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbXppRVOYyNU0=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXppRVOY1SNU=", + "_parent": { + "$ref": "AAAAAAFbXppRVOYyNU0=" + }, + "model": { + "$ref": "AAAAAAFbXppRU+YxN+o=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 73, + "top": 153, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbXppRVOYyNU0=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFbXpkM2uV0wrY=" + }, + "tail": { + "$ref": "AAAAAAFbXpj+o+UgJ4A=" + }, + "lineStyle": 1, + "points": "58:239;61:80", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFbXppRVOYznMQ=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFbXppRVOY00SA=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbXppRVOY1SNU=" + } + }, + { + "_type": "UMLInterfaceRealizationView", + "_id": "AAAAAAFbXpphz+ZDG0A=", + "_parent": { + "$ref": "AAAAAAFbXpf65+TXbbw=" + }, + "model": { + "$ref": "AAAAAAFbXpphz+ZCLRU=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXpph0OZEH9I=", + "_parent": { + "$ref": "AAAAAAFbXpphz+ZDG0A=" + }, + "model": { + "$ref": "AAAAAAFbXpphz+ZCLRU=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 130, + "top": 161, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbXpphz+ZDG0A=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXpph0OZFVCs=", + "_parent": { + "$ref": "AAAAAAFbXpphz+ZDG0A=" + }, + "model": { + "$ref": "AAAAAAFbXpphz+ZCLRU=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 118, + "top": 170, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbXpphz+ZDG0A=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXpph0OZG2io=", + "_parent": { + "$ref": "AAAAAAFbXpphz+ZDG0A=" + }, + "model": { + "$ref": "AAAAAAFbXpphz+ZCLRU=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 155, + "top": 144, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbXpphz+ZDG0A=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFbXpkM2uV0wrY=" + }, + "tail": { + "$ref": "AAAAAAFbXpkFkOVK1n4=" + }, + "lineStyle": 1, + "points": "199:239;87:80", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFbXpph0OZEH9I=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFbXpph0OZFVCs=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbXpph0OZG2io=" + } + }, + { + "_type": "UMLInterfaceRealizationView", + "_id": "AAAAAAFbXppv2+ZUcII=", + "_parent": { + "$ref": "AAAAAAFbXpf65+TXbbw=" + }, + "model": { + "$ref": "AAAAAAFbXppv2+ZTB9o=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXppv2+ZVsXI=", + "_parent": { + "$ref": "AAAAAAFbXppv2+ZUcII=" + }, + "model": { + "$ref": "AAAAAAFbXppv2+ZTB9o=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 216, + "top": 146, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbXppv2+ZUcII=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXppv2+ZW+ZA=", + "_parent": { + "$ref": "AAAAAAFbXppv2+ZUcII=" + }, + "model": { + "$ref": "AAAAAAFbXppv2+ZTB9o=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 201, + "top": 144, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbXppv2+ZUcII=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbXppv2+ZXsQk=", + "_parent": { + "$ref": "AAAAAAFbXppv2+ZUcII=" + }, + "model": { + "$ref": "AAAAAAFbXppv2+ZTB9o=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 245, + "top": 149, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbXppv2+ZUcII=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFbXpkUiOWe4HQ=" + }, + "tail": { + "$ref": "AAAAAAFbXpkFkOVK1n4=" + }, + "lineStyle": 1, + "points": "222:239;241:69", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFbXppv2+ZVsXI=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFbXppv2+ZW+ZA=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbXppv2+ZXsQk=" + } + } + ] + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFbXphwgWPoA0o=", + "_parent": { + "$ref": "AAAAAAFbXo7LE+SdPxg=" + }, + "name": "Bar", + "ownedElements": [ + { + "_type": "UMLInterfaceRealization", + "_id": "AAAAAAFbXppRU+YxN+o=", + "_parent": { + "$ref": "AAAAAAFbXphwgWPoA0o=" + }, + "source": { + "$ref": "AAAAAAFbXphwgWPoA0o=" + }, + "target": { + "$ref": "AAAAAAFbXpiyyGPv0b4=" + }, + "visibility": "public" + } + ], + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFbXphwgWPqGyQ=", + "_parent": { + "$ref": "AAAAAAFbXphwgWPoA0o=" + }, + "name": "is_bar", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFbXpiTBmPrIso=", + "_parent": { + "$ref": "AAAAAAFbXo7LE+SdPxg=" + }, + "name": "Baz", + "ownedElements": [ + { + "_type": "UMLInterfaceRealization", + "_id": "AAAAAAFbXpphz+ZCLRU=", + "_parent": { + "$ref": "AAAAAAFbXpiTBmPrIso=" + }, + "source": { + "$ref": "AAAAAAFbXpiTBmPrIso=" + }, + "target": { + "$ref": "AAAAAAFbXpiyyGPv0b4=" + }, + "visibility": "public" + }, + { + "_type": "UMLInterfaceRealization", + "_id": "AAAAAAFbXppv2+ZTB9o=", + "_parent": { + "$ref": "AAAAAAFbXpiTBmPrIso=" + }, + "source": { + "$ref": "AAAAAAFbXpiTBmPrIso=" + }, + "target": { + "$ref": "AAAAAAFbXpjSEGPxiMI=" + }, + "visibility": "public" + } + ], + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFbXpiTBmPu6io=", + "_parent": { + "$ref": "AAAAAAFbXpiTBmPrIso=" + }, + "name": "is_baz", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLInterface", + "_id": "AAAAAAFbXpiyyGPv0b4=", + "_parent": { + "$ref": "AAAAAAFbXo7LE+SdPxg=" + }, + "name": "Foo", + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFbXpiyyGPwYWw=", + "_parent": { + "$ref": "AAAAAAFbXpiyyGPv0b4=" + }, + "name": "is_foo", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false + }, + { + "_type": "UMLInterface", + "_id": "AAAAAAFbXpjSEGPxiMI=", + "_parent": { + "$ref": "AAAAAAFbXo7LE+SdPxg=" + }, + "name": "Goo", + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFbXpjSEGPyve4=", + "_parent": { + "$ref": "AAAAAAFbXpjSEGPxiMI=" + }, + "name": "is_goo", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false + } + ], + "visibility": "public" + }, + { + "_type": "UMLPackage", + "_id": "AAAAAAFbXpz2AevoBC0=", + "_parent": { + "$ref": "AAAAAAFF+h6SjaM2Hec=" + }, + "name": "schema_query_mutation_subscriptions", + "ownedElements": [ + { + "_type": "UMLClassDiagram", + "_id": "AAAAAAFbXp1jpOwHmi8=", + "_parent": { + "$ref": "AAAAAAFbXpz2AevoBC0=" + }, + "name": "schema_and_more", + "visible": true, + "defaultDiagram": false, + "ownedViews": [ + { + "_type": "UMLClassView", + "_id": "AAAAAAFbXrBXDftSXRI=", + "_parent": { + "$ref": "AAAAAAFbXp1jpOwHmi8=" + }, + "model": { + "$ref": "AAAAAAFbXqL7+2Q6ugI=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbXrBXDftTcLQ=", + "_parent": { + "$ref": "AAAAAAFbXrBXDftSXRI=" + }, + "model": { + "$ref": "AAAAAAFbXqL7+2Q6ugI=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbXrBXDftUuic=", + "_parent": { + "$ref": "AAAAAAFbXrBXDftTcLQ=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 277, + "top": 13, + "width": 68, + "height": 13, + "autoResize": false, + "underline": false, + "text": "«schema»", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXrBXDftVeTM=", + "_parent": { + "$ref": "AAAAAAFbXrBXDftTcLQ=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 277, + "top": 28, + "width": 68, + "height": 13, + "autoResize": false, + "underline": false, + "text": "MySchema", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXrBXDftWRTo=", + "_parent": { + "$ref": "AAAAAAFbXrBXDftTcLQ=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -432, + "top": -764, + "width": 264, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from schema_query_mutation_subscriptions)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXrBXDftXcsU=", + "_parent": { + "$ref": "AAAAAAFbXrBXDftTcLQ=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -432, + "top": -764, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 272, + "top": 8, + "width": 78, + "height": 38, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbXrBXDftUuic=" + }, + "nameLabel": { + "$ref": "AAAAAAFbXrBXDftVeTM=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbXrBXDftWRTo=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbXrBXDftXcsU=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbXrBXDftYMvI=", + "_parent": { + "$ref": "AAAAAAFbXrBXDftSXRI=" + }, + "model": { + "$ref": "AAAAAAFbXqL7+2Q6ugI=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 272, + "top": 46, + "width": 78, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbXrBXDftZi7I=", + "_parent": { + "$ref": "AAAAAAFbXrBXDftSXRI=" + }, + "model": { + "$ref": "AAAAAAFbXqL7+2Q6ugI=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 272, + "top": 56, + "width": 78, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbXrBXDftaWqY=", + "_parent": { + "$ref": "AAAAAAFbXrBXDftSXRI=" + }, + "model": { + "$ref": "AAAAAAFbXqL7+2Q6ugI=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -216, + "top": -382, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbXrBXDftbidk=", + "_parent": { + "$ref": "AAAAAAFbXrBXDftSXRI=" + }, + "model": { + "$ref": "AAAAAAFbXqL7+2Q6ugI=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -216, + "top": -382, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 272, + "top": 8, + "width": 78, + "height": 58, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbXrBXDftTcLQ=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": false, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbXrBXDftYMvI=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbXrBXDftZi7I=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbXrBXDftaWqY=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbXrBXDftbidk=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFbXrBeTvt5dbc=", + "_parent": { + "$ref": "AAAAAAFbXp1jpOwHmi8=" + }, + "model": { + "$ref": "AAAAAAFbXqKyp2Q1QFs=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbXrBeTvt6krQ=", + "_parent": { + "$ref": "AAAAAAFbXrBeTvt5dbc=" + }, + "model": { + "$ref": "AAAAAAFbXqKyp2Q1QFs=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbXrBeTvt7owY=", + "_parent": { + "$ref": "AAAAAAFbXrBeTvt6krQ=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -406, + "top": -334, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXrBeTvt8mC0=", + "_parent": { + "$ref": "AAAAAAFbXrBeTvt6krQ=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 37, + "top": 175, + "width": 537, + "height": 13, + "autoResize": false, + "underline": false, + "text": "RootMutation", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXrBeTvt9UYE=", + "_parent": { + "$ref": "AAAAAAFbXrBeTvt6krQ=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -406, + "top": -334, + "width": 264, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from schema_query_mutation_subscriptions)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbXrBeTvt+008=", + "_parent": { + "$ref": "AAAAAAFbXrBeTvt6krQ=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -406, + "top": -334, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 32, + "top": 168, + "width": 547, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbXrBeTvt7owY=" + }, + "nameLabel": { + "$ref": "AAAAAAFbXrBeTvt8mC0=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbXrBeTvt9UYE=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbXrBeTvt+008=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbXrBeT/t/EKg=", + "_parent": { + "$ref": "AAAAAAFbXrBeTvt5dbc=" + }, + "model": { + "$ref": "AAAAAAFbXqKyp2Q1QFs=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 32, + "top": 193, + "width": 547, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbXrBeT/uAIpM=", + "_parent": { + "$ref": "AAAAAAFbXrBeTvt5dbc=" + }, + "model": { + "$ref": "AAAAAAFbXqKyp2Q1QFs=" + }, + "subViews": [ + { + "_type": "UMLOperationView", + "_id": "AAAAAAFbXuFnOfurWrQ=", + "_parent": { + "$ref": "AAAAAAFbXrBeT/uAIpM=" + }, + "model": { + "$ref": "AAAAAAFbXuFnBPuoXFM=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 37, + "top": 208, + "width": 537, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+createTodo(input: CreateTodoInput[1]): CreateTodoPayload", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLOperationView", + "_id": "AAAAAAFbYIj2yPzN38g=", + "_parent": { + "$ref": "AAAAAAFbXrBeT/uAIpM=" + }, + "model": { + "$ref": "AAAAAAFbYIj2lfzKDkQ=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 37, + "top": 223, + "width": 537, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+toggleTodoCompleted(input: ToggleTodoCompletedInput[1]): ToggleTodoCompletedPayload", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 32, + "top": 203, + "width": 547, + "height": 38, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbXrBeT/uB41g=", + "_parent": { + "$ref": "AAAAAAFbXrBeTvt5dbc=" + }, + "model": { + "$ref": "AAAAAAFbXqKyp2Q1QFs=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -203, + "top": -167, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbXrBeT/uClfs=", + "_parent": { + "$ref": "AAAAAAFbXrBeTvt5dbc=" + }, + "model": { + "$ref": "AAAAAAFbXqKyp2Q1QFs=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 145, + "top": 168, + "width": 131, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 32, + "top": 168, + "width": 547, + "height": 91, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbXrBeTvt6krQ=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": false, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbXrBeT/t/EKg=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbXrBeT/uAIpM=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbXrBeT/uB41g=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbXrBeT/uClfs=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFbYFzFSPvfucA=", + "_parent": { + "$ref": "AAAAAAFbXp1jpOwHmi8=" + }, + "model": { + "$ref": "AAAAAAFbYFzFSPvdnog=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbYFzFSfvg5SI=", + "_parent": { + "$ref": "AAAAAAFbYFzFSPvfucA=" + }, + "model": { + "$ref": "AAAAAAFbYFzFSPvdnog=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbYFzFSfvhc6w=", + "_parent": { + "$ref": "AAAAAAFbYFzFSfvg5SI=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 69, + "top": 421, + "width": 103, + "height": 13, + "autoResize": false, + "underline": false, + "text": "«input»", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbYFzFSfviyA8=", + "_parent": { + "$ref": "AAAAAAFbYFzFSfvg5SI=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 69, + "top": 436, + "width": 103, + "height": 13, + "autoResize": false, + "underline": false, + "text": "CreateTodoInput", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbYFzFSfvjFu8=", + "_parent": { + "$ref": "AAAAAAFbYFzFSfvg5SI=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -272, + "top": -112, + "width": 264, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from schema_query_mutation_subscriptions)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbYFzFSfvkMVc=", + "_parent": { + "$ref": "AAAAAAFbYFzFSfvg5SI=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -272, + "top": -112, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 64, + "top": 416, + "width": 113, + "height": 38, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbYFzFSfvhc6w=" + }, + "nameLabel": { + "$ref": "AAAAAAFbYFzFSfviyA8=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbYFzFSfvjFu8=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbYFzFSfvkMVc=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbYFzFSvvl2Vw=", + "_parent": { + "$ref": "AAAAAAFbYFzFSPvfucA=" + }, + "model": { + "$ref": "AAAAAAFbYFzFSPvdnog=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFbYF5JlvwVA4o=", + "_parent": { + "$ref": "AAAAAAFbYFzFSvvl2Vw=" + }, + "model": { + "$ref": "AAAAAAFbYF5JX/wSkbA=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 69, + "top": 459, + "width": 103, + "height": 13, + "autoResize": false, + "underline": false, + "text": "text: String[1]", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 64, + "top": 454, + "width": 113, + "height": 23, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbYFzFSvvm7Z0=", + "_parent": { + "$ref": "AAAAAAFbYFzFSPvfucA=" + }, + "model": { + "$ref": "AAAAAAFbYFzFSPvdnog=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 64, + "top": 464, + "width": 113, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbYFzFSvvn0Bc=", + "_parent": { + "$ref": "AAAAAAFbYFzFSPvfucA=" + }, + "model": { + "$ref": "AAAAAAFbYFzFSPvdnog=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -136, + "top": -56, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbYFzFSvvoe/c=", + "_parent": { + "$ref": "AAAAAAFbYFzFSPvfucA=" + }, + "model": { + "$ref": "AAAAAAFbYFzFSPvdnog=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -136, + "top": -56, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 64, + "top": 416, + "width": 113, + "height": 73, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": false, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbYFzFSfvg5SI=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": true, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbYFzFSvvl2Vw=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbYFzFSvvm7Z0=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbYFzFSvvn0Bc=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbYFzFSvvoe/c=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFbYGLDWvwkwnM=", + "_parent": { + "$ref": "AAAAAAFbXp1jpOwHmi8=" + }, + "model": { + "$ref": "AAAAAAFbYGLDWfwiOVg=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbYGLDWvwlnKs=", + "_parent": { + "$ref": "AAAAAAFbYGLDWvwkwnM=" + }, + "model": { + "$ref": "AAAAAAFbYGLDWfwiOVg=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbYGLDWvwmAAI=", + "_parent": { + "$ref": "AAAAAAFbYGLDWvwlnKs=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 864, + "top": 432, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbYGLDWvwnunE=", + "_parent": { + "$ref": "AAAAAAFbYGLDWvwlnKs=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 541, + "top": 367, + "width": 123, + "height": 13, + "autoResize": false, + "underline": false, + "text": "Todo", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbYGLDWvwo+9E=", + "_parent": { + "$ref": "AAAAAAFbYGLDWvwlnKs=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 864, + "top": 432, + "width": 264, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from schema_query_mutation_subscriptions)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbYGLDWvwplSw=", + "_parent": { + "$ref": "AAAAAAFbYGLDWvwlnKs=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 864, + "top": 432, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 536, + "top": 360, + "width": 133, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbYGLDWvwmAAI=" + }, + "nameLabel": { + "$ref": "AAAAAAFbYGLDWvwnunE=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbYGLDWvwo+9E=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbYGLDWvwplSw=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbYGLDWvwq/+I=", + "_parent": { + "$ref": "AAAAAAFbYGLDWvwkwnM=" + }, + "model": { + "$ref": "AAAAAAFbYGLDWfwiOVg=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFbYGM00vxQmNc=", + "_parent": { + "$ref": "AAAAAAFbYGLDWvwq/+I=" + }, + "model": { + "$ref": "AAAAAAFbYGM0nPxNXbw=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 541, + "top": 390, + "width": 123, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+id: ID", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFbYGNwcfxXlQo=", + "_parent": { + "$ref": "AAAAAAFbYGLDWvwq/+I=" + }, + "model": { + "$ref": "AAAAAAFbYGNwPfxUx10=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 541, + "top": 405, + "width": 123, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+text: String", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFbYGOA/vxdjmo=", + "_parent": { + "$ref": "AAAAAAFbYGLDWvwq/+I=" + }, + "model": { + "$ref": "AAAAAAFbYGOAzfxak+8=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 541, + "top": 420, + "width": 123, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+completed: Boolean", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 536, + "top": 385, + "width": 133, + "height": 53, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbYGLDW/wrzDk=", + "_parent": { + "$ref": "AAAAAAFbYGLDWvwkwnM=" + }, + "model": { + "$ref": "AAAAAAFbYGLDWfwiOVg=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 536, + "top": 438, + "width": 133, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbYGLDW/wsd/E=", + "_parent": { + "$ref": "AAAAAAFbYGLDWvwkwnM=" + }, + "model": { + "$ref": "AAAAAAFbYGLDWfwiOVg=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 432, + "top": 216, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbYGLDW/wtgkI=", + "_parent": { + "$ref": "AAAAAAFbYGLDWvwkwnM=" + }, + "model": { + "$ref": "AAAAAAFbYGLDWfwiOVg=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 432, + "top": 216, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 536, + "top": 360, + "width": 133, + "height": 88, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbYGLDWvwlnKs=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": false, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbYGLDWvwq/+I=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbYGLDW/wrzDk=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbYGLDW/wsd/E=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbYGLDW/wtgkI=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFbYGnY9/yUnoo=", + "_parent": { + "$ref": "AAAAAAFbXp1jpOwHmi8=" + }, + "model": { + "$ref": "AAAAAAFbYGnY9/ySi4c=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbYGnY+PyVgNw=", + "_parent": { + "$ref": "AAAAAAFbYGnY9/yUnoo=" + }, + "model": { + "$ref": "AAAAAAFbYGnY9/ySi4c=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbYGnY+fyWA5A=", + "_parent": { + "$ref": "AAAAAAFbYGnY+PyVgNw=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -96, + "top": -224, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbYGnY+fyXbX4=", + "_parent": { + "$ref": "AAAAAAFbYGnY+PyVgNw=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 285, + "top": 391, + "width": 121, + "height": 13, + "autoResize": false, + "underline": false, + "text": "CreateTodoPayload", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbYGnY+vyYb7w=", + "_parent": { + "$ref": "AAAAAAFbYGnY+PyVgNw=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -96, + "top": -224, + "width": 264, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from schema_query_mutation_subscriptions)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbYGnY+vyZmMM=", + "_parent": { + "$ref": "AAAAAAFbYGnY+PyVgNw=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -96, + "top": -224, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 280, + "top": 384, + "width": 131, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbYGnY+fyWA5A=" + }, + "nameLabel": { + "$ref": "AAAAAAFbYGnY+fyXbX4=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbYGnY+vyYb7w=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbYGnY+vyZmMM=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbYGnY+vyaFgo=", + "_parent": { + "$ref": "AAAAAAFbYGnY9/yUnoo=" + }, + "model": { + "$ref": "AAAAAAFbYGnY9/ySi4c=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFbYGoSNfy/O3o=", + "_parent": { + "$ref": "AAAAAAFbYGnY+vyaFgo=" + }, + "model": { + "$ref": "AAAAAAFbYGoSAfy8bVE=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 285, + "top": 414, + "width": 121, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+todo: Todo[1]", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 280, + "top": 409, + "width": 131, + "height": 23, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbYGnY+vybSmI=", + "_parent": { + "$ref": "AAAAAAFbYGnY9/yUnoo=" + }, + "model": { + "$ref": "AAAAAAFbYGnY9/ySi4c=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 280, + "top": 432, + "width": 131, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbYGnY+/ycY0c=", + "_parent": { + "$ref": "AAAAAAFbYGnY9/yUnoo=" + }, + "model": { + "$ref": "AAAAAAFbYGnY9/ySi4c=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -48, + "top": -112, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbYGnY+/ydY6Q=", + "_parent": { + "$ref": "AAAAAAFbYGnY9/yUnoo=" + }, + "model": { + "$ref": "AAAAAAFbYGnY9/ySi4c=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -48, + "top": -112, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 280, + "top": 384, + "width": 131, + "height": 58, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbYGnY+PyVgNw=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": true, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbYGnY+vyaFgo=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbYGnY+vybSmI=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbYGnY+/ycY0c=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbYGnY+/ydY6Q=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFbYIpmofzrQso=", + "_parent": { + "$ref": "AAAAAAFbXp1jpOwHmi8=" + }, + "model": { + "$ref": "AAAAAAFbYIpmoPzpU7E=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbYIpmofzsVaQ=", + "_parent": { + "$ref": "AAAAAAFbYIpmofzrQso=" + }, + "model": { + "$ref": "AAAAAAFbYIpmoPzpU7E=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbYIpmofztAcM=", + "_parent": { + "$ref": "AAAAAAFbYIpmofzsVaQ=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 13, + "top": 317, + "width": 174, + "height": 13, + "autoResize": false, + "underline": false, + "text": "«input»", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbYIpmofzu18Q=", + "_parent": { + "$ref": "AAAAAAFbYIpmofzsVaQ=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 13, + "top": 332, + "width": 174, + "height": 13, + "autoResize": false, + "underline": false, + "text": "ToggleTodoCompletedInput", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbYIpmofzvHcE=", + "_parent": { + "$ref": "AAAAAAFbYIpmofzsVaQ=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -848, + "top": -240, + "width": 264, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from schema_query_mutation_subscriptions)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbYIpmofzwCUo=", + "_parent": { + "$ref": "AAAAAAFbYIpmofzsVaQ=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -848, + "top": -240, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 8, + "top": 312, + "width": 184, + "height": 38, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbYIpmofztAcM=" + }, + "nameLabel": { + "$ref": "AAAAAAFbYIpmofzu18Q=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbYIpmofzvHcE=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbYIpmofzwCUo=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbYIpmofzxE1Y=", + "_parent": { + "$ref": "AAAAAAFbYIpmofzrQso=" + }, + "model": { + "$ref": "AAAAAAFbYIpmoPzpU7E=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFbYIx8Rv1QZqI=", + "_parent": { + "$ref": "AAAAAAFbYIpmofzxE1Y=" + }, + "model": { + "$ref": "AAAAAAFbYIx8Ef1Nwvo=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 13, + "top": 355, + "width": 174, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+id: ID[1]", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 8, + "top": 350, + "width": 184, + "height": 23, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbYIpmovzyMC0=", + "_parent": { + "$ref": "AAAAAAFbYIpmofzrQso=" + }, + "model": { + "$ref": "AAAAAAFbYIpmoPzpU7E=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 8, + "top": 373, + "width": 184, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbYIpmovzzwXE=", + "_parent": { + "$ref": "AAAAAAFbYIpmofzrQso=" + }, + "model": { + "$ref": "AAAAAAFbYIpmoPzpU7E=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -424, + "top": -120, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbYIpmovz0sD8=", + "_parent": { + "$ref": "AAAAAAFbYIpmofzrQso=" + }, + "model": { + "$ref": "AAAAAAFbYIpmoPzpU7E=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -424, + "top": -120, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 8, + "top": 312, + "width": 184, + "height": 71, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbYIpmofzsVaQ=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": false, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbYIpmofzxE1Y=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbYIpmovzyMC0=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbYIpmovzzwXE=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbYIpmovz0sD8=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFbYIrylv0Y7CI=", + "_parent": { + "$ref": "AAAAAAFbXp1jpOwHmi8=" + }, + "model": { + "$ref": "AAAAAAFbYIrylv0WgDU=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbYIrylv0ZAAw=", + "_parent": { + "$ref": "AAAAAAFbYIrylv0Y7CI=" + }, + "model": { + "$ref": "AAAAAAFbYIrylv0WgDU=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbYIryl/0ammM=", + "_parent": { + "$ref": "AAAAAAFbYIrylv0ZAAw=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -176, + "top": -224, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbYIryl/0b9IY=", + "_parent": { + "$ref": "AAAAAAFbYIrylv0ZAAw=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 285, + "top": 319, + "width": 192, + "height": 13, + "autoResize": false, + "underline": false, + "text": "ToggleTodoCompletedPayload", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbYIryl/0c+9E=", + "_parent": { + "$ref": "AAAAAAFbYIrylv0ZAAw=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -176, + "top": -224, + "width": 264, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from schema_query_mutation_subscriptions)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbYIryl/0dpV4=", + "_parent": { + "$ref": "AAAAAAFbYIrylv0ZAAw=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -176, + "top": -224, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 280, + "top": 312, + "width": 202, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbYIryl/0ammM=" + }, + "nameLabel": { + "$ref": "AAAAAAFbYIryl/0b9IY=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbYIryl/0c+9E=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbYIryl/0dpV4=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbYIryl/0eANQ=", + "_parent": { + "$ref": "AAAAAAFbYIrylv0Y7CI=" + }, + "model": { + "$ref": "AAAAAAFbYIrylv0WgDU=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFbYIv0T/1Iua4=", + "_parent": { + "$ref": "AAAAAAFbYIryl/0eANQ=" + }, + "model": { + "$ref": "AAAAAAFbYIv0Gf1FuL8=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 285, + "top": 342, + "width": 192, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+todo: Todo", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 280, + "top": 337, + "width": 202, + "height": 23, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbYIryl/0fSnA=", + "_parent": { + "$ref": "AAAAAAFbYIrylv0Y7CI=" + }, + "model": { + "$ref": "AAAAAAFbYIrylv0WgDU=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 280, + "top": 360, + "width": 202, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbYIryl/0gRKs=", + "_parent": { + "$ref": "AAAAAAFbYIrylv0Y7CI=" + }, + "model": { + "$ref": "AAAAAAFbYIrylv0WgDU=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -88, + "top": -112, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbYIrymP0hhow=", + "_parent": { + "$ref": "AAAAAAFbYIrylv0Y7CI=" + }, + "model": { + "$ref": "AAAAAAFbYIrylv0WgDU=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -88, + "top": -112, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 280, + "top": 312, + "width": 202, + "height": 58, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbYIrylv0ZAAw=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": false, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbYIryl/0eANQ=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbYIryl/0fSnA=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbYIryl/0gRKs=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbYIrymP0hhow=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAFbZOOk/Nbw9so=", + "_parent": { + "$ref": "AAAAAAFbXp1jpOwHmi8=" + }, + "model": { + "$ref": "AAAAAAFbZOOk+tbsqEs=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbZOOk/NbxiTs=", + "_parent": { + "$ref": "AAAAAAFbZOOk/Nbw9so=" + }, + "model": { + "$ref": "AAAAAAFbZOOk+tbsqEs=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 263, + "top": 109, + "width": 58, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbZOOk/Nbw9so=" + }, + "edgePosition": 1, + "underline": false, + "text": "+mutation", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbZOOk/dbyoSo=", + "_parent": { + "$ref": "AAAAAAFbZOOk/Nbw9so=" + }, + "model": { + "$ref": "AAAAAAFbZOOk+tbsqEs=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 277, + "top": 108, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbZOOk/Nbw9so=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbZOOk/dbz3S0=", + "_parent": { + "$ref": "AAAAAAFbZOOk/Nbw9so=" + }, + "model": { + "$ref": "AAAAAAFbZOOk+tbsqEs=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 321, + "top": 110, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbZOOk/Nbw9so=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbZOOk/db0dfw=", + "_parent": { + "$ref": "AAAAAAFbZOOk/Nbw9so=" + }, + "model": { + "$ref": "AAAAAAFbZOOk+tbtx0M=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 291, + "top": 134, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbZOOk/Nbw9so=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbZOOk/db11ic=", + "_parent": { + "$ref": "AAAAAAFbZOOk/Nbw9so=" + }, + "model": { + "$ref": "AAAAAAFbZOOk+tbtx0M=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 278, + "top": 131, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFbZOOk/Nbw9so=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbZOOk/db2Fqw=", + "_parent": { + "$ref": "AAAAAAFbZOOk/Nbw9so=" + }, + "model": { + "$ref": "AAAAAAFbZOOk+tbtx0M=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 316, + "top": 139, + "width": 7, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFbZOOk/Nbw9so=" + }, + "edgePosition": 2, + "underline": false, + "text": "1", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbZOOk/db3huI=", + "_parent": { + "$ref": "AAAAAAFbZOOk/Nbw9so=" + }, + "model": { + "$ref": "AAAAAAFbZOOk+tbuRE8=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 293, + "top": 85, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbZOOk/Nbw9so=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbZOOk/db4z/Q=", + "_parent": { + "$ref": "AAAAAAFbZOOk/Nbw9so=" + }, + "model": { + "$ref": "AAAAAAFbZOOk+tbuRE8=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 279, + "top": 87, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFbZOOk/Nbw9so=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbZOOk/db5nQ8=", + "_parent": { + "$ref": "AAAAAAFbZOOk/Nbw9so=" + }, + "model": { + "$ref": "AAAAAAFbZOOk+tbuRE8=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 320, + "top": 82, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFbZOOk/Nbw9so=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFbZOOk/db65ao=", + "_parent": { + "$ref": "AAAAAAFbZOOk/Nbw9so=" + }, + "model": { + "$ref": "AAAAAAFbZOOk+tbtx0M=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -48, + "top": -112, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFbZOOk/tb7VzQ=", + "_parent": { + "$ref": "AAAAAAFbZOOk/Nbw9so=" + }, + "model": { + "$ref": "AAAAAAFbZOOk+tbuRE8=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -48, + "top": -112, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFbXrBXDftSXRI=" + }, + "tail": { + "$ref": "AAAAAAFbXrBeTvt5dbc=" + }, + "lineStyle": 1, + "points": "306:167;309:66", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFbZOOk/NbxiTs=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFbZOOk/dbyoSo=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbZOOk/dbz3S0=" + }, + "showMultiplicity": true, + "showType": true, + "tailRoleNameLabel": { + "$ref": "AAAAAAFbZOOk/db0dfw=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAFbZOOk/db11ic=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAFbZOOk/db2Fqw=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAFbZOOk/db3huI=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAFbZOOk/db4z/Q=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAFbZOOk/db5nQ8=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAFbZOOk/db65ao=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAFbZOOk/tb7VzQ=" + } + } + ] + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFbXqKyp2Q1QFs=", + "_parent": { + "$ref": "AAAAAAFbXpz2AevoBC0=" + }, + "name": "RootMutation", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAFbZOOk+tbsqEs=", + "_parent": { + "$ref": "AAAAAAFbXqKyp2Q1QFs=" + }, + "name": "mutation", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFbZOOk+tbtx0M=", + "_parent": { + "$ref": "AAAAAAFbZOOk+tbsqEs=" + }, + "reference": { + "$ref": "AAAAAAFbXqKyp2Q1QFs=" + }, + "visibility": "public", + "navigable": true, + "aggregation": "none", + "multiplicity": "1", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFbZOOk+tbuRE8=", + "_parent": { + "$ref": "AAAAAAFbZOOk+tbsqEs=" + }, + "reference": { + "$ref": "AAAAAAFbXqL7+2Q6ugI=" + }, + "visibility": "public", + "navigable": false, + "aggregation": "composite", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "visibility": "public", + "isDerived": false + } + ], + "visibility": "public", + "operations": [ + { + "_type": "UMLOperation", + "_id": "AAAAAAFbXuFnBPuoXFM=", + "_parent": { + "$ref": "AAAAAAFbXqKyp2Q1QFs=" + }, + "name": "createTodo", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "parameters": [ + { + "_type": "UMLParameter", + "_id": "AAAAAAFbXuHhpvuvmOQ=", + "_parent": { + "$ref": "AAAAAAFbXuFnBPuoXFM=" + }, + "name": "input", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": { + "$ref": "AAAAAAFbYFzFSPvdnog=" + }, + "multiplicity": "1", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "direction": "in" + }, + { + "_type": "UMLParameter", + "_id": "AAAAAAFbYGmIjvyORqw=", + "_parent": { + "$ref": "AAAAAAFbXuFnBPuoXFM=" + }, + "name": "return", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": { + "$ref": "AAAAAAFbYGnY9/ySi4c=" + }, + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "direction": "return" + } + ], + "concurrency": "sequential", + "isQuery": false, + "isAbstract": false + }, + { + "_type": "UMLOperation", + "_id": "AAAAAAFbYIj2lfzKDkQ=", + "_parent": { + "$ref": "AAAAAAFbXqKyp2Q1QFs=" + }, + "name": "toggleTodoCompleted", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "parameters": [ + { + "_type": "UMLParameter", + "_id": "AAAAAAFbYInRP/zgxi8=", + "_parent": { + "$ref": "AAAAAAFbYIj2lfzKDkQ=" + }, + "name": "input", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": { + "$ref": "AAAAAAFbYIpmoPzpU7E=" + }, + "multiplicity": "1", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "direction": "in" + }, + { + "_type": "UMLParameter", + "_id": "AAAAAAFbYIn0M/zjvec=", + "_parent": { + "$ref": "AAAAAAFbYIj2lfzKDkQ=" + }, + "name": "return", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": { + "$ref": "AAAAAAFbYIrylv0WgDU=" + }, + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "direction": "return" + } + ], + "concurrency": "sequential", + "isQuery": false, + "isAbstract": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFbXqL7+2Q6ugI=", + "_parent": { + "$ref": "AAAAAAFbXpz2AevoBC0=" + }, + "name": "MySchema", + "stereotype": "schema", + "visibility": "public", + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFbYFzFSPvdnog=", + "_parent": { + "$ref": "AAAAAAFbXpz2AevoBC0=" + }, + "name": "CreateTodoInput", + "documentation": "`id` is generated by the backend, and `completed` is automatically set to false", + "stereotype": "input", + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFbYF5JX/wSkbA=", + "_parent": { + "$ref": "AAAAAAFbYFzFSPvdnog=" + }, + "name": "text", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "String", + "multiplicity": "1", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFbYGLDWfwiOVg=", + "_parent": { + "$ref": "AAAAAAFbXpz2AevoBC0=" + }, + "name": "Todo", + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFbYGM0nPxNXbw=", + "_parent": { + "$ref": "AAAAAAFbYGLDWfwiOVg=" + }, + "name": "id", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "ID", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + }, + { + "_type": "UMLAttribute", + "_id": "AAAAAAFbYGNwPfxUx10=", + "_parent": { + "$ref": "AAAAAAFbYGLDWfwiOVg=" + }, + "name": "text", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "String", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + }, + { + "_type": "UMLAttribute", + "_id": "AAAAAAFbYGOAzfxak+8=", + "_parent": { + "$ref": "AAAAAAFbYGLDWfwiOVg=" + }, + "name": "completed", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "Boolean", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFbYGnY9/ySi4c=", + "_parent": { + "$ref": "AAAAAAFbXpz2AevoBC0=" + }, + "name": "CreateTodoPayload", + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFbYGoSAfy8bVE=", + "_parent": { + "$ref": "AAAAAAFbYGnY9/ySi4c=" + }, + "name": "todo", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": { + "$ref": "AAAAAAFbYGLDWfwiOVg=" + }, + "multiplicity": "1", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFbYIpmoPzpU7E=", + "_parent": { + "$ref": "AAAAAAFbXpz2AevoBC0=" + }, + "name": "ToggleTodoCompletedInput", + "stereotype": "input", + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFbYIx8Ef1Nwvo=", + "_parent": { + "$ref": "AAAAAAFbYIpmoPzpU7E=" + }, + "name": "id", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "ID", + "multiplicity": "1", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFbYIrylv0WgDU=", + "_parent": { + "$ref": "AAAAAAFbXpz2AevoBC0=" + }, + "name": "ToggleTodoCompletedPayload", + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFbYIv0Gf1FuL8=", + "_parent": { + "$ref": "AAAAAAFbYIrylv0WgDU=" + }, + "name": "todo", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": { + "$ref": "AAAAAAFbYGLDWfwiOVg=" + }, + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + } + ], + "visibility": "public" + }, + { + "_type": "UMLPackage", + "_id": "AAAAAAFbYJKs1Ym3X5w=", + "_parent": { + "$ref": "AAAAAAFF+h6SjaM2Hec=" + }, + "name": "class_composition", + "ownedElements": [ + { + "_type": "UMLClassDiagram", + "_id": "AAAAAAFbYJppxoDY5TQ=", + "_parent": { + "$ref": "AAAAAAFbYJKs1Ym3X5w=" + }, + "name": "composition", + "visible": true, + "defaultDiagram": false, + "ownedViews": [ + { + "_type": "UMLClassView", + "_id": "AAAAAAFbYJqY6YD2984=", + "_parent": { + "$ref": "AAAAAAFbYJppxoDY5TQ=" + }, + "model": { + "$ref": "AAAAAAFbYJqY6YD0a80=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbYJqY6oD3SnU=", + "_parent": { + "$ref": "AAAAAAFbYJqY6YD2984=" + }, + "model": { + "$ref": "AAAAAAFbYJqY6YD0a80=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbYJqY6oD47m0=", + "_parent": { + "$ref": "AAAAAAFbYJqY6oD3SnU=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -416, + "top": -384, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbYJqY6oD5pw8=", + "_parent": { + "$ref": "AAAAAAFbYJqY6oD3SnU=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 77, + "top": 55, + "width": 41, + "height": 13, + "autoResize": false, + "underline": false, + "text": "Team", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbYJqY6oD6uCk=", + "_parent": { + "$ref": "AAAAAAFbYJqY6oD3SnU=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -416, + "top": -384, + "width": 146, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from class_composition)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbYJqY6oD7VR0=", + "_parent": { + "$ref": "AAAAAAFbYJqY6oD3SnU=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -416, + "top": -384, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 72, + "top": 48, + "width": 51, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbYJqY6oD47m0=" + }, + "nameLabel": { + "$ref": "AAAAAAFbYJqY6oD5pw8=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbYJqY6oD6uCk=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbYJqY6oD7VR0=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbYJqY6oD8flY=", + "_parent": { + "$ref": "AAAAAAFbYJqY6YD2984=" + }, + "model": { + "$ref": "AAAAAAFbYJqY6YD0a80=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 72, + "top": 73, + "width": 51, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbYJqY64D90FE=", + "_parent": { + "$ref": "AAAAAAFbYJqY6YD2984=" + }, + "model": { + "$ref": "AAAAAAFbYJqY6YD0a80=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 72, + "top": 83, + "width": 51, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbYJqY64D+iOo=", + "_parent": { + "$ref": "AAAAAAFbYJqY6YD2984=" + }, + "model": { + "$ref": "AAAAAAFbYJqY6YD0a80=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -208, + "top": -192, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbYJqY64D/AL8=", + "_parent": { + "$ref": "AAAAAAFbYJqY6YD2984=" + }, + "model": { + "$ref": "AAAAAAFbYJqY6YD0a80=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -208, + "top": -192, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 72, + "top": 48, + "width": 51, + "height": 45, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbYJqY6oD3SnU=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": false, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbYJqY6oD8flY=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbYJqY64D90FE=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbYJqY64D+iOo=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbYJqY64D/AL8=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFbYJqvFYEf/Fo=", + "_parent": { + "$ref": "AAAAAAFbYJppxoDY5TQ=" + }, + "model": { + "$ref": "AAAAAAFbYJqvFYEd9F8=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbYJqvFYEg2iU=", + "_parent": { + "$ref": "AAAAAAFbYJqvFYEf/Fo=" + }, + "model": { + "$ref": "AAAAAAFbYJqvFYEd9F8=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbYJqvFoEhMWE=", + "_parent": { + "$ref": "AAAAAAFbYJqvFYEg2iU=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -208, + "top": -352, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbYJqvFoEi2ZQ=", + "_parent": { + "$ref": "AAAAAAFbYJqvFYEg2iU=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 69, + "top": 239, + "width": 45, + "height": 13, + "autoResize": false, + "underline": false, + "text": "Airplan", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbYJqvFoEjitg=", + "_parent": { + "$ref": "AAAAAAFbYJqvFYEg2iU=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -208, + "top": -352, + "width": 146, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from class_composition)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbYJqvFoEkwII=", + "_parent": { + "$ref": "AAAAAAFbYJqvFYEg2iU=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -208, + "top": -352, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 64, + "top": 232, + "width": 55, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbYJqvFoEhMWE=" + }, + "nameLabel": { + "$ref": "AAAAAAFbYJqvFoEi2ZQ=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbYJqvFoEjitg=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbYJqvFoEkwII=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbYJqvFoElJfg=", + "_parent": { + "$ref": "AAAAAAFbYJqvFYEf/Fo=" + }, + "model": { + "$ref": "AAAAAAFbYJqvFYEd9F8=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 64, + "top": 257, + "width": 55, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbYJqvFoEmYKU=", + "_parent": { + "$ref": "AAAAAAFbYJqvFYEf/Fo=" + }, + "model": { + "$ref": "AAAAAAFbYJqvFYEd9F8=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 64, + "top": 267, + "width": 55, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbYJqvFoEnbBs=", + "_parent": { + "$ref": "AAAAAAFbYJqvFYEf/Fo=" + }, + "model": { + "$ref": "AAAAAAFbYJqvFYEd9F8=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -104, + "top": -176, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbYJqvFoEoji0=", + "_parent": { + "$ref": "AAAAAAFbYJqvFYEf/Fo=" + }, + "model": { + "$ref": "AAAAAAFbYJqvFYEd9F8=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -104, + "top": -176, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 64, + "top": 232, + "width": 55, + "height": 45, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbYJqvFYEg2iU=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": false, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbYJqvFoElJfg=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbYJqvFoEmYKU=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbYJqvFoEnbBs=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbYJqvFoEoji0=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFbYJq6xIFI/Ok=", + "_parent": { + "$ref": "AAAAAAFbYJppxoDY5TQ=" + }, + "model": { + "$ref": "AAAAAAFbYJq6w4FG8MQ=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbYJq6xIFJpj8=", + "_parent": { + "$ref": "AAAAAAFbYJq6xIFI/Ok=" + }, + "model": { + "$ref": "AAAAAAFbYJq6w4FG8MQ=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbYJq6xIFKvWM=", + "_parent": { + "$ref": "AAAAAAFbYJq6xIFJpj8=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -192, + "top": -624, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbYJq6xIFLZd0=", + "_parent": { + "$ref": "AAAAAAFbYJq6xIFJpj8=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 317, + "top": 55, + "width": 62, + "height": 13, + "autoResize": false, + "underline": false, + "text": "Employee", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbYJq6xIFMGIs=", + "_parent": { + "$ref": "AAAAAAFbYJq6xIFJpj8=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -192, + "top": -624, + "width": 146, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from class_composition)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbYJq6xIFN9hI=", + "_parent": { + "$ref": "AAAAAAFbYJq6xIFJpj8=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -192, + "top": -624, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 312, + "top": 48, + "width": 72, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbYJq6xIFKvWM=" + }, + "nameLabel": { + "$ref": "AAAAAAFbYJq6xIFLZd0=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbYJq6xIFMGIs=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbYJq6xIFN9hI=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbYJq6xIFOQak=", + "_parent": { + "$ref": "AAAAAAFbYJq6xIFI/Ok=" + }, + "model": { + "$ref": "AAAAAAFbYJq6w4FG8MQ=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 312, + "top": 73, + "width": 72, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbYJq6xIFPBKU=", + "_parent": { + "$ref": "AAAAAAFbYJq6xIFI/Ok=" + }, + "model": { + "$ref": "AAAAAAFbYJq6w4FG8MQ=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 312, + "top": 83, + "width": 72, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbYJq6xIFQl9Q=", + "_parent": { + "$ref": "AAAAAAFbYJq6xIFI/Ok=" + }, + "model": { + "$ref": "AAAAAAFbYJq6w4FG8MQ=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -96, + "top": -312, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbYJq6xIFRVJ8=", + "_parent": { + "$ref": "AAAAAAFbYJq6xIFI/Ok=" + }, + "model": { + "$ref": "AAAAAAFbYJq6w4FG8MQ=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -96, + "top": -312, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 312, + "top": 48, + "width": 72, + "height": 45, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbYJq6xIFJpj8=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": false, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbYJq6xIFOQak=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbYJq6xIFPBKU=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbYJq6xIFQl9Q=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbYJq6xIFRVJ8=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAFbYJwzjoL1aYY=", + "_parent": { + "$ref": "AAAAAAFbYJppxoDY5TQ=" + }, + "model": { + "$ref": "AAAAAAFbYJwzjYLxrAE=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYJwzjoL2QBY=", + "_parent": { + "$ref": "AAAAAAFbYJwzjoL1aYY=" + }, + "model": { + "$ref": "AAAAAAFbYJwzjYLxrAE=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 191, + "top": 79, + "width": 51, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbYJwzjoL1aYY=" + }, + "edgePosition": 1, + "underline": false, + "text": "+r", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYJwzjoL3f8I=", + "_parent": { + "$ref": "AAAAAAFbYJwzjoL1aYY=" + }, + "model": { + "$ref": "AAAAAAFbYJwzjYLxrAE=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 216, + "top": 94, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbYJwzjoL1aYY=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYJwzjoL4SGA=", + "_parent": { + "$ref": "AAAAAAFbYJwzjoL1aYY=" + }, + "model": { + "$ref": "AAAAAAFbYJwzjYLxrAE=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 217, + "top": 49, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbYJwzjoL1aYY=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYJwzjoL5L/8=", + "_parent": { + "$ref": "AAAAAAFbYJwzjoL1aYY=" + }, + "model": { + "$ref": "AAAAAAFbYJwzjYLymw8=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 263, + "top": 78, + "width": 44, + "height": 13, + "autoResize": false, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbYJwzjoL1aYY=" + }, + "edgePosition": 2, + "underline": false, + "text": "+teams", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYJwzjoL6/M0=", + "_parent": { + "$ref": "AAAAAAFbYJwzjoL1aYY=" + }, + "model": { + "$ref": "AAAAAAFbYJwzjYLymw8=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 282, + "top": 92, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFbYJwzjoL1aYY=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYJwzjoL7sg4=", + "_parent": { + "$ref": "AAAAAAFbYJwzjoL1aYY=" + }, + "model": { + "$ref": "AAAAAAFbYJwzjYLymw8=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 279, + "top": 51, + "width": 20, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFbYJwzjoL1aYY=" + }, + "edgePosition": 2, + "underline": false, + "text": "1..*", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYJwzjoL8n8o=", + "_parent": { + "$ref": "AAAAAAFbYJwzjoL1aYY=" + }, + "model": { + "$ref": "AAAAAAFbYJwzjYLzGaQ=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 117, + "top": 78, + "width": 62, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbYJwzjoL1aYY=" + }, + "edgePosition": 0, + "underline": false, + "text": "+members", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYJwzjoL9wy8=", + "_parent": { + "$ref": "AAAAAAFbYJwzjoL1aYY=" + }, + "model": { + "$ref": "AAAAAAFbYJwzjYLzGaQ=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 151, + "top": 92, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFbYJwzjoL1aYY=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYJwzjoL+Klw=", + "_parent": { + "$ref": "AAAAAAFbYJwzjoL1aYY=" + }, + "model": { + "$ref": "AAAAAAFbYJwzjYLzGaQ=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 134, + "top": 51, + "width": 20, + "height": 13, + "autoResize": false, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFbYJwzjoL1aYY=" + }, + "edgePosition": 0, + "underline": false, + "text": "0..*", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFbYJwzjoL/x0g=", + "_parent": { + "$ref": "AAAAAAFbYJwzjoL1aYY=" + }, + "model": { + "$ref": "AAAAAAFbYJwzjYLymw8=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -160, + "top": -176, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFbYJwzjoMAhhc=", + "_parent": { + "$ref": "AAAAAAFbYJwzjoL1aYY=" + }, + "model": { + "$ref": "AAAAAAFbYJwzjYLzGaQ=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -160, + "top": -176, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFbYJqY6YD2984=" + }, + "tail": { + "$ref": "AAAAAAFbYJq6xIFI/Ok=" + }, + "lineStyle": 1, + "points": "311:70;123:70", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFbYJwzjoL2QBY=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFbYJwzjoL3f8I=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbYJwzjoL4SGA=" + }, + "showMultiplicity": true, + "showType": true, + "tailRoleNameLabel": { + "$ref": "AAAAAAFbYJwzjoL5L/8=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAFbYJwzjoL6/M0=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAFbYJwzjoL7sg4=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAFbYJwzjoL8n8o=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAFbYJwzjoL9wy8=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAFbYJwzjoL+Klw=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAFbYJwzjoL/x0g=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAFbYJwzjoMAhhc=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFbYKYD04Twklc=", + "_parent": { + "$ref": "AAAAAAFbYJppxoDY5TQ=" + }, + "model": { + "$ref": "AAAAAAFbYKYD04TufI8=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbYKYD1ITx0co=", + "_parent": { + "$ref": "AAAAAAFbYKYD04Twklc=" + }, + "model": { + "$ref": "AAAAAAFbYKYD04TufI8=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbYKYD1ITyrFc=", + "_parent": { + "$ref": "AAAAAAFbYKYD1ITx0co=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -384, + "top": -384, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbYKYD1ITzqHU=", + "_parent": { + "$ref": "AAAAAAFbYKYD1ITx0co=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 301, + "top": 239, + "width": 72, + "height": 13, + "autoResize": false, + "underline": false, + "text": "Component", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbYKYD1IT0d2I=", + "_parent": { + "$ref": "AAAAAAFbYKYD1ITx0co=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -384, + "top": -384, + "width": 146, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from class_composition)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbYKYD1IT1mRo=", + "_parent": { + "$ref": "AAAAAAFbYKYD1ITx0co=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -384, + "top": -384, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 296, + "top": 232, + "width": 82, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbYKYD1ITyrFc=" + }, + "nameLabel": { + "$ref": "AAAAAAFbYKYD1ITzqHU=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbYKYD1IT0d2I=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbYKYD1IT1mRo=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbYKYD1IT2WiM=", + "_parent": { + "$ref": "AAAAAAFbYKYD04Twklc=" + }, + "model": { + "$ref": "AAAAAAFbYKYD04TufI8=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 296, + "top": 257, + "width": 82, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbYKYD1IT3BvM=", + "_parent": { + "$ref": "AAAAAAFbYKYD04Twklc=" + }, + "model": { + "$ref": "AAAAAAFbYKYD04TufI8=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 296, + "top": 267, + "width": 82, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbYKYD1YT4IDU=", + "_parent": { + "$ref": "AAAAAAFbYKYD04Twklc=" + }, + "model": { + "$ref": "AAAAAAFbYKYD04TufI8=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -192, + "top": -192, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbYKYD1YT56QU=", + "_parent": { + "$ref": "AAAAAAFbYKYD04Twklc=" + }, + "model": { + "$ref": "AAAAAAFbYKYD04TufI8=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -192, + "top": -192, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 296, + "top": 232, + "width": 82, + "height": 45, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbYKYD1ITx0co=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": false, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbYKYD1IT2WiM=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbYKYD1IT3BvM=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbYKYD1YT4IDU=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbYKYD1YT56QU=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAFbYKbDW4XYI1Y=", + "_parent": { + "$ref": "AAAAAAFbYJppxoDY5TQ=" + }, + "model": { + "$ref": "AAAAAAFbYKbDW4XUo+g=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYKbDW4XZSO4=", + "_parent": { + "$ref": "AAAAAAFbYKbDW4XYI1Y=" + }, + "model": { + "$ref": "AAAAAAFbYKbDW4XUo+g=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 22, + "top": 21, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbYKbDW4XYI1Y=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYKbDXIXargg=", + "_parent": { + "$ref": "AAAAAAFbYKbDW4XYI1Y=" + }, + "model": { + "$ref": "AAAAAAFbYKbDW4XUo+g=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 37, + "top": 21, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbYKbDW4XYI1Y=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYKbDXIXbPV0=", + "_parent": { + "$ref": "AAAAAAFbYKbDW4XYI1Y=" + }, + "model": { + "$ref": "AAAAAAFbYKbDW4XUo+g=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -7, + "top": 22, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbYKbDW4XYI1Y=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYKbDXIXcO8M=", + "_parent": { + "$ref": "AAAAAAFbYKbDW4XYI1Y=" + }, + "model": { + "$ref": "AAAAAAFbYKbDW4XVgq0=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 67, + "top": 7, + "width": 65, + "height": 13, + "autoResize": false, + "alpha": -0.08800716537322684, + "distance": 34.132096331752024, + "hostEdge": { + "$ref": "AAAAAAFbYKbDW4XYI1Y=" + }, + "edgePosition": 2, + "underline": false, + "text": "+subteams", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYKbDXIXdyv8=", + "_parent": { + "$ref": "AAAAAAFbYKbDW4XYI1Y=" + }, + "model": { + "$ref": "AAAAAAFbYKbDW4XVgq0=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 68, + "top": 13, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFbYKbDW4XYI1Y=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYKbDXIXetEg=", + "_parent": { + "$ref": "AAAAAAFbYKbDW4XYI1Y=" + }, + "model": { + "$ref": "AAAAAAFbYKbDW4XVgq0=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 102, + "top": 31, + "width": 20, + "height": 13, + "autoResize": false, + "alpha": -1.0121967923500845, + "distance": 18.867962264113206, + "hostEdge": { + "$ref": "AAAAAAFbYKbDW4XYI1Y=" + }, + "edgePosition": 2, + "underline": false, + "text": "0..*", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYKbDXIXff+E=", + "_parent": { + "$ref": "AAAAAAFbYKbDW4XYI1Y=" + }, + "model": { + "$ref": "AAAAAAFbYKbDW4XWrEA=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 24, + "top": 49, + "width": 44, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbYKbDW4XYI1Y=" + }, + "edgePosition": 0, + "underline": false, + "text": "+parent", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYKbDXIXgDYU=", + "_parent": { + "$ref": "AAAAAAFbYKbDW4XYI1Y=" + }, + "model": { + "$ref": "AAAAAAFbYKbDW4XWrEA=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 43, + "top": 35, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFbYKbDW4XYI1Y=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYKbDXIXhJg0=", + "_parent": { + "$ref": "AAAAAAFbYKbDW4XYI1Y=" + }, + "model": { + "$ref": "AAAAAAFbYKbDW4XWrEA=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 39, + "top": 76, + "width": 22, + "height": 13, + "autoResize": false, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFbYKbDW4XYI1Y=" + }, + "edgePosition": 0, + "underline": false, + "text": "0..1", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFbYKbDXIXiCbI=", + "_parent": { + "$ref": "AAAAAAFbYKbDW4XYI1Y=" + }, + "model": { + "$ref": "AAAAAAFbYKbDW4XVgq0=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -160, + "top": -176, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFbYKbDXIXjFQ4=", + "_parent": { + "$ref": "AAAAAAFbYKbDW4XYI1Y=" + }, + "model": { + "$ref": "AAAAAAFbYKbDW4XWrEA=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -160, + "top": -176, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFbYJqY6YD2984=" + }, + "tail": { + "$ref": "AAAAAAFbYJqY6YD2984=" + }, + "lineStyle": 0, + "points": "97:48;97:28;8:28;8:70;72:70", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFbYKbDW4XZSO4=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFbYKbDXIXargg=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbYKbDXIXbPV0=" + }, + "showMultiplicity": true, + "showType": true, + "tailRoleNameLabel": { + "$ref": "AAAAAAFbYKbDXIXcO8M=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAFbYKbDXIXdyv8=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAFbYKbDXIXetEg=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAFbYKbDXIXff+E=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAFbYKbDXIXgDYU=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAFbYKbDXIXhJg0=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAFbYKbDXIXiCbI=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAFbYKbDXIXjFQ4=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAFbYKjl7YtzQSY=", + "_parent": { + "$ref": "AAAAAAFbYJppxoDY5TQ=" + }, + "model": { + "$ref": "AAAAAAFbYKjl7Ytvg5o=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYKjl7Yt0ZhE=", + "_parent": { + "$ref": "AAAAAAFbYKjl7YtzQSY=" + }, + "model": { + "$ref": "AAAAAAFbYKjl7Ytvg5o=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 39, + "top": 151, + "width": 42, + "height": 13, + "autoResize": false, + "alpha": -1.6589278564457792, + "distance": 34.23448553724738, + "hostEdge": { + "$ref": "AAAAAAFbYKjl7YtzQSY=" + }, + "edgePosition": 1, + "underline": false, + "text": "+builds", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYKjl7Yt1dZs=", + "_parent": { + "$ref": "AAAAAAFbYKjl7YtzQSY=" + }, + "model": { + "$ref": "AAAAAAFbYKjl7Ytvg5o=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 123, + "top": 156, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbYKjl7YtzQSY=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYKjl7Yt2qTA=", + "_parent": { + "$ref": "AAAAAAFbYKjl7YtzQSY=" + }, + "model": { + "$ref": "AAAAAAFbYKjl7Ytvg5o=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 79, + "top": 155, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbYKjl7YtzQSY=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYKjl7Yt3i/o=", + "_parent": { + "$ref": "AAAAAAFbYKjl7YtzQSY=" + }, + "model": { + "$ref": "AAAAAAFbYKjl7YtwzcQ=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 110, + "top": 113, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbYKjl7YtzQSY=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYKjl7Yt4juY=", + "_parent": { + "$ref": "AAAAAAFbYKjl7YtzQSY=" + }, + "model": { + "$ref": "AAAAAAFbYKjl7YtwzcQ=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 123, + "top": 116, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFbYKjl7YtzQSY=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYKjl7Yt5Fi0=", + "_parent": { + "$ref": "AAAAAAFbYKjl7YtzQSY=" + }, + "model": { + "$ref": "AAAAAAFbYKjl7YtwzcQ=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 79, + "top": 108, + "width": 7, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFbYKjl7YtzQSY=" + }, + "edgePosition": 2, + "underline": false, + "text": "1", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYKjl7ot6CeU=", + "_parent": { + "$ref": "AAAAAAFbYKjl7YtzQSY=" + }, + "model": { + "$ref": "AAAAAAFbYKjl7Ytxd/U=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 107, + "top": 199, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbYKjl7YtzQSY=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYKjl7ot7SPQ=", + "_parent": { + "$ref": "AAAAAAFbYKjl7YtzQSY=" + }, + "model": { + "$ref": "AAAAAAFbYKjl7Ytxd/U=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 121, + "top": 197, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFbYKjl7YtzQSY=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYKjl7ot8UzY=", + "_parent": { + "$ref": "AAAAAAFbYKjl7YtzQSY=" + }, + "model": { + "$ref": "AAAAAAFbYKjl7Ytxd/U=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 70, + "top": 202, + "width": 20, + "height": 13, + "autoResize": false, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFbYKjl7YtzQSY=" + }, + "edgePosition": 0, + "underline": false, + "text": "1..*", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFbYKjl7ot9lc0=", + "_parent": { + "$ref": "AAAAAAFbYKjl7YtzQSY=" + }, + "model": { + "$ref": "AAAAAAFbYKjl7YtwzcQ=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -160, + "top": -176, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFbYKjl7ot+tOA=", + "_parent": { + "$ref": "AAAAAAFbYKjl7YtzQSY=" + }, + "model": { + "$ref": "AAAAAAFbYKjl7Ytxd/U=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -160, + "top": -176, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFbYJqvFYEf/Fo=" + }, + "tail": { + "$ref": "AAAAAAFbYJqY6YD2984=" + }, + "lineStyle": 1, + "points": "96:93;92:231", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFbYKjl7Yt0ZhE=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFbYKjl7Yt1dZs=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbYKjl7Yt2qTA=" + }, + "showMultiplicity": true, + "showType": true, + "tailRoleNameLabel": { + "$ref": "AAAAAAFbYKjl7Yt3i/o=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAFbYKjl7Yt4juY=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAFbYKjl7Yt5Fi0=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAFbYKjl7ot6CeU=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAFbYKjl7ot7SPQ=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAFbYKjl7ot8UzY=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAFbYKjl7ot9lc0=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAFbYKjl7ot+tOA=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAFbYKllEox565k=", + "_parent": { + "$ref": "AAAAAAFbYJppxoDY5TQ=" + }, + "model": { + "$ref": "AAAAAAFbYKllEox18Ts=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYKllEox66IQ=", + "_parent": { + "$ref": "AAAAAAFbYKllEox565k=" + }, + "model": { + "$ref": "AAAAAAFbYKllEox18Ts=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 206, + "top": 263, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbYKllEox565k=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYKllEox797Q=", + "_parent": { + "$ref": "AAAAAAFbYKllEox565k=" + }, + "model": { + "$ref": "AAAAAAFbYKllEox18Ts=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 206, + "top": 278, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbYKllEox565k=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYKllEox8CAg=", + "_parent": { + "$ref": "AAAAAAFbYKllEox565k=" + }, + "model": { + "$ref": "AAAAAAFbYKllEox18Ts=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 207, + "top": 233, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbYKllEox565k=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYKllEox9iBk=", + "_parent": { + "$ref": "AAAAAAFbYKllEox565k=" + }, + "model": { + "$ref": "AAAAAAFbYKllEox2zNY=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 269, + "top": 262, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbYKllEox565k=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYKllEox+grY=", + "_parent": { + "$ref": "AAAAAAFbYKllEox565k=" + }, + "model": { + "$ref": "AAAAAAFbYKllEox2zNY=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 266, + "top": 276, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFbYKllEox565k=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYKllEox/Jug=", + "_parent": { + "$ref": "AAAAAAFbYKllEox565k=" + }, + "model": { + "$ref": "AAAAAAFbYKllEox2zNY=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 263, + "top": 235, + "width": 20, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFbYKllEox565k=" + }, + "edgePosition": 2, + "underline": false, + "text": "1..*", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYKllEoyAOlo=", + "_parent": { + "$ref": "AAAAAAFbYKllEox565k=" + }, + "model": { + "$ref": "AAAAAAFbYKllEox3Olg=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 144, + "top": 262, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbYKllEox565k=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYKllEoyBHPM=", + "_parent": { + "$ref": "AAAAAAFbYKllEox565k=" + }, + "model": { + "$ref": "AAAAAAFbYKllEox3Olg=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 147, + "top": 276, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFbYKllEox565k=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYKllE4yCbVg=", + "_parent": { + "$ref": "AAAAAAFbYKllEox565k=" + }, + "model": { + "$ref": "AAAAAAFbYKllEox3Olg=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 137, + "top": 235, + "width": 7, + "height": 13, + "autoResize": false, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFbYKllEox565k=" + }, + "edgePosition": 0, + "underline": false, + "text": "1", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFbYKllE4yD3mo=", + "_parent": { + "$ref": "AAAAAAFbYKllEox565k=" + }, + "model": { + "$ref": "AAAAAAFbYKllEox2zNY=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -160, + "top": -176, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFbYKllE4yEyqY=", + "_parent": { + "$ref": "AAAAAAFbYKllEox565k=" + }, + "model": { + "$ref": "AAAAAAFbYKllEox3Olg=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -160, + "top": -176, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFbYJqvFYEf/Fo=" + }, + "tail": { + "$ref": "AAAAAAFbYKYD04Twklc=" + }, + "lineStyle": 1, + "points": "295:254;119:254", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFbYKllEox66IQ=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFbYKllEox797Q=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbYKllEox8CAg=" + }, + "showMultiplicity": true, + "showType": true, + "tailRoleNameLabel": { + "$ref": "AAAAAAFbYKllEox9iBk=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAFbYKllEox+grY=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAFbYKllEox/Jug=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAFbYKllEoyAOlo=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAFbYKllEoyBHPM=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAFbYKllE4yCbVg=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAFbYKllE4yD3mo=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAFbYKllE4yEyqY=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAFbYKpaF461e7A=", + "_parent": { + "$ref": "AAAAAAFbYJppxoDY5TQ=" + }, + "model": { + "$ref": "AAAAAAFbYKpaFo6xK6I=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYKpaF4627k8=", + "_parent": { + "$ref": "AAAAAAFbYKpaF461e7A=" + }, + "model": { + "$ref": "AAAAAAFbYKpaFo6xK6I=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 388, + "top": 205, + "width": 64, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbYKpaF461e7A=" + }, + "edgePosition": 1, + "underline": false, + "text": "+assembly", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYKpaF463V2s=", + "_parent": { + "$ref": "AAAAAAFbYKpaF461e7A=" + }, + "model": { + "$ref": "AAAAAAFbYKpaFo6xK6I=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 435, + "top": 205, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbYKpaF461e7A=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYKpaF464Dv0=", + "_parent": { + "$ref": "AAAAAAFbYKpaF461e7A=" + }, + "model": { + "$ref": "AAAAAAFbYKpaFo6xK6I=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 391, + "top": 206, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbYKpaF461e7A=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYKpaF4658T0=", + "_parent": { + "$ref": "AAAAAAFbYKpaF461e7A=" + }, + "model": { + "$ref": "AAAAAAFbYKpaF46ysfs=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 295, + "top": 191, + "width": 85, + "height": 13, + "autoResize": false, + "alpha": -0.058755615819165996, + "distance": 34.058772731852805, + "hostEdge": { + "$ref": "AAAAAAFbYKpaF461e7A=" + }, + "edgePosition": 2, + "underline": false, + "text": "+subassembly", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYKpaF466V0o=", + "_parent": { + "$ref": "AAAAAAFbYKpaF461e7A=" + }, + "model": { + "$ref": "AAAAAAFbYKpaF46ysfs=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 307, + "top": 197, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFbYKpaF461e7A=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYKpaF4673E0=", + "_parent": { + "$ref": "AAAAAAFbYKpaF461e7A=" + }, + "model": { + "$ref": "AAAAAAFbYKpaF46ysfs=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 310, + "top": 216, + "width": 20, + "height": 13, + "autoResize": false, + "alpha": -5.300391391624707, + "distance": 18.027756377319946, + "hostEdge": { + "$ref": "AAAAAAFbYKpaF461e7A=" + }, + "edgePosition": 2, + "underline": false, + "text": "0..*", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYKpaF4687IM=", + "_parent": { + "$ref": "AAAAAAFbYKpaF461e7A=" + }, + "model": { + "$ref": "AAAAAAFbYKpaF46zGUU=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 391, + "top": 261, + "width": 64, + "height": 13, + "autoResize": false, + "alpha": -0.2954407765900988, + "distance": 48.08326112068523, + "hostEdge": { + "$ref": "AAAAAAFbYKpaF461e7A=" + }, + "edgePosition": 0, + "underline": false, + "text": "+assembly", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYKpaF469MA8=", + "_parent": { + "$ref": "AAAAAAFbYKpaF461e7A=" + }, + "model": { + "$ref": "AAAAAAFbYKpaF46zGUU=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 405, + "top": 276, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFbYKpaF461e7A=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbYKpaF46+oKE=", + "_parent": { + "$ref": "AAAAAAFbYKpaF461e7A=" + }, + "model": { + "$ref": "AAAAAAFbYKpaF46zGUU=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 415, + "top": 240, + "width": 20, + "height": 13, + "autoResize": false, + "alpha": 0.16514864363084988, + "distance": 48.662100242385755, + "hostEdge": { + "$ref": "AAAAAAFbYKpaF461e7A=" + }, + "edgePosition": 0, + "underline": false, + "text": "0..*", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFbYKpaF46/kWc=", + "_parent": { + "$ref": "AAAAAAFbYKpaF461e7A=" + }, + "model": { + "$ref": "AAAAAAFbYKpaF46ysfs=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -160, + "top": -176, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFbYKpaF47A1dA=", + "_parent": { + "$ref": "AAAAAAFbYKpaF461e7A=" + }, + "model": { + "$ref": "AAAAAAFbYKpaF46zGUU=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -160, + "top": -176, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFbYKYD04Twklc=" + }, + "tail": { + "$ref": "AAAAAAFbYKYD04Twklc=" + }, + "lineStyle": 0, + "points": "336:232;336:212;406:212;406:254;377:254", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFbYKpaF4627k8=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFbYKpaF463V2s=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbYKpaF464Dv0=" + }, + "showMultiplicity": true, + "showType": true, + "tailRoleNameLabel": { + "$ref": "AAAAAAFbYKpaF4658T0=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAFbYKpaF466V0o=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAFbYKpaF4673E0=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAFbYKpaF4687IM=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAFbYKpaF469MA8=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAFbYKpaF46+oKE=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAFbYKpaF46/kWc=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAFbYKpaF47A1dA=" + } + } + ] + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFbYJqY6YD0a80=", + "_parent": { + "$ref": "AAAAAAFbYJKs1Ym3X5w=" + }, + "name": "Team", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAFbYKbDW4XUo+g=", + "_parent": { + "$ref": "AAAAAAFbYJqY6YD0a80=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFbYKbDW4XVgq0=", + "_parent": { + "$ref": "AAAAAAFbYKbDW4XUo+g=" + }, + "name": "subteams", + "reference": { + "$ref": "AAAAAAFbYJqY6YD0a80=" + }, + "visibility": "public", + "navigable": true, + "aggregation": "none", + "multiplicity": "0..*", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFbYKbDW4XWrEA=", + "_parent": { + "$ref": "AAAAAAFbYKbDW4XUo+g=" + }, + "name": "parent", + "reference": { + "$ref": "AAAAAAFbYJqY6YD0a80=" + }, + "visibility": "public", + "navigable": true, + "aggregation": "shared", + "multiplicity": "0..1", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "visibility": "public", + "isDerived": false + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAFbYKjl7Ytvg5o=", + "_parent": { + "$ref": "AAAAAAFbYJqY6YD0a80=" + }, + "name": "builds", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFbYKjl7YtwzcQ=", + "_parent": { + "$ref": "AAAAAAFbYKjl7Ytvg5o=" + }, + "reference": { + "$ref": "AAAAAAFbYJqY6YD0a80=" + }, + "visibility": "public", + "navigable": false, + "aggregation": "none", + "multiplicity": "1", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFbYKjl7Ytxd/U=", + "_parent": { + "$ref": "AAAAAAFbYKjl7Ytvg5o=" + }, + "reference": { + "$ref": "AAAAAAFbYJqvFYEd9F8=" + }, + "visibility": "public", + "navigable": true, + "aggregation": "none", + "multiplicity": "1..*", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "visibility": "public", + "isDerived": false + } + ], + "visibility": "public", + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFbYJqvFYEd9F8=", + "_parent": { + "$ref": "AAAAAAFbYJKs1Ym3X5w=" + }, + "name": "Airplan", + "visibility": "public", + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFbYJq6w4FG8MQ=", + "_parent": { + "$ref": "AAAAAAFbYJKs1Ym3X5w=" + }, + "name": "Employee", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAFbYJwzjYLxrAE=", + "_parent": { + "$ref": "AAAAAAFbYJq6w4FG8MQ=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFbYJwzjYLymw8=", + "_parent": { + "$ref": "AAAAAAFbYJwzjYLxrAE=" + }, + "name": "teams", + "reference": { + "$ref": "AAAAAAFbYJq6w4FG8MQ=" + }, + "visibility": "public", + "navigable": true, + "aggregation": "none", + "multiplicity": "1..*", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFbYJwzjYLzGaQ=", + "_parent": { + "$ref": "AAAAAAFbYJwzjYLxrAE=" + }, + "name": "members", + "reference": { + "$ref": "AAAAAAFbYJqY6YD0a80=" + }, + "visibility": "public", + "navigable": true, + "aggregation": "shared", + "multiplicity": "0..*", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "visibility": "public", + "isDerived": false + } + ], + "visibility": "public", + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFbYKYD04TufI8=", + "_parent": { + "$ref": "AAAAAAFbYJKs1Ym3X5w=" + }, + "name": "Component", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAFbYKllEox18Ts=", + "_parent": { + "$ref": "AAAAAAFbYKYD04TufI8=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFbYKllEox2zNY=", + "_parent": { + "$ref": "AAAAAAFbYKllEox18Ts=" + }, + "reference": { + "$ref": "AAAAAAFbYKYD04TufI8=" + }, + "visibility": "public", + "navigable": true, + "aggregation": "none", + "multiplicity": "1..*", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFbYKllEox3Olg=", + "_parent": { + "$ref": "AAAAAAFbYKllEox18Ts=" + }, + "reference": { + "$ref": "AAAAAAFbYJqvFYEd9F8=" + }, + "visibility": "public", + "navigable": true, + "aggregation": "composite", + "multiplicity": "1", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "visibility": "public", + "isDerived": false + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAFbYKpaFo6xK6I=", + "_parent": { + "$ref": "AAAAAAFbYKYD04TufI8=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFbYKpaF46ysfs=", + "_parent": { + "$ref": "AAAAAAFbYKpaFo6xK6I=" + }, + "name": "subassembly", + "reference": { + "$ref": "AAAAAAFbYKYD04TufI8=" + }, + "visibility": "public", + "navigable": true, + "aggregation": "none", + "multiplicity": "0..*", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFbYKpaF46zGUU=", + "_parent": { + "$ref": "AAAAAAFbYKpaFo6xK6I=" + }, + "name": "assembly", + "reference": { + "$ref": "AAAAAAFbYKYD04TufI8=" + }, + "visibility": "public", + "navigable": true, + "aggregation": "composite", + "multiplicity": "0..*", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "visibility": "public", + "isDerived": false + } + ], + "visibility": "public", + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + } + ], + "visibility": "public" + }, + { + "_type": "UMLPackage", + "_id": "AAAAAAFbYMlnWbzdFmE=", + "_parent": { + "$ref": "AAAAAAFF+h6SjaM2Hec=" + }, + "name": "directives", + "ownedElements": [ + { + "_type": "UMLClassDiagram", + "_id": "AAAAAAFbYMnXYLz8aGE=", + "_parent": { + "$ref": "AAAAAAFbYMlnWbzdFmE=" + }, + "name": "directives", + "visible": true, + "defaultDiagram": false, + "ownedViews": [ + { + "_type": "UMLClassView", + "_id": "AAAAAAFbYMpK/72qbbY=", + "_parent": { + "$ref": "AAAAAAFbYMnXYLz8aGE=" + }, + "model": { + "$ref": "AAAAAAFbYMo7YSAvcCI=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbYMpK/72rOUQ=", + "_parent": { + "$ref": "AAAAAAFbYMpK/72qbbY=" + }, + "model": { + "$ref": "AAAAAAFbYMo7YSAvcCI=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbYMpLAL2srVs=", + "_parent": { + "$ref": "AAAAAAFbYMpK/72rOUQ=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -740, + "top": -438, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbYMpLAL2t/HI=", + "_parent": { + "$ref": "AAAAAAFbYMpK/72rOUQ=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 53, + "top": 79, + "width": 324, + "height": 13, + "autoResize": false, + "underline": false, + "text": "DirectiveClass", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbYMpLAL2udYc=", + "_parent": { + "$ref": "AAAAAAFbYMpK/72rOUQ=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -740, + "top": -438, + "width": 94, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from directives)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbYMpLAL2vP4o=", + "_parent": { + "$ref": "AAAAAAFbYMpK/72rOUQ=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -740, + "top": -438, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 48, + "top": 72, + "width": 334, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbYMpLAL2srVs=" + }, + "nameLabel": { + "$ref": "AAAAAAFbYMpLAL2t/HI=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbYMpLAL2udYc=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbYMpLAL2vP4o=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbYMpLAL2weg8=", + "_parent": { + "$ref": "AAAAAAFbYMpK/72qbbY=" + }, + "model": { + "$ref": "AAAAAAFbYMo7YSAvcCI=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFbYMpLML3Qqi8=", + "_parent": { + "$ref": "AAAAAAFbYMpLAL2weg8=" + }, + "model": { + "$ref": "AAAAAAFbYMo7YSAw8/M=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 53, + "top": 102, + "width": 324, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+name: String {fake=\"type: firstName\"}", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFbYMpLMr3TeQc=", + "_parent": { + "$ref": "AAAAAAFbYMpLAL2weg8=" + }, + "model": { + "$ref": "AAAAAAFbYMo7YSAz5TM=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 53, + "top": 117, + "width": 324, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+gender: String {examples=\"values: [\"male\", \"female\"]\"}", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 48, + "top": 97, + "width": 334, + "height": 38, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbYMpLAL2xemY=", + "_parent": { + "$ref": "AAAAAAFbYMpK/72qbbY=" + }, + "model": { + "$ref": "AAAAAAFbYMo7YSAvcCI=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 48, + "top": 135, + "width": 334, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbYMpLAb2yzK4=", + "_parent": { + "$ref": "AAAAAAFbYMpK/72qbbY=" + }, + "model": { + "$ref": "AAAAAAFbYMo7YSAvcCI=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -370, + "top": -219, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbYMpLAb2z8g4=", + "_parent": { + "$ref": "AAAAAAFbYMpK/72qbbY=" + }, + "model": { + "$ref": "AAAAAAFbYMo7YSAvcCI=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -370, + "top": -219, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 48, + "top": 72, + "width": 334, + "height": 73, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbYMpK/72rOUQ=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": true, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbYMpLAL2weg8=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbYMpLAL2xemY=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbYMpLAb2yzK4=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbYMpLAb2z8g4=" + } + } + ] + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFbYMo7YSAvcCI=", + "_parent": { + "$ref": "AAAAAAFbYMlnWbzdFmE=" + }, + "name": "DirectiveClass", + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFbYMo7YSAw8/M=", + "_parent": { + "$ref": "AAAAAAFbYMo7YSAvcCI=" + }, + "name": "name", + "ownedElements": [ + { + "_type": "UMLConstraint", + "_id": "AAAAAAFbYMo7YSAx81Y=", + "_parent": { + "$ref": "AAAAAAFbYMo7YSAw8/M=" + }, + "name": "const1", + "visibility": "public", + "specification": "value1" + } + ], + "tags": [ + { + "_type": "Tag", + "_id": "AAAAAAFbYMo7YSAyUZo=", + "_parent": { + "$ref": "AAAAAAFbYMo7YSAw8/M=" + }, + "name": "fake", + "kind": "string", + "value": "type: firstName", + "checked": false, + "number": 0 + } + ], + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "String", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + }, + { + "_type": "UMLAttribute", + "_id": "AAAAAAFbYMo7YSAz5TM=", + "_parent": { + "$ref": "AAAAAAFbYMo7YSAvcCI=" + }, + "name": "gender", + "tags": [ + { + "_type": "Tag", + "_id": "AAAAAAFbYMo7YSA0FBM=", + "_parent": { + "$ref": "AAAAAAFbYMo7YSAz5TM=" + }, + "name": "examples", + "kind": "string", + "value": "values: [\"male\", \"female\"]", + "checked": false, + "number": 0 + } + ], + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "String", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + } + ], + "visibility": "public" + }, + { + "_type": "UMLPackage", + "_id": "AAAAAAFboys0YpELtuE=", + "_parent": { + "$ref": "AAAAAAFF+h6SjaM2Hec=" + }, + "name": "overrides", + "ownedElements": [ + { + "_type": "UMLClassDiagram", + "_id": "AAAAAAFboytzI5EPkB0=", + "_parent": { + "$ref": "AAAAAAFboys0YpELtuE=" + }, + "name": "overides", + "visible": true, + "defaultDiagram": false, + "ownedViews": [ + { + "_type": "UMLClassView", + "_id": "AAAAAAFboyuX+ZE/zH0=", + "_parent": { + "$ref": "AAAAAAFboytzI5EPkB0=" + }, + "model": { + "$ref": "AAAAAAFboyuX+ZE9X94=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFboyuX+pFAJzM=", + "_parent": { + "$ref": "AAAAAAFboyuX+ZE/zH0=" + }, + "model": { + "$ref": "AAAAAAFboyuX+ZE9X94=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFboyuX+pFBOFc=", + "_parent": { + "$ref": "AAAAAAFboyuX+pFAJzM=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 0, + "top": 0, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFboyuX+pFChOU=", + "_parent": { + "$ref": "AAAAAAFboyuX+pFAJzM=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 173, + "top": 239, + "width": 70, + "height": 13, + "autoResize": false, + "underline": false, + "text": "Class1", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFboyuX+pFD7Xo=", + "_parent": { + "$ref": "AAAAAAFboyuX+pFAJzM=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 0, + "top": 0, + "width": 91, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from overrides)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFboyuX+pFE9kc=", + "_parent": { + "$ref": "AAAAAAFboyuX+pFAJzM=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 0, + "top": 0, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 168, + "top": 232, + "width": 80, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFboyuX+pFBOFc=" + }, + "nameLabel": { + "$ref": "AAAAAAFboyuX+pFChOU=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFboyuX+pFD7Xo=" + }, + "propertyLabel": { + "$ref": "AAAAAAFboyuX+pFE9kc=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFboyuX+pFFRB0=", + "_parent": { + "$ref": "AAAAAAFboyuX+ZE/zH0=" + }, + "model": { + "$ref": "AAAAAAFboyuX+ZE9X94=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFboyvL05GTRuw=", + "_parent": { + "$ref": "AAAAAAFboyuX+pFFRB0=" + }, + "model": { + "$ref": "AAAAAAFboyvLqpGQ92s=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 173, + "top": 262, + "width": 70, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+c2: Class2", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 168, + "top": 257, + "width": 80, + "height": 23, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFboyuX+5FGHqg=", + "_parent": { + "$ref": "AAAAAAFboyuX+ZE/zH0=" + }, + "model": { + "$ref": "AAAAAAFboyuX+ZE9X94=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 168, + "top": 280, + "width": 80, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFboyuX+5FHSKY=", + "_parent": { + "$ref": "AAAAAAFboyuX+ZE/zH0=" + }, + "model": { + "$ref": "AAAAAAFboyuX+ZE9X94=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 0, + "top": 0, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFboyuX+5FImXI=", + "_parent": { + "$ref": "AAAAAAFboyuX+ZE/zH0=" + }, + "model": { + "$ref": "AAAAAAFboyuX+ZE9X94=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 0, + "top": 0, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 168, + "top": 232, + "width": 80, + "height": 81, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFboyuX+pFAJzM=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": false, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFboyuX+pFFRB0=" + }, + "operationCompartment": { + "$ref": "AAAAAAFboyuX+5FGHqg=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFboyuX+5FHSKY=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFboyuX+5FImXI=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFboyumd5Fo2jg=", + "_parent": { + "$ref": "AAAAAAFboytzI5EPkB0=" + }, + "model": { + "$ref": "AAAAAAFboyumd5Fm1Cw=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFboyumd5Fpb0c=", + "_parent": { + "$ref": "AAAAAAFboyumd5Fo2jg=" + }, + "model": { + "$ref": "AAAAAAFboyumd5Fm1Cw=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFboyumd5FqF78=", + "_parent": { + "$ref": "AAAAAAFboyumd5Fpb0c=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 32, + "top": 16, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFboyumd5FrF2Y=", + "_parent": { + "$ref": "AAAAAAFboyumd5Fpb0c=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 365, + "top": 255, + "width": 41, + "height": 13, + "autoResize": false, + "underline": false, + "text": "Class2", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFboyumd5FsLkU=", + "_parent": { + "$ref": "AAAAAAFboyumd5Fpb0c=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 32, + "top": 16, + "width": 91, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from overrides)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFboyumd5Ftsas=", + "_parent": { + "$ref": "AAAAAAFboyumd5Fpb0c=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 32, + "top": 16, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 360, + "top": 248, + "width": 51, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFboyumd5FqF78=" + }, + "nameLabel": { + "$ref": "AAAAAAFboyumd5FrF2Y=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFboyumd5FsLkU=" + }, + "propertyLabel": { + "$ref": "AAAAAAFboyumd5Ftsas=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFboyumd5Fuy7E=", + "_parent": { + "$ref": "AAAAAAFboyumd5Fo2jg=" + }, + "model": { + "$ref": "AAAAAAFboyumd5Fm1Cw=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 360, + "top": 273, + "width": 51, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFboyumeJFvdpo=", + "_parent": { + "$ref": "AAAAAAFboyumd5Fo2jg=" + }, + "model": { + "$ref": "AAAAAAFboyumd5Fm1Cw=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 360, + "top": 283, + "width": 51, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFboyumeJFw3yU=", + "_parent": { + "$ref": "AAAAAAFboyumd5Fo2jg=" + }, + "model": { + "$ref": "AAAAAAFboyumd5Fm1Cw=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 16, + "top": 8, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFboyumeJFx8RY=", + "_parent": { + "$ref": "AAAAAAFboyumd5Fo2jg=" + }, + "model": { + "$ref": "AAAAAAFboyumd5Fm1Cw=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 16, + "top": 8, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 360, + "top": 248, + "width": 51, + "height": 45, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFboyumd5Fpb0c=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": false, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFboyumd5Fuy7E=" + }, + "operationCompartment": { + "$ref": "AAAAAAFboyumeJFvdpo=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFboyumeJFw3yU=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFboyumeJFx8RY=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAFboywDZZGcStI=", + "_parent": { + "$ref": "AAAAAAFboytzI5EPkB0=" + }, + "model": { + "$ref": "AAAAAAFboywDZJGYYVs=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFboywDZZGdyNk=", + "_parent": { + "$ref": "AAAAAAFboywDZZGcStI=" + }, + "model": { + "$ref": "AAAAAAFboywDZJGYYVs=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 291, + "top": 250, + "width": 22, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFboywDZZGcStI=" + }, + "edgePosition": 1, + "underline": false, + "text": "+c2", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFboywDZpGeXhU=", + "_parent": { + "$ref": "AAAAAAFboywDZZGcStI=" + }, + "model": { + "$ref": "AAAAAAFboywDZJGYYVs=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 302, + "top": 235, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFboywDZZGcStI=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFboywDZpGfsPU=", + "_parent": { + "$ref": "AAAAAAFboywDZZGcStI=" + }, + "model": { + "$ref": "AAAAAAFboywDZJGYYVs=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 303, + "top": 279, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFboywDZZGcStI=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFboywDZpGgGhA=", + "_parent": { + "$ref": "AAAAAAFboywDZZGcStI=" + }, + "model": { + "$ref": "AAAAAAFboywDZZGZJIg=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 273, + "top": 250, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFboywDZZGcStI=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFboywDZpGhgWc=", + "_parent": { + "$ref": "AAAAAAFboywDZZGcStI=" + }, + "model": { + "$ref": "AAAAAAFboywDZZGZJIg=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 275, + "top": 237, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFboywDZZGcStI=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFboywDZpGioEs=", + "_parent": { + "$ref": "AAAAAAFboywDZZGcStI=" + }, + "model": { + "$ref": "AAAAAAFboywDZZGZJIg=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 269, + "top": 278, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFboywDZZGcStI=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFboywDZpGjrX8=", + "_parent": { + "$ref": "AAAAAAFboywDZZGcStI=" + }, + "model": { + "$ref": "AAAAAAFboywDZZGaqq0=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 332, + "top": 249, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFboywDZZGcStI=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFboywDZpGkItA=", + "_parent": { + "$ref": "AAAAAAFboywDZZGcStI=" + }, + "model": { + "$ref": "AAAAAAFboywDZZGaqq0=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 330, + "top": 236, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFboywDZZGcStI=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFboywDZpGlETA=", + "_parent": { + "$ref": "AAAAAAFboywDZZGcStI=" + }, + "model": { + "$ref": "AAAAAAFboywDZZGaqq0=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 334, + "top": 276, + "width": 7, + "height": 13, + "autoResize": false, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFboywDZZGcStI=" + }, + "edgePosition": 0, + "underline": false, + "text": "1", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFboywDZpGm3OU=", + "_parent": { + "$ref": "AAAAAAFboywDZZGcStI=" + }, + "model": { + "$ref": "AAAAAAFboywDZZGZJIg=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 0, + "top": 0, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFboywDZpGnOo8=", + "_parent": { + "$ref": "AAAAAAFboywDZZGcStI=" + }, + "model": { + "$ref": "AAAAAAFboywDZZGaqq0=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 0, + "top": 0, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFboyumd5Fo2jg=" + }, + "tail": { + "$ref": "AAAAAAFboyuX+ZE/zH0=" + }, + "lineStyle": 1, + "points": "248:272;359:270", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFboywDZZGdyNk=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFboywDZpGeXhU=" + }, + "propertyLabel": { + "$ref": "AAAAAAFboywDZpGfsPU=" + }, + "showMultiplicity": true, + "showType": true, + "tailRoleNameLabel": { + "$ref": "AAAAAAFboywDZpGgGhA=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAFboywDZpGhgWc=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAFboywDZpGioEs=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAFboywDZpGjrX8=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAFboywDZpGkItA=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAFboywDZpGlETA=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAFboywDZpGm3OU=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAFboywDZpGnOo8=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFboy1rXpIZa7U=", + "_parent": { + "$ref": "AAAAAAFboytzI5EPkB0=" + }, + "model": { + "$ref": "AAAAAAFboy1rXZIXQ0A=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFboy1rXpIaE+Q=", + "_parent": { + "$ref": "AAAAAAFboy1rXpIZa7U=" + }, + "model": { + "$ref": "AAAAAAFboy1rXZIXQ0A=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFboy1rXpIb42w=", + "_parent": { + "$ref": "AAAAAAFboy1rXpIaE+Q=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 0, + "top": 0, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFboy1rXpIcJXc=", + "_parent": { + "$ref": "AAAAAAFboy1rXpIaE+Q=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 189, + "top": 471, + "width": 41, + "height": 13, + "autoResize": false, + "underline": false, + "text": "Class3", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFboy1rXpIdcoA=", + "_parent": { + "$ref": "AAAAAAFboy1rXpIaE+Q=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 0, + "top": 0, + "width": 91, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from overrides)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFboy1rXpIe7PI=", + "_parent": { + "$ref": "AAAAAAFboy1rXpIaE+Q=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 0, + "top": 0, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 184, + "top": 464, + "width": 51, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFboy1rXpIb42w=" + }, + "nameLabel": { + "$ref": "AAAAAAFboy1rXpIcJXc=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFboy1rXpIdcoA=" + }, + "propertyLabel": { + "$ref": "AAAAAAFboy1rXpIe7PI=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFboy1rXpIfBZ4=", + "_parent": { + "$ref": "AAAAAAFboy1rXpIZa7U=" + }, + "model": { + "$ref": "AAAAAAFboy1rXZIXQ0A=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 184, + "top": 489, + "width": 51, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFboy1rX5IgNO8=", + "_parent": { + "$ref": "AAAAAAFboy1rXpIZa7U=" + }, + "model": { + "$ref": "AAAAAAFboy1rXZIXQ0A=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 184, + "top": 499, + "width": 51, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFboy1rX5IhWSA=", + "_parent": { + "$ref": "AAAAAAFboy1rXpIZa7U=" + }, + "model": { + "$ref": "AAAAAAFboy1rXZIXQ0A=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 0, + "top": 0, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFboy1rX5Iis+I=", + "_parent": { + "$ref": "AAAAAAFboy1rXpIZa7U=" + }, + "model": { + "$ref": "AAAAAAFboy1rXZIXQ0A=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 0, + "top": 0, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 184, + "top": 464, + "width": 51, + "height": 45, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFboy1rXpIaE+Q=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": false, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFboy1rXpIfBZ4=" + }, + "operationCompartment": { + "$ref": "AAAAAAFboy1rX5IgNO8=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFboy1rX5IhWSA=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFboy1rX5Iis+I=" + } + }, + { + "_type": "UMLGeneralizationView", + "_id": "AAAAAAFboy2NHZJgJWw=", + "_parent": { + "$ref": "AAAAAAFboytzI5EPkB0=" + }, + "model": { + "$ref": "AAAAAAFboy2NHZJeS/k=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFboy2NHZJhaQU=", + "_parent": { + "$ref": "AAAAAAFboy2NHZJgJWw=" + }, + "model": { + "$ref": "AAAAAAFboy2NHZJeS/k=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 193, + "top": 382, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFboy2NHZJgJWw=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFboy2NHZJiOFQ=", + "_parent": { + "$ref": "AAAAAAFboy2NHZJgJWw=" + }, + "model": { + "$ref": "AAAAAAFboy2NHZJeS/k=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 178, + "top": 382, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFboy2NHZJgJWw=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFboy2NHpJjwRw=", + "_parent": { + "$ref": "AAAAAAFboy2NHZJgJWw=" + }, + "model": { + "$ref": "AAAAAAFboy2NHZJeS/k=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 222, + "top": 381, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFboy2NHZJgJWw=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFboyuX+ZE/zH0=" + }, + "tail": { + "$ref": "AAAAAAFboy1rXpIZa7U=" + }, + "lineStyle": 1, + "points": "209:463;207:313", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFboy2NHZJhaQU=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFboy2NHZJiOFQ=" + }, + "propertyLabel": { + "$ref": "AAAAAAFboy2NHpJjwRw=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAFboy27wZKIs0Q=", + "_parent": { + "$ref": "AAAAAAFboytzI5EPkB0=" + }, + "model": { + "$ref": "AAAAAAFboy27wJKEf3Y=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFboy27wZKJDds=", + "_parent": { + "$ref": "AAAAAAFboy27wZKIs0Q=" + }, + "model": { + "$ref": "AAAAAAFboy27wJKEf3Y=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 274, + "top": 362, + "width": 22, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFboy27wZKIs0Q=" + }, + "edgePosition": 1, + "underline": false, + "text": "+c2", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFboy27wZKKLvc=", + "_parent": { + "$ref": "AAAAAAFboy27wZKIs0Q=" + }, + "model": { + "$ref": "AAAAAAFboy27wJKEf3Y=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 273, + "top": 353, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFboy27wZKIs0Q=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFboy27wZKLUHQ=", + "_parent": { + "$ref": "AAAAAAFboy27wZKIs0Q=" + }, + "model": { + "$ref": "AAAAAAFboy27wJKEf3Y=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 308, + "top": 381, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFboy27wZKIs0Q=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFboy27wZKMtQw=", + "_parent": { + "$ref": "AAAAAAFboy27wZKIs0Q=" + }, + "model": { + "$ref": "AAAAAAFboy27wJKFLlc=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 232, + "top": 427, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFboy27wZKIs0Q=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFboy27wpKNA/o=", + "_parent": { + "$ref": "AAAAAAFboy27wZKIs0Q=" + }, + "model": { + "$ref": "AAAAAAFboy27wJKFLlc=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 223, + "top": 417, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFboy27wZKIs0Q=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFboy27wpKOCjU=", + "_parent": { + "$ref": "AAAAAAFboy27wZKIs0Q=" + }, + "model": { + "$ref": "AAAAAAFboy27wJKFLlc=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 251, + "top": 448, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFboy27wZKIs0Q=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFboy27wpKPkjE=", + "_parent": { + "$ref": "AAAAAAFboy27wZKIs0Q=" + }, + "model": { + "$ref": "AAAAAAFboy27wJKG04E=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 337, + "top": 297, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFboy27wZKIs0Q=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFboy27wpKQ/mk=", + "_parent": { + "$ref": "AAAAAAFboy27wZKIs0Q=" + }, + "model": { + "$ref": "AAAAAAFboy27wJKG04E=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 326, + "top": 291, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFboy27wZKIs0Q=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFboy27wpKRrYs=", + "_parent": { + "$ref": "AAAAAAFboy27wZKIs0Q=" + }, + "model": { + "$ref": "AAAAAAFboy27wJKG04E=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 352, + "top": 311, + "width": 20, + "height": 13, + "autoResize": false, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFboy27wZKIs0Q=" + }, + "edgePosition": 0, + "underline": false, + "text": "1..*", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFboy27wpKSlZo=", + "_parent": { + "$ref": "AAAAAAFboy27wZKIs0Q=" + }, + "model": { + "$ref": "AAAAAAFboy27wJKFLlc=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 0, + "top": 0, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFboy27wpKTlb0=", + "_parent": { + "$ref": "AAAAAAFboy27wZKIs0Q=" + }, + "model": { + "$ref": "AAAAAAFboy27wJKG04E=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 0, + "top": 0, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFboyumd5Fo2jg=" + }, + "tail": { + "$ref": "AAAAAAFboy1rXpIZa7U=" + }, + "lineStyle": 1, + "points": "228:463;366:293", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFboy27wZKJDds=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFboy27wZKKLvc=" + }, + "propertyLabel": { + "$ref": "AAAAAAFboy27wZKLUHQ=" + }, + "showMultiplicity": true, + "showType": true, + "tailRoleNameLabel": { + "$ref": "AAAAAAFboy27wZKMtQw=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAFboy27wpKNA/o=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAFboy27wpKOCjU=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAFboy27wpKPkjE=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAFboy27wpKQ/mk=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAFboy27wpKRrYs=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAFboy27wpKSlZo=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAFboy27wpKTlb0=" + } + }, + { + "_type": "UMLInterfaceView", + "_id": "AAAAAAFbozjKKA801A0=", + "_parent": { + "$ref": "AAAAAAFboytzI5EPkB0=" + }, + "model": { + "$ref": "AAAAAAFbozjKJw8y/D4=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFbozjKKA81MaQ=", + "_parent": { + "$ref": "AAAAAAFbozjKKA801A0=" + }, + "model": { + "$ref": "AAAAAAFbozjKJw8y/D4=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFbozjKKQ82hkQ=", + "_parent": { + "$ref": "AAAAAAFbozjKKA81MaQ=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 157, + "top": 77, + "width": 74, + "height": 13, + "autoResize": false, + "underline": false, + "text": "«interface»", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbozjKKQ83yZs=", + "_parent": { + "$ref": "AAAAAAFbozjKKA81MaQ=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 157, + "top": 92, + "width": 74, + "height": 13, + "autoResize": false, + "underline": false, + "text": "I1", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbozjKKQ84hio=", + "_parent": { + "$ref": "AAAAAAFbozjKKA81MaQ=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -80, + "top": -16, + "width": 91, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from overrides)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFbozjKKQ85tCA=", + "_parent": { + "$ref": "AAAAAAFbozjKKA81MaQ=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -80, + "top": -16, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 152, + "top": 72, + "width": 84, + "height": 38, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFbozjKKQ82hkQ=" + }, + "nameLabel": { + "$ref": "AAAAAAFbozjKKQ83yZs=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFbozjKKQ84hio=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbozjKKQ85tCA=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFbozjKKQ86RYg=", + "_parent": { + "$ref": "AAAAAAFbozjKKA801A0=" + }, + "model": { + "$ref": "AAAAAAFbozjKJw8y/D4=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFbozk6qxAK74A=", + "_parent": { + "$ref": "AAAAAAFbozjKKQ86RYg=" + }, + "model": { + "$ref": "AAAAAAFbozk6fBABctw=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 157, + "top": 115, + "width": 98, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+c2: Number", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 152, + "top": 110, + "width": 108, + "height": 23, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFbozjKKQ87QsE=", + "_parent": { + "$ref": "AAAAAAFbozjKKA801A0=" + }, + "model": { + "$ref": "AAAAAAFbozjKJw8y/D4=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -40, + "top": -8, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFbozjKKg885YQ=", + "_parent": { + "$ref": "AAAAAAFbozjKKA801A0=" + }, + "model": { + "$ref": "AAAAAAFbozjKJw8y/D4=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -40, + "top": -8, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFbozjKKg89paA=", + "_parent": { + "$ref": "AAAAAAFbozjKKA801A0=" + }, + "model": { + "$ref": "AAAAAAFbozjKJw8y/D4=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -40, + "top": -8, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 152, + "top": 72, + "width": 108, + "height": 61, + "autoResize": false, + "stereotypeDisplay": "decoration-label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFbozjKKA81MaQ=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": true, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFbozjKKQ86RYg=" + }, + "operationCompartment": { + "$ref": "AAAAAAFbozjKKQ87QsE=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFbozjKKg885YQ=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFbozjKKg89paA=" + } + }, + { + "_type": "UMLInterfaceRealizationView", + "_id": "AAAAAAFbozmFsxBjAaM=", + "_parent": { + "$ref": "AAAAAAFboytzI5EPkB0=" + }, + "model": { + "$ref": "AAAAAAFbozmFshBix4M=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbozmFsxBkC2Q=", + "_parent": { + "$ref": "AAAAAAFbozmFsxBjAaM=" + }, + "model": { + "$ref": "AAAAAAFbozmFshBix4M=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 191, + "top": 176, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbozmFsxBjAaM=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbozmFsxBlDVk=", + "_parent": { + "$ref": "AAAAAAFbozmFsxBjAaM=" + }, + "model": { + "$ref": "AAAAAAFbozmFshBix4M=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 176, + "top": 176, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFbozmFsxBjAaM=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFbozmFsxBmwOY=", + "_parent": { + "$ref": "AAAAAAFbozmFsxBjAaM=" + }, + "model": { + "$ref": "AAAAAAFbozmFshBix4M=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 220, + "top": 175, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFbozmFsxBjAaM=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFbozjKKA801A0=" + }, + "tail": { + "$ref": "AAAAAAFboyuX+ZE/zH0=" + }, + "lineStyle": 1, + "points": "207:231;205:133", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFbozmFsxBkC2Q=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFbozmFsxBlDVk=" + }, + "propertyLabel": { + "$ref": "AAAAAAFbozmFsxBmwOY=" + } + } + ] + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFboyuX+ZE9X94=", + "_parent": { + "$ref": "AAAAAAFboys0YpELtuE=" + }, + "name": "Class1", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAFboywDZJGYYVs=", + "_parent": { + "$ref": "AAAAAAFboyuX+ZE9X94=" + }, + "name": "c2", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFboywDZZGZJIg=", + "_parent": { + "$ref": "AAAAAAFboywDZJGYYVs=" + }, + "reference": { + "$ref": "AAAAAAFboyuX+ZE9X94=" + }, + "visibility": "public", + "navigable": false, + "aggregation": "none", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFboywDZZGaqq0=", + "_parent": { + "$ref": "AAAAAAFboywDZJGYYVs=" + }, + "reference": { + "$ref": "AAAAAAFboyumd5Fm1Cw=" + }, + "visibility": "public", + "navigable": true, + "aggregation": "none", + "multiplicity": "1", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "visibility": "public", + "isDerived": false + }, + { + "_type": "UMLInterfaceRealization", + "_id": "AAAAAAFbozmFshBix4M=", + "_parent": { + "$ref": "AAAAAAFboyuX+ZE9X94=" + }, + "source": { + "$ref": "AAAAAAFboyuX+ZE9X94=" + }, + "target": { + "$ref": "AAAAAAFbozjKJw8y/D4=" + }, + "visibility": "public" + } + ], + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFboyvLqpGQ92s=", + "_parent": { + "$ref": "AAAAAAFboyuX+ZE9X94=" + }, + "name": "c2", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": { + "$ref": "AAAAAAFboyumd5Fm1Cw=" + }, + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFboyumd5Fm1Cw=", + "_parent": { + "$ref": "AAAAAAFboys0YpELtuE=" + }, + "name": "Class2", + "visibility": "public", + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFboy1rXZIXQ0A=", + "_parent": { + "$ref": "AAAAAAFboys0YpELtuE=" + }, + "name": "Class3", + "ownedElements": [ + { + "_type": "UMLGeneralization", + "_id": "AAAAAAFboy2NHZJeS/k=", + "_parent": { + "$ref": "AAAAAAFboy1rXZIXQ0A=" + }, + "source": { + "$ref": "AAAAAAFboy1rXZIXQ0A=" + }, + "target": { + "$ref": "AAAAAAFboyuX+ZE9X94=" + }, + "visibility": "public" + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAFboy27wJKEf3Y=", + "_parent": { + "$ref": "AAAAAAFboy1rXZIXQ0A=" + }, + "name": "c2", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFboy27wJKFLlc=", + "_parent": { + "$ref": "AAAAAAFboy27wJKEf3Y=" + }, + "reference": { + "$ref": "AAAAAAFboy1rXZIXQ0A=" + }, + "visibility": "public", + "navigable": false, + "aggregation": "none", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFboy27wJKG04E=", + "_parent": { + "$ref": "AAAAAAFboy27wJKEf3Y=" + }, + "reference": { + "$ref": "AAAAAAFboyumd5Fm1Cw=" + }, + "visibility": "public", + "navigable": true, + "aggregation": "none", + "multiplicity": "1..*", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "visibility": "public", + "isDerived": false + } + ], + "visibility": "public", + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLInterface", + "_id": "AAAAAAFbozjKJw8y/D4=", + "_parent": { + "$ref": "AAAAAAFboys0YpELtuE=" + }, + "name": "I1", + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFbozk6fBABctw=", + "_parent": { + "$ref": "AAAAAAFbozjKJw8y/D4=" + }, + "name": "c2", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "Number", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false + } + ], + "visibility": "public" + } + ], + "documentation": "Set of sample use cases to support graphql generation testing", + "author": "Olivier Refalo", + "company": "MyCompany", + "copyright": "(c) Olivier Refalo", + "version": "1.0" +} \ No newline at end of file diff --git a/test/TodoMVC.mdj b/test/TodoMVC.mdj new file mode 100644 index 0000000..b9bb8d9 --- /dev/null +++ b/test/TodoMVC.mdj @@ -0,0 +1,13036 @@ +{ + "_type": "Project", + "_id": "AAAAAAFF+h6SjaM2Hec=", + "name": "TodoMVC", + "ownedElements": [ + { + "_type": "UMLModel", + "_id": "AAAAAAFF+qBWK6M3Z8Y=", + "_parent": { + "$ref": "AAAAAAFF+h6SjaM2Hec=" + }, + "name": "Model", + "ownedElements": [ + { + "_type": "UMLClassDiagram", + "_id": "AAAAAAFF+qBtyKM79qY=", + "_parent": { + "$ref": "AAAAAAFF+qBWK6M3Z8Y=" + }, + "name": "DataModel", + "visible": true, + "defaultDiagram": true, + "ownedViews": [ + { + "_type": "UMLClassView", + "_id": "AAAAAAFb3eEDFfgRc4Y=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAFb3eEDFPgPpMs=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFb3eEDFfgSM0U=", + "_parent": { + "$ref": "AAAAAAFb3eEDFfgRc4Y=" + }, + "model": { + "$ref": "AAAAAAFb3eEDFPgPpMs=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFb3eEDFfgTsFs=", + "_parent": { + "$ref": "AAAAAAFb3eEDFfgSM0U=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 368, + "top": 32, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb3eEDFfgUHcY=", + "_parent": { + "$ref": "AAAAAAFb3eEDFfgSM0U=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 357, + "top": 527, + "width": 569, + "height": 13, + "autoResize": false, + "underline": false, + "text": "Mutation", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb3eEDFfgVYzI=", + "_parent": { + "$ref": "AAAAAAFb3eEDFfgSM0U=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 368, + "top": 32, + "width": 73, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from Model)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb3eEDFfgWfD8=", + "_parent": { + "$ref": "AAAAAAFb3eEDFfgSM0U=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 368, + "top": 32, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 352, + "top": 520, + "width": 579, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFb3eEDFfgTsFs=" + }, + "nameLabel": { + "$ref": "AAAAAAFb3eEDFfgUHcY=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFb3eEDFfgVYzI=" + }, + "propertyLabel": { + "$ref": "AAAAAAFb3eEDFfgWfD8=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFb3eEDFfgXqIc=", + "_parent": { + "$ref": "AAAAAAFb3eEDFfgRc4Y=" + }, + "model": { + "$ref": "AAAAAAFb3eEDFPgPpMs=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 352, + "top": 545, + "width": 579, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFb3eEDFfgYbss=", + "_parent": { + "$ref": "AAAAAAFb3eEDFfgRc4Y=" + }, + "model": { + "$ref": "AAAAAAFb3eEDFPgPpMs=" + }, + "subViews": [ + { + "_type": "UMLOperationView", + "_id": "AAAAAAFb4w9+IDyu0QU=", + "_parent": { + "$ref": "AAAAAAFb3eEDFfgYbss=" + }, + "model": { + "$ref": "AAAAAAFb4w993zyrZ4o=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 357, + "top": 560, + "width": 569, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+addTodo(input: AddTodoInput): AddTodoPayload", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLOperationView", + "_id": "AAAAAAFb4w+Vcz0UGA8=", + "_parent": { + "$ref": "AAAAAAFb3eEDFfgYbss=" + }, + "model": { + "$ref": "AAAAAAFb4w+VQz0RjmY=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 357, + "top": 575, + "width": 569, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+changeTodoStatus(input: ChangeTodoStatusInput): ChangeTodoStatusPayload", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLOperationView", + "_id": "AAAAAAFb4w+wMD165Eo=", + "_parent": { + "$ref": "AAAAAAFb3eEDFfgYbss=" + }, + "model": { + "$ref": "AAAAAAFb4w+wAj13ySo=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 357, + "top": 590, + "width": 569, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+markAllTodos(input: MarkAllTodosInput): MarkAllTodosPayload", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLOperationView", + "_id": "AAAAAAFb4w/3+T3gNkc=", + "_parent": { + "$ref": "AAAAAAFb3eEDFfgYbss=" + }, + "model": { + "$ref": "AAAAAAFb4w/3yD3d2rA=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 357, + "top": 605, + "width": 569, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+removeCompletedTodos(input: RemoveCompletedTodosInput): RemoveCompletedTodosPayload", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLOperationView", + "_id": "AAAAAAFb4xECrT9S2cA=", + "_parent": { + "$ref": "AAAAAAFb3eEDFfgYbss=" + }, + "model": { + "$ref": "AAAAAAFb4xECfD9P6BM=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 357, + "top": 620, + "width": 569, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+removeTodo(input: RemoveTodoInput): RemoveTodoPayload", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLOperationView", + "_id": "AAAAAAFb4xEQmT+4B78=", + "_parent": { + "$ref": "AAAAAAFb3eEDFfgYbss=" + }, + "model": { + "$ref": "AAAAAAFb4xEQbT+1Yv4=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 357, + "top": 635, + "width": 569, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+renameTodo(input: RenameTodoInput): RenameTodoPayload", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 352, + "top": 555, + "width": 579, + "height": 98, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFb3eEDFfgZdug=", + "_parent": { + "$ref": "AAAAAAFb3eEDFfgRc4Y=" + }, + "model": { + "$ref": "AAAAAAFb3eEDFPgPpMs=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 184, + "top": 16, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFb3eEDFvgahMw=", + "_parent": { + "$ref": "AAAAAAFb3eEDFfgRc4Y=" + }, + "model": { + "$ref": "AAAAAAFb3eEDFPgPpMs=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 184, + "top": 16, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 352, + "top": 520, + "width": 579, + "height": 133, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFb3eEDFfgSM0U=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": false, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFb3eEDFfgXqIc=" + }, + "operationCompartment": { + "$ref": "AAAAAAFb3eEDFfgYbss=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFb3eEDFfgZdug=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFb3eEDFvgahMw=" + } + }, + { + "_type": "UMLInterfaceView", + "_id": "AAAAAAFb3eKS9PhAp+w=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAFb3eKS9Pg+O8o=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFb3eKS9PhBSM4=", + "_parent": { + "$ref": "AAAAAAFb3eKS9PhAp+w=" + }, + "model": { + "$ref": "AAAAAAFb3eKS9Pg+O8o=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFb3eKS9fhC5uA=", + "_parent": { + "$ref": "AAAAAAFb3eKS9PhBSM4=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 341, + "top": 53, + "width": 74, + "height": 13, + "autoResize": false, + "underline": false, + "text": "«interface»", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb3eKS9fhDryw=", + "_parent": { + "$ref": "AAAAAAFb3eKS9PhBSM4=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 341, + "top": 68, + "width": 74, + "height": 13, + "autoResize": false, + "underline": false, + "text": "Node", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb3eKS9fhE1As=", + "_parent": { + "$ref": "AAAAAAFb3eKS9PhBSM4=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 304, + "top": -1184, + "width": 73, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from Model)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb3eKS9fhFlgI=", + "_parent": { + "$ref": "AAAAAAFb3eKS9PhBSM4=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 304, + "top": -1184, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 336, + "top": 48, + "width": 84, + "height": 38, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFb3eKS9fhC5uA=" + }, + "nameLabel": { + "$ref": "AAAAAAFb3eKS9fhDryw=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFb3eKS9fhE1As=" + }, + "propertyLabel": { + "$ref": "AAAAAAFb3eKS9fhFlgI=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFb3eKS9fhGn+E=", + "_parent": { + "$ref": "AAAAAAFb3eKS9PhAp+w=" + }, + "model": { + "$ref": "AAAAAAFb3eKS9Pg+O8o=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFb3eK36/hs4xI=", + "_parent": { + "$ref": "AAAAAAFb3eKS9fhGn+E=" + }, + "model": { + "$ref": "AAAAAAFb3eK3v/hpSh4=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 341, + "top": 91, + "width": 98, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+id: ID[1]", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 336, + "top": 86, + "width": 108, + "height": 23, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFb3eKS9fhHJRQ=", + "_parent": { + "$ref": "AAAAAAFb3eKS9PhAp+w=" + }, + "model": { + "$ref": "AAAAAAFb3eKS9Pg+O8o=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 152, + "top": -592, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFb3eKS9fhIxSg=", + "_parent": { + "$ref": "AAAAAAFb3eKS9PhAp+w=" + }, + "model": { + "$ref": "AAAAAAFb3eKS9Pg+O8o=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 152, + "top": -592, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFb3eKS9fhJ1n4=", + "_parent": { + "$ref": "AAAAAAFb3eKS9PhAp+w=" + }, + "model": { + "$ref": "AAAAAAFb3eKS9Pg+O8o=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 152, + "top": -592, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 336, + "top": 48, + "width": 108, + "height": 76, + "autoResize": false, + "stereotypeDisplay": "decoration-label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFb3eKS9PhBSM4=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": true, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFb3eKS9fhGn+E=" + }, + "operationCompartment": { + "$ref": "AAAAAAFb3eKS9fhHJRQ=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFb3eKS9fhIxSg=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFb3eKS9fhJ1n4=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFb3eQV//iCFJ8=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAFb3eQV//iA3vI=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFb3eQWAPiDIRI=", + "_parent": { + "$ref": "AAAAAAFb3eQV//iCFJ8=" + }, + "model": { + "$ref": "AAAAAAFb3eQV//iA3vI=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFb3eQWAPiEi5I=", + "_parent": { + "$ref": "AAAAAAFb3eQWAPiDIRI=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 960, + "top": -480, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb3eQWAPiFaYo=", + "_parent": { + "$ref": "AAAAAAFb3eQWAPiDIRI=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 781, + "top": 271, + "width": 180, + "height": 13, + "autoResize": false, + "underline": false, + "text": "PageInfo", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb3eQWAPiGajQ=", + "_parent": { + "$ref": "AAAAAAFb3eQWAPiDIRI=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 960, + "top": -480, + "width": 73, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from Model)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb3eQWAPiHxyE=", + "_parent": { + "$ref": "AAAAAAFb3eQWAPiDIRI=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 960, + "top": -480, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 776, + "top": 264, + "width": 190, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFb3eQWAPiEi5I=" + }, + "nameLabel": { + "$ref": "AAAAAAFb3eQWAPiFaYo=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFb3eQWAPiGajQ=" + }, + "propertyLabel": { + "$ref": "AAAAAAFb3eQWAPiHxyE=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFb3eQWAPiIuB0=", + "_parent": { + "$ref": "AAAAAAFb3eQV//iCFJ8=" + }, + "model": { + "$ref": "AAAAAAFb3eQV//iA3vI=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFb3eQyXPit+JY=", + "_parent": { + "$ref": "AAAAAAFb3eQWAPiIuB0=" + }, + "model": { + "$ref": "AAAAAAFb3eQyLPiq4LY=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 781, + "top": 294, + "width": 180, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+hasNextPage: Boolean[1]", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFb3eQ/kvizAwk=", + "_parent": { + "$ref": "AAAAAAFb3eQWAPiIuB0=" + }, + "model": { + "$ref": "AAAAAAFb3eQ/Z/iwfw8=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 781, + "top": 309, + "width": 180, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+hasPreviousPage: Boolean[1]", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFb3eRM4Pi5Uyg=", + "_parent": { + "$ref": "AAAAAAFb3eQWAPiIuB0=" + }, + "model": { + "$ref": "AAAAAAFb3eRMtfi2Mok=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 781, + "top": 324, + "width": 180, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+startCursor", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFb3eRbsvi/eg0=", + "_parent": { + "$ref": "AAAAAAFb3eQWAPiIuB0=" + }, + "model": { + "$ref": "AAAAAAFb3eRbf/i8Nvk=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 781, + "top": 339, + "width": 180, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+endCursor", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 776, + "top": 289, + "width": 190, + "height": 68, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFb3eQWAPiJBYI=", + "_parent": { + "$ref": "AAAAAAFb3eQV//iCFJ8=" + }, + "model": { + "$ref": "AAAAAAFb3eQV//iA3vI=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 776, + "top": 357, + "width": 190, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFb3eQWAPiKV5g=", + "_parent": { + "$ref": "AAAAAAFb3eQV//iCFJ8=" + }, + "model": { + "$ref": "AAAAAAFb3eQV//iA3vI=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 480, + "top": -240, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFb3eQWAPiLWiE=", + "_parent": { + "$ref": "AAAAAAFb3eQV//iCFJ8=" + }, + "model": { + "$ref": "AAAAAAFb3eQV//iA3vI=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 480, + "top": -240, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 776, + "top": 264, + "width": 190, + "height": 103, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFb3eQWAPiDIRI=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": true, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFb3eQWAPiIuB0=" + }, + "operationCompartment": { + "$ref": "AAAAAAFb3eQWAPiJBYI=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFb3eQWAPiKV5g=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFb3eQWAPiLWiE=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFb3eVBh/jK8jQ=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAFb3eVBh/jIThk=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFb3eVBh/jLYN8=", + "_parent": { + "$ref": "AAAAAAFb3eVBh/jK8jQ=" + }, + "model": { + "$ref": "AAAAAAFb3eVBh/jIThk=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFb3eVBh/jM0Qc=", + "_parent": { + "$ref": "AAAAAAFb3eVBh/jLYN8=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -48, + "top": -432, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb3eVBh/jNP6k=", + "_parent": { + "$ref": "AAAAAAFb3eVBh/jLYN8=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 101, + "top": 527, + "width": 186, + "height": 13, + "autoResize": false, + "underline": false, + "text": "Query", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb3eVBh/jOOFE=", + "_parent": { + "$ref": "AAAAAAFb3eVBh/jLYN8=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -48, + "top": -432, + "width": 73, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from Model)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb3eVBh/jP33E=", + "_parent": { + "$ref": "AAAAAAFb3eVBh/jLYN8=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -48, + "top": -432, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 96, + "top": 520, + "width": 196, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFb3eVBh/jM0Qc=" + }, + "nameLabel": { + "$ref": "AAAAAAFb3eVBh/jNP6k=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFb3eVBh/jOOFE=" + }, + "propertyLabel": { + "$ref": "AAAAAAFb3eVBh/jP33E=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFb3eVBiPjQEIQ=", + "_parent": { + "$ref": "AAAAAAFb3eVBh/jK8jQ=" + }, + "model": { + "$ref": "AAAAAAFb3eVBh/jIThk=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFb4J2Di4RcKa4=", + "_parent": { + "$ref": "AAAAAAFb3eVBiPjQEIQ=" + }, + "model": { + "$ref": "AAAAAAFb4J2DTYRZito=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 101, + "top": 550, + "width": 186, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+viewer: User", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 96, + "top": 545, + "width": 196, + "height": 23, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFb3eVBiPjRHFE=", + "_parent": { + "$ref": "AAAAAAFb3eVBh/jK8jQ=" + }, + "model": { + "$ref": "AAAAAAFb3eVBh/jIThk=" + }, + "subViews": [ + { + "_type": "UMLOperationView", + "_id": "AAAAAAFb4J3ifYU7xYs=", + "_parent": { + "$ref": "AAAAAAFb3eVBiPjRHFE=" + }, + "model": { + "$ref": "AAAAAAFb4J3iMIU4HkY=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 101, + "top": 573, + "width": 186, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+node(id: ID[1]): Node", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 96, + "top": 568, + "width": 196, + "height": 23, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFb3eVBiPjSNkw=", + "_parent": { + "$ref": "AAAAAAFb3eVBh/jK8jQ=" + }, + "model": { + "$ref": "AAAAAAFb3eVBh/jIThk=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -24, + "top": -216, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFb3eVBiPjTrrE=", + "_parent": { + "$ref": "AAAAAAFb3eVBh/jK8jQ=" + }, + "model": { + "$ref": "AAAAAAFb3eVBh/jIThk=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -24, + "top": -216, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 96, + "top": 520, + "width": 196, + "height": 71, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFb3eVBh/jLYN8=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": false, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFb3eVBiPjQEIQ=" + }, + "operationCompartment": { + "$ref": "AAAAAAFb3eVBiPjRHFE=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFb3eVBiPjSNkw=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFb3eVBiPjTrrE=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFb3eWQivj2nNo=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAFb3eWQivj0LxA=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFb3eWQivj3/U4=", + "_parent": { + "$ref": "AAAAAAFb3eWQivj2nNo=" + }, + "model": { + "$ref": "AAAAAAFb3eWQivj0LxA=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFb3eWQi/j4yEk=", + "_parent": { + "$ref": "AAAAAAFb3eWQivj3/U4=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -160, + "top": -800, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb3eWQi/j5aUk=", + "_parent": { + "$ref": "AAAAAAFb3eWQivj3/U4=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 53, + "top": 399, + "width": 521, + "height": 13, + "autoResize": false, + "underline": false, + "text": "User", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb3eWQi/j6W4E=", + "_parent": { + "$ref": "AAAAAAFb3eWQivj3/U4=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -160, + "top": -800, + "width": 73, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from Model)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb3eWQi/j7kDw=", + "_parent": { + "$ref": "AAAAAAFb3eWQivj3/U4=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -160, + "top": -800, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 48, + "top": 392, + "width": 531, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFb3eWQi/j4yEk=" + }, + "nameLabel": { + "$ref": "AAAAAAFb3eWQi/j5aUk=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFb3eWQi/j6W4E=" + }, + "propertyLabel": { + "$ref": "AAAAAAFb3eWQi/j7kDw=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFb3eWQi/j8ZD8=", + "_parent": { + "$ref": "AAAAAAFb3eWQivj2nNo=" + }, + "model": { + "$ref": "AAAAAAFb3eWQivj0LxA=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFb3eXKXvkyIm8=", + "_parent": { + "$ref": "AAAAAAFb3eWQi/j8ZD8=" + }, + "model": { + "$ref": "AAAAAAFb3eXKL/kvr+k=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 53, + "top": 422, + "width": 521, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+totalCount: Int", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFb3eXZh/k4n/4=", + "_parent": { + "$ref": "AAAAAAFb3eWQi/j8ZD8=" + }, + "model": { + "$ref": "AAAAAAFb3eXZW/k1LtE=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 53, + "top": 437, + "width": 521, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+completedCount: Int", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 48, + "top": 417, + "width": 531, + "height": 38, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFb3eWQi/j9nRY=", + "_parent": { + "$ref": "AAAAAAFb3eWQivj2nNo=" + }, + "model": { + "$ref": "AAAAAAFb3eWQivj0LxA=" + }, + "subViews": [ + { + "_type": "UMLOperationView", + "_id": "AAAAAAFb3evVgg+LYB4=", + "_parent": { + "$ref": "AAAAAAFb3eWQi/j9nRY=" + }, + "model": { + "$ref": "AAAAAAFb3evVUg+IQuI=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 53, + "top": 460, + "width": 521, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+todos(status = \"any\", after, first: Int, before, last: Int): TodoConnection", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 48, + "top": 455, + "width": 531, + "height": 23, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFb3eWQi/j+u0k=", + "_parent": { + "$ref": "AAAAAAFb3eWQivj2nNo=" + }, + "model": { + "$ref": "AAAAAAFb3eWQivj0LxA=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -80, + "top": -400, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFb3eWQi/j/YXU=", + "_parent": { + "$ref": "AAAAAAFb3eWQivj2nNo=" + }, + "model": { + "$ref": "AAAAAAFb3eWQivj0LxA=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -80, + "top": -400, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 48, + "top": 392, + "width": 531, + "height": 86, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFb3eWQivj3/U4=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": false, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFb3eWQi/j8ZD8=" + }, + "operationCompartment": { + "$ref": "AAAAAAFb3eWQi/j9nRY=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFb3eWQi/j+u0k=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFb3eWQi/j/YXU=" + } + }, + { + "_type": "UMLInterfaceRealizationView", + "_id": "AAAAAAFb3eWmNPkfxHQ=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAFb3eWmM/kePiw=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb3eWmNPkgrUk=", + "_parent": { + "$ref": "AAAAAAFb3eWmNPkfxHQ=" + }, + "model": { + "$ref": "AAAAAAFb3eWmM/kePiw=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 336, + "top": 247, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFb3eWmNPkfxHQ=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb3eWmNfkhHm8=", + "_parent": { + "$ref": "AAAAAAFb3eWmNPkfxHQ=" + }, + "model": { + "$ref": "AAAAAAFb3eWmM/kePiw=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 321, + "top": 244, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFb3eWmNPkfxHQ=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb3eWmNfkigWA=", + "_parent": { + "$ref": "AAAAAAFb3eWmNPkfxHQ=" + }, + "model": { + "$ref": "AAAAAAFb3eWmM/kePiw=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 365, + "top": 254, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFb3eWmNPkfxHQ=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFb3eKS9PhAp+w=" + }, + "tail": { + "$ref": "AAAAAAFb3eWQivj2nNo=" + }, + "lineStyle": 1, + "points": "322:391;381:124", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFb3eWmNPkgrUk=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFb3eWmNfkhHm8=" + }, + "propertyLabel": { + "$ref": "AAAAAAFb3eWmNfkigWA=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFb3eZChPlArPw=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAFb3eZChPk+1y0=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFb3eZChPlBf/c=", + "_parent": { + "$ref": "AAAAAAFb3eZChPlArPw=" + }, + "model": { + "$ref": "AAAAAAFb3eZChPk+1y0=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFb3eZChPlCLdI=", + "_parent": { + "$ref": "AAAAAAFb3eZChPlBf/c=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 592, + "top": -1424, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb3eZChPlDvkA=", + "_parent": { + "$ref": "AAAAAAFb3eZChPlBf/c=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 669, + "top": 55, + "width": 173, + "height": 13, + "autoResize": false, + "underline": false, + "text": "TodoConnection", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb3eZChPlE4wY=", + "_parent": { + "$ref": "AAAAAAFb3eZChPlBf/c=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 592, + "top": -1424, + "width": 73, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from Model)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb3eZChPlF5FE=", + "_parent": { + "$ref": "AAAAAAFb3eZChPlBf/c=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 592, + "top": -1424, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 664, + "top": 48, + "width": 183, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFb3eZChPlCLdI=" + }, + "nameLabel": { + "$ref": "AAAAAAFb3eZChPlDvkA=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFb3eZChPlE4wY=" + }, + "propertyLabel": { + "$ref": "AAAAAAFb3eZChPlF5FE=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFb3eZChPlGOP0=", + "_parent": { + "$ref": "AAAAAAFb3eZChPlArPw=" + }, + "model": { + "$ref": "AAAAAAFb3eZChPk+1y0=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFb3edNYPm4q3Y=", + "_parent": { + "$ref": "AAAAAAFb3eZChPlGOP0=" + }, + "model": { + "$ref": "AAAAAAFb3edNMvm1iyY=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 669, + "top": 78, + "width": 173, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+pageInfo: PageInfo", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFb3edcP/m+VSM=", + "_parent": { + "$ref": "AAAAAAFb3eZChPlGOP0=" + }, + "model": { + "$ref": "AAAAAAFb3edcE/m71Bo=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 669, + "top": 93, + "width": 173, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+edges: TodoEdge[0..*]", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 664, + "top": 73, + "width": 183, + "height": 38, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFb3eZChPlHAoY=", + "_parent": { + "$ref": "AAAAAAFb3eZChPlArPw=" + }, + "model": { + "$ref": "AAAAAAFb3eZChPk+1y0=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 664, + "top": 111, + "width": 148, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFb3eZChPlILqo=", + "_parent": { + "$ref": "AAAAAAFb3eZChPlArPw=" + }, + "model": { + "$ref": "AAAAAAFb3eZChPk+1y0=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 296, + "top": -712, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFb3eZChflJ1R4=", + "_parent": { + "$ref": "AAAAAAFb3eZChPlArPw=" + }, + "model": { + "$ref": "AAAAAAFb3eZChPk+1y0=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 296, + "top": -712, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 664, + "top": 48, + "width": 183, + "height": 73, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFb3eZChPlBf/c=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": true, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFb3eZChPlGOP0=" + }, + "operationCompartment": { + "$ref": "AAAAAAFb3eZChPlHAoY=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFb3eZChPlILqo=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFb3eZChflJ1R4=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFb3eZzPvlqyw0=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAFb3eZzPvlorLs=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFb3eZzPvlro9k=", + "_parent": { + "$ref": "AAAAAAFb3eZzPvlqyw0=" + }, + "model": { + "$ref": "AAAAAAFb3eZzPvlorLs=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFb3eZzPvlsfNY=", + "_parent": { + "$ref": "AAAAAAFb3eZzPvlro9k=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 80, + "top": -768, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb3eZzP/lt1MU=", + "_parent": { + "$ref": "AAAAAAFb3eZzPvlro9k=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 437, + "top": 279, + "width": 116, + "height": 13, + "autoResize": false, + "underline": false, + "text": "Todo", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb3eZzP/luZHM=", + "_parent": { + "$ref": "AAAAAAFb3eZzPvlro9k=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 80, + "top": -768, + "width": 73, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from Model)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb3eZzP/lvL+Y=", + "_parent": { + "$ref": "AAAAAAFb3eZzPvlro9k=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 80, + "top": -768, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 432, + "top": 272, + "width": 126, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFb3eZzPvlsfNY=" + }, + "nameLabel": { + "$ref": "AAAAAAFb3eZzP/lt1MU=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFb3eZzP/luZHM=" + }, + "propertyLabel": { + "$ref": "AAAAAAFb3eZzP/lvL+Y=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFb3eZzP/lwDCg=", + "_parent": { + "$ref": "AAAAAAFb3eZzPvlqyw0=" + }, + "model": { + "$ref": "AAAAAAFb3eZzPvlorLs=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFb3ebl9fmoytk=", + "_parent": { + "$ref": "AAAAAAFb3eZzP/lwDCg=" + }, + "model": { + "$ref": "AAAAAAFb3eblyPmlvYY=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 437, + "top": 302, + "width": 116, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+text", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFb3ecE8fmvsL4=", + "_parent": { + "$ref": "AAAAAAFb3eZzP/lwDCg=" + }, + "model": { + "$ref": "AAAAAAFb3ecEwPmsQKI=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 437, + "top": 317, + "width": 116, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+complete: Boolean", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 432, + "top": 297, + "width": 126, + "height": 38, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFb3eZzP/lxwIM=", + "_parent": { + "$ref": "AAAAAAFb3eZzPvlqyw0=" + }, + "model": { + "$ref": "AAAAAAFb3eZzPvlorLs=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 432, + "top": 335, + "width": 126, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFb3eZzP/lySgY=", + "_parent": { + "$ref": "AAAAAAFb3eZzPvlqyw0=" + }, + "model": { + "$ref": "AAAAAAFb3eZzPvlorLs=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 40, + "top": -384, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFb3eZzP/lz6/M=", + "_parent": { + "$ref": "AAAAAAFb3eZzPvlqyw0=" + }, + "model": { + "$ref": "AAAAAAFb3eZzPvlorLs=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 40, + "top": -384, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 432, + "top": 272, + "width": 126, + "height": 73, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFb3eZzPvlro9k=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": true, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFb3eZzP/lwDCg=" + }, + "operationCompartment": { + "$ref": "AAAAAAFb3eZzP/lxwIM=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFb3eZzP/lySgY=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFb3eZzP/lz6/M=" + } + }, + { + "_type": "UMLInterfaceRealizationView", + "_id": "AAAAAAFb3ebI4PmVPa8=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAFb3ebI3/mU3vQ=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb3ebI4PmWJnk=", + "_parent": { + "$ref": "AAAAAAFb3ebI4PmVPa8=" + }, + "model": { + "$ref": "AAAAAAFb3ebI3/mU3vQ=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 428, + "top": 197, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFb3ebI4PmVPa8=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb3ebI4PmXNAw=", + "_parent": { + "$ref": "AAAAAAFb3ebI4PmVPa8=" + }, + "model": { + "$ref": "AAAAAAFb3ebI3/mU3vQ=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 414, + "top": 203, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFb3ebI4PmVPa8=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb3ebI4PmYF0Y=", + "_parent": { + "$ref": "AAAAAAFb3ebI4PmVPa8=" + }, + "model": { + "$ref": "AAAAAAFb3ebI3/mU3vQ=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 455, + "top": 184, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFb3ebI4PmVPa8=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFb3eKS9PhAp+w=" + }, + "tail": { + "$ref": "AAAAAAFb3eZzPvlqyw0=" + }, + "lineStyle": 1, + "points": "477:271;407:124", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFb3ebI4PmWJnk=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFb3ebI4PmXNAw=" + }, + "propertyLabel": { + "$ref": "AAAAAAFb3ebI4PmYF0Y=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFb3elJJP42PwE=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAFb3elJI/40xIM=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFb3elJJP43K2M=", + "_parent": { + "$ref": "AAAAAAFb3elJJP42PwE=" + }, + "model": { + "$ref": "AAAAAAFb3elJI/40xIM=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFb3elJJP449xQ=", + "_parent": { + "$ref": "AAAAAAFb3elJJP43K2M=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 160, + "top": -1232, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb3elJJP45Nqw=", + "_parent": { + "$ref": "AAAAAAFb3elJJP43K2M=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 653, + "top": 279, + "width": 73, + "height": 13, + "autoResize": false, + "underline": false, + "text": "TodoEdge", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb3elJJP46sBA=", + "_parent": { + "$ref": "AAAAAAFb3elJJP43K2M=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 160, + "top": -1232, + "width": 73, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from Model)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb3elJJP47NU4=", + "_parent": { + "$ref": "AAAAAAFb3elJJP43K2M=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 160, + "top": -1232, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 648, + "top": 272, + "width": 83, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFb3elJJP449xQ=" + }, + "nameLabel": { + "$ref": "AAAAAAFb3elJJP45Nqw=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFb3elJJP46sBA=" + }, + "propertyLabel": { + "$ref": "AAAAAAFb3elJJP47NU4=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFb3elJJP48BaU=", + "_parent": { + "$ref": "AAAAAAFb3elJJP42PwE=" + }, + "model": { + "$ref": "AAAAAAFb3elJI/40xIM=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFb3emNXP6iwWw=", + "_parent": { + "$ref": "AAAAAAFb3elJJP48BaU=" + }, + "model": { + "$ref": "AAAAAAFb3emNGP6cwB8=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 653, + "top": 302, + "width": 73, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+node: Todo", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFb3ema0f7ADt8=", + "_parent": { + "$ref": "AAAAAAFb3elJJP48BaU=" + }, + "model": { + "$ref": "AAAAAAFb3emapP66YEg=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 653, + "top": 317, + "width": 73, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+cursor[1]", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 648, + "top": 297, + "width": 83, + "height": 38, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFb3elJJP499WI=", + "_parent": { + "$ref": "AAAAAAFb3elJJP42PwE=" + }, + "model": { + "$ref": "AAAAAAFb3elJI/40xIM=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 648, + "top": 335, + "width": 83, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFb3elJJP4+KbQ=", + "_parent": { + "$ref": "AAAAAAFb3elJJP42PwE=" + }, + "model": { + "$ref": "AAAAAAFb3elJI/40xIM=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 80, + "top": -616, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFb3elJJP4//Z8=", + "_parent": { + "$ref": "AAAAAAFb3elJJP42PwE=" + }, + "model": { + "$ref": "AAAAAAFb3elJI/40xIM=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 80, + "top": -616, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 648, + "top": 272, + "width": 83, + "height": 73, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFb3elJJP43K2M=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": true, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFb3elJJP48BaU=" + }, + "operationCompartment": { + "$ref": "AAAAAAFb3elJJP499WI=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFb3elJJP4+KbQ=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFb3elJJP4//Z8=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAFb3eoSaf+rqAM=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAFb3eoSaf+nkVg=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb3eoSaf+swjg=", + "_parent": { + "$ref": "AAAAAAFb3eoSaf+rqAM=" + }, + "model": { + "$ref": "AAAAAAFb3eoSaf+nkVg=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 583, + "top": 317, + "width": 36, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFb3eoSaf+rqAM=" + }, + "edgePosition": 1, + "underline": false, + "text": "+node", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb3eoSaf+tThA=", + "_parent": { + "$ref": "AAAAAAFb3eoSaf+rqAM=" + }, + "model": { + "$ref": "AAAAAAFb3eoSaf+nkVg=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 601, + "top": 332, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFb3eoSaf+rqAM=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb3eoSaf+uOjc=", + "_parent": { + "$ref": "AAAAAAFb3eoSaf+rqAM=" + }, + "model": { + "$ref": "AAAAAAFb3eoSaf+nkVg=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 602, + "top": 287, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFb3eoSaf+rqAM=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb3eoSaf+vZZs=", + "_parent": { + "$ref": "AAAAAAFb3eoSaf+rqAM=" + }, + "model": { + "$ref": "AAAAAAFb3eoSaf+oeoE=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 621, + "top": 316, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFb3eoSaf+rqAM=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb3eoSaf+wjPY=", + "_parent": { + "$ref": "AAAAAAFb3eoSaf+rqAM=" + }, + "model": { + "$ref": "AAAAAAFb3eoSaf+oeoE=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 618, + "top": 330, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFb3eoSaf+rqAM=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb3eoSaf+xv4o=", + "_parent": { + "$ref": "AAAAAAFb3eoSaf+rqAM=" + }, + "model": { + "$ref": "AAAAAAFb3eoSaf+oeoE=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 625, + "top": 289, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFb3eoSaf+rqAM=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb3eoSaf+yAJc=", + "_parent": { + "$ref": "AAAAAAFb3eoSaf+rqAM=" + }, + "model": { + "$ref": "AAAAAAFb3eoSaf+pWmc=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 583, + "top": 316, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFb3eoSaf+rqAM=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb3eoSaf+zT58=", + "_parent": { + "$ref": "AAAAAAFb3eoSaf+rqAM=" + }, + "model": { + "$ref": "AAAAAAFb3eoSaf+pWmc=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 586, + "top": 330, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFb3eoSaf+rqAM=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb3eoSav+0RGk=", + "_parent": { + "$ref": "AAAAAAFb3eoSaf+rqAM=" + }, + "model": { + "$ref": "AAAAAAFb3eoSaf+pWmc=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 579, + "top": 289, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFb3eoSaf+rqAM=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFb3eoSav+1IPw=", + "_parent": { + "$ref": "AAAAAAFb3eoSaf+rqAM=" + }, + "model": { + "$ref": "AAAAAAFb3eoSaf+oeoE=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 8, + "top": -608, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFb3eoSav+2do8=", + "_parent": { + "$ref": "AAAAAAFb3eoSaf+rqAM=" + }, + "model": { + "$ref": "AAAAAAFb3eoSaf+pWmc=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 8, + "top": -608, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFb3eZzPvlqyw0=" + }, + "tail": { + "$ref": "AAAAAAFb3elJJP42PwE=" + }, + "lineStyle": 1, + "points": "647:308;558:308", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFb3eoSaf+swjg=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFb3eoSaf+tThA=" + }, + "propertyLabel": { + "$ref": "AAAAAAFb3eoSaf+uOjc=" + }, + "showMultiplicity": true, + "showType": true, + "tailRoleNameLabel": { + "$ref": "AAAAAAFb3eoSaf+vZZs=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAFb3eoSaf+wjPY=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAFb3eoSaf+xv4o=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAFb3eoSaf+yAJc=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAFb3eoSaf+zT58=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAFb3eoSav+0RGk=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAFb3eoSav+1IPw=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAFb3eoSav+2do8=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAFb3eqfywD4Lso=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAFb3eqfywD0ZpM=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb3eqfywD50SA=", + "_parent": { + "$ref": "AAAAAAFb3eqfywD4Lso=" + }, + "model": { + "$ref": "AAAAAAFb3eqfywD0ZpM=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 672, + "top": 175, + "width": 43, + "height": 13, + "autoResize": false, + "alpha": -1.7502308403809295, + "distance": 32.202484376209235, + "hostEdge": { + "$ref": "AAAAAAFb3eqfywD4Lso=" + }, + "edgePosition": 1, + "underline": false, + "text": "+edges", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb3eqfywD6Kis=", + "_parent": { + "$ref": "AAAAAAFb3eqfywD4Lso=" + }, + "model": { + "$ref": "AAAAAAFb3eqfywD0ZpM=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 750, + "top": 198, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFb3eqfywD4Lso=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb3eqfywD7IZo=", + "_parent": { + "$ref": "AAAAAAFb3eqfywD4Lso=" + }, + "model": { + "$ref": "AAAAAAFb3eqfywD0ZpM=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 707, + "top": 185, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFb3eqfywD4Lso=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb3eqfywD8fRw=", + "_parent": { + "$ref": "AAAAAAFb3eqfywD4Lso=" + }, + "model": { + "$ref": "AAAAAAFb3eqfywD1w7M=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 751, + "top": 144, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFb3eqfywD4Lso=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb3eqfywD9NPo=", + "_parent": { + "$ref": "AAAAAAFb3eqfywD4Lso=" + }, + "model": { + "$ref": "AAAAAAFb3eqfywD1w7M=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 763, + "top": 150, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFb3eqfywD4Lso=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb3eqfywD+i5w=", + "_parent": { + "$ref": "AAAAAAFb3eqfywD4Lso=" + }, + "model": { + "$ref": "AAAAAAFb3eqfywD1w7M=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 725, + "top": 132, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFb3eqfywD4Lso=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb3eqfywD/OOE=", + "_parent": { + "$ref": "AAAAAAFb3eqfywD4Lso=" + }, + "model": { + "$ref": "AAAAAAFb3eqfywD26Gw=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 721, + "top": 244, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFb3eqfywD4Lso=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb3eqfywEAGy4=", + "_parent": { + "$ref": "AAAAAAFb3eqfywD4Lso=" + }, + "model": { + "$ref": "AAAAAAFb3eqfywD26Gw=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 735, + "top": 245, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFb3eqfywD4Lso=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb3eqfywEBHko=", + "_parent": { + "$ref": "AAAAAAFb3eqfywD4Lso=" + }, + "model": { + "$ref": "AAAAAAFb3eqfywD26Gw=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 684, + "top": 240, + "width": 20, + "height": 13, + "autoResize": false, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFb3eqfywD4Lso=" + }, + "edgePosition": 0, + "underline": false, + "text": "0..*", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFb3eqfywECB54=", + "_parent": { + "$ref": "AAAAAAFb3eqfywD4Lso=" + }, + "model": { + "$ref": "AAAAAAFb3eqfywD1w7M=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 8, + "top": -608, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFb3eqfywEDvVA=", + "_parent": { + "$ref": "AAAAAAFb3eqfywD4Lso=" + }, + "model": { + "$ref": "AAAAAAFb3eqfywD26Gw=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 8, + "top": -608, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFb3elJJP42PwE=" + }, + "tail": { + "$ref": "AAAAAAFb3eZChPlArPw=" + }, + "lineStyle": 1, + "points": "744:121;700:271", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFb3eqfywD50SA=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFb3eqfywD6Kis=" + }, + "propertyLabel": { + "$ref": "AAAAAAFb3eqfywD7IZo=" + }, + "showMultiplicity": true, + "showType": true, + "tailRoleNameLabel": { + "$ref": "AAAAAAFb3eqfywD8fRw=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAFb3eqfywD9NPo=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAFb3eqfywD+i5w=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAFb3eqfywD/OOE=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAFb3eqfywEAGy4=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAFb3eqfywEBHko=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAFb3eqfywECB54=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAFb3eqfywEDvVA=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAFb3jDqjFAy0PM=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAFb3jDqi1AugyU=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb3jDqjFAzqQI=", + "_parent": { + "$ref": "AAAAAAFb3jDqjFAy0PM=" + }, + "model": { + "$ref": "AAAAAAFb3jDqi1AugyU=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 821, + "top": 177, + "width": 58, + "height": 13, + "autoResize": false, + "alpha": 1.2941590960447702, + "distance": 43.56604182158393, + "hostEdge": { + "$ref": "AAAAAAFb3jDqjFAy0PM=" + }, + "edgePosition": 1, + "underline": false, + "text": "+pageInfo", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb3jDqjFA00gQ=", + "_parent": { + "$ref": "AAAAAAFb3jDqjFAy0PM=" + }, + "model": { + "$ref": "AAAAAAFb3jDqi1AugyU=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 834, + "top": 172, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFb3jDqjFAy0PM=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb3jDqjVA13qM=", + "_parent": { + "$ref": "AAAAAAFb3jDqjFAy0PM=" + }, + "model": { + "$ref": "AAAAAAFb3jDqi1AugyU=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 794, + "top": 192, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFb3jDqjFAy0PM=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb3jDqjVA2y1E=", + "_parent": { + "$ref": "AAAAAAFb3jDqjFAy0PM=" + }, + "model": { + "$ref": "AAAAAAFb3jDqi1Av/is=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 798, + "top": 131, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFb3jDqjFAy0PM=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb3jDqjVA3vsQ=", + "_parent": { + "$ref": "AAAAAAFb3jDqjFAy0PM=" + }, + "model": { + "$ref": "AAAAAAFb3jDqi1Av/is=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 810, + "top": 127, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFb3jDqjFAy0PM=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb3jDqjVA43PQ=", + "_parent": { + "$ref": "AAAAAAFb3jDqjFAy0PM=" + }, + "model": { + "$ref": "AAAAAAFb3jDqi1Av/is=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 771, + "top": 139, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFb3jDqjFAy0PM=" + }, + "edgePosition": 2, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb3jDqjVA5maQ=", + "_parent": { + "$ref": "AAAAAAFb3jDqjFAy0PM=" + }, + "model": { + "$ref": "AAAAAAFb3jDqi1AwX9s=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 845, + "top": 227, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFb3jDqjFAy0PM=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb3jDqjVA68L8=", + "_parent": { + "$ref": "AAAAAAFb3jDqjFAy0PM=" + }, + "model": { + "$ref": "AAAAAAFb3jDqi1AwX9s=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 856, + "top": 219, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAFb3jDqjFAy0PM=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb3jDqjVA7XDU=", + "_parent": { + "$ref": "AAAAAAFb3jDqjFAy0PM=" + }, + "model": { + "$ref": "AAAAAAFb3jDqi1AwX9s=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 823, + "top": 243, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAFb3jDqjFAy0PM=" + }, + "edgePosition": 0, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFb3jDqjVA85jU=", + "_parent": { + "$ref": "AAAAAAFb3jDqjFAy0PM=" + }, + "model": { + "$ref": "AAAAAAFb3jDqi1Av/is=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 8, + "top": -608, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAFb3jDqjlA9Bso=", + "_parent": { + "$ref": "AAAAAAFb3jDqjFAy0PM=" + }, + "model": { + "$ref": "AAAAAAFb3jDqi1AwX9s=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 8, + "top": -608, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFb3eQV//iCFJ8=" + }, + "tail": { + "$ref": "AAAAAAFb3eZChPlArPw=" + }, + "lineStyle": 1, + "points": "773:121;844:263", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFb3jDqjFAzqQI=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFb3jDqjFA00gQ=" + }, + "propertyLabel": { + "$ref": "AAAAAAFb3jDqjVA13qM=" + }, + "showMultiplicity": true, + "showType": true, + "tailRoleNameLabel": { + "$ref": "AAAAAAFb3jDqjVA2y1E=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAFb3jDqjVA3vsQ=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAFb3jDqjVA43PQ=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAFb3jDqjVA5maQ=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAFb3jDqjVA68L8=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAFb3jDqjVA7XDU=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAFb3jDqjVA85jU=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAFb3jDqjlA9Bso=" + } + } + ] + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFb3d5KdPbv/eM=", + "_parent": { + "$ref": "AAAAAAFF+qBWK6M3Z8Y=" + }, + "name": "AddTodoInput", + "ownedElements": [ + { + "_type": "UMLGeneralization", + "_id": "AAAAAAFb44OQqwUQ0Pw=", + "_parent": { + "$ref": "AAAAAAFb3d5KdPbv/eM=" + }, + "source": { + "$ref": "AAAAAAFb3d5KdPbv/eM=" + }, + "target": { + "$ref": "AAAAAAFb3jHrLVZeIz4=" + }, + "visibility": "public" + } + ], + "stereotype": "input", + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFb3d5f+PcZZjc=", + "_parent": { + "$ref": "AAAAAAFb3d5KdPbv/eM=" + }, + "name": "text", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "", + "multiplicity": "1", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFb3d7rwPcpSpM=", + "_parent": { + "$ref": "AAAAAAFF+qBWK6M3Z8Y=" + }, + "name": "AddTodoPayload", + "ownedElements": [ + { + "_type": "UMLGeneralization", + "_id": "AAAAAAFb3kFje2irqtE=", + "_parent": { + "$ref": "AAAAAAFb3d7rwPcpSpM=" + }, + "source": { + "$ref": "AAAAAAFb3d7rwPcpSpM=" + }, + "target": { + "$ref": "AAAAAAFb3jUIuWXAKJE=" + }, + "visibility": "public" + } + ], + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFb3fZZZDrC2Q8=", + "_parent": { + "$ref": "AAAAAAFb3d7rwPcpSpM=" + }, + "name": "todoEdge", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": { + "$ref": "AAAAAAFb3elJI/40xIM=" + }, + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFb3d8b4/dT+bU=", + "_parent": { + "$ref": "AAAAAAFF+qBWK6M3Z8Y=" + }, + "name": "ChangeTodoStatusInput", + "ownedElements": [ + { + "_type": "UMLGeneralization", + "_id": "AAAAAAFb44V+SySxQUo=", + "_parent": { + "$ref": "AAAAAAFb3d8b4/dT+bU=" + }, + "source": { + "$ref": "AAAAAAFb3d8b4/dT+bU=" + }, + "target": { + "$ref": "AAAAAAFb3kTOfXSFuMQ=" + }, + "visibility": "public" + } + ], + "stereotype": "input", + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFb3i8UvkkrVSI=", + "_parent": { + "$ref": "AAAAAAFb3d8b4/dT+bU=" + }, + "name": "complete", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "Boolean", + "multiplicity": "1", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFb3d9HLfd+kD8=", + "_parent": { + "$ref": "AAAAAAFF+qBWK6M3Z8Y=" + }, + "name": "ChangeTodoStatusPayload", + "ownedElements": [ + { + "_type": "UMLGeneralization", + "_id": "AAAAAAFb44NHugA8k8g=", + "_parent": { + "$ref": "AAAAAAFb3d9HLfd+kD8=" + }, + "source": { + "$ref": "AAAAAAFb3d9HLfd+kD8=" + }, + "target": { + "$ref": "AAAAAAFb3kTOfXSFuMQ=" + }, + "visibility": "public" + } + ], + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFb3fVsAjkFrhM=", + "_parent": { + "$ref": "AAAAAAFb3d9HLfd+kD8=" + }, + "name": "complete", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "Boolean", + "multiplicity": "1", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFb3eAbLvergYQ=", + "_parent": { + "$ref": "AAAAAAFF+qBWK6M3Z8Y=" + }, + "name": "MarkAllTodosInput", + "ownedElements": [ + { + "_type": "UMLGeneralization", + "_id": "AAAAAAFb44Pi1ghtgBk=", + "_parent": { + "$ref": "AAAAAAFb3eAbLvergYQ=" + }, + "source": { + "$ref": "AAAAAAFb3eAbLvergYQ=" + }, + "target": { + "$ref": "AAAAAAFb3jHrLVZeIz4=" + }, + "visibility": "public" + } + ], + "stereotype": "input", + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFb3eB0YfgAGqA=", + "_parent": { + "$ref": "AAAAAAFb3eAbLvergYQ=" + }, + "name": "complete", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "Boolean", + "multiplicity": "1", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFb3eA0I/fVco4=", + "_parent": { + "$ref": "AAAAAAFF+qBWK6M3Z8Y=" + }, + "name": "MarkAllTodosPayload", + "ownedElements": [ + { + "_type": "UMLGeneralization", + "_id": "AAAAAAFb3kEaT2fOTpE=", + "_parent": { + "$ref": "AAAAAAFb3eA0I/fVco4=" + }, + "source": { + "$ref": "AAAAAAFb3eA0I/fVco4=" + }, + "target": { + "$ref": "AAAAAAFb3jUIuWXAKJE=" + }, + "visibility": "public" + } + ], + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFb3fR0vzew2c8=", + "_parent": { + "$ref": "AAAAAAFb3eA0I/fVco4=" + }, + "name": "changedTodos", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": { + "$ref": "AAAAAAFb3eZzPvlorLs=" + }, + "multiplicity": "0..*", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFb3eEDFPgPpMs=", + "_parent": { + "$ref": "AAAAAAFF+qBWK6M3Z8Y=" + }, + "name": "Mutation", + "visibility": "public", + "operations": [ + { + "_type": "UMLOperation", + "_id": "AAAAAAFb4w993zyrZ4o=", + "_parent": { + "$ref": "AAAAAAFb3eEDFPgPpMs=" + }, + "name": "addTodo", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "parameters": [ + { + "_type": "UMLParameter", + "_id": "AAAAAAFb4xJps3CA6do=", + "_parent": { + "$ref": "AAAAAAFb4w993zyrZ4o=" + }, + "name": "input", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": { + "$ref": "AAAAAAFb3d5KdPbv/eM=" + }, + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "direction": "in" + }, + { + "_type": "UMLParameter", + "_id": "AAAAAAFb4xOUdnKKPME=", + "_parent": { + "$ref": "AAAAAAFb4w993zyrZ4o=" + }, + "name": "Parameter1", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": { + "$ref": "AAAAAAFb3d7rwPcpSpM=" + }, + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "direction": "return" + } + ], + "concurrency": "sequential", + "isQuery": false, + "isAbstract": false + }, + { + "_type": "UMLOperation", + "_id": "AAAAAAFb4w+VQz0RjmY=", + "_parent": { + "$ref": "AAAAAAFb3eEDFPgPpMs=" + }, + "name": "changeTodoStatus", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "parameters": [ + { + "_type": "UMLParameter", + "_id": "AAAAAAFb4xKA83DLQvs=", + "_parent": { + "$ref": "AAAAAAFb4w+VQz0RjmY=" + }, + "name": "input", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": { + "$ref": "AAAAAAFb3d8b4/dT+bU=" + }, + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "direction": "in" + }, + { + "_type": "UMLParameter", + "_id": "AAAAAAFb4xSXUXOMNLU=", + "_parent": { + "$ref": "AAAAAAFb4w+VQz0RjmY=" + }, + "name": "Parameter1", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": { + "$ref": "AAAAAAFb3d9HLfd+kD8=" + }, + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "direction": "return" + } + ], + "concurrency": "sequential", + "isQuery": false, + "isAbstract": false + }, + { + "_type": "UMLOperation", + "_id": "AAAAAAFb4w+wAj13ySo=", + "_parent": { + "$ref": "AAAAAAFb3eEDFPgPpMs=" + }, + "name": "markAllTodos", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "parameters": [ + { + "_type": "UMLParameter", + "_id": "AAAAAAFb4xKYFXEWkOQ=", + "_parent": { + "$ref": "AAAAAAFb4w+wAj13ySo=" + }, + "name": "input", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": { + "$ref": "AAAAAAFb3eAbLvergYQ=" + }, + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "direction": "in" + }, + { + "_type": "UMLParameter", + "_id": "AAAAAAFb4xVkW3QJMOo=", + "_parent": { + "$ref": "AAAAAAFb4w+wAj13ySo=" + }, + "name": "Parameter1", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": { + "$ref": "AAAAAAFb3eA0I/fVco4=" + }, + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "direction": "return" + } + ], + "concurrency": "sequential", + "isQuery": false, + "isAbstract": false + }, + { + "_type": "UMLOperation", + "_id": "AAAAAAFb4w/3yD3d2rA=", + "_parent": { + "$ref": "AAAAAAFb3eEDFPgPpMs=" + }, + "name": "removeCompletedTodos", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "parameters": [ + { + "_type": "UMLParameter", + "_id": "AAAAAAFb4xKvTHFhex0=", + "_parent": { + "$ref": "AAAAAAFb4w/3yD3d2rA=" + }, + "name": "input", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": { + "$ref": "AAAAAAFb3fIWvyu91ic=" + }, + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "direction": "in" + }, + { + "_type": "UMLParameter", + "_id": "AAAAAAFb4xWHJ3RtOOE=", + "_parent": { + "$ref": "AAAAAAFb4w/3yD3d2rA=" + }, + "name": "Parameter1", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": { + "$ref": "AAAAAAFb3fKEUyy8E9U=" + }, + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "direction": "return" + } + ], + "concurrency": "sequential", + "isQuery": false, + "isAbstract": false + }, + { + "_type": "UMLOperation", + "_id": "AAAAAAFb4xECfD9P6BM=", + "_parent": { + "$ref": "AAAAAAFb3eEDFPgPpMs=" + }, + "name": "removeTodo", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "parameters": [ + { + "_type": "UMLParameter", + "_id": "AAAAAAFb4xLC/HGszPM=", + "_parent": { + "$ref": "AAAAAAFb4xECfD9P6BM=" + }, + "name": "input", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": { + "$ref": "AAAAAAFb4yyHv45fWz8=" + }, + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "direction": "in" + }, + { + "_type": "UMLParameter", + "_id": "AAAAAAFb4xWk2XTRPbY=", + "_parent": { + "$ref": "AAAAAAFb4xECfD9P6BM=" + }, + "name": "Parameter1", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": { + "$ref": "AAAAAAFb4y5nMqFLIa4=" + }, + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "direction": "return" + } + ], + "concurrency": "sequential", + "isQuery": false, + "isAbstract": false + }, + { + "_type": "UMLOperation", + "_id": "AAAAAAFb4xEQbT+1Yv4=", + "_parent": { + "$ref": "AAAAAAFb3eEDFPgPpMs=" + }, + "name": "renameTodo", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "parameters": [ + { + "_type": "UMLParameter", + "_id": "AAAAAAFb4xLY2XH3rMs=", + "_parent": { + "$ref": "AAAAAAFb4xEQbT+1Yv4=" + }, + "name": "input", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": { + "$ref": "AAAAAAFb3e5bFxZa+gw=" + }, + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "direction": "in" + }, + { + "_type": "UMLParameter", + "_id": "AAAAAAFb4xXC+HU1Duo=", + "_parent": { + "$ref": "AAAAAAFb4xEQbT+1Yv4=" + }, + "name": "Parameter1", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": { + "$ref": "AAAAAAFb3e9d5BhsJrU=" + }, + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "direction": "return" + } + ], + "concurrency": "sequential", + "isQuery": false, + "isAbstract": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLInterface", + "_id": "AAAAAAFb3eKS9Pg+O8o=", + "_parent": { + "$ref": "AAAAAAFF+qBWK6M3Z8Y=" + }, + "name": "Node", + "documentation": "An object with an ID", + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFb3eK3v/hpSh4=", + "_parent": { + "$ref": "AAAAAAFb3eKS9Pg+O8o=" + }, + "name": "id", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "ID", + "multiplicity": "1", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFb3eQV//iA3vI=", + "_parent": { + "$ref": "AAAAAAFF+qBWK6M3Z8Y=" + }, + "name": "PageInfo", + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFb3eQyLPiq4LY=", + "_parent": { + "$ref": "AAAAAAFb3eQV//iA3vI=" + }, + "name": "hasNextPage", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "Boolean", + "multiplicity": "1", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + }, + { + "_type": "UMLAttribute", + "_id": "AAAAAAFb3eQ/Z/iwfw8=", + "_parent": { + "$ref": "AAAAAAFb3eQV//iA3vI=" + }, + "name": "hasPreviousPage", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "Boolean", + "multiplicity": "1", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + }, + { + "_type": "UMLAttribute", + "_id": "AAAAAAFb3eRMtfi2Mok=", + "_parent": { + "$ref": "AAAAAAFb3eQV//iA3vI=" + }, + "name": "startCursor", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + }, + { + "_type": "UMLAttribute", + "_id": "AAAAAAFb3eRbf/i8Nvk=", + "_parent": { + "$ref": "AAAAAAFb3eQV//iA3vI=" + }, + "name": "endCursor", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFb3eVBh/jIThk=", + "_parent": { + "$ref": "AAAAAAFF+qBWK6M3Z8Y=" + }, + "name": "Query", + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFb4J2DTYRZito=", + "_parent": { + "$ref": "AAAAAAFb3eVBh/jIThk=" + }, + "name": "viewer", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": { + "$ref": "AAAAAAFb3eWQivj0LxA=" + }, + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "operations": [ + { + "_type": "UMLOperation", + "_id": "AAAAAAFb4J3iMIU4HkY=", + "_parent": { + "$ref": "AAAAAAFb3eVBh/jIThk=" + }, + "name": "node", + "documentation": "Fetches an object given its ID", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "parameters": [ + { + "_type": "UMLParameter", + "_id": "AAAAAAFb4J4dDYXzJOw=", + "_parent": { + "$ref": "AAAAAAFb4J3iMIU4HkY=" + }, + "name": "id", + "documentation": "The ID of an object", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "ID", + "multiplicity": "1", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "direction": "in" + }, + { + "_type": "UMLParameter", + "_id": "AAAAAAFb4J4t8oY+iYw=", + "_parent": { + "$ref": "AAAAAAFb4J3iMIU4HkY=" + }, + "name": "Parameter2", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": { + "$ref": "AAAAAAFb3eKS9Pg+O8o=" + }, + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "direction": "return" + } + ], + "concurrency": "sequential", + "isQuery": false, + "isAbstract": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFb3eWQivj0LxA=", + "_parent": { + "$ref": "AAAAAAFF+qBWK6M3Z8Y=" + }, + "name": "User", + "ownedElements": [ + { + "_type": "UMLInterfaceRealization", + "_id": "AAAAAAFb3eWmM/kePiw=", + "_parent": { + "$ref": "AAAAAAFb3eWQivj0LxA=" + }, + "source": { + "$ref": "AAAAAAFb3eWQivj0LxA=" + }, + "target": { + "$ref": "AAAAAAFb3eKS9Pg+O8o=" + }, + "visibility": "public" + } + ], + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFb3eXKL/kvr+k=", + "_parent": { + "$ref": "AAAAAAFb3eWQivj0LxA=" + }, + "name": "totalCount", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "Int", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + }, + { + "_type": "UMLAttribute", + "_id": "AAAAAAFb3eXZW/k1LtE=", + "_parent": { + "$ref": "AAAAAAFb3eWQivj0LxA=" + }, + "name": "completedCount", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "Int", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "operations": [ + { + "_type": "UMLOperation", + "_id": "AAAAAAFb3evVUg+IQuI=", + "_parent": { + "$ref": "AAAAAAFb3eWQivj0LxA=" + }, + "name": "todos", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "parameters": [ + { + "_type": "UMLParameter", + "_id": "AAAAAAFb3ewDTA/LPJQ=", + "_parent": { + "$ref": "AAAAAAFb3evVUg+IQuI=" + }, + "name": "status ", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "defaultValue": "\"any\"", + "direction": "in" + }, + { + "_type": "UMLParameter", + "_id": "AAAAAAFb3eznyBAxpvs=", + "_parent": { + "$ref": "AAAAAAFb3evVUg+IQuI=" + }, + "name": "after", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "direction": "in" + }, + { + "_type": "UMLParameter", + "_id": "AAAAAAFb3eznyRAyB9Q=", + "_parent": { + "$ref": "AAAAAAFb3evVUg+IQuI=" + }, + "name": "first", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "Int", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "direction": "in" + }, + { + "_type": "UMLParameter", + "_id": "AAAAAAFb3eznyRAz8eM=", + "_parent": { + "$ref": "AAAAAAFb3evVUg+IQuI=" + }, + "name": "before", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "direction": "in" + }, + { + "_type": "UMLParameter", + "_id": "AAAAAAFb3eznyRA0njE=", + "_parent": { + "$ref": "AAAAAAFb3evVUg+IQuI=" + }, + "name": "last", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "Int", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "direction": "in" + }, + { + "_type": "UMLParameter", + "_id": "AAAAAAFb3e3ZzBEIxV4=", + "_parent": { + "$ref": "AAAAAAFb3evVUg+IQuI=" + }, + "name": "Parameter1", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": { + "$ref": "AAAAAAFb3eZChPk+1y0=" + }, + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "direction": "return" + } + ], + "concurrency": "sequential", + "isQuery": false, + "isAbstract": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFb3eZChPk+1y0=", + "_parent": { + "$ref": "AAAAAAFF+qBWK6M3Z8Y=" + }, + "name": "TodoConnection", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAFb3eqfywD0ZpM=", + "_parent": { + "$ref": "AAAAAAFb3eZChPk+1y0=" + }, + "name": "edges", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFb3eqfywD1w7M=", + "_parent": { + "$ref": "AAAAAAFb3eqfywD0ZpM=" + }, + "reference": { + "$ref": "AAAAAAFb3eZChPk+1y0=" + }, + "visibility": "public", + "navigable": false, + "aggregation": "none", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFb3eqfywD26Gw=", + "_parent": { + "$ref": "AAAAAAFb3eqfywD0ZpM=" + }, + "reference": { + "$ref": "AAAAAAFb3elJI/40xIM=" + }, + "visibility": "public", + "navigable": true, + "aggregation": "none", + "multiplicity": "0..*", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "visibility": "public", + "isDerived": false + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAFb3jDqi1AugyU=", + "_parent": { + "$ref": "AAAAAAFb3eZChPk+1y0=" + }, + "name": "pageInfo", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFb3jDqi1Av/is=", + "_parent": { + "$ref": "AAAAAAFb3jDqi1AugyU=" + }, + "reference": { + "$ref": "AAAAAAFb3eZChPk+1y0=" + }, + "visibility": "public", + "navigable": false, + "aggregation": "none", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFb3jDqi1AwX9s=", + "_parent": { + "$ref": "AAAAAAFb3jDqi1AugyU=" + }, + "reference": { + "$ref": "AAAAAAFb3eQV//iA3vI=" + }, + "visibility": "public", + "navigable": true, + "aggregation": "none", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "visibility": "public", + "isDerived": false + } + ], + "documentation": "A connection to a list of items.", + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFb3edNMvm1iyY=", + "_parent": { + "$ref": "AAAAAAFb3eZChPk+1y0=" + }, + "name": "pageInfo", + "documentation": "Information to aid in pagination.", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": { + "$ref": "AAAAAAFb3eQV//iA3vI=" + }, + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + }, + { + "_type": "UMLAttribute", + "_id": "AAAAAAFb3edcE/m71Bo=", + "_parent": { + "$ref": "AAAAAAFb3eZChPk+1y0=" + }, + "name": "edges", + "documentation": "A list of edges.", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": { + "$ref": "AAAAAAFb3elJI/40xIM=" + }, + "multiplicity": "0..*", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFb3eZzPvlorLs=", + "_parent": { + "$ref": "AAAAAAFF+qBWK6M3Z8Y=" + }, + "name": "Todo", + "ownedElements": [ + { + "_type": "UMLInterfaceRealization", + "_id": "AAAAAAFb3ebI3/mU3vQ=", + "_parent": { + "$ref": "AAAAAAFb3eZzPvlorLs=" + }, + "source": { + "$ref": "AAAAAAFb3eZzPvlorLs=" + }, + "target": { + "$ref": "AAAAAAFb3eKS9Pg+O8o=" + }, + "visibility": "public" + } + ], + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFb3eblyPmlvYY=", + "_parent": { + "$ref": "AAAAAAFb3eZzPvlorLs=" + }, + "name": "text", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + }, + { + "_type": "UMLAttribute", + "_id": "AAAAAAFb3ecEwPmsQKI=", + "_parent": { + "$ref": "AAAAAAFb3eZzPvlorLs=" + }, + "name": "complete", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "Boolean", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFb3elJI/40xIM=", + "_parent": { + "$ref": "AAAAAAFF+qBWK6M3Z8Y=" + }, + "name": "TodoEdge", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAFb3eoSaf+nkVg=", + "_parent": { + "$ref": "AAAAAAFb3elJI/40xIM=" + }, + "name": "node", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFb3eoSaf+oeoE=", + "_parent": { + "$ref": "AAAAAAFb3eoSaf+nkVg=" + }, + "reference": { + "$ref": "AAAAAAFb3elJI/40xIM=" + }, + "visibility": "public", + "navigable": false, + "aggregation": "none", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAFb3eoSaf+pWmc=", + "_parent": { + "$ref": "AAAAAAFb3eoSaf+nkVg=" + }, + "reference": { + "$ref": "AAAAAAFb3eZzPvlorLs=" + }, + "visibility": "public", + "navigable": true, + "aggregation": "none", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "isID": false + }, + "visibility": "public", + "isDerived": false + } + ], + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFb3emNGP6cwB8=", + "_parent": { + "$ref": "AAAAAAFb3elJI/40xIM=" + }, + "name": "node", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": { + "$ref": "AAAAAAFb3eZzPvlorLs=" + }, + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + }, + { + "_type": "UMLAttribute", + "_id": "AAAAAAFb3emapP66YEg=", + "_parent": { + "$ref": "AAAAAAFb3elJI/40xIM=" + }, + "name": "cursor", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "", + "multiplicity": "1", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFb3e5bFxZa+gw=", + "_parent": { + "$ref": "AAAAAAFF+qBWK6M3Z8Y=" + }, + "name": "RenameTodoInput", + "ownedElements": [ + { + "_type": "UMLGeneralization", + "_id": "AAAAAAFb44S8DRsGy60=", + "_parent": { + "$ref": "AAAAAAFb3e5bFxZa+gw=" + }, + "source": { + "$ref": "AAAAAAFb3e5bFxZa+gw=" + }, + "target": { + "$ref": "AAAAAAFb3kTOfXSFuMQ=" + }, + "visibility": "public" + } + ], + "stereotype": "input", + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFb3e65fBdfl0Y=", + "_parent": { + "$ref": "AAAAAAFb3e5bFxZa+gw=" + }, + "name": "text", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "String", + "multiplicity": "1", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFb3e9d5BhsJrU=", + "_parent": { + "$ref": "AAAAAAFF+qBWK6M3Z8Y=" + }, + "name": "RenameTodoPayload", + "ownedElements": [ + { + "_type": "UMLGeneralization", + "_id": "AAAAAAFb44QOjApKkWE=", + "_parent": { + "$ref": "AAAAAAFb3e9d5BhsJrU=" + }, + "source": { + "$ref": "AAAAAAFb3e9d5BhsJrU=" + }, + "target": { + "$ref": "AAAAAAFb3jHrLVZeIz4=" + }, + "visibility": "public" + } + ], + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFb3e+RORou48Y=", + "_parent": { + "$ref": "AAAAAAFb3e9d5BhsJrU=" + }, + "name": "todo", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": { + "$ref": "AAAAAAFb3eZzPvlorLs=" + }, + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFb3fIWvyu91ic=", + "_parent": { + "$ref": "AAAAAAFF+qBWK6M3Z8Y=" + }, + "name": "RemoveCompletedTodosInput", + "ownedElements": [ + { + "_type": "UMLGeneralization", + "_id": "AAAAAAFb44JtY+/SusY=", + "_parent": { + "$ref": "AAAAAAFb3fIWvyu91ic=" + }, + "source": { + "$ref": "AAAAAAFb3fIWvyu91ic=" + }, + "target": { + "$ref": "AAAAAAFb3jHrLVZeIz4=" + }, + "visibility": "public" + } + ], + "stereotype": "input", + "visibility": "public", + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFb3fKEUyy8E9U=", + "_parent": { + "$ref": "AAAAAAFF+qBWK6M3Z8Y=" + }, + "name": "RemoveCompletedTodosPayload", + "ownedElements": [ + { + "_type": "UMLGeneralization", + "_id": "AAAAAAFb44KvrvEg4Ew=", + "_parent": { + "$ref": "AAAAAAFb3fKEUyy8E9U=" + }, + "source": { + "$ref": "AAAAAAFb3fKEUyy8E9U=" + }, + "target": { + "$ref": "AAAAAAFb3jUIuWXAKJE=" + }, + "visibility": "public" + } + ], + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFb3fK3ci1m9Ak=", + "_parent": { + "$ref": "AAAAAAFb3fKEUyy8E9U=" + }, + "name": "deletedTodoIds", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "", + "multiplicity": "0..*", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFb3jHrLVZeIz4=", + "_parent": { + "$ref": "AAAAAAFF+qBWK6M3Z8Y=" + }, + "name": "AbstractClientMutation", + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFb3jJmP1e6+hI=", + "_parent": { + "$ref": "AAAAAAFb3jHrLVZeIz4=" + }, + "name": "clientMutationId", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": true, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFb3jUIuWXAKJE=", + "_parent": { + "$ref": "AAAAAAFF+qBWK6M3Z8Y=" + }, + "name": "AbstractViewer", + "ownedElements": [ + { + "_type": "UMLGeneralization", + "_id": "AAAAAAFb3jVPCWZy1T0=", + "_parent": { + "$ref": "AAAAAAFb3jUIuWXAKJE=" + }, + "source": { + "$ref": "AAAAAAFb3jUIuWXAKJE=" + }, + "target": { + "$ref": "AAAAAAFb3jHrLVZeIz4=" + }, + "visibility": "public" + } + ], + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFb3jZTbGclI9U=", + "_parent": { + "$ref": "AAAAAAFb3jUIuWXAKJE=" + }, + "name": "viewer", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": { + "$ref": "AAAAAAFb3eWQivj0LxA=" + }, + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": true, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFb3kTOfXSFuMQ=", + "_parent": { + "$ref": "AAAAAAFF+qBWK6M3Z8Y=" + }, + "name": "AbstractId", + "ownedElements": [ + { + "_type": "UMLGeneralization", + "_id": "AAAAAAFb44IluuBJuvg=", + "_parent": { + "$ref": "AAAAAAFb3kTOfXSFuMQ=" + }, + "source": { + "$ref": "AAAAAAFb3kTOfXSFuMQ=" + }, + "target": { + "$ref": "AAAAAAFb3jHrLVZeIz4=" + }, + "visibility": "public" + } + ], + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFb40MubcZTmA8=", + "_parent": { + "$ref": "AAAAAAFb3kTOfXSFuMQ=" + }, + "name": "id", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": "ID", + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": true, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFb4yyHv45fWz8=", + "_parent": { + "$ref": "AAAAAAFF+qBWK6M3Z8Y=" + }, + "name": "RemoveTodoInput", + "ownedElements": [ + { + "_type": "UMLGeneralization", + "_id": "AAAAAAFb44Uv8SC/33I=", + "_parent": { + "$ref": "AAAAAAFb4yyHv45fWz8=" + }, + "source": { + "$ref": "AAAAAAFb4yyHv45fWz8=" + }, + "target": { + "$ref": "AAAAAAFb3kTOfXSFuMQ=" + }, + "visibility": "public" + } + ], + "visibility": "public", + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClass", + "_id": "AAAAAAFb4y5nMqFLIa4=", + "_parent": { + "$ref": "AAAAAAFF+qBWK6M3Z8Y=" + }, + "name": "RemoveTodoPayload", + "ownedElements": [ + { + "_type": "UMLGeneralization", + "_id": "AAAAAAFb44SGRhdXA/8=", + "_parent": { + "$ref": "AAAAAAFb4y5nMqFLIa4=" + }, + "source": { + "$ref": "AAAAAAFb4y5nMqFLIa4=" + }, + "target": { + "$ref": "AAAAAAFb3jHrLVZeIz4=" + }, + "visibility": "public" + } + ], + "visibility": "public", + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFb4y69KaIFquM=", + "_parent": { + "$ref": "AAAAAAFb4y5nMqFLIa4=" + }, + "name": "todo", + "visibility": "public", + "isStatic": false, + "isLeaf": false, + "type": { + "$ref": "AAAAAAFb3eZzPvlorLs=" + }, + "isReadOnly": false, + "isOrdered": false, + "isUnique": false, + "isDerived": false, + "aggregation": "none", + "isID": false + } + ], + "isAbstract": false, + "isFinalSpecialization": false, + "isLeaf": false, + "isActive": false + }, + { + "_type": "UMLClassDiagram", + "_id": "AAAAAAFb47fYF2Gqw+c=", + "_parent": { + "$ref": "AAAAAAFF+qBWK6M3Z8Y=" + }, + "name": "Input_Payloads", + "visible": true, + "defaultDiagram": false, + "ownedViews": [ + { + "_type": "UMLClassView", + "_id": "AAAAAAFb47gbxmTsMAM=", + "_parent": { + "$ref": "AAAAAAFb47fYF2Gqw+c=" + }, + "model": { + "$ref": "AAAAAAFb3d5KdPbv/eM=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFb47gbx2TtEAw=", + "_parent": { + "$ref": "AAAAAAFb47gbxmTsMAM=" + }, + "model": { + "$ref": "AAAAAAFb3d5KdPbv/eM=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbx2Tude8=", + "_parent": { + "$ref": "AAAAAAFb47gbx2TtEAw=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 221, + "top": 533, + "width": 100, + "height": 13, + "autoResize": false, + "underline": false, + "text": "«input»", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbx2Tv/Qg=", + "_parent": { + "$ref": "AAAAAAFb47gbx2TtEAw=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 221, + "top": 548, + "width": 100, + "height": 13, + "autoResize": false, + "underline": false, + "text": "AddTodoInput", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbx2TwOOk=", + "_parent": { + "$ref": "AAAAAAFb47gbx2TtEAw=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 227, + "top": 344, + "width": 73, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from Model)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbx2TxddY=", + "_parent": { + "$ref": "AAAAAAFb47gbx2TtEAw=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 227, + "top": 344, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 216, + "top": 528, + "width": 110, + "height": 38, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFb47gbx2Tude8=" + }, + "nameLabel": { + "$ref": "AAAAAAFb47gbx2Tv/Qg=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFb47gbx2TwOOk=" + }, + "propertyLabel": { + "$ref": "AAAAAAFb47gbx2TxddY=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFb47gbx2TyD/Q=", + "_parent": { + "$ref": "AAAAAAFb47gbxmTsMAM=" + }, + "model": { + "$ref": "AAAAAAFb3d5KdPbv/eM=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFb47gbx2Tz2E8=", + "_parent": { + "$ref": "AAAAAAFb47gbx2TyD/Q=" + }, + "model": { + "$ref": "AAAAAAFb3d5f+PcZZjc=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 221, + "top": 571, + "width": 100, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+text[1]", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 216, + "top": 566, + "width": 110, + "height": 23, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFb47gbx2T042E=", + "_parent": { + "$ref": "AAAAAAFb47gbxmTsMAM=" + }, + "model": { + "$ref": "AAAAAAFb3d5KdPbv/eM=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 216, + "top": 604, + "width": 110, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFb47gbx2T1SxA=", + "_parent": { + "$ref": "AAAAAAFb47gbxmTsMAM=" + }, + "model": { + "$ref": "AAAAAAFb3d5KdPbv/eM=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 80, + "top": 352, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFb47gbx2T2IHY=", + "_parent": { + "$ref": "AAAAAAFb47gbxmTsMAM=" + }, + "model": { + "$ref": "AAAAAAFb3d5KdPbv/eM=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 80, + "top": 352, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 216, + "top": 528, + "width": 110, + "height": 86, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFb47gbx2TtEAw=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": true, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFb47gbx2TyD/Q=" + }, + "operationCompartment": { + "$ref": "AAAAAAFb47gbx2T042E=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFb47gbx2T1SxA=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFb47gbx2T2IHY=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFb47gbx2T3G6Q=", + "_parent": { + "$ref": "AAAAAAFb47fYF2Gqw+c=" + }, + "model": { + "$ref": "AAAAAAFb3d7rwPcpSpM=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFb47gbx2T4/jE=", + "_parent": { + "$ref": "AAAAAAFb47gbx2T3G6Q=" + }, + "model": { + "$ref": "AAAAAAFb3d7rwPcpSpM=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbx2T570U=", + "_parent": { + "$ref": "AAAAAAFb47gbx2T4/jE=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 1149, + "top": 1320, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbx2T6EwQ=", + "_parent": { + "$ref": "AAAAAAFb47gbx2T4/jE=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 842, + "top": 951, + "width": 130, + "height": 13, + "autoResize": false, + "underline": false, + "text": "AddTodoPayload", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbx2T7kzs=", + "_parent": { + "$ref": "AAAAAAFb47gbx2T4/jE=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 1149, + "top": 1320, + "width": 73, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from Model)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbx2T8K6g=", + "_parent": { + "$ref": "AAAAAAFb47gbx2T4/jE=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 1149, + "top": 1320, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 837, + "top": 944, + "width": 140, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFb47gbx2T570U=" + }, + "nameLabel": { + "$ref": "AAAAAAFb47gbx2T6EwQ=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFb47gbx2T7kzs=" + }, + "propertyLabel": { + "$ref": "AAAAAAFb47gbx2T8K6g=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFb47gbx2T9S7U=", + "_parent": { + "$ref": "AAAAAAFb47gbx2T3G6Q=" + }, + "model": { + "$ref": "AAAAAAFb3d7rwPcpSpM=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFb47gbx2T+7sE=", + "_parent": { + "$ref": "AAAAAAFb47gbx2T9S7U=" + }, + "model": { + "$ref": "AAAAAAFb3fZZZDrC2Q8=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 842, + "top": 974, + "width": 130, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+todoEdge: TodoEdge", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 837, + "top": 969, + "width": 140, + "height": 23, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFb47gbx2T/Ezw=", + "_parent": { + "$ref": "AAAAAAFb47gbx2T3G6Q=" + }, + "model": { + "$ref": "AAAAAAFb3d7rwPcpSpM=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 837, + "top": 979, + "width": 117, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFb47gbx2UAME4=", + "_parent": { + "$ref": "AAAAAAFb47gbx2T3G6Q=" + }, + "model": { + "$ref": "AAAAAAFb3d7rwPcpSpM=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 541, + "top": 840, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFb47gbx2UB9Os=", + "_parent": { + "$ref": "AAAAAAFb47gbx2T3G6Q=" + }, + "model": { + "$ref": "AAAAAAFb3d7rwPcpSpM=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 541, + "top": 840, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 837, + "top": 944, + "width": 140, + "height": 78, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFb47gbx2T4/jE=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": true, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFb47gbx2T9S7U=" + }, + "operationCompartment": { + "$ref": "AAAAAAFb47gbx2T/Ezw=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFb47gbx2UAME4=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFb47gbx2UB9Os=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFb47gbx2UCB4I=", + "_parent": { + "$ref": "AAAAAAFb47fYF2Gqw+c=" + }, + "model": { + "$ref": "AAAAAAFb3d8b4/dT+bU=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFb47gbx2UDKow=", + "_parent": { + "$ref": "AAAAAAFb47gbx2UCB4I=" + }, + "model": { + "$ref": "AAAAAAFb3d8b4/dT+bU=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbx2UE9SQ=", + "_parent": { + "$ref": "AAAAAAFb47gbx2UDKow=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 1077, + "top": 485, + "width": 150, + "height": 13, + "autoResize": false, + "underline": false, + "text": "«input»", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbx2UF6oA=", + "_parent": { + "$ref": "AAAAAAFb47gbx2UDKow=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 1077, + "top": 500, + "width": 150, + "height": 13, + "autoResize": false, + "underline": false, + "text": "ChangeTodoStatusInput", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbx2UGntk=", + "_parent": { + "$ref": "AAAAAAFb47gbx2UDKow=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 1763, + "top": 88, + "width": 73, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from Model)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbx2UHoJs=", + "_parent": { + "$ref": "AAAAAAFb47gbx2UDKow=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 1763, + "top": 88, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 1072, + "top": 480, + "width": 160, + "height": 38, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFb47gbx2UE9SQ=" + }, + "nameLabel": { + "$ref": "AAAAAAFb47gbx2UF6oA=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFb47gbx2UGntk=" + }, + "propertyLabel": { + "$ref": "AAAAAAFb47gbx2UHoJs=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFb47gbx2UIBAU=", + "_parent": { + "$ref": "AAAAAAFb47gbx2UCB4I=" + }, + "model": { + "$ref": "AAAAAAFb3d8b4/dT+bU=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFb47gbx2UJFa0=", + "_parent": { + "$ref": "AAAAAAFb47gbx2UIBAU=" + }, + "model": { + "$ref": "AAAAAAFb3i8UvkkrVSI=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 1077, + "top": 523, + "width": 150, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+complete: Boolean[1]", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 1072, + "top": 518, + "width": 160, + "height": 23, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFb47gbx2UKMqw=", + "_parent": { + "$ref": "AAAAAAFb47gbx2UCB4I=" + }, + "model": { + "$ref": "AAAAAAFb3d8b4/dT+bU=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 1072, + "top": 528, + "width": 160, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFb47gbx2UL7Tc=", + "_parent": { + "$ref": "AAAAAAFb47gbx2UCB4I=" + }, + "model": { + "$ref": "AAAAAAFb3d8b4/dT+bU=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 848, + "top": 224, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFb47gbx2UMMPc=", + "_parent": { + "$ref": "AAAAAAFb47gbx2UCB4I=" + }, + "model": { + "$ref": "AAAAAAFb3d8b4/dT+bU=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 848, + "top": 224, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 1072, + "top": 480, + "width": 160, + "height": 91, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFb47gbx2UDKow=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": true, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFb47gbx2UIBAU=" + }, + "operationCompartment": { + "$ref": "AAAAAAFb47gbx2UKMqw=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFb47gbx2UL7Tc=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFb47gbx2UMMPc=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFb47gbx2UNULs=", + "_parent": { + "$ref": "AAAAAAFb47fYF2Gqw+c=" + }, + "model": { + "$ref": "AAAAAAFb3d9HLfd+kD8=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFb47gbx2UOgYI=", + "_parent": { + "$ref": "AAAAAAFb47gbx2UNULs=" + }, + "model": { + "$ref": "AAAAAAFb3d9HLfd+kD8=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbx2UPNsQ=", + "_parent": { + "$ref": "AAAAAAFb47gbx2UOgYI=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 1011, + "top": 312, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbx2UQQGA=", + "_parent": { + "$ref": "AAAAAAFb47gbx2UOgYI=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 877, + "top": 607, + "width": 168, + "height": 13, + "autoResize": false, + "underline": false, + "text": "ChangeTodoStatusPayload", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbx2URE6U=", + "_parent": { + "$ref": "AAAAAAFb47gbx2UOgYI=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 1011, + "top": 312, + "width": 73, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from Model)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbx2USRng=", + "_parent": { + "$ref": "AAAAAAFb47gbx2UOgYI=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 1011, + "top": 312, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 872, + "top": 600, + "width": 178, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFb47gbx2UPNsQ=" + }, + "nameLabel": { + "$ref": "AAAAAAFb47gbx2UQQGA=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFb47gbx2URE6U=" + }, + "propertyLabel": { + "$ref": "AAAAAAFb47gbx2USRng=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFb47gbx2UTAPI=", + "_parent": { + "$ref": "AAAAAAFb47gbx2UNULs=" + }, + "model": { + "$ref": "AAAAAAFb3d9HLfd+kD8=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFb47gbx2UUjVg=", + "_parent": { + "$ref": "AAAAAAFb47gbx2UTAPI=" + }, + "model": { + "$ref": "AAAAAAFb3fVsAjkFrhM=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 877, + "top": 630, + "width": 168, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+complete: Boolean[1]", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 872, + "top": 625, + "width": 178, + "height": 23, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFb47gbx2UV9ps=", + "_parent": { + "$ref": "AAAAAAFb47gbx2UNULs=" + }, + "model": { + "$ref": "AAAAAAFb3d9HLfd+kD8=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 872, + "top": 635, + "width": 178, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFb47gbx2UWlSM=", + "_parent": { + "$ref": "AAAAAAFb47gbx2UNULs=" + }, + "model": { + "$ref": "AAAAAAFb3d9HLfd+kD8=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 472, + "top": 336, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFb47gbx2UXfAU=", + "_parent": { + "$ref": "AAAAAAFb47gbx2UNULs=" + }, + "model": { + "$ref": "AAAAAAFb3d9HLfd+kD8=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 472, + "top": 336, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 872, + "top": 600, + "width": 178, + "height": 78, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFb47gbx2UOgYI=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": true, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFb47gbx2UTAPI=" + }, + "operationCompartment": { + "$ref": "AAAAAAFb47gbx2UV9ps=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFb47gbx2UWlSM=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFb47gbx2UXfAU=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFb47gbx2UYino=", + "_parent": { + "$ref": "AAAAAAFb47fYF2Gqw+c=" + }, + "model": { + "$ref": "AAAAAAFb3eAbLvergYQ=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFb47gbx2UZcM4=", + "_parent": { + "$ref": "AAAAAAFb47gbx2UYino=" + }, + "model": { + "$ref": "AAAAAAFb3eAbLvergYQ=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbx2UaBqo=", + "_parent": { + "$ref": "AAAAAAFb47gbx2UZcM4=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 293, + "top": 253, + "width": 131, + "height": 13, + "autoResize": false, + "underline": false, + "text": "«input»", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbx2Uby94=", + "_parent": { + "$ref": "AAAAAAFb47gbx2UZcM4=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 293, + "top": 268, + "width": 131, + "height": 13, + "autoResize": false, + "underline": false, + "text": "MarkAllTodosInput", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbx2Uc0vk=", + "_parent": { + "$ref": "AAAAAAFb47gbx2UZcM4=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 467, + "top": -536, + "width": 73, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from Model)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbx2UdODA=", + "_parent": { + "$ref": "AAAAAAFb47gbx2UZcM4=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 467, + "top": -536, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 288, + "top": 248, + "width": 141, + "height": 38, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFb47gbx2UaBqo=" + }, + "nameLabel": { + "$ref": "AAAAAAFb47gbx2Uby94=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFb47gbx2Uc0vk=" + }, + "propertyLabel": { + "$ref": "AAAAAAFb47gbx2UdODA=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFb47gbx2Ue1QM=", + "_parent": { + "$ref": "AAAAAAFb47gbx2UYino=" + }, + "model": { + "$ref": "AAAAAAFb3eAbLvergYQ=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFb47gbx2Ufms0=", + "_parent": { + "$ref": "AAAAAAFb47gbx2Ue1QM=" + }, + "model": { + "$ref": "AAAAAAFb3eB0YfgAGqA=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 293, + "top": 291, + "width": 131, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+complete: Boolean[1]", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 288, + "top": 286, + "width": 141, + "height": 23, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFb47gbx2UgvhE=", + "_parent": { + "$ref": "AAAAAAFb47gbx2UYino=" + }, + "model": { + "$ref": "AAAAAAFb3eAbLvergYQ=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 288, + "top": 324, + "width": 141, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFb47gbx2Uh5po=", + "_parent": { + "$ref": "AAAAAAFb47gbx2UYino=" + }, + "model": { + "$ref": "AAAAAAFb3eAbLvergYQ=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 200, + "top": -88, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFb47gbx2UiS1g=", + "_parent": { + "$ref": "AAAAAAFb47gbx2UYino=" + }, + "model": { + "$ref": "AAAAAAFb3eAbLvergYQ=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 200, + "top": -88, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 288, + "top": 248, + "width": 141, + "height": 86, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": false, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFb47gbx2UZcM4=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": true, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFb47gbx2Ue1QM=" + }, + "operationCompartment": { + "$ref": "AAAAAAFb47gbx2UgvhE=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFb47gbx2Uh5po=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFb47gbx2UiS1g=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFb47gbx2UjNKQ=", + "_parent": { + "$ref": "AAAAAAFb47fYF2Gqw+c=" + }, + "model": { + "$ref": "AAAAAAFb3eA0I/fVco4=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFb47gbx2UkgyY=", + "_parent": { + "$ref": "AAAAAAFb47gbx2UjNKQ=" + }, + "model": { + "$ref": "AAAAAAFb3eA0I/fVco4=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbx2UlShM=", + "_parent": { + "$ref": "AAAAAAFb47gbx2UkgyY=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 307, + "top": 824, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbx2UmesQ=", + "_parent": { + "$ref": "AAAAAAFb47gbx2UkgyY=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 493, + "top": 935, + "width": 158, + "height": 13, + "autoResize": false, + "underline": false, + "text": "MarkAllTodosPayload", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbx2Un9Os=", + "_parent": { + "$ref": "AAAAAAFb47gbx2UkgyY=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 307, + "top": 824, + "width": 73, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from Model)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbx2UoHEU=", + "_parent": { + "$ref": "AAAAAAFb47gbx2UkgyY=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 307, + "top": 824, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 488, + "top": 928, + "width": 168, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFb47gbx2UlShM=" + }, + "nameLabel": { + "$ref": "AAAAAAFb47gbx2UmesQ=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFb47gbx2Un9Os=" + }, + "propertyLabel": { + "$ref": "AAAAAAFb47gbx2UoHEU=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFb47gbx2UpHW8=", + "_parent": { + "$ref": "AAAAAAFb47gbx2UjNKQ=" + }, + "model": { + "$ref": "AAAAAAFb3eA0I/fVco4=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFb47gbx2Uq9/E=", + "_parent": { + "$ref": "AAAAAAFb47gbx2UpHW8=" + }, + "model": { + "$ref": "AAAAAAFb3fR0vzew2c8=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 493, + "top": 958, + "width": 158, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+changedTodos: Todo[0..*]", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 488, + "top": 953, + "width": 168, + "height": 23, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFb47gbx2Ur0YU=", + "_parent": { + "$ref": "AAAAAAFb47gbx2UjNKQ=" + }, + "model": { + "$ref": "AAAAAAFb3eA0I/fVco4=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 488, + "top": 963, + "width": 146, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFb47gbx2Usi4Y=", + "_parent": { + "$ref": "AAAAAAFb47gbx2UjNKQ=" + }, + "model": { + "$ref": "AAAAAAFb3eA0I/fVco4=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 120, + "top": 592, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFb47gbx2UtQjE=", + "_parent": { + "$ref": "AAAAAAFb47gbx2UjNKQ=" + }, + "model": { + "$ref": "AAAAAAFb3eA0I/fVco4=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 120, + "top": 592, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 488, + "top": 928, + "width": 168, + "height": 78, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFb47gbx2UkgyY=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": true, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFb47gbx2UpHW8=" + }, + "operationCompartment": { + "$ref": "AAAAAAFb47gbx2Ur0YU=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFb47gbx2Usi4Y=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFb47gbx2UtQjE=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFb47gbx2Uu0ng=", + "_parent": { + "$ref": "AAAAAAFb47fYF2Gqw+c=" + }, + "model": { + "$ref": "AAAAAAFb3e5bFxZa+gw=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFb47gbx2UvGew=", + "_parent": { + "$ref": "AAAAAAFb47gbx2Uu0ng=" + }, + "model": { + "$ref": "AAAAAAFb3e5bFxZa+gw=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbx2UwgRs=", + "_parent": { + "$ref": "AAAAAAFb47gbx2UvGew=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 1101, + "top": 293, + "width": 114, + "height": 13, + "autoResize": false, + "underline": false, + "text": "«input»", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbx2Uxb3U=", + "_parent": { + "$ref": "AAAAAAFb47gbx2UvGew=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 1101, + "top": 308, + "width": 114, + "height": 13, + "autoResize": false, + "underline": false, + "text": "RenameTodoInput", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbx2Uy0lQ=", + "_parent": { + "$ref": "AAAAAAFb47gbx2UvGew=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 1923, + "top": -712, + "width": 73, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from Model)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbx2UzHOc=", + "_parent": { + "$ref": "AAAAAAFb47gbx2UvGew=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 1923, + "top": -712, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 1096, + "top": 288, + "width": 124, + "height": 38, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFb47gbx2UwgRs=" + }, + "nameLabel": { + "$ref": "AAAAAAFb47gbx2Uxb3U=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFb47gbx2Uy0lQ=" + }, + "propertyLabel": { + "$ref": "AAAAAAFb47gbx2UzHOc=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFb47gbx2U0Pyw=", + "_parent": { + "$ref": "AAAAAAFb47gbx2Uu0ng=" + }, + "model": { + "$ref": "AAAAAAFb3e5bFxZa+gw=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFb47gbx2U1K7s=", + "_parent": { + "$ref": "AAAAAAFb47gbx2U0Pyw=" + }, + "model": { + "$ref": "AAAAAAFb3e65fBdfl0Y=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 1101, + "top": 331, + "width": 114, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+text: String[1]", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 1096, + "top": 326, + "width": 124, + "height": 23, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFb47gbx2U2gHg=", + "_parent": { + "$ref": "AAAAAAFb47gbx2Uu0ng=" + }, + "model": { + "$ref": "AAAAAAFb3e5bFxZa+gw=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 1096, + "top": 366, + "width": 124, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFb47gbx2U3Aak=", + "_parent": { + "$ref": "AAAAAAFb47gbx2Uu0ng=" + }, + "model": { + "$ref": "AAAAAAFb3e5bFxZa+gw=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 928, + "top": -176, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFb47gbx2U4o9s=", + "_parent": { + "$ref": "AAAAAAFb47gbx2Uu0ng=" + }, + "model": { + "$ref": "AAAAAAFb3e5bFxZa+gw=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 928, + "top": -176, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 1096, + "top": 288, + "width": 124, + "height": 91, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFb47gbx2UvGew=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": true, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFb47gbx2U0Pyw=" + }, + "operationCompartment": { + "$ref": "AAAAAAFb47gbx2U2gHg=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFb47gbx2U3Aak=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFb47gbx2U4o9s=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFb47gbx2U503E=", + "_parent": { + "$ref": "AAAAAAFb47fYF2Gqw+c=" + }, + "model": { + "$ref": "AAAAAAFb3e9d5BhsJrU=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFb47gbx2U6ooA=", + "_parent": { + "$ref": "AAAAAAFb47gbx2U503E=" + }, + "model": { + "$ref": "AAAAAAFb3e9d5BhsJrU=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbx2U7TXQ=", + "_parent": { + "$ref": "AAAAAAFb47gbx2U6ooA=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 61, + "top": 248, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbx2U8skM=", + "_parent": { + "$ref": "AAAAAAFb47gbx2U6ooA=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 322, + "top": 719, + "width": 132, + "height": 13, + "autoResize": false, + "underline": false, + "text": "RenameTodoPayload", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbx2U9Nfs=", + "_parent": { + "$ref": "AAAAAAFb47gbx2U6ooA=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 61, + "top": 248, + "width": 73, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from Model)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbyGU+Qs8=", + "_parent": { + "$ref": "AAAAAAFb47gbx2U6ooA=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 61, + "top": 248, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 317, + "top": 712, + "width": 142, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFb47gbx2U7TXQ=" + }, + "nameLabel": { + "$ref": "AAAAAAFb47gbx2U8skM=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFb47gbx2U9Nfs=" + }, + "propertyLabel": { + "$ref": "AAAAAAFb47gbyGU+Qs8=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFb47gbyGU/yHw=", + "_parent": { + "$ref": "AAAAAAFb47gbx2U503E=" + }, + "model": { + "$ref": "AAAAAAFb3e9d5BhsJrU=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFb47gbyGVAbZw=", + "_parent": { + "$ref": "AAAAAAFb47gbyGU/yHw=" + }, + "model": { + "$ref": "AAAAAAFb3e+RORou48Y=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 322, + "top": 742, + "width": 132, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+todo: Todo", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 317, + "top": 737, + "width": 142, + "height": 23, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFb47gbyGVBBAI=", + "_parent": { + "$ref": "AAAAAAFb47gbx2U503E=" + }, + "model": { + "$ref": "AAAAAAFb3e9d5BhsJrU=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 317, + "top": 775, + "width": 142, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFb47gbyGVCMVI=", + "_parent": { + "$ref": "AAAAAAFb47gbx2U503E=" + }, + "model": { + "$ref": "AAAAAAFb3e9d5BhsJrU=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -3, + "top": 304, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFb47gbyGVDbzA=", + "_parent": { + "$ref": "AAAAAAFb47gbx2U503E=" + }, + "model": { + "$ref": "AAAAAAFb3e9d5BhsJrU=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -3, + "top": 304, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 317, + "top": 712, + "width": 142, + "height": 73, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFb47gbx2U6ooA=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": true, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFb47gbyGU/yHw=" + }, + "operationCompartment": { + "$ref": "AAAAAAFb47gbyGVBBAI=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFb47gbyGVCMVI=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFb47gbyGVDbzA=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFb47gbyGVEfvA=", + "_parent": { + "$ref": "AAAAAAFb47fYF2Gqw+c=" + }, + "model": { + "$ref": "AAAAAAFb3fIWvyu91ic=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFb47gbyGVFx/A=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVEfvA=" + }, + "model": { + "$ref": "AAAAAAFb3fIWvyu91ic=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbyGVGdVQ=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVFx/A=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 461, + "top": 149, + "width": 188, + "height": 13, + "autoResize": false, + "underline": false, + "text": "«input»", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbyGVH+JM=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVFx/A=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 461, + "top": 164, + "width": 188, + "height": 13, + "autoResize": false, + "underline": false, + "text": "RemoveCompletedTodosInput", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbyGVIFWk=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVFx/A=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 755, + "top": -1064, + "width": 73, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from Model)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbyGVJgRg=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVFx/A=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 755, + "top": -1064, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 456, + "top": 144, + "width": 198, + "height": 38, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFb47gbyGVGdVQ=" + }, + "nameLabel": { + "$ref": "AAAAAAFb47gbyGVH+JM=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFb47gbyGVIFWk=" + }, + "propertyLabel": { + "$ref": "AAAAAAFb47gbyGVJgRg=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFb47gbyGVKmBA=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVEfvA=" + }, + "model": { + "$ref": "AAAAAAFb3fIWvyu91ic=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 456, + "top": 182, + "width": 198, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFb47gbyGVLMg4=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVEfvA=" + }, + "model": { + "$ref": "AAAAAAFb3fIWvyu91ic=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 456, + "top": 205, + "width": 198, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFb47gbyGVMA7Q=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVEfvA=" + }, + "model": { + "$ref": "AAAAAAFb3fIWvyu91ic=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 344, + "top": -352, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFb47gbyGVNYSk=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVEfvA=" + }, + "model": { + "$ref": "AAAAAAFb3fIWvyu91ic=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 344, + "top": -352, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 456, + "top": 144, + "width": 198, + "height": 71, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFb47gbyGVFx/A=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": true, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFb47gbyGVKmBA=" + }, + "operationCompartment": { + "$ref": "AAAAAAFb47gbyGVLMg4=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFb47gbyGVMA7Q=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFb47gbyGVNYSk=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFb47gbyGVOMJE=", + "_parent": { + "$ref": "AAAAAAFb47fYF2Gqw+c=" + }, + "model": { + "$ref": "AAAAAAFb3fKEUyy8E9U=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFb47gbyGVPuQg=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVOMJE=" + }, + "model": { + "$ref": "AAAAAAFb3fKEUyy8E9U=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbyGVQYZI=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVPuQg=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 51, + "top": 904, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbyGVRqek=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVPuQg=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 565, + "top": 1079, + "width": 206, + "height": 13, + "autoResize": false, + "underline": false, + "text": "RemoveCompletedTodosPayload", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbyGVSG30=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVPuQg=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 51, + "top": 904, + "width": 73, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from Model)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbyGVTRL0=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVPuQg=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 51, + "top": 904, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 560, + "top": 1072, + "width": 216, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFb47gbyGVQYZI=" + }, + "nameLabel": { + "$ref": "AAAAAAFb47gbyGVRqek=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFb47gbyGVSG30=" + }, + "propertyLabel": { + "$ref": "AAAAAAFb47gbyGVTRL0=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFb47gbyGVUfkc=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVOMJE=" + }, + "model": { + "$ref": "AAAAAAFb3fKEUyy8E9U=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFb47gbyGVVnRE=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVUfkc=" + }, + "model": { + "$ref": "AAAAAAFb3fK3ci1m9Ak=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 565, + "top": 1102, + "width": 206, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+deletedTodoIds[0..*]", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 560, + "top": 1097, + "width": 216, + "height": 23, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFb47gbyGVWXaY=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVOMJE=" + }, + "model": { + "$ref": "AAAAAAFb3fKEUyy8E9U=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 560, + "top": 1150, + "width": 216, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFb47gbyGVXsbE=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVOMJE=" + }, + "model": { + "$ref": "AAAAAAFb3fKEUyy8E9U=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -8, + "top": 632, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFb47gbyGVYhS0=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVOMJE=" + }, + "model": { + "$ref": "AAAAAAFb3fKEUyy8E9U=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -8, + "top": 632, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 560, + "top": 1072, + "width": 216, + "height": 88, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFb47gbyGVPuQg=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": true, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFb47gbyGVUfkc=" + }, + "operationCompartment": { + "$ref": "AAAAAAFb47gbyGVWXaY=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFb47gbyGVXsbE=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFb47gbyGVYhS0=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFb47gbyGVZIpg=", + "_parent": { + "$ref": "AAAAAAFb47fYF2Gqw+c=" + }, + "model": { + "$ref": "AAAAAAFb3jHrLVZeIz4=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFb47gbyGVaaLo=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVZIpg=" + }, + "model": { + "$ref": "AAAAAAFb3jHrLVZeIz4=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbyGVbTh8=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVaaLo=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -61, + "top": 344, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbyGVcT/I=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVaaLo=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;3", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 629, + "top": 487, + "width": 141, + "height": 13, + "autoResize": false, + "underline": false, + "text": "AbstractClientMutation", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbyGVdfno=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVaaLo=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -61, + "top": 344, + "width": 73, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from Model)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbyGVe2IQ=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVaaLo=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -61, + "top": 344, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 624, + "top": 480, + "width": 151, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFb47gbyGVbTh8=" + }, + "nameLabel": { + "$ref": "AAAAAAFb47gbyGVcT/I=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFb47gbyGVdfno=" + }, + "propertyLabel": { + "$ref": "AAAAAAFb47gbyGVe2IQ=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFb47gbyGVfyUc=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVZIpg=" + }, + "model": { + "$ref": "AAAAAAFb3jHrLVZeIz4=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFb47gbyGVgMUU=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVfyUc=" + }, + "model": { + "$ref": "AAAAAAFb3jJmP1e6+hI=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 629, + "top": 510, + "width": 141, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+clientMutationId", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 624, + "top": 505, + "width": 151, + "height": 23, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFb47gbyGVhBkQ=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVZIpg=" + }, + "model": { + "$ref": "AAAAAAFb3jHrLVZeIz4=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 624, + "top": 528, + "width": 151, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFb47gbyGViSYE=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVZIpg=" + }, + "model": { + "$ref": "AAAAAAFb3jHrLVZeIz4=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -64, + "top": 352, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFb47gbyGVjoqA=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVZIpg=" + }, + "model": { + "$ref": "AAAAAAFb3jHrLVZeIz4=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -64, + "top": 352, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 624, + "top": 480, + "width": 151, + "height": 58, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFb47gbyGVaaLo=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": false, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFb47gbyGVfyUc=" + }, + "operationCompartment": { + "$ref": "AAAAAAFb47gbyGVhBkQ=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFb47gbyGViSYE=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFb47gbyGVjoqA=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFb47gbyGVkEx4=", + "_parent": { + "$ref": "AAAAAAFb47fYF2Gqw+c=" + }, + "model": { + "$ref": "AAAAAAFb3jUIuWXAKJE=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFb47gbyGVlvbY=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVkEx4=" + }, + "model": { + "$ref": "AAAAAAFb3jUIuWXAKJE=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbyGVmYUo=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVlvbY=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 131, + "top": 808, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbyGVnl+8=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVlvbY=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;3", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 701, + "top": 759, + "width": 93, + "height": 13, + "autoResize": false, + "underline": false, + "text": "AbstractViewer", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbyGVo9a8=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVlvbY=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 131, + "top": 808, + "width": 73, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from Model)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbyGVpyqs=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVlvbY=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 131, + "top": 808, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 696, + "top": 752, + "width": 103, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFb47gbyGVmYUo=" + }, + "nameLabel": { + "$ref": "AAAAAAFb47gbyGVnl+8=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFb47gbyGVo9a8=" + }, + "propertyLabel": { + "$ref": "AAAAAAFb47gbyGVpyqs=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFb47gbyGVqfEs=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVkEx4=" + }, + "model": { + "$ref": "AAAAAAFb3jUIuWXAKJE=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFb47gbyGVrHe0=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVqfEs=" + }, + "model": { + "$ref": "AAAAAAFb3jZTbGclI9U=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 701, + "top": 782, + "width": 93, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+viewer: User", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 696, + "top": 777, + "width": 103, + "height": 23, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFb47gbyGVsNHU=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVkEx4=" + }, + "model": { + "$ref": "AAAAAAFb3jUIuWXAKJE=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 696, + "top": 800, + "width": 103, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFb47gbyGVtW60=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVkEx4=" + }, + "model": { + "$ref": "AAAAAAFb3jUIuWXAKJE=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 32, + "top": 584, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFb47gbyGVuxi0=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVkEx4=" + }, + "model": { + "$ref": "AAAAAAFb3jUIuWXAKJE=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 32, + "top": 584, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 696, + "top": 752, + "width": 103, + "height": 58, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFb47gbyGVlvbY=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": false, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFb47gbyGVqfEs=" + }, + "operationCompartment": { + "$ref": "AAAAAAFb47gbyGVsNHU=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFb47gbyGVtW60=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFb47gbyGVuxi0=" + } + }, + { + "_type": "UMLGeneralizationView", + "_id": "AAAAAAFb47gbyGVvq5w=", + "_parent": { + "$ref": "AAAAAAFb47fYF2Gqw+c=" + }, + "model": { + "$ref": "AAAAAAFb3jVPCWZy1T0=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb47gbyGVwgV0=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVvq5w=" + }, + "model": { + "$ref": "AAAAAAFb3jVPCWZy1T0=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 708, + "top": 640, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFb47gbyGVvq5w=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb47gbyGVx/xY=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVvq5w=" + }, + "model": { + "$ref": "AAAAAAFb3jVPCWZy1T0=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 693, + "top": 643, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFb47gbyGVvq5w=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb47gbyGVy5Wc=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVvq5w=" + }, + "model": { + "$ref": "AAAAAAFb3jVPCWZy1T0=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 737, + "top": 635, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFb47gbyGVvq5w=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFb47gbyGVZIpg=" + }, + "tail": { + "$ref": "AAAAAAFb47gbyGVkEx4=" + }, + "lineStyle": 1, + "points": "742:751;704:538", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFb47gbyGVwgV0=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFb47gbyGVx/xY=" + }, + "propertyLabel": { + "$ref": "AAAAAAFb47gbyGVy5Wc=" + } + }, + { + "_type": "UMLGeneralizationView", + "_id": "AAAAAAFb47gbyGVzxCY=", + "_parent": { + "$ref": "AAAAAAFb47fYF2Gqw+c=" + }, + "model": { + "$ref": "AAAAAAFb3kEaT2fOTpE=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb47gbyGV0HFw=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVzxCY=" + }, + "model": { + "$ref": "AAAAAAFb3kEaT2fOTpE=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 652, + "top": 851, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFb47gbyGVzxCY=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb47gbyGV1eY0=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVzxCY=" + }, + "model": { + "$ref": "AAAAAAFb3kEaT2fOTpE=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 641, + "top": 841, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFb47gbyGVzxCY=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb47gbyGV2MVU=", + "_parent": { + "$ref": "AAAAAAFb47gbyGVzxCY=" + }, + "model": { + "$ref": "AAAAAAFb3kEaT2fOTpE=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 673, + "top": 872, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFb47gbyGVzxCY=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFb47gbyGVkEx4=" + }, + "tail": { + "$ref": "AAAAAAFb47gbx2UjNKQ=" + }, + "lineStyle": 1, + "points": "608:927;719:810", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFb47gbyGV0HFw=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFb47gbyGV1eY0=" + }, + "propertyLabel": { + "$ref": "AAAAAAFb47gbyGV2MVU=" + } + }, + { + "_type": "UMLGeneralizationView", + "_id": "AAAAAAFb47gbyGV3Zhk=", + "_parent": { + "$ref": "AAAAAAFb47fYF2Gqw+c=" + }, + "model": { + "$ref": "AAAAAAFb3kFje2irqtE=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb47gbyGV4rDo=", + "_parent": { + "$ref": "AAAAAAFb47gbyGV3Zhk=" + }, + "model": { + "$ref": "AAAAAAFb3kFje2irqtE=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 811, + "top": 879, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFb47gbyGV3Zhk=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb47gbyGV5dHE=", + "_parent": { + "$ref": "AAAAAAFb47gbyGV3Zhk=" + }, + "model": { + "$ref": "AAAAAAFb3kFje2irqtE=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 799, + "top": 888, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFb47gbyGV3Zhk=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb47gbyGV6pdY=", + "_parent": { + "$ref": "AAAAAAFb47gbyGV3Zhk=" + }, + "model": { + "$ref": "AAAAAAFb3kFje2irqtE=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 834, + "top": 860, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFb47gbyGV3Zhk=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFb47gbyGVkEx4=" + }, + "tail": { + "$ref": "AAAAAAFb47gbx2T3G6Q=" + }, + "lineStyle": 1, + "points": "875:943;771:810", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFb47gbyGV4rDo=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFb47gbyGV5dHE=" + }, + "propertyLabel": { + "$ref": "AAAAAAFb47gbyGV6pdY=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFb47gbyGV7UI0=", + "_parent": { + "$ref": "AAAAAAFb47fYF2Gqw+c=" + }, + "model": { + "$ref": "AAAAAAFb3kTOfXSFuMQ=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFb47gbyGV8zqo=", + "_parent": { + "$ref": "AAAAAAFb47gbyGV7UI0=" + }, + "model": { + "$ref": "AAAAAAFb3kTOfXSFuMQ=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbyGV9it8=", + "_parent": { + "$ref": "AAAAAAFb47gbyGV8zqo=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 243, + "top": -56, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbyGV+sR4=", + "_parent": { + "$ref": "AAAAAAFb47gbyGV8zqo=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;3", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 901, + "top": 319, + "width": 64, + "height": 13, + "autoResize": false, + "underline": false, + "text": "AbstractId", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbyGV/lRY=", + "_parent": { + "$ref": "AAAAAAFb47gbyGV8zqo=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 243, + "top": -56, + "width": 73, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from Model)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbyGWAyLg=", + "_parent": { + "$ref": "AAAAAAFb47gbyGV8zqo=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 243, + "top": -56, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 896, + "top": 312, + "width": 74, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFb47gbyGV9it8=" + }, + "nameLabel": { + "$ref": "AAAAAAFb47gbyGV+sR4=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFb47gbyGV/lRY=" + }, + "propertyLabel": { + "$ref": "AAAAAAFb47gbyGWAyLg=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFb47gbyGWBP0k=", + "_parent": { + "$ref": "AAAAAAFb47gbyGV7UI0=" + }, + "model": { + "$ref": "AAAAAAFb3kTOfXSFuMQ=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFb47gbyGWCcaA=", + "_parent": { + "$ref": "AAAAAAFb47gbyGWBP0k=" + }, + "model": { + "$ref": "AAAAAAFb40MubcZTmA8=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 901, + "top": 342, + "width": 64, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+id: ID", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 896, + "top": 337, + "width": 74, + "height": 23, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFb47gbyWWDf0U=", + "_parent": { + "$ref": "AAAAAAFb47gbyGV7UI0=" + }, + "model": { + "$ref": "AAAAAAFb3kTOfXSFuMQ=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 896, + "top": 360, + "width": 74, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFb47gbyWWEe9M=", + "_parent": { + "$ref": "AAAAAAFb47gbyGV7UI0=" + }, + "model": { + "$ref": "AAAAAAFb3kTOfXSFuMQ=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 88, + "top": 152, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFb47gbyWWFk28=", + "_parent": { + "$ref": "AAAAAAFb47gbyGV7UI0=" + }, + "model": { + "$ref": "AAAAAAFb3kTOfXSFuMQ=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 88, + "top": 152, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 896, + "top": 312, + "width": 74, + "height": 58, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFb47gbyGV8zqo=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": false, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFb47gbyGWBP0k=" + }, + "operationCompartment": { + "$ref": "AAAAAAFb47gbyWWDf0U=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFb47gbyWWEe9M=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFb47gbyWWFk28=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFb47gbyWWGyJU=", + "_parent": { + "$ref": "AAAAAAFb47fYF2Gqw+c=" + }, + "model": { + "$ref": "AAAAAAFb4yyHv45fWz8=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFb47gbyWWHfJA=", + "_parent": { + "$ref": "AAAAAAFb47gbyWWGyJU=" + }, + "model": { + "$ref": "AAAAAAFb4yyHv45fWz8=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbyWWIWn0=", + "_parent": { + "$ref": "AAAAAAFb47gbyWWHfJA=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 1971, + "top": -1320, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbyWWJFxg=", + "_parent": { + "$ref": "AAAAAAFb47gbyWWHfJA=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 1029, + "top": 143, + "width": 114, + "height": 13, + "autoResize": false, + "underline": false, + "text": "RemoveTodoInput", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbyWWKgVM=", + "_parent": { + "$ref": "AAAAAAFb47gbyWWHfJA=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 1971, + "top": -1320, + "width": 73, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from Model)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbyWWLC+M=", + "_parent": { + "$ref": "AAAAAAFb47gbyWWHfJA=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 1971, + "top": -1320, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 1024, + "top": 136, + "width": 124, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFb47gbyWWIWn0=" + }, + "nameLabel": { + "$ref": "AAAAAAFb47gbyWWJFxg=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFb47gbyWWKgVM=" + }, + "propertyLabel": { + "$ref": "AAAAAAFb47gbyWWLC+M=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFb47gbyWWMmhI=", + "_parent": { + "$ref": "AAAAAAFb47gbyWWGyJU=" + }, + "model": { + "$ref": "AAAAAAFb4yyHv45fWz8=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 1024, + "top": 161, + "width": 124, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFb47gbyWWNYiI=", + "_parent": { + "$ref": "AAAAAAFb47gbyWWGyJU=" + }, + "model": { + "$ref": "AAAAAAFb4yyHv45fWz8=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 1024, + "top": 171, + "width": 124, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFb47gbyWWOx9c=", + "_parent": { + "$ref": "AAAAAAFb47gbyWWGyJU=" + }, + "model": { + "$ref": "AAAAAAFb4yyHv45fWz8=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 952, + "top": -480, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFb47gbyWWPdNM=", + "_parent": { + "$ref": "AAAAAAFb47gbyWWGyJU=" + }, + "model": { + "$ref": "AAAAAAFb4yyHv45fWz8=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 952, + "top": -480, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 1024, + "top": 136, + "width": 124, + "height": 73, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFb47gbyWWHfJA=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": false, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFb47gbyWWMmhI=" + }, + "operationCompartment": { + "$ref": "AAAAAAFb47gbyWWNYiI=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFb47gbyWWOx9c=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFb47gbyWWPdNM=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAFb47gbyWWQAKs=", + "_parent": { + "$ref": "AAAAAAFb47fYF2Gqw+c=" + }, + "model": { + "$ref": "AAAAAAFb4y5nMqFLIa4=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFb47gbyWWRzl4=", + "_parent": { + "$ref": "AAAAAAFb47gbyWWQAKs=" + }, + "model": { + "$ref": "AAAAAAFb4y5nMqFLIa4=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbyWWSQ80=", + "_parent": { + "$ref": "AAAAAAFb47gbyWWRzl4=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -109, + "top": -840, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbyWWTxTc=", + "_parent": { + "$ref": "AAAAAAFb47gbyWWRzl4=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;1", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 189, + "top": 383, + "width": 132, + "height": 13, + "autoResize": false, + "underline": false, + "text": "RemoveTodoPayload", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbyWWUDb4=", + "_parent": { + "$ref": "AAAAAAFb47gbyWWRzl4=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -109, + "top": -840, + "width": 73, + "height": 13, + "autoResize": false, + "underline": false, + "text": "(from Model)", + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "LabelView", + "_id": "AAAAAAFb47gbyWWVHfs=", + "_parent": { + "$ref": "AAAAAAFb47gbyWWRzl4=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -109, + "top": -840, + "width": 0, + "height": 13, + "autoResize": false, + "underline": false, + "horizontalAlignment": 1, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 184, + "top": 376, + "width": 142, + "height": 25, + "autoResize": false, + "stereotypeLabel": { + "$ref": "AAAAAAFb47gbyWWSQ80=" + }, + "nameLabel": { + "$ref": "AAAAAAFb47gbyWWTxTc=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFb47gbyWWUDb4=" + }, + "propertyLabel": { + "$ref": "AAAAAAFb47gbyWWVHfs=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFb47gbyWWW/PA=", + "_parent": { + "$ref": "AAAAAAFb47gbyWWQAKs=" + }, + "model": { + "$ref": "AAAAAAFb4y5nMqFLIa4=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFb47gbyWWXb0s=", + "_parent": { + "$ref": "AAAAAAFb47gbyWWW/PA=" + }, + "model": { + "$ref": "AAAAAAFb4y69KaIFquM=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 189, + "top": 406, + "width": 132, + "height": 13, + "autoResize": false, + "underline": false, + "text": "+todo: Todo", + "horizontalAlignment": 0, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 184, + "top": 401, + "width": 142, + "height": 23, + "autoResize": false + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFb47gbyWWYPvE=", + "_parent": { + "$ref": "AAAAAAFb47gbyWWQAKs=" + }, + "model": { + "$ref": "AAAAAAFb4y5nMqFLIa4=" + }, + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 184, + "top": 424, + "width": 142, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAFb47gbyWWZz1k=", + "_parent": { + "$ref": "AAAAAAFb47gbyWWQAKs=" + }, + "model": { + "$ref": "AAAAAAFb4y5nMqFLIa4=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -88, + "top": -240, + "width": 10, + "height": 10, + "autoResize": false + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFb47gbyWWaUUU=", + "_parent": { + "$ref": "AAAAAAFb47gbyWWQAKs=" + }, + "model": { + "$ref": "AAAAAAFb4y5nMqFLIa4=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": -88, + "top": -240, + "width": 10, + "height": 10, + "autoResize": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": true, + "containerExtending": false, + "left": 184, + "top": 376, + "width": 142, + "height": 73, + "autoResize": false, + "stereotypeDisplay": "label", + "showVisibility": true, + "showNamespace": false, + "showProperty": true, + "showType": true, + "nameCompartment": { + "$ref": "AAAAAAFb47gbyWWRzl4=" + }, + "wordWrap": false, + "suppressAttributes": false, + "suppressOperations": false, + "suppressReceptions": true, + "showMultiplicity": true, + "showOperationSignature": true, + "attributeCompartment": { + "$ref": "AAAAAAFb47gbyWWW/PA=" + }, + "operationCompartment": { + "$ref": "AAAAAAFb47gbyWWYPvE=" + }, + "receptionCompartment": { + "$ref": "AAAAAAFb47gbyWWZz1k=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFb47gbyWWaUUU=" + } + }, + { + "_type": "UMLGeneralizationView", + "_id": "AAAAAAFb47gbyWWbJ/U=", + "_parent": { + "$ref": "AAAAAAFb47fYF2Gqw+c=" + }, + "model": { + "$ref": "AAAAAAFb44IluuBJuvg=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb47gbyWWcLX4=", + "_parent": { + "$ref": "AAAAAAFb47gbyWWbJ/U=" + }, + "model": { + "$ref": "AAAAAAFb44IluuBJuvg=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 825, + "top": 429, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFb47gbyWWbJ/U=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb47gbyWWdOeI=", + "_parent": { + "$ref": "AAAAAAFb47gbyWWbJ/U=" + }, + "model": { + "$ref": "AAAAAAFb44IluuBJuvg=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 834, + "top": 441, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFb47gbyWWbJ/U=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb47gbyWWeqVE=", + "_parent": { + "$ref": "AAAAAAFb47gbyWWbJ/U=" + }, + "model": { + "$ref": "AAAAAAFb44IluuBJuvg=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 808, + "top": 404, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFb47gbyWWbJ/U=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFb47gbyGVZIpg=" + }, + "tail": { + "$ref": "AAAAAAFb47gbyGV7UI0=" + }, + "lineStyle": 1, + "points": "895:367;739:479", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFb47gbyWWcLX4=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFb47gbyWWdOeI=" + }, + "propertyLabel": { + "$ref": "AAAAAAFb47gbyWWeqVE=" + } + }, + { + "_type": "UMLGeneralizationView", + "_id": "AAAAAAFb47gbyWWfrtQ=", + "_parent": { + "$ref": "AAAAAAFb47fYF2Gqw+c=" + }, + "model": { + "$ref": "AAAAAAFb44JtY+/SusY=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb47gbyWWgOYk=", + "_parent": { + "$ref": "AAAAAAFb47gbyWWfrtQ=" + }, + "model": { + "$ref": "AAAAAAFb44JtY+/SusY=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 641, + "top": 334, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFb47gbyWWfrtQ=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb47gbyWWh/Kg=", + "_parent": { + "$ref": "AAAAAAFb47gbyWWfrtQ=" + }, + "model": { + "$ref": "AAAAAAFb44JtY+/SusY=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 655, + "top": 328, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFb47gbyWWfrtQ=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb47gbyWWiY7I=", + "_parent": { + "$ref": "AAAAAAFb47gbyWWfrtQ=" + }, + "model": { + "$ref": "AAAAAAFb44JtY+/SusY=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 614, + "top": 347, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFb47gbyWWfrtQ=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFb47gbyGVZIpg=" + }, + "tail": { + "$ref": "AAAAAAFb47gbyGVEfvA=" + }, + "lineStyle": 1, + "points": "570:215;686:479", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFb47gbyWWgOYk=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFb47gbyWWh/Kg=" + }, + "propertyLabel": { + "$ref": "AAAAAAFb47gbyWWiY7I=" + } + }, + { + "_type": "UMLGeneralizationView", + "_id": "AAAAAAFb47gbyWWjauQ=", + "_parent": { + "$ref": "AAAAAAFb47fYF2Gqw+c=" + }, + "model": { + "$ref": "AAAAAAFb44KvrvEg4Ew=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb47gbyWWk2DA=", + "_parent": { + "$ref": "AAAAAAFb47gbyWWjauQ=" + }, + "model": { + "$ref": "AAAAAAFb44KvrvEg4Ew=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 694, + "top": 930, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFb47gbyWWjauQ=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb47gbyWWlV/0=", + "_parent": { + "$ref": "AAAAAAFb47gbyWWjauQ=" + }, + "model": { + "$ref": "AAAAAAFb44KvrvEg4Ew=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 679, + "top": 927, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFb47gbyWWjauQ=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb47gbyWWmviQ=", + "_parent": { + "$ref": "AAAAAAFb47gbyWWjauQ=" + }, + "model": { + "$ref": "AAAAAAFb44KvrvEg4Ew=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 723, + "top": 937, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFb47gbyWWjauQ=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFb47gbyGVkEx4=" + }, + "tail": { + "$ref": "AAAAAAFb47gbyGVOMJE=" + }, + "lineStyle": 1, + "points": "678:1071;740:810", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFb47gbyWWk2DA=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFb47gbyWWlV/0=" + }, + "propertyLabel": { + "$ref": "AAAAAAFb47gbyWWmviQ=" + } + }, + { + "_type": "UMLGeneralizationView", + "_id": "AAAAAAFb47gbyWWnICw=", + "_parent": { + "$ref": "AAAAAAFb47fYF2Gqw+c=" + }, + "model": { + "$ref": "AAAAAAFb44NHugA8k8g=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb47gbyWWombA=", + "_parent": { + "$ref": "AAAAAAFb47gbyWWnICw=" + }, + "model": { + "$ref": "AAAAAAFb44NHugA8k8g=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 930, + "top": 479, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFb47gbyWWnICw=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb47gbyWWpFKg=", + "_parent": { + "$ref": "AAAAAAFb47gbyWWnICw=" + }, + "model": { + "$ref": "AAAAAAFb44NHugA8k8g=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 915, + "top": 480, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFb47gbyWWnICw=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb47gbyWWqloI=", + "_parent": { + "$ref": "AAAAAAFb47gbyWWnICw=" + }, + "model": { + "$ref": "AAAAAAFb44NHugA8k8g=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 959, + "top": 476, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFb47gbyWWnICw=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFb47gbyGV7UI0=" + }, + "tail": { + "$ref": "AAAAAAFb47gbx2UNULs=" + }, + "lineStyle": 1, + "points": "956:599;935:370", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFb47gbyWWombA=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFb47gbyWWpFKg=" + }, + "propertyLabel": { + "$ref": "AAAAAAFb47gbyWWqloI=" + } + }, + { + "_type": "UMLGeneralizationView", + "_id": "AAAAAAFb47gbyWWrGwQ=", + "_parent": { + "$ref": "AAAAAAFb47fYF2Gqw+c=" + }, + "model": { + "$ref": "AAAAAAFb44OQqwUQ0Pw=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb47gbyWWsgns=", + "_parent": { + "$ref": "AAAAAAFb47gbyWWrGwQ=" + }, + "model": { + "$ref": "AAAAAAFb44OQqwUQ0Pw=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 471, + "top": 519, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFb47gbyWWrGwQ=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb47gbyWWtlSM=", + "_parent": { + "$ref": "AAAAAAFb47gbyWWrGwQ=" + }, + "model": { + "$ref": "AAAAAAFb44OQqwUQ0Pw=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 469, + "top": 504, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFb47gbyWWrGwQ=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb47gbyWWuW6Q=", + "_parent": { + "$ref": "AAAAAAFb47gbyWWrGwQ=" + }, + "model": { + "$ref": "AAAAAAFb44OQqwUQ0Pw=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 476, + "top": 548, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFb47gbyWWrGwQ=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFb47gbyGVZIpg=" + }, + "tail": { + "$ref": "AAAAAAFb47gbxmTsMAM=" + }, + "lineStyle": 1, + "points": "326:562;623:519", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFb47gbyWWsgns=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFb47gbyWWtlSM=" + }, + "propertyLabel": { + "$ref": "AAAAAAFb47gbyWWuW6Q=" + } + }, + { + "_type": "UMLGeneralizationView", + "_id": "AAAAAAFb47gbyWWvXrk=", + "_parent": { + "$ref": "AAAAAAFb47fYF2Gqw+c=" + }, + "model": { + "$ref": "AAAAAAFb44Pi1ghtgBk=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb47gbyWWwTKY=", + "_parent": { + "$ref": "AAAAAAFb47gbyWWvXrk=" + }, + "model": { + "$ref": "AAAAAAFb44Pi1ghtgBk=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 548, + "top": 387, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFb47gbyWWvXrk=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb47gbyWWxL08=", + "_parent": { + "$ref": "AAAAAAFb47gbyWWvXrk=" + }, + "model": { + "$ref": "AAAAAAFb44Pi1ghtgBk=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 556, + "top": 374, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFb47gbyWWvXrk=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb47gbyWWy604=", + "_parent": { + "$ref": "AAAAAAFb47gbyWWvXrk=" + }, + "model": { + "$ref": "AAAAAAFb44Pi1ghtgBk=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 531, + "top": 412, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFb47gbyWWvXrk=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFb47gbyGVZIpg=" + }, + "tail": { + "$ref": "AAAAAAFb47gbx2UYino=" + }, + "lineStyle": 1, + "points": "427:334;654:479", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFb47gbyWWwTKY=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFb47gbyWWxL08=" + }, + "propertyLabel": { + "$ref": "AAAAAAFb47gbyWWy604=" + } + }, + { + "_type": "UMLGeneralizationView", + "_id": "AAAAAAFb47gbyWWz174=", + "_parent": { + "$ref": "AAAAAAFb47fYF2Gqw+c=" + }, + "model": { + "$ref": "AAAAAAFb44QOjApKkWE=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb47gbyWW0spk=", + "_parent": { + "$ref": "AAAAAAFb47gbyWWz174=" + }, + "model": { + "$ref": "AAAAAAFb44QOjApKkWE=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 537, + "top": 606, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFb47gbyWWz174=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb47gbyWW1VyA=", + "_parent": { + "$ref": "AAAAAAFb47gbyWWz174=" + }, + "model": { + "$ref": "AAAAAAFb44QOjApKkWE=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 528, + "top": 594, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFb47gbyWWz174=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb47gbyWW2FOw=", + "_parent": { + "$ref": "AAAAAAFb47gbyWWz174=" + }, + "model": { + "$ref": "AAAAAAFb44QOjApKkWE=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 556, + "top": 629, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFb47gbyWWz174=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFb47gbyGVZIpg=" + }, + "tail": { + "$ref": "AAAAAAFb47gbx2U503E=" + }, + "lineStyle": 1, + "points": "435:711;660:538", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFb47gbyWW0spk=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFb47gbyWW1VyA=" + }, + "propertyLabel": { + "$ref": "AAAAAAFb47gbyWW2FOw=" + } + }, + { + "_type": "UMLGeneralizationView", + "_id": "AAAAAAFb47gbyWW3ebc=", + "_parent": { + "$ref": "AAAAAAFb47fYF2Gqw+c=" + }, + "model": { + "$ref": "AAAAAAFb44SGRhdXA/8=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb47gbyWW45Sw=", + "_parent": { + "$ref": "AAAAAAFb47gbyWW3ebc=" + }, + "model": { + "$ref": "AAAAAAFb44SGRhdXA/8=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 477, + "top": 439, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFb47gbyWW3ebc=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb47gbyWW5K5s=", + "_parent": { + "$ref": "AAAAAAFb47gbyWW3ebc=" + }, + "model": { + "$ref": "AAAAAAFb44SGRhdXA/8=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 480, + "top": 424, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFb47gbyWW3ebc=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb47gbyWW6wqE=", + "_parent": { + "$ref": "AAAAAAFb47gbyWW3ebc=" + }, + "model": { + "$ref": "AAAAAAFb44SGRhdXA/8=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 470, + "top": 468, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFb47gbyWW3ebc=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFb47gbyGVZIpg=" + }, + "tail": { + "$ref": "AAAAAAFb47gbyWWQAKs=" + }, + "lineStyle": 1, + "points": "326:428;623:492", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFb47gbyWW45Sw=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFb47gbyWW5K5s=" + }, + "propertyLabel": { + "$ref": "AAAAAAFb47gbyWW6wqE=" + } + }, + { + "_type": "UMLGeneralizationView", + "_id": "AAAAAAFb47gbyWW7cik=", + "_parent": { + "$ref": "AAAAAAFb47fYF2Gqw+c=" + }, + "model": { + "$ref": "AAAAAAFb44S8DRsGy60=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb47gbyWW81s0=", + "_parent": { + "$ref": "AAAAAAFb47gbyWW7cik=" + }, + "model": { + "$ref": "AAAAAAFb44S8DRsGy60=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 1032, + "top": 345, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFb47gbyWW7cik=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb47gbyWW9XoE=", + "_parent": { + "$ref": "AAAAAAFb47gbyWW7cik=" + }, + "model": { + "$ref": "AAAAAAFb44S8DRsGy60=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 1032, + "top": 360, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFb47gbyWW7cik=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb47gbyWW+0cU=", + "_parent": { + "$ref": "AAAAAAFb47gbyWW7cik=" + }, + "model": { + "$ref": "AAAAAAFb44S8DRsGy60=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 1031, + "top": 316, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFb47gbyWW7cik=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFb47gbyGV7UI0=" + }, + "tail": { + "$ref": "AAAAAAFb47gbx2Uu0ng=" + }, + "lineStyle": 1, + "points": "1095:335;970:339", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFb47gbyWW81s0=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFb47gbyWW9XoE=" + }, + "propertyLabel": { + "$ref": "AAAAAAFb47gbyWW+0cU=" + } + }, + { + "_type": "UMLGeneralizationView", + "_id": "AAAAAAFb47gbyWW/OP4=", + "_parent": { + "$ref": "AAAAAAFb47fYF2Gqw+c=" + }, + "model": { + "$ref": "AAAAAAFb44Uv8SC/33I=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb47gbyWXARLs=", + "_parent": { + "$ref": "AAAAAAFb47gbyWW/OP4=" + }, + "model": { + "$ref": "AAAAAAFb44Uv8SC/33I=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 1015, + "top": 264, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFb47gbyWW/OP4=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb47gbyWXB978=", + "_parent": { + "$ref": "AAAAAAFb47gbyWW/OP4=" + }, + "model": { + "$ref": "AAAAAAFb44Uv8SC/33I=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 1026, + "top": 274, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFb47gbyWW/OP4=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb47gbyWXC64g=", + "_parent": { + "$ref": "AAAAAAFb47gbyWW/OP4=" + }, + "model": { + "$ref": "AAAAAAFb44Uv8SC/33I=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 992, + "top": 243, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFb47gbyWW/OP4=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFb47gbyGV7UI0=" + }, + "tail": { + "$ref": "AAAAAAFb47gbyWWGyJU=" + }, + "lineStyle": 1, + "points": "1051:209;958:311", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFb47gbyWXARLs=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFb47gbyWXB978=" + }, + "propertyLabel": { + "$ref": "AAAAAAFb47gbyWXC64g=" + } + }, + { + "_type": "UMLGeneralizationView", + "_id": "AAAAAAFb47gbyWXDO5s=", + "_parent": { + "$ref": "AAAAAAFb47fYF2Gqw+c=" + }, + "model": { + "$ref": "AAAAAAFb44V+SySxQUo=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb47gbyWXE1Gc=", + "_parent": { + "$ref": "AAAAAAFb47gbyWXDO5s=" + }, + "model": { + "$ref": "AAAAAAFb44V+SySxQUo=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 1022, + "top": 429, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFb47gbyWXDO5s=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb47gbyWXFHKU=", + "_parent": { + "$ref": "AAAAAAFb47gbyWXDO5s=" + }, + "model": { + "$ref": "AAAAAAFb44V+SySxQUo=" + }, + "visible": null, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 1012, + "top": 440, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFb47gbyWXDO5s=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFb47gbyWXG2L4=", + "_parent": { + "$ref": "AAAAAAFb47gbyWXDO5s=" + }, + "model": { + "$ref": "AAAAAAFb44V+SySxQUo=" + }, + "visible": false, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "left": 1041, + "top": 406, + "width": 0, + "height": 13, + "autoResize": false, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFb47gbyWXDO5s=" + }, + "edgePosition": 1, + "underline": false, + "horizontalAlignment": 2, + "verticalAlignment": 5, + "wordWrap": false + } + ], + "visible": true, + "enabled": true, + "lineColor": "#000000", + "fillColor": "#ffffff", + "fontColor": "#000000", + "font": "Arial;13;0", + "showShadow": true, + "containerChangeable": false, + "containerExtending": false, + "head": { + "$ref": "AAAAAAFb47gbyGV7UI0=" + }, + "tail": { + "$ref": "AAAAAAFb47gbx2UCB4I=" + }, + "lineStyle": 1, + "points": "1097:479;968:370", + "stereotypeDisplay": "label", + "showVisibility": true, + "showProperty": true, + "nameLabel": { + "$ref": "AAAAAAFb47gbyWXE1Gc=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFb47gbyWXFHKU=" + }, + "propertyLabel": { + "$ref": "AAAAAAFb47gbyWXG2L4=" + } + } + ] + } + ], + "visibility": "public" + } + ] +} \ No newline at end of file diff --git a/test/reverse/ast/enumAST.json b/test/reverse/ast/enumAST.json new file mode 100644 index 0000000..35c0226 --- /dev/null +++ b/test/reverse/ast/enumAST.json @@ -0,0 +1,19 @@ +{ + type: "ENUM", + name: "Episode", + description: "One of the films in the Star Wars Trilogy", + values: [ + { + description: "Released in 1977.", + name: "NEWHOPE" + }, + { + description: "Released in 1980.", + name: "EMPIRE" + }, + { + description: "Released in 1983.", + name: "JEDI" + } + ] + } \ No newline at end of file diff --git a/test/reverse/ast/sampleAST.json b/test/reverse/ast/sampleAST.json new file mode 100644 index 0000000..1279b1b --- /dev/null +++ b/test/reverse/ast/sampleAST.json @@ -0,0 +1,194 @@ +[ + { + "type": "INTERFACE", + "name": "Character", + "description": "A character in the Star Wars Trilogy", + "fields": { + "id": { + "type": "ID", + "required": true, + "description": "The id of the character." + }, + "name": { + "type": "String", + "description": "The name of the character." + }, + "friends": { + "type": { + "type": "Character" + }, + "array": true, + "description": "The friends of the character, or an empty list if they have none." + }, + "appearsIn": { + "type": { + "type": "Episode" + }, + "array": true, + "description": "Which movies they appear in." + }, + "secretBackstory": { + "type": "String", + "description": "All secrets about their past." + } + } + }, + { + "type": "TYPE", + "name": "Droid", + "description": "A mechanical creature in the Star Wars universe.", + "fields": { + "id": { + "type": "ID", + "required": true, + "description": "The id of the droid." + }, + "name": { + "type": "String", + "description": "The name of the droid." + }, + "friends": { + "type": { + "type": "Character" + }, + "array": true, + "description": "The friends of the droid, or an empty list if they have none." + }, + "appearsIn": { + "type": { + "type": "Episode" + }, + "array": true, + "description": "Which movies they appear in." + }, + "secretBackstory": { + "type": "String", + "description": "Construction date and the name of the designer." + }, + "primaryFunction": { + "type": "String", + "description": "The primary function of the droid." + } + }, + "implements": [ + "Character" + ] + }, + { + "type": "ENUM", + "name": "Episode", + "description": "One of the films in the Star Wars Trilogy", + "values": [ + { + "description": "Released in 1977.", + "name": "NEWHOPE" + }, + { + "description": "Released in 1980.", + "name": "EMPIRE" + }, + { + "description": "Released in 1983.", + "name": "JEDI" + } + ] + }, + { + "type": "TYPE", + "name": "Human", + "description": "A humanoid creature in the Star Wars universe.", + "fields": { + "id": { + "type": "ID", + "required": true, + "description": "The id of the human." + }, + "name": { + "type": "String", + "description": "The name of the human." + }, + "friends": { + "type": { + "type": "Character" + }, + "array": true, + "description": "The friends of the human, or an empty list if they have none." + }, + "appearsIn": { + "type": { + "type": "Episode" + }, + "array": true, + "description": "Which movies they appear in." + }, + "homePlanet": { + "type": "String", + "description": "The home planet of the human, or null if unknown." + }, + "secretBackstory": { + "type": "String", + "description": "Where are they from and how they came to be who they are." + } + }, + "implements": [ + "Character" + ] + }, + { + "type": "TYPE", + "name": "Mutation", + "description": "Root Mutation", + "fields": { + "favorite": { + "type": "Episode", + "args": { + "episode": { + "type": "Episode", + "required": true, + "description": "Favorite episode." + } + }, + "description": "Save the favorite episode." + } + } + }, + { + "type": "TYPE", + "name": "Query", + "description": "Root query", + "fields": { + "hero": { + "type": "Character", + "args": { + "episode": { + "type": "Episode", + "description": "If omitted, returns the hero of the whole saga. If provided, returns the hero of that particular episode." + } + }, + "description": "Return the hero by episode." + }, + "human": { + "type": "Human", + "args": { + "id": { + "type": "ID", + "required": true, + "description": "id of the human" + } + }, + "description": "Return the Human by ID." + }, + "droid": { + "type": "Droid", + "args": { + "id": { + "type": "ID", + "required": true, + "description": "id of the droid" + } + }, + "description": "Return the Droid by ID." + } + } + } +] \ No newline at end of file diff --git a/test/reverse/ast/typeAST.json b/test/reverse/ast/typeAST.json new file mode 100644 index 0000000..979a432 --- /dev/null +++ b/test/reverse/ast/typeAST.json @@ -0,0 +1,27 @@ +{ + "type": "INTERFACE", + "name": "Character", + "description": "A character in the Star Wars Trilogy", + "fields": { + "id": { + "type": "ID", + "required": true, + "description": "The id of the character." + }, + "name": { + "type": "String", + "description": "The name of the character." + }, + "friends": { + "type": { + "type": "Character" + }, + "array": true, + "description": "The friends of the character, or an empty list if they have none." + }, + "secretBackstory": { + "type": "String", + "description": "All secrets about their past." + } + } +} \ No newline at end of file diff --git a/test/reverse/complex/starwars.graphql b/test/reverse/complex/starwars.graphql new file mode 100644 index 0000000..75d43a5 --- /dev/null +++ b/test/reverse/complex/starwars.graphql @@ -0,0 +1,101 @@ +# A character in the Star Wars Trilogy +interface Character { + # The id of the character. + id: ID! + + # The name of the character. + name: String + + # The friends of the character, or an empty list if they have none. + friends: [Character] + + # Which movies they appear in. + appearsIn: [Episode] + + # All secrets about their past. + secretBackstory: String +} + +# A mechanical creature in the Star Wars universe. +type Droid implements Character { + # The id of the droid. + id: ID! + + # The name of the droid. + name: String + + # The friends of the droid, or an empty list if they have none. + friends: [Character] + + # Which movies they appear in. + appearsIn: [Episode] + + # Construction date and the name of the designer. + secretBackstory: String + + # The primary function of the droid. + primaryFunction: String +} + +# One of the films in the Star Wars Trilogy +enum Episode { + # Released in 1977. + NEWHOPE + + # Released in 1980. + EMPIRE + + # Released in 1983. + JEDI +} + +# A humanoid creature in the Star Wars universe. +type Human implements Character { + # The id of the human. + id: ID! + + # The name of the human. + name: String + + # The friends of the human, or an empty list if they have none. + friends: [Character] + + # Which movies they appear in. + appearsIn: [Episode] + + # The home planet of the human, or null if unknown. + homePlanet: String + + # Where are they from and how they came to be who they are. + secretBackstory: String +} + +# Root Mutation +type Mutation { + # Save the favorite episode. + favorite( + # Favorite episode. + episode: Episode! + ): Episode +} + +# Root query +type Query { + # Return the hero by episode. + hero( + # If omitted, returns the hero of the whole saga. If provided, returns the hero of that particular episode. + episode: Episode + ): Character + + # Return the Human by ID. + human( + # id of the human + id: ID! + ): Human + + # Return the Droid by ID. + droid( + # id of the droid + id: ID! + ): Droid +} \ No newline at end of file diff --git a/test/reverse/reverse/enum.graphql b/test/reverse/reverse/enum.graphql new file mode 100644 index 0000000..81a49af --- /dev/null +++ b/test/reverse/reverse/enum.graphql @@ -0,0 +1,11 @@ + # One of the films in the Star Wars Trilogy + enum Episode { + # Released in 1977. + NEWHOPE + + # Released in 1980. + EMPIRE + + # Released in 1983. + JEDI +} \ No newline at end of file diff --git a/test/reverse/reverse/interface.graphql b/test/reverse/reverse/interface.graphql new file mode 100644 index 0000000..44f27df --- /dev/null +++ b/test/reverse/reverse/interface.graphql @@ -0,0 +1,18 @@ + +# This is a test interface +interface Character { + # The id of the character. + id: ID! + + # The name of the character. + name: String + + # The friends of the character, or an empty list if they have none. + friends: [String] + + # Which movies they appear in. + appearsIn: [String] + + # All secrets about their past. + secretBackstory: String +} \ No newline at end of file diff --git a/test/reverse/reverse/type.graphql b/test/reverse/reverse/type.graphql new file mode 100644 index 0000000..549a7a4 --- /dev/null +++ b/test/reverse/reverse/type.graphql @@ -0,0 +1,20 @@ +# A mechanical creature in the Star Wars universe. +type Droid { + # The id of the droid. + id: ID! + + # The name of the droid. + name: String + + # The friends of the droid, or an empty list if they have none. + friends: [String] + + # Which movies they appear in. + appearsIn: [String] + + # Construction date and the name of the designer. + secretBackstory: String + + # The primary function of the droid. + primaryFunction: String +}