├── LICENSE ├── README.md ├── cad ├── container.step ├── lid.step ├── lifter.step ├── nozzel_adapter.step ├── pcb_holder_1.step └── stencil_fix.f3d └── stl ├── container.3mf ├── container.stl ├── lid.3mf ├── lid.stl ├── lifter.3mf ├── lifter.stl ├── nozzel_adapter.3mf ├── nozzel_adapter.stl ├── pcb_holder.3mf └── pcb_holder.stl /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Stencil Fix 2 | Stencil Fix is a jig for tightly holding a PCB and stencil in place using a vacuum cleaner. This makes applying solder paste a much more reliable task without expensive stencil holders. 3 | 4 | [![Stencil Fix YouTube video](https://i.ytimg.com/vi/F9zNtQTpbms/maxresdefault.jpg)](http://www.youtube.com/watch?v=F9zNtQTpbms "Stencil Fix - Simplify your PCB assembly with this 3D printable jig") 5 | 6 | ## Assembly 7 | You can watch the video for a step by step assembly or take a look at the model in Fusion 360. 8 | 9 | **BOM** 10 | | Part | Amount | 11 | |---|---| 12 | | [M3*20 Socket Head Screw](https://www.mcmaster.com/91292A123) | 4 | 13 | | [M3*8 Socket Head Screw](https://www.mcmaster.com/91292A112/) | 4 | 14 | | 9.12x34.9 Compression Spring | 4 | 15 | 16 | I got the springs from a cheap assortment off of ebay. Something like [this](https://www.ebay.com.au/itm/155259928566). 17 | -------------------------------------------------------------------------------- /cad/container.step: -------------------------------------------------------------------------------- 1 | ISO-10303-21; 2 | HEADER; 3 | /* Generated by software containing ST-Developer 4 | * from STEP Tools, Inc. (www.steptools.com) 5 | */ 6 | 7 | FILE_DESCRIPTION( 8 | /* description */ (''), 9 | /* implementation_level */ '2;1'); 10 | 11 | FILE_NAME( 12 | /* name */ 'container.step', 13 | /* time_stamp */ '2023-09-21T20:35:14+10:00', 14 | /* author */ (''), 15 | /* organization */ (''), 16 | /* preprocessor_version */ 'ST-DEVELOPER v20', 17 | /* originating_system */ 'Autodesk Translation Framework v12.9.0.99', 18 | /* authorisation */ ''); 19 | 20 | FILE_SCHEMA (('AUTOMOTIVE_DESIGN { 1 0 10303 214 3 1 1 }')); 21 | ENDSEC; 22 | 23 | DATA; 24 | #10=MECHANICAL_DESIGN_GEOMETRIC_PRESENTATION_REPRESENTATION('',(#13),#1976); 25 | #11=SHAPE_REPRESENTATION_RELATIONSHIP('SRR','None',#1983,#12); 26 | #12=ADVANCED_BREP_SHAPE_REPRESENTATION('',(#14),#1975); 27 | #13=STYLED_ITEM('',(#1993),#14); 28 | #14=MANIFOLD_SOLID_BREP('Body1',#1094); 29 | #15=TOROIDAL_SURFACE('',#1156,4.5,1.); 30 | #16=TOROIDAL_SURFACE('',#1161,4.5,1.); 31 | #17=TOROIDAL_SURFACE('',#1166,4.5,1.); 32 | #18=TOROIDAL_SURFACE('',#1171,4.5,1.); 33 | #19=TOROIDAL_SURFACE('',#1176,8.,2.); 34 | #20=TOROIDAL_SURFACE('',#1190,8.,2.); 35 | #21=TOROIDAL_SURFACE('',#1197,7.99999999999999,2.); 36 | #22=TOROIDAL_SURFACE('',#1204,7.99999999999999,2.); 37 | #23=TOROIDAL_SURFACE('',#1214,6.00000000000001,2.); 38 | #24=TOROIDAL_SURFACE('',#1219,6.00000000000001,2.); 39 | #25=TOROIDAL_SURFACE('',#1224,6.,2.); 40 | #26=TOROIDAL_SURFACE('',#1229,6.,2.); 41 | #27=CYLINDRICAL_SURFACE('',#1113,1.80000000000001); 42 | #28=CYLINDRICAL_SURFACE('',#1117,3.5); 43 | #29=CYLINDRICAL_SURFACE('',#1125,1.8); 44 | #30=CYLINDRICAL_SURFACE('',#1129,3.5); 45 | #31=CYLINDRICAL_SURFACE('',#1137,1.8); 46 | #32=CYLINDRICAL_SURFACE('',#1141,3.5); 47 | #33=CYLINDRICAL_SURFACE('',#1149,1.80000000000001); 48 | #34=CYLINDRICAL_SURFACE('',#1153,3.5); 49 | #35=CYLINDRICAL_SURFACE('',#1189,6.); 50 | #36=CYLINDRICAL_SURFACE('',#1196,6.); 51 | #37=CYLINDRICAL_SURFACE('',#1203,5.99999999999999); 52 | #38=CYLINDRICAL_SURFACE('',#1210,5.99999999999999); 53 | #39=CYLINDRICAL_SURFACE('',#1211,2.); 54 | #40=CYLINDRICAL_SURFACE('',#1217,2.); 55 | #41=CYLINDRICAL_SURFACE('',#1222,2.); 56 | #42=CYLINDRICAL_SURFACE('',#1227,2.); 57 | #43=CYLINDRICAL_SURFACE('',#1231,8.00000000000001); 58 | #44=CYLINDRICAL_SURFACE('',#1234,8.00000000000001); 59 | #45=CYLINDRICAL_SURFACE('',#1241,10.); 60 | #46=CYLINDRICAL_SURFACE('',#1245,8.); 61 | #47=CYLINDRICAL_SURFACE('',#1248,8.); 62 | #48=CYLINDRICAL_SURFACE('',#1255,10.); 63 | #49=CYLINDRICAL_SURFACE('',#1258,10.); 64 | #50=CYLINDRICAL_SURFACE('',#1261,10.); 65 | #51=CYLINDRICAL_SURFACE('',#1264,10.); 66 | #52=FACE_BOUND('',#164,.T.); 67 | #53=FACE_BOUND('',#170,.T.); 68 | #54=FACE_BOUND('',#176,.T.); 69 | #55=FACE_BOUND('',#182,.T.); 70 | #56=FACE_BOUND('',#188,.T.); 71 | #57=FACE_BOUND('',#191,.T.); 72 | #58=FACE_BOUND('',#194,.T.); 73 | #59=FACE_BOUND('',#197,.T.); 74 | #60=FACE_BOUND('',#229,.T.); 75 | #61=FACE_BOUND('',#234,.T.); 76 | #62=FACE_BOUND('',#243,.T.); 77 | #63=PLANE('',#1111); 78 | #64=PLANE('',#1123); 79 | #65=PLANE('',#1135); 80 | #66=PLANE('',#1147); 81 | #67=PLANE('',#1159); 82 | #68=PLANE('',#1164); 83 | #69=PLANE('',#1169); 84 | #70=PLANE('',#1174); 85 | #71=PLANE('',#1181); 86 | #72=PLANE('',#1183); 87 | #73=PLANE('',#1194); 88 | #74=PLANE('',#1201); 89 | #75=PLANE('',#1208); 90 | #76=PLANE('',#1233); 91 | #77=PLANE('',#1236); 92 | #78=PLANE('',#1237); 93 | #79=PLANE('',#1238); 94 | #80=PLANE('',#1239); 95 | #81=PLANE('',#1240); 96 | #82=PLANE('',#1244); 97 | #83=PLANE('',#1247); 98 | #84=PLANE('',#1250); 99 | #85=PLANE('',#1257); 100 | #86=PLANE('',#1260); 101 | #87=PLANE('',#1263); 102 | #88=PLANE('',#1266); 103 | #89=PLANE('',#1267); 104 | #90=FACE_OUTER_BOUND('',#162,.T.); 105 | #91=FACE_OUTER_BOUND('',#163,.T.); 106 | #92=FACE_OUTER_BOUND('',#165,.T.); 107 | #93=FACE_OUTER_BOUND('',#166,.T.); 108 | #94=FACE_OUTER_BOUND('',#167,.T.); 109 | #95=FACE_OUTER_BOUND('',#168,.T.); 110 | #96=FACE_OUTER_BOUND('',#169,.T.); 111 | #97=FACE_OUTER_BOUND('',#171,.T.); 112 | #98=FACE_OUTER_BOUND('',#172,.T.); 113 | #99=FACE_OUTER_BOUND('',#173,.T.); 114 | #100=FACE_OUTER_BOUND('',#174,.T.); 115 | #101=FACE_OUTER_BOUND('',#175,.T.); 116 | #102=FACE_OUTER_BOUND('',#177,.T.); 117 | #103=FACE_OUTER_BOUND('',#178,.T.); 118 | #104=FACE_OUTER_BOUND('',#179,.T.); 119 | #105=FACE_OUTER_BOUND('',#180,.T.); 120 | #106=FACE_OUTER_BOUND('',#181,.T.); 121 | #107=FACE_OUTER_BOUND('',#183,.T.); 122 | #108=FACE_OUTER_BOUND('',#184,.T.); 123 | #109=FACE_OUTER_BOUND('',#185,.T.); 124 | #110=FACE_OUTER_BOUND('',#186,.T.); 125 | #111=FACE_OUTER_BOUND('',#187,.T.); 126 | #112=FACE_OUTER_BOUND('',#189,.T.); 127 | #113=FACE_OUTER_BOUND('',#190,.T.); 128 | #114=FACE_OUTER_BOUND('',#192,.T.); 129 | #115=FACE_OUTER_BOUND('',#193,.T.); 130 | #116=FACE_OUTER_BOUND('',#195,.T.); 131 | #117=FACE_OUTER_BOUND('',#196,.T.); 132 | #118=FACE_OUTER_BOUND('',#198,.T.); 133 | #119=FACE_OUTER_BOUND('',#199,.T.); 134 | #120=FACE_OUTER_BOUND('',#200,.T.); 135 | #121=FACE_OUTER_BOUND('',#201,.T.); 136 | #122=FACE_OUTER_BOUND('',#202,.T.); 137 | #123=FACE_OUTER_BOUND('',#203,.T.); 138 | #124=FACE_OUTER_BOUND('',#204,.T.); 139 | #125=FACE_OUTER_BOUND('',#205,.T.); 140 | #126=FACE_OUTER_BOUND('',#206,.T.); 141 | #127=FACE_OUTER_BOUND('',#207,.T.); 142 | #128=FACE_OUTER_BOUND('',#208,.T.); 143 | #129=FACE_OUTER_BOUND('',#209,.T.); 144 | #130=FACE_OUTER_BOUND('',#210,.T.); 145 | #131=FACE_OUTER_BOUND('',#211,.T.); 146 | #132=FACE_OUTER_BOUND('',#212,.T.); 147 | #133=FACE_OUTER_BOUND('',#213,.T.); 148 | #134=FACE_OUTER_BOUND('',#214,.T.); 149 | #135=FACE_OUTER_BOUND('',#215,.T.); 150 | #136=FACE_OUTER_BOUND('',#216,.T.); 151 | #137=FACE_OUTER_BOUND('',#217,.T.); 152 | #138=FACE_OUTER_BOUND('',#218,.T.); 153 | #139=FACE_OUTER_BOUND('',#219,.T.); 154 | #140=FACE_OUTER_BOUND('',#220,.T.); 155 | #141=FACE_OUTER_BOUND('',#221,.T.); 156 | #142=FACE_OUTER_BOUND('',#222,.T.); 157 | #143=FACE_OUTER_BOUND('',#223,.T.); 158 | #144=FACE_OUTER_BOUND('',#224,.T.); 159 | #145=FACE_OUTER_BOUND('',#225,.T.); 160 | #146=FACE_OUTER_BOUND('',#226,.T.); 161 | #147=FACE_OUTER_BOUND('',#227,.T.); 162 | #148=FACE_OUTER_BOUND('',#228,.T.); 163 | #149=FACE_OUTER_BOUND('',#230,.T.); 164 | #150=FACE_OUTER_BOUND('',#231,.T.); 165 | #151=FACE_OUTER_BOUND('',#232,.T.); 166 | #152=FACE_OUTER_BOUND('',#233,.T.); 167 | #153=FACE_OUTER_BOUND('',#235,.T.); 168 | #154=FACE_OUTER_BOUND('',#236,.T.); 169 | #155=FACE_OUTER_BOUND('',#237,.T.); 170 | #156=FACE_OUTER_BOUND('',#238,.T.); 171 | #157=FACE_OUTER_BOUND('',#239,.T.); 172 | #158=FACE_OUTER_BOUND('',#240,.T.); 173 | #159=FACE_OUTER_BOUND('',#241,.T.); 174 | #160=FACE_OUTER_BOUND('',#242,.T.); 175 | #161=FACE_OUTER_BOUND('',#244,.T.); 176 | #162=EDGE_LOOP('',(#708,#709,#710,#711)); 177 | #163=EDGE_LOOP('',(#712)); 178 | #164=EDGE_LOOP('',(#713)); 179 | #165=EDGE_LOOP('',(#714,#715,#716,#717)); 180 | #166=EDGE_LOOP('',(#718,#719,#720,#721)); 181 | #167=EDGE_LOOP('',(#722,#723,#724,#725,#726)); 182 | #168=EDGE_LOOP('',(#727,#728,#729,#730)); 183 | #169=EDGE_LOOP('',(#731)); 184 | #170=EDGE_LOOP('',(#732)); 185 | #171=EDGE_LOOP('',(#733,#734,#735,#736)); 186 | #172=EDGE_LOOP('',(#737,#738,#739,#740)); 187 | #173=EDGE_LOOP('',(#741,#742,#743,#744,#745)); 188 | #174=EDGE_LOOP('',(#746,#747,#748,#749)); 189 | #175=EDGE_LOOP('',(#750)); 190 | #176=EDGE_LOOP('',(#751)); 191 | #177=EDGE_LOOP('',(#752,#753,#754,#755)); 192 | #178=EDGE_LOOP('',(#756,#757,#758,#759)); 193 | #179=EDGE_LOOP('',(#760,#761,#762,#763,#764)); 194 | #180=EDGE_LOOP('',(#765,#766,#767,#768)); 195 | #181=EDGE_LOOP('',(#769)); 196 | #182=EDGE_LOOP('',(#770)); 197 | #183=EDGE_LOOP('',(#771,#772,#773,#774)); 198 | #184=EDGE_LOOP('',(#775,#776,#777,#778)); 199 | #185=EDGE_LOOP('',(#779,#780,#781,#782,#783)); 200 | #186=EDGE_LOOP('',(#784,#785,#786,#787,#788)); 201 | #187=EDGE_LOOP('',(#789)); 202 | #188=EDGE_LOOP('',(#790)); 203 | #189=EDGE_LOOP('',(#791,#792,#793,#794,#795)); 204 | #190=EDGE_LOOP('',(#796)); 205 | #191=EDGE_LOOP('',(#797)); 206 | #192=EDGE_LOOP('',(#798,#799,#800,#801,#802)); 207 | #193=EDGE_LOOP('',(#803)); 208 | #194=EDGE_LOOP('',(#804)); 209 | #195=EDGE_LOOP('',(#805,#806,#807,#808,#809)); 210 | #196=EDGE_LOOP('',(#810)); 211 | #197=EDGE_LOOP('',(#811)); 212 | #198=EDGE_LOOP('',(#812,#813,#814,#815,#816)); 213 | #199=EDGE_LOOP('',(#817,#818,#819,#820)); 214 | #200=EDGE_LOOP('',(#821,#822,#823,#824,#825,#826,#827,#828,#829,#830)); 215 | #201=EDGE_LOOP('',(#831,#832,#833,#834)); 216 | #202=EDGE_LOOP('',(#835,#836,#837,#838,#839)); 217 | #203=EDGE_LOOP('',(#840,#841,#842,#843)); 218 | #204=EDGE_LOOP('',(#844,#845,#846,#847)); 219 | #205=EDGE_LOOP('',(#848,#849,#850,#851,#852,#853)); 220 | #206=EDGE_LOOP('',(#854,#855,#856,#857)); 221 | #207=EDGE_LOOP('',(#858,#859,#860,#861)); 222 | #208=EDGE_LOOP('',(#862,#863,#864,#865,#866,#867)); 223 | #209=EDGE_LOOP('',(#868,#869,#870,#871)); 224 | #210=EDGE_LOOP('',(#872,#873,#874,#875)); 225 | #211=EDGE_LOOP('',(#876,#877,#878,#879,#880,#881)); 226 | #212=EDGE_LOOP('',(#882,#883,#884,#885)); 227 | #213=EDGE_LOOP('',(#886,#887,#888,#889,#890,#891)); 228 | #214=EDGE_LOOP('',(#892,#893,#894,#895)); 229 | #215=EDGE_LOOP('',(#896,#897,#898,#899,#900,#901)); 230 | #216=EDGE_LOOP('',(#902,#903,#904,#905)); 231 | #217=EDGE_LOOP('',(#906,#907,#908,#909,#910,#911)); 232 | #218=EDGE_LOOP('',(#912,#913,#914,#915)); 233 | #219=EDGE_LOOP('',(#916,#917,#918,#919)); 234 | #220=EDGE_LOOP('',(#920,#921,#922,#923)); 235 | #221=EDGE_LOOP('',(#924,#925,#926,#927)); 236 | #222=EDGE_LOOP('',(#928,#929,#930,#931)); 237 | #223=EDGE_LOOP('',(#932)); 238 | #224=EDGE_LOOP('',(#933)); 239 | #225=EDGE_LOOP('',(#934)); 240 | #226=EDGE_LOOP('',(#935)); 241 | #227=EDGE_LOOP('',(#936,#937,#938,#939)); 242 | #228=EDGE_LOOP('',(#940,#941,#942,#943)); 243 | #229=EDGE_LOOP('',(#944)); 244 | #230=EDGE_LOOP('',(#945,#946,#947,#948)); 245 | #231=EDGE_LOOP('',(#949,#950,#951,#952)); 246 | #232=EDGE_LOOP('',(#953,#954,#955,#956)); 247 | #233=EDGE_LOOP('',(#957,#958,#959,#960,#961,#962,#963,#964)); 248 | #234=EDGE_LOOP('',(#965,#966,#967,#968,#969,#970,#971,#972)); 249 | #235=EDGE_LOOP('',(#973,#974,#975,#976)); 250 | #236=EDGE_LOOP('',(#977,#978,#979,#980)); 251 | #237=EDGE_LOOP('',(#981,#982,#983,#984)); 252 | #238=EDGE_LOOP('',(#985,#986,#987,#988)); 253 | #239=EDGE_LOOP('',(#989,#990,#991,#992)); 254 | #240=EDGE_LOOP('',(#993,#994,#995,#996)); 255 | #241=EDGE_LOOP('',(#997,#998,#999,#1000)); 256 | #242=EDGE_LOOP('',(#1001,#1002,#1003,#1004)); 257 | #243=EDGE_LOOP('',(#1005)); 258 | #244=EDGE_LOOP('',(#1006,#1007,#1008,#1009,#1010,#1011,#1012,#1013)); 259 | #245=LINE('',#1660,#310); 260 | #246=LINE('',#1667,#311); 261 | #247=LINE('',#1671,#312); 262 | #248=LINE('',#1675,#313); 263 | #249=LINE('',#1683,#314); 264 | #250=LINE('',#1690,#315); 265 | #251=LINE('',#1694,#316); 266 | #252=LINE('',#1698,#317); 267 | #253=LINE('',#1706,#318); 268 | #254=LINE('',#1713,#319); 269 | #255=LINE('',#1717,#320); 270 | #256=LINE('',#1721,#321); 271 | #257=LINE('',#1729,#322); 272 | #258=LINE('',#1736,#323); 273 | #259=LINE('',#1740,#324); 274 | #260=LINE('',#1744,#325); 275 | #261=LINE('',#1786,#326); 276 | #262=LINE('',#1789,#327); 277 | #263=LINE('',#1792,#328); 278 | #264=LINE('',#1796,#329); 279 | #265=LINE('',#1802,#330); 280 | #266=LINE('',#1807,#331); 281 | #267=LINE('',#1809,#332); 282 | #268=LINE('',#1817,#333); 283 | #269=LINE('',#1820,#334); 284 | #270=LINE('',#1822,#335); 285 | #271=LINE('',#1830,#336); 286 | #272=LINE('',#1833,#337); 287 | #273=LINE('',#1835,#338); 288 | #274=LINE('',#1843,#339); 289 | #275=LINE('',#1846,#340); 290 | #276=LINE('',#1848,#341); 291 | #277=LINE('',#1853,#342); 292 | #278=LINE('',#1862,#343); 293 | #279=LINE('',#1870,#344); 294 | #280=LINE('',#1878,#345); 295 | #281=LINE('',#1883,#346); 296 | #282=LINE('',#1886,#347); 297 | #283=LINE('',#1889,#348); 298 | #284=LINE('',#1890,#349); 299 | #285=LINE('',#1893,#350); 300 | #286=LINE('',#1897,#351); 301 | #287=LINE('',#1898,#352); 302 | #288=LINE('',#1907,#353); 303 | #289=LINE('',#1911,#354); 304 | #290=LINE('',#1913,#355); 305 | #291=LINE('',#1914,#356); 306 | #292=LINE('',#1919,#357); 307 | #293=LINE('',#1920,#358); 308 | #294=LINE('',#1928,#359); 309 | #295=LINE('',#1932,#360); 310 | #296=LINE('',#1936,#361); 311 | #297=LINE('',#1939,#362); 312 | #298=LINE('',#1944,#363); 313 | #299=LINE('',#1945,#364); 314 | #300=LINE('',#1948,#365); 315 | #301=LINE('',#1949,#366); 316 | #302=LINE('',#1953,#367); 317 | #303=LINE('',#1956,#368); 318 | #304=LINE('',#1957,#369); 319 | #305=LINE('',#1961,#370); 320 | #306=LINE('',#1964,#371); 321 | #307=LINE('',#1965,#372); 322 | #308=LINE('',#1969,#373); 323 | #309=LINE('',#1971,#374); 324 | #310=VECTOR('',#1274,2.05000000000001); 325 | #311=VECTOR('',#1283,1.80000000000001); 326 | #312=VECTOR('',#1288,3.25); 327 | #313=VECTOR('',#1293,3.5); 328 | #314=VECTOR('',#1302,2.05); 329 | #315=VECTOR('',#1311,1.8); 330 | #316=VECTOR('',#1316,3.24999999999999); 331 | #317=VECTOR('',#1321,3.5); 332 | #318=VECTOR('',#1330,2.05); 333 | #319=VECTOR('',#1339,1.8); 334 | #320=VECTOR('',#1344,3.24999999999999); 335 | #321=VECTOR('',#1349,3.5); 336 | #322=VECTOR('',#1358,2.05000000000001); 337 | #323=VECTOR('',#1367,1.80000000000001); 338 | #324=VECTOR('',#1372,3.25); 339 | #325=VECTOR('',#1377,3.5); 340 | #326=VECTOR('',#1434,10.); 341 | #327=VECTOR('',#1437,10.); 342 | #328=VECTOR('',#1440,10.); 343 | #329=VECTOR('',#1443,10.); 344 | #330=VECTOR('',#1448,10.); 345 | #331=VECTOR('',#1453,10.); 346 | #332=VECTOR('',#1456,6.); 347 | #333=VECTOR('',#1467,10.); 348 | #334=VECTOR('',#1470,10.); 349 | #335=VECTOR('',#1473,6.); 350 | #336=VECTOR('',#1484,10.); 351 | #337=VECTOR('',#1487,10.); 352 | #338=VECTOR('',#1490,5.99999999999999); 353 | #339=VECTOR('',#1501,10.); 354 | #340=VECTOR('',#1504,10.); 355 | #341=VECTOR('',#1507,5.99999999999999); 356 | #342=VECTOR('',#1512,10.); 357 | #343=VECTOR('',#1525,10.); 358 | #344=VECTOR('',#1536,10.); 359 | #345=VECTOR('',#1547,10.); 360 | #346=VECTOR('',#1554,10.); 361 | #347=VECTOR('',#1557,10.); 362 | #348=VECTOR('',#1560,10.); 363 | #349=VECTOR('',#1561,10.); 364 | #350=VECTOR('',#1564,10.); 365 | #351=VECTOR('',#1569,10.); 366 | #352=VECTOR('',#1570,10.); 367 | #353=VECTOR('',#1583,10.); 368 | #354=VECTOR('',#1588,10.); 369 | #355=VECTOR('',#1589,10.); 370 | #356=VECTOR('',#1590,10.); 371 | #357=VECTOR('',#1597,10.); 372 | #358=VECTOR('',#1598,10.); 373 | #359=VECTOR('',#1607,10.); 374 | #360=VECTOR('',#1610,10.); 375 | #361=VECTOR('',#1613,10.); 376 | #362=VECTOR('',#1616,10.); 377 | #363=VECTOR('',#1621,10.); 378 | #364=VECTOR('',#1622,10.); 379 | #365=VECTOR('',#1625,10.); 380 | #366=VECTOR('',#1626,10.); 381 | #367=VECTOR('',#1631,10.); 382 | #368=VECTOR('',#1634,10.); 383 | #369=VECTOR('',#1635,10.); 384 | #370=VECTOR('',#1640,10.); 385 | #371=VECTOR('',#1643,10.); 386 | #372=VECTOR('',#1644,10.); 387 | #373=VECTOR('',#1649,10.); 388 | #374=VECTOR('',#1652,10.); 389 | #375=CIRCLE('',#1109,2.30000000000001); 390 | #376=CIRCLE('',#1110,1.80000000000001); 391 | #377=CIRCLE('',#1112,3.); 392 | #378=CIRCLE('',#1114,1.80000000000001); 393 | #379=CIRCLE('',#1116,3.5); 394 | #380=CIRCLE('',#1118,3.5); 395 | #381=CIRCLE('',#1119,3.5); 396 | #382=CIRCLE('',#1121,2.3); 397 | #383=CIRCLE('',#1122,1.8); 398 | #384=CIRCLE('',#1124,2.99999999999999); 399 | #385=CIRCLE('',#1126,1.8); 400 | #386=CIRCLE('',#1128,3.5); 401 | #387=CIRCLE('',#1130,3.5); 402 | #388=CIRCLE('',#1131,3.5); 403 | #389=CIRCLE('',#1133,2.3); 404 | #390=CIRCLE('',#1134,1.8); 405 | #391=CIRCLE('',#1136,2.99999999999999); 406 | #392=CIRCLE('',#1138,1.8); 407 | #393=CIRCLE('',#1140,3.5); 408 | #394=CIRCLE('',#1142,3.5); 409 | #395=CIRCLE('',#1143,3.5); 410 | #396=CIRCLE('',#1145,2.30000000000001); 411 | #397=CIRCLE('',#1146,1.80000000000001); 412 | #398=CIRCLE('',#1148,3.); 413 | #399=CIRCLE('',#1150,1.80000000000001); 414 | #400=CIRCLE('',#1152,3.5); 415 | #401=CIRCLE('',#1154,3.5); 416 | #402=CIRCLE('',#1155,3.5); 417 | #403=CIRCLE('',#1157,4.5); 418 | #404=CIRCLE('',#1158,1.); 419 | #405=CIRCLE('',#1160,5.99999999999999); 420 | #406=CIRCLE('',#1162,4.5); 421 | #407=CIRCLE('',#1163,1.); 422 | #408=CIRCLE('',#1165,5.99999999999999); 423 | #409=CIRCLE('',#1167,4.5); 424 | #410=CIRCLE('',#1168,1.); 425 | #411=CIRCLE('',#1170,6.); 426 | #412=CIRCLE('',#1172,4.5); 427 | #413=CIRCLE('',#1173,1.); 428 | #414=CIRCLE('',#1175,6.); 429 | #415=CIRCLE('',#1177,6.); 430 | #416=CIRCLE('',#1178,2.); 431 | #417=CIRCLE('',#1179,8.); 432 | #418=CIRCLE('',#1180,8.); 433 | #419=CIRCLE('',#1182,6.); 434 | #420=CIRCLE('',#1184,8.); 435 | #421=CIRCLE('',#1185,7.99999999999999); 436 | #422=CIRCLE('',#1186,7.99999999999999); 437 | #423=CIRCLE('',#1187,7.99999999999999); 438 | #424=CIRCLE('',#1188,7.99999999999999); 439 | #425=CIRCLE('',#1191,6.); 440 | #426=CIRCLE('',#1192,2.); 441 | #427=CIRCLE('',#1193,8.); 442 | #428=CIRCLE('',#1195,6.00000000000001); 443 | #429=CIRCLE('',#1198,5.99999999999999); 444 | #430=CIRCLE('',#1199,2.); 445 | #431=CIRCLE('',#1200,7.99999999999999); 446 | #432=CIRCLE('',#1202,6.00000000000001); 447 | #433=CIRCLE('',#1205,5.99999999999999); 448 | #434=CIRCLE('',#1206,2.); 449 | #435=CIRCLE('',#1207,7.99999999999999); 450 | #436=CIRCLE('',#1209,6.); 451 | #437=CIRCLE('',#1212,2.); 452 | #438=CIRCLE('',#1213,1.99999999999999); 453 | #439=CIRCLE('',#1215,1.99999999999999); 454 | #440=CIRCLE('',#1216,8.00000000000001); 455 | #441=CIRCLE('',#1218,1.99999999999999); 456 | #442=CIRCLE('',#1220,1.99999999999999); 457 | #443=CIRCLE('',#1221,8.00000000000001); 458 | #444=CIRCLE('',#1223,2.); 459 | #445=CIRCLE('',#1225,2.); 460 | #446=CIRCLE('',#1226,8.); 461 | #447=CIRCLE('',#1228,2.); 462 | #448=CIRCLE('',#1230,8.); 463 | #449=CIRCLE('',#1232,8.00000000000001); 464 | #450=CIRCLE('',#1235,8.00000000000001); 465 | #451=CIRCLE('',#1242,10.); 466 | #452=CIRCLE('',#1243,10.); 467 | #453=CIRCLE('',#1246,8.); 468 | #454=CIRCLE('',#1249,8.); 469 | #455=CIRCLE('',#1251,10.); 470 | #456=CIRCLE('',#1252,10.); 471 | #457=CIRCLE('',#1253,10.); 472 | #458=CIRCLE('',#1254,10.); 473 | #459=CIRCLE('',#1256,10.); 474 | #460=CIRCLE('',#1259,10.); 475 | #461=CIRCLE('',#1262,10.); 476 | #462=CIRCLE('',#1265,10.); 477 | #463=VERTEX_POINT('',#1657); 478 | #464=VERTEX_POINT('',#1659); 479 | #465=VERTEX_POINT('',#1663); 480 | #466=VERTEX_POINT('',#1666); 481 | #467=VERTEX_POINT('',#1670); 482 | #468=VERTEX_POINT('',#1674); 483 | #469=VERTEX_POINT('',#1676); 484 | #470=VERTEX_POINT('',#1680); 485 | #471=VERTEX_POINT('',#1682); 486 | #472=VERTEX_POINT('',#1686); 487 | #473=VERTEX_POINT('',#1689); 488 | #474=VERTEX_POINT('',#1693); 489 | #475=VERTEX_POINT('',#1697); 490 | #476=VERTEX_POINT('',#1699); 491 | #477=VERTEX_POINT('',#1703); 492 | #478=VERTEX_POINT('',#1705); 493 | #479=VERTEX_POINT('',#1709); 494 | #480=VERTEX_POINT('',#1712); 495 | #481=VERTEX_POINT('',#1716); 496 | #482=VERTEX_POINT('',#1720); 497 | #483=VERTEX_POINT('',#1722); 498 | #484=VERTEX_POINT('',#1726); 499 | #485=VERTEX_POINT('',#1728); 500 | #486=VERTEX_POINT('',#1732); 501 | #487=VERTEX_POINT('',#1735); 502 | #488=VERTEX_POINT('',#1739); 503 | #489=VERTEX_POINT('',#1743); 504 | #490=VERTEX_POINT('',#1745); 505 | #491=VERTEX_POINT('',#1749); 506 | #492=VERTEX_POINT('',#1753); 507 | #493=VERTEX_POINT('',#1756); 508 | #494=VERTEX_POINT('',#1760); 509 | #495=VERTEX_POINT('',#1763); 510 | #496=VERTEX_POINT('',#1767); 511 | #497=VERTEX_POINT('',#1770); 512 | #498=VERTEX_POINT('',#1774); 513 | #499=VERTEX_POINT('',#1777); 514 | #500=VERTEX_POINT('',#1779); 515 | #501=VERTEX_POINT('',#1781); 516 | #502=VERTEX_POINT('',#1785); 517 | #503=VERTEX_POINT('',#1787); 518 | #504=VERTEX_POINT('',#1791); 519 | #505=VERTEX_POINT('',#1793); 520 | #506=VERTEX_POINT('',#1795); 521 | #507=VERTEX_POINT('',#1797); 522 | #508=VERTEX_POINT('',#1799); 523 | #509=VERTEX_POINT('',#1801); 524 | #510=VERTEX_POINT('',#1803); 525 | #511=VERTEX_POINT('',#1805); 526 | #512=VERTEX_POINT('',#1811); 527 | #513=VERTEX_POINT('',#1816); 528 | #514=VERTEX_POINT('',#1818); 529 | #515=VERTEX_POINT('',#1824); 530 | #516=VERTEX_POINT('',#1829); 531 | #517=VERTEX_POINT('',#1831); 532 | #518=VERTEX_POINT('',#1837); 533 | #519=VERTEX_POINT('',#1842); 534 | #520=VERTEX_POINT('',#1844); 535 | #521=VERTEX_POINT('',#1850); 536 | #522=VERTEX_POINT('',#1852); 537 | #523=VERTEX_POINT('',#1856); 538 | #524=VERTEX_POINT('',#1860); 539 | #525=VERTEX_POINT('',#1864); 540 | #526=VERTEX_POINT('',#1868); 541 | #527=VERTEX_POINT('',#1872); 542 | #528=VERTEX_POINT('',#1876); 543 | #529=VERTEX_POINT('',#1882); 544 | #530=VERTEX_POINT('',#1884); 545 | #531=VERTEX_POINT('',#1888); 546 | #532=VERTEX_POINT('',#1892); 547 | #533=VERTEX_POINT('',#1896); 548 | #534=VERTEX_POINT('',#1904); 549 | #535=VERTEX_POINT('',#1906); 550 | #536=VERTEX_POINT('',#1910); 551 | #537=VERTEX_POINT('',#1912); 552 | #538=VERTEX_POINT('',#1918); 553 | #539=VERTEX_POINT('',#1924); 554 | #540=VERTEX_POINT('',#1925); 555 | #541=VERTEX_POINT('',#1927); 556 | #542=VERTEX_POINT('',#1929); 557 | #543=VERTEX_POINT('',#1931); 558 | #544=VERTEX_POINT('',#1933); 559 | #545=VERTEX_POINT('',#1935); 560 | #546=VERTEX_POINT('',#1937); 561 | #547=VERTEX_POINT('',#1941); 562 | #548=VERTEX_POINT('',#1942); 563 | #549=VERTEX_POINT('',#1947); 564 | #550=VERTEX_POINT('',#1951); 565 | #551=VERTEX_POINT('',#1955); 566 | #552=VERTEX_POINT('',#1959); 567 | #553=VERTEX_POINT('',#1963); 568 | #554=VERTEX_POINT('',#1967); 569 | #555=EDGE_CURVE('',#463,#463,#375,.T.); 570 | #556=EDGE_CURVE('',#463,#464,#245,.T.); 571 | #557=EDGE_CURVE('',#464,#464,#376,.T.); 572 | #558=EDGE_CURVE('',#465,#465,#377,.T.); 573 | #559=EDGE_CURVE('',#464,#466,#246,.T.); 574 | #560=EDGE_CURVE('',#466,#466,#378,.T.); 575 | #561=EDGE_CURVE('',#465,#467,#247,.T.); 576 | #562=EDGE_CURVE('',#467,#467,#379,.T.); 577 | #563=EDGE_CURVE('',#467,#468,#248,.T.); 578 | #564=EDGE_CURVE('',#469,#468,#380,.T.); 579 | #565=EDGE_CURVE('',#468,#469,#381,.T.); 580 | #566=EDGE_CURVE('',#470,#470,#382,.T.); 581 | #567=EDGE_CURVE('',#470,#471,#249,.T.); 582 | #568=EDGE_CURVE('',#471,#471,#383,.T.); 583 | #569=EDGE_CURVE('',#472,#472,#384,.T.); 584 | #570=EDGE_CURVE('',#471,#473,#250,.T.); 585 | #571=EDGE_CURVE('',#473,#473,#385,.T.); 586 | #572=EDGE_CURVE('',#472,#474,#251,.T.); 587 | #573=EDGE_CURVE('',#474,#474,#386,.T.); 588 | #574=EDGE_CURVE('',#474,#475,#252,.T.); 589 | #575=EDGE_CURVE('',#476,#475,#387,.T.); 590 | #576=EDGE_CURVE('',#475,#476,#388,.T.); 591 | #577=EDGE_CURVE('',#477,#477,#389,.T.); 592 | #578=EDGE_CURVE('',#477,#478,#253,.T.); 593 | #579=EDGE_CURVE('',#478,#478,#390,.T.); 594 | #580=EDGE_CURVE('',#479,#479,#391,.T.); 595 | #581=EDGE_CURVE('',#478,#480,#254,.T.); 596 | #582=EDGE_CURVE('',#480,#480,#392,.T.); 597 | #583=EDGE_CURVE('',#479,#481,#255,.T.); 598 | #584=EDGE_CURVE('',#481,#481,#393,.T.); 599 | #585=EDGE_CURVE('',#481,#482,#256,.T.); 600 | #586=EDGE_CURVE('',#483,#482,#394,.T.); 601 | #587=EDGE_CURVE('',#482,#483,#395,.T.); 602 | #588=EDGE_CURVE('',#484,#484,#396,.T.); 603 | #589=EDGE_CURVE('',#484,#485,#257,.T.); 604 | #590=EDGE_CURVE('',#485,#485,#397,.T.); 605 | #591=EDGE_CURVE('',#486,#486,#398,.T.); 606 | #592=EDGE_CURVE('',#485,#487,#258,.T.); 607 | #593=EDGE_CURVE('',#487,#487,#399,.T.); 608 | #594=EDGE_CURVE('',#486,#488,#259,.T.); 609 | #595=EDGE_CURVE('',#488,#488,#400,.T.); 610 | #596=EDGE_CURVE('',#488,#489,#260,.T.); 611 | #597=EDGE_CURVE('',#490,#489,#401,.T.); 612 | #598=EDGE_CURVE('',#489,#490,#402,.T.); 613 | #599=EDGE_CURVE('',#491,#491,#403,.T.); 614 | #600=EDGE_CURVE('',#491,#490,#404,.T.); 615 | #601=EDGE_CURVE('',#492,#492,#405,.T.); 616 | #602=EDGE_CURVE('',#493,#493,#406,.T.); 617 | #603=EDGE_CURVE('',#493,#469,#407,.T.); 618 | #604=EDGE_CURVE('',#494,#494,#408,.T.); 619 | #605=EDGE_CURVE('',#495,#495,#409,.T.); 620 | #606=EDGE_CURVE('',#495,#476,#410,.T.); 621 | #607=EDGE_CURVE('',#496,#496,#411,.T.); 622 | #608=EDGE_CURVE('',#497,#497,#412,.T.); 623 | #609=EDGE_CURVE('',#497,#483,#413,.T.); 624 | #610=EDGE_CURVE('',#498,#498,#414,.T.); 625 | #611=EDGE_CURVE('',#499,#499,#415,.T.); 626 | #612=EDGE_CURVE('',#499,#500,#416,.T.); 627 | #613=EDGE_CURVE('',#500,#501,#417,.T.); 628 | #614=EDGE_CURVE('',#501,#500,#418,.T.); 629 | #615=EDGE_CURVE('',#502,#501,#261,.T.); 630 | #616=EDGE_CURVE('',#503,#502,#419,.T.); 631 | #617=EDGE_CURVE('',#500,#503,#262,.T.); 632 | #618=EDGE_CURVE('',#504,#500,#263,.T.); 633 | #619=EDGE_CURVE('',#505,#504,#420,.T.); 634 | #620=EDGE_CURVE('',#506,#505,#264,.T.); 635 | #621=EDGE_CURVE('',#507,#506,#421,.T.); 636 | #622=EDGE_CURVE('',#508,#507,#422,.T.); 637 | #623=EDGE_CURVE('',#509,#508,#265,.T.); 638 | #624=EDGE_CURVE('',#510,#509,#423,.T.); 639 | #625=EDGE_CURVE('',#511,#510,#424,.T.); 640 | #626=EDGE_CURVE('',#501,#511,#266,.T.); 641 | #627=EDGE_CURVE('',#496,#499,#267,.T.); 642 | #628=EDGE_CURVE('',#512,#512,#425,.T.); 643 | #629=EDGE_CURVE('',#512,#504,#426,.T.); 644 | #630=EDGE_CURVE('',#504,#505,#427,.T.); 645 | #631=EDGE_CURVE('',#513,#504,#268,.T.); 646 | #632=EDGE_CURVE('',#514,#513,#428,.T.); 647 | #633=EDGE_CURVE('',#505,#514,#269,.T.); 648 | #634=EDGE_CURVE('',#498,#512,#270,.T.); 649 | #635=EDGE_CURVE('',#515,#515,#429,.T.); 650 | #636=EDGE_CURVE('',#515,#507,#430,.T.); 651 | #637=EDGE_CURVE('',#506,#508,#431,.T.); 652 | #638=EDGE_CURVE('',#516,#506,#271,.T.); 653 | #639=EDGE_CURVE('',#517,#516,#432,.T.); 654 | #640=EDGE_CURVE('',#508,#517,#272,.T.); 655 | #641=EDGE_CURVE('',#492,#515,#273,.T.); 656 | #642=EDGE_CURVE('',#518,#518,#433,.T.); 657 | #643=EDGE_CURVE('',#518,#510,#434,.T.); 658 | #644=EDGE_CURVE('',#509,#511,#435,.T.); 659 | #645=EDGE_CURVE('',#519,#509,#274,.T.); 660 | #646=EDGE_CURVE('',#520,#519,#436,.T.); 661 | #647=EDGE_CURVE('',#511,#520,#275,.T.); 662 | #648=EDGE_CURVE('',#494,#518,#276,.T.); 663 | #649=EDGE_CURVE('',#503,#521,#437,.T.); 664 | #650=EDGE_CURVE('',#521,#522,#277,.T.); 665 | #651=EDGE_CURVE('',#522,#513,#438,.T.); 666 | #652=EDGE_CURVE('',#523,#514,#439,.T.); 667 | #653=EDGE_CURVE('',#522,#523,#440,.T.); 668 | #654=EDGE_CURVE('',#524,#516,#441,.T.); 669 | #655=EDGE_CURVE('',#523,#524,#278,.T.); 670 | #656=EDGE_CURVE('',#525,#517,#442,.T.); 671 | #657=EDGE_CURVE('',#524,#525,#443,.T.); 672 | #658=EDGE_CURVE('',#526,#519,#444,.T.); 673 | #659=EDGE_CURVE('',#525,#526,#279,.T.); 674 | #660=EDGE_CURVE('',#527,#520,#445,.T.); 675 | #661=EDGE_CURVE('',#526,#527,#446,.T.); 676 | #662=EDGE_CURVE('',#528,#502,#447,.T.); 677 | #663=EDGE_CURVE('',#527,#528,#280,.T.); 678 | #664=EDGE_CURVE('',#528,#521,#448,.T.); 679 | #665=EDGE_CURVE('',#524,#529,#281,.T.); 680 | #666=EDGE_CURVE('',#530,#529,#449,.T.); 681 | #667=EDGE_CURVE('',#525,#530,#282,.T.); 682 | #668=EDGE_CURVE('',#523,#531,#283,.T.); 683 | #669=EDGE_CURVE('',#529,#531,#284,.T.); 684 | #670=EDGE_CURVE('',#522,#532,#285,.T.); 685 | #671=EDGE_CURVE('',#531,#532,#450,.T.); 686 | #672=EDGE_CURVE('',#521,#533,#286,.T.); 687 | #673=EDGE_CURVE('',#532,#533,#287,.T.); 688 | #674=EDGE_CURVE('',#534,#534,#451,.T.); 689 | #675=EDGE_CURVE('',#534,#535,#288,.T.); 690 | #676=EDGE_CURVE('',#535,#535,#452,.T.); 691 | #677=EDGE_CURVE('',#527,#536,#289,.T.); 692 | #678=EDGE_CURVE('',#537,#536,#290,.T.); 693 | #679=EDGE_CURVE('',#528,#537,#291,.T.); 694 | #680=EDGE_CURVE('',#533,#537,#453,.T.); 695 | #681=EDGE_CURVE('',#538,#530,#292,.T.); 696 | #682=EDGE_CURVE('',#526,#538,#293,.T.); 697 | #683=EDGE_CURVE('',#536,#538,#454,.T.); 698 | #684=EDGE_CURVE('',#539,#540,#455,.T.); 699 | #685=EDGE_CURVE('',#540,#541,#294,.T.); 700 | #686=EDGE_CURVE('',#541,#542,#456,.T.); 701 | #687=EDGE_CURVE('',#542,#543,#295,.T.); 702 | #688=EDGE_CURVE('',#543,#544,#457,.T.); 703 | #689=EDGE_CURVE('',#544,#545,#296,.T.); 704 | #690=EDGE_CURVE('',#545,#546,#458,.T.); 705 | #691=EDGE_CURVE('',#546,#539,#297,.T.); 706 | #692=EDGE_CURVE('',#547,#548,#459,.T.); 707 | #693=EDGE_CURVE('',#548,#540,#298,.T.); 708 | #694=EDGE_CURVE('',#547,#539,#299,.T.); 709 | #695=EDGE_CURVE('',#549,#547,#300,.T.); 710 | #696=EDGE_CURVE('',#549,#546,#301,.T.); 711 | #697=EDGE_CURVE('',#550,#549,#460,.T.); 712 | #698=EDGE_CURVE('',#550,#545,#302,.T.); 713 | #699=EDGE_CURVE('',#551,#550,#303,.T.); 714 | #700=EDGE_CURVE('',#551,#544,#304,.T.); 715 | #701=EDGE_CURVE('',#552,#551,#461,.T.); 716 | #702=EDGE_CURVE('',#552,#543,#305,.T.); 717 | #703=EDGE_CURVE('',#553,#552,#306,.T.); 718 | #704=EDGE_CURVE('',#553,#542,#307,.T.); 719 | #705=EDGE_CURVE('',#554,#553,#462,.T.); 720 | #706=EDGE_CURVE('',#554,#541,#308,.T.); 721 | #707=EDGE_CURVE('',#548,#554,#309,.T.); 722 | #708=ORIENTED_EDGE('',*,*,#555,.T.); 723 | #709=ORIENTED_EDGE('',*,*,#556,.T.); 724 | #710=ORIENTED_EDGE('',*,*,#557,.T.); 725 | #711=ORIENTED_EDGE('',*,*,#556,.F.); 726 | #712=ORIENTED_EDGE('',*,*,#558,.F.); 727 | #713=ORIENTED_EDGE('',*,*,#555,.F.); 728 | #714=ORIENTED_EDGE('',*,*,#557,.F.); 729 | #715=ORIENTED_EDGE('',*,*,#559,.T.); 730 | #716=ORIENTED_EDGE('',*,*,#560,.T.); 731 | #717=ORIENTED_EDGE('',*,*,#559,.F.); 732 | #718=ORIENTED_EDGE('',*,*,#558,.T.); 733 | #719=ORIENTED_EDGE('',*,*,#561,.T.); 734 | #720=ORIENTED_EDGE('',*,*,#562,.T.); 735 | #721=ORIENTED_EDGE('',*,*,#561,.F.); 736 | #722=ORIENTED_EDGE('',*,*,#562,.F.); 737 | #723=ORIENTED_EDGE('',*,*,#563,.T.); 738 | #724=ORIENTED_EDGE('',*,*,#564,.F.); 739 | #725=ORIENTED_EDGE('',*,*,#565,.F.); 740 | #726=ORIENTED_EDGE('',*,*,#563,.F.); 741 | #727=ORIENTED_EDGE('',*,*,#566,.T.); 742 | #728=ORIENTED_EDGE('',*,*,#567,.T.); 743 | #729=ORIENTED_EDGE('',*,*,#568,.T.); 744 | #730=ORIENTED_EDGE('',*,*,#567,.F.); 745 | #731=ORIENTED_EDGE('',*,*,#569,.F.); 746 | #732=ORIENTED_EDGE('',*,*,#566,.F.); 747 | #733=ORIENTED_EDGE('',*,*,#568,.F.); 748 | #734=ORIENTED_EDGE('',*,*,#570,.T.); 749 | #735=ORIENTED_EDGE('',*,*,#571,.T.); 750 | #736=ORIENTED_EDGE('',*,*,#570,.F.); 751 | #737=ORIENTED_EDGE('',*,*,#569,.T.); 752 | #738=ORIENTED_EDGE('',*,*,#572,.T.); 753 | #739=ORIENTED_EDGE('',*,*,#573,.T.); 754 | #740=ORIENTED_EDGE('',*,*,#572,.F.); 755 | #741=ORIENTED_EDGE('',*,*,#573,.F.); 756 | #742=ORIENTED_EDGE('',*,*,#574,.T.); 757 | #743=ORIENTED_EDGE('',*,*,#575,.F.); 758 | #744=ORIENTED_EDGE('',*,*,#576,.F.); 759 | #745=ORIENTED_EDGE('',*,*,#574,.F.); 760 | #746=ORIENTED_EDGE('',*,*,#577,.T.); 761 | #747=ORIENTED_EDGE('',*,*,#578,.T.); 762 | #748=ORIENTED_EDGE('',*,*,#579,.T.); 763 | #749=ORIENTED_EDGE('',*,*,#578,.F.); 764 | #750=ORIENTED_EDGE('',*,*,#580,.F.); 765 | #751=ORIENTED_EDGE('',*,*,#577,.F.); 766 | #752=ORIENTED_EDGE('',*,*,#579,.F.); 767 | #753=ORIENTED_EDGE('',*,*,#581,.T.); 768 | #754=ORIENTED_EDGE('',*,*,#582,.T.); 769 | #755=ORIENTED_EDGE('',*,*,#581,.F.); 770 | #756=ORIENTED_EDGE('',*,*,#580,.T.); 771 | #757=ORIENTED_EDGE('',*,*,#583,.T.); 772 | #758=ORIENTED_EDGE('',*,*,#584,.T.); 773 | #759=ORIENTED_EDGE('',*,*,#583,.F.); 774 | #760=ORIENTED_EDGE('',*,*,#584,.F.); 775 | #761=ORIENTED_EDGE('',*,*,#585,.T.); 776 | #762=ORIENTED_EDGE('',*,*,#586,.F.); 777 | #763=ORIENTED_EDGE('',*,*,#587,.F.); 778 | #764=ORIENTED_EDGE('',*,*,#585,.F.); 779 | #765=ORIENTED_EDGE('',*,*,#588,.T.); 780 | #766=ORIENTED_EDGE('',*,*,#589,.T.); 781 | #767=ORIENTED_EDGE('',*,*,#590,.T.); 782 | #768=ORIENTED_EDGE('',*,*,#589,.F.); 783 | #769=ORIENTED_EDGE('',*,*,#591,.F.); 784 | #770=ORIENTED_EDGE('',*,*,#588,.F.); 785 | #771=ORIENTED_EDGE('',*,*,#590,.F.); 786 | #772=ORIENTED_EDGE('',*,*,#592,.T.); 787 | #773=ORIENTED_EDGE('',*,*,#593,.T.); 788 | #774=ORIENTED_EDGE('',*,*,#592,.F.); 789 | #775=ORIENTED_EDGE('',*,*,#591,.T.); 790 | #776=ORIENTED_EDGE('',*,*,#594,.T.); 791 | #777=ORIENTED_EDGE('',*,*,#595,.T.); 792 | #778=ORIENTED_EDGE('',*,*,#594,.F.); 793 | #779=ORIENTED_EDGE('',*,*,#595,.F.); 794 | #780=ORIENTED_EDGE('',*,*,#596,.T.); 795 | #781=ORIENTED_EDGE('',*,*,#597,.F.); 796 | #782=ORIENTED_EDGE('',*,*,#598,.F.); 797 | #783=ORIENTED_EDGE('',*,*,#596,.F.); 798 | #784=ORIENTED_EDGE('',*,*,#599,.T.); 799 | #785=ORIENTED_EDGE('',*,*,#600,.T.); 800 | #786=ORIENTED_EDGE('',*,*,#597,.T.); 801 | #787=ORIENTED_EDGE('',*,*,#598,.T.); 802 | #788=ORIENTED_EDGE('',*,*,#600,.F.); 803 | #789=ORIENTED_EDGE('',*,*,#601,.T.); 804 | #790=ORIENTED_EDGE('',*,*,#599,.F.); 805 | #791=ORIENTED_EDGE('',*,*,#602,.T.); 806 | #792=ORIENTED_EDGE('',*,*,#603,.T.); 807 | #793=ORIENTED_EDGE('',*,*,#564,.T.); 808 | #794=ORIENTED_EDGE('',*,*,#565,.T.); 809 | #795=ORIENTED_EDGE('',*,*,#603,.F.); 810 | #796=ORIENTED_EDGE('',*,*,#604,.T.); 811 | #797=ORIENTED_EDGE('',*,*,#602,.F.); 812 | #798=ORIENTED_EDGE('',*,*,#605,.T.); 813 | #799=ORIENTED_EDGE('',*,*,#606,.T.); 814 | #800=ORIENTED_EDGE('',*,*,#575,.T.); 815 | #801=ORIENTED_EDGE('',*,*,#576,.T.); 816 | #802=ORIENTED_EDGE('',*,*,#606,.F.); 817 | #803=ORIENTED_EDGE('',*,*,#607,.T.); 818 | #804=ORIENTED_EDGE('',*,*,#605,.F.); 819 | #805=ORIENTED_EDGE('',*,*,#608,.T.); 820 | #806=ORIENTED_EDGE('',*,*,#609,.T.); 821 | #807=ORIENTED_EDGE('',*,*,#586,.T.); 822 | #808=ORIENTED_EDGE('',*,*,#587,.T.); 823 | #809=ORIENTED_EDGE('',*,*,#609,.F.); 824 | #810=ORIENTED_EDGE('',*,*,#610,.T.); 825 | #811=ORIENTED_EDGE('',*,*,#608,.F.); 826 | #812=ORIENTED_EDGE('',*,*,#611,.T.); 827 | #813=ORIENTED_EDGE('',*,*,#612,.T.); 828 | #814=ORIENTED_EDGE('',*,*,#613,.T.); 829 | #815=ORIENTED_EDGE('',*,*,#614,.T.); 830 | #816=ORIENTED_EDGE('',*,*,#612,.F.); 831 | #817=ORIENTED_EDGE('',*,*,#614,.F.); 832 | #818=ORIENTED_EDGE('',*,*,#615,.F.); 833 | #819=ORIENTED_EDGE('',*,*,#616,.F.); 834 | #820=ORIENTED_EDGE('',*,*,#617,.F.); 835 | #821=ORIENTED_EDGE('',*,*,#613,.F.); 836 | #822=ORIENTED_EDGE('',*,*,#618,.F.); 837 | #823=ORIENTED_EDGE('',*,*,#619,.F.); 838 | #824=ORIENTED_EDGE('',*,*,#620,.F.); 839 | #825=ORIENTED_EDGE('',*,*,#621,.F.); 840 | #826=ORIENTED_EDGE('',*,*,#622,.F.); 841 | #827=ORIENTED_EDGE('',*,*,#623,.F.); 842 | #828=ORIENTED_EDGE('',*,*,#624,.F.); 843 | #829=ORIENTED_EDGE('',*,*,#625,.F.); 844 | #830=ORIENTED_EDGE('',*,*,#626,.F.); 845 | #831=ORIENTED_EDGE('',*,*,#607,.F.); 846 | #832=ORIENTED_EDGE('',*,*,#627,.T.); 847 | #833=ORIENTED_EDGE('',*,*,#611,.F.); 848 | #834=ORIENTED_EDGE('',*,*,#627,.F.); 849 | #835=ORIENTED_EDGE('',*,*,#628,.T.); 850 | #836=ORIENTED_EDGE('',*,*,#629,.T.); 851 | #837=ORIENTED_EDGE('',*,*,#630,.T.); 852 | #838=ORIENTED_EDGE('',*,*,#619,.T.); 853 | #839=ORIENTED_EDGE('',*,*,#629,.F.); 854 | #840=ORIENTED_EDGE('',*,*,#630,.F.); 855 | #841=ORIENTED_EDGE('',*,*,#631,.F.); 856 | #842=ORIENTED_EDGE('',*,*,#632,.F.); 857 | #843=ORIENTED_EDGE('',*,*,#633,.F.); 858 | #844=ORIENTED_EDGE('',*,*,#610,.F.); 859 | #845=ORIENTED_EDGE('',*,*,#634,.T.); 860 | #846=ORIENTED_EDGE('',*,*,#628,.F.); 861 | #847=ORIENTED_EDGE('',*,*,#634,.F.); 862 | #848=ORIENTED_EDGE('',*,*,#635,.T.); 863 | #849=ORIENTED_EDGE('',*,*,#636,.T.); 864 | #850=ORIENTED_EDGE('',*,*,#621,.T.); 865 | #851=ORIENTED_EDGE('',*,*,#637,.T.); 866 | #852=ORIENTED_EDGE('',*,*,#622,.T.); 867 | #853=ORIENTED_EDGE('',*,*,#636,.F.); 868 | #854=ORIENTED_EDGE('',*,*,#637,.F.); 869 | #855=ORIENTED_EDGE('',*,*,#638,.F.); 870 | #856=ORIENTED_EDGE('',*,*,#639,.F.); 871 | #857=ORIENTED_EDGE('',*,*,#640,.F.); 872 | #858=ORIENTED_EDGE('',*,*,#601,.F.); 873 | #859=ORIENTED_EDGE('',*,*,#641,.T.); 874 | #860=ORIENTED_EDGE('',*,*,#635,.F.); 875 | #861=ORIENTED_EDGE('',*,*,#641,.F.); 876 | #862=ORIENTED_EDGE('',*,*,#642,.T.); 877 | #863=ORIENTED_EDGE('',*,*,#643,.T.); 878 | #864=ORIENTED_EDGE('',*,*,#624,.T.); 879 | #865=ORIENTED_EDGE('',*,*,#644,.T.); 880 | #866=ORIENTED_EDGE('',*,*,#625,.T.); 881 | #867=ORIENTED_EDGE('',*,*,#643,.F.); 882 | #868=ORIENTED_EDGE('',*,*,#644,.F.); 883 | #869=ORIENTED_EDGE('',*,*,#645,.F.); 884 | #870=ORIENTED_EDGE('',*,*,#646,.F.); 885 | #871=ORIENTED_EDGE('',*,*,#647,.F.); 886 | #872=ORIENTED_EDGE('',*,*,#604,.F.); 887 | #873=ORIENTED_EDGE('',*,*,#648,.T.); 888 | #874=ORIENTED_EDGE('',*,*,#642,.F.); 889 | #875=ORIENTED_EDGE('',*,*,#648,.F.); 890 | #876=ORIENTED_EDGE('',*,*,#649,.T.); 891 | #877=ORIENTED_EDGE('',*,*,#650,.T.); 892 | #878=ORIENTED_EDGE('',*,*,#651,.T.); 893 | #879=ORIENTED_EDGE('',*,*,#631,.T.); 894 | #880=ORIENTED_EDGE('',*,*,#618,.T.); 895 | #881=ORIENTED_EDGE('',*,*,#617,.T.); 896 | #882=ORIENTED_EDGE('',*,*,#652,.T.); 897 | #883=ORIENTED_EDGE('',*,*,#632,.T.); 898 | #884=ORIENTED_EDGE('',*,*,#651,.F.); 899 | #885=ORIENTED_EDGE('',*,*,#653,.T.); 900 | #886=ORIENTED_EDGE('',*,*,#654,.T.); 901 | #887=ORIENTED_EDGE('',*,*,#638,.T.); 902 | #888=ORIENTED_EDGE('',*,*,#620,.T.); 903 | #889=ORIENTED_EDGE('',*,*,#633,.T.); 904 | #890=ORIENTED_EDGE('',*,*,#652,.F.); 905 | #891=ORIENTED_EDGE('',*,*,#655,.T.); 906 | #892=ORIENTED_EDGE('',*,*,#656,.T.); 907 | #893=ORIENTED_EDGE('',*,*,#639,.T.); 908 | #894=ORIENTED_EDGE('',*,*,#654,.F.); 909 | #895=ORIENTED_EDGE('',*,*,#657,.T.); 910 | #896=ORIENTED_EDGE('',*,*,#658,.T.); 911 | #897=ORIENTED_EDGE('',*,*,#645,.T.); 912 | #898=ORIENTED_EDGE('',*,*,#623,.T.); 913 | #899=ORIENTED_EDGE('',*,*,#640,.T.); 914 | #900=ORIENTED_EDGE('',*,*,#656,.F.); 915 | #901=ORIENTED_EDGE('',*,*,#659,.T.); 916 | #902=ORIENTED_EDGE('',*,*,#660,.T.); 917 | #903=ORIENTED_EDGE('',*,*,#646,.T.); 918 | #904=ORIENTED_EDGE('',*,*,#658,.F.); 919 | #905=ORIENTED_EDGE('',*,*,#661,.T.); 920 | #906=ORIENTED_EDGE('',*,*,#662,.T.); 921 | #907=ORIENTED_EDGE('',*,*,#615,.T.); 922 | #908=ORIENTED_EDGE('',*,*,#626,.T.); 923 | #909=ORIENTED_EDGE('',*,*,#647,.T.); 924 | #910=ORIENTED_EDGE('',*,*,#660,.F.); 925 | #911=ORIENTED_EDGE('',*,*,#663,.T.); 926 | #912=ORIENTED_EDGE('',*,*,#649,.F.); 927 | #913=ORIENTED_EDGE('',*,*,#616,.T.); 928 | #914=ORIENTED_EDGE('',*,*,#662,.F.); 929 | #915=ORIENTED_EDGE('',*,*,#664,.T.); 930 | #916=ORIENTED_EDGE('',*,*,#657,.F.); 931 | #917=ORIENTED_EDGE('',*,*,#665,.T.); 932 | #918=ORIENTED_EDGE('',*,*,#666,.F.); 933 | #919=ORIENTED_EDGE('',*,*,#667,.F.); 934 | #920=ORIENTED_EDGE('',*,*,#655,.F.); 935 | #921=ORIENTED_EDGE('',*,*,#668,.T.); 936 | #922=ORIENTED_EDGE('',*,*,#669,.F.); 937 | #923=ORIENTED_EDGE('',*,*,#665,.F.); 938 | #924=ORIENTED_EDGE('',*,*,#653,.F.); 939 | #925=ORIENTED_EDGE('',*,*,#670,.T.); 940 | #926=ORIENTED_EDGE('',*,*,#671,.F.); 941 | #927=ORIENTED_EDGE('',*,*,#668,.F.); 942 | #928=ORIENTED_EDGE('',*,*,#650,.F.); 943 | #929=ORIENTED_EDGE('',*,*,#672,.T.); 944 | #930=ORIENTED_EDGE('',*,*,#673,.F.); 945 | #931=ORIENTED_EDGE('',*,*,#670,.F.); 946 | #932=ORIENTED_EDGE('',*,*,#593,.F.); 947 | #933=ORIENTED_EDGE('',*,*,#582,.F.); 948 | #934=ORIENTED_EDGE('',*,*,#560,.F.); 949 | #935=ORIENTED_EDGE('',*,*,#571,.F.); 950 | #936=ORIENTED_EDGE('',*,*,#674,.F.); 951 | #937=ORIENTED_EDGE('',*,*,#675,.T.); 952 | #938=ORIENTED_EDGE('',*,*,#676,.F.); 953 | #939=ORIENTED_EDGE('',*,*,#675,.F.); 954 | #940=ORIENTED_EDGE('',*,*,#663,.F.); 955 | #941=ORIENTED_EDGE('',*,*,#677,.T.); 956 | #942=ORIENTED_EDGE('',*,*,#678,.F.); 957 | #943=ORIENTED_EDGE('',*,*,#679,.F.); 958 | #944=ORIENTED_EDGE('',*,*,#676,.T.); 959 | #945=ORIENTED_EDGE('',*,*,#664,.F.); 960 | #946=ORIENTED_EDGE('',*,*,#679,.T.); 961 | #947=ORIENTED_EDGE('',*,*,#680,.F.); 962 | #948=ORIENTED_EDGE('',*,*,#672,.F.); 963 | #949=ORIENTED_EDGE('',*,*,#659,.F.); 964 | #950=ORIENTED_EDGE('',*,*,#667,.T.); 965 | #951=ORIENTED_EDGE('',*,*,#681,.F.); 966 | #952=ORIENTED_EDGE('',*,*,#682,.F.); 967 | #953=ORIENTED_EDGE('',*,*,#661,.F.); 968 | #954=ORIENTED_EDGE('',*,*,#682,.T.); 969 | #955=ORIENTED_EDGE('',*,*,#683,.F.); 970 | #956=ORIENTED_EDGE('',*,*,#677,.F.); 971 | #957=ORIENTED_EDGE('',*,*,#684,.T.); 972 | #958=ORIENTED_EDGE('',*,*,#685,.T.); 973 | #959=ORIENTED_EDGE('',*,*,#686,.T.); 974 | #960=ORIENTED_EDGE('',*,*,#687,.T.); 975 | #961=ORIENTED_EDGE('',*,*,#688,.T.); 976 | #962=ORIENTED_EDGE('',*,*,#689,.T.); 977 | #963=ORIENTED_EDGE('',*,*,#690,.T.); 978 | #964=ORIENTED_EDGE('',*,*,#691,.T.); 979 | #965=ORIENTED_EDGE('',*,*,#683,.T.); 980 | #966=ORIENTED_EDGE('',*,*,#681,.T.); 981 | #967=ORIENTED_EDGE('',*,*,#666,.T.); 982 | #968=ORIENTED_EDGE('',*,*,#669,.T.); 983 | #969=ORIENTED_EDGE('',*,*,#671,.T.); 984 | #970=ORIENTED_EDGE('',*,*,#673,.T.); 985 | #971=ORIENTED_EDGE('',*,*,#680,.T.); 986 | #972=ORIENTED_EDGE('',*,*,#678,.T.); 987 | #973=ORIENTED_EDGE('',*,*,#692,.T.); 988 | #974=ORIENTED_EDGE('',*,*,#693,.T.); 989 | #975=ORIENTED_EDGE('',*,*,#684,.F.); 990 | #976=ORIENTED_EDGE('',*,*,#694,.F.); 991 | #977=ORIENTED_EDGE('',*,*,#695,.T.); 992 | #978=ORIENTED_EDGE('',*,*,#694,.T.); 993 | #979=ORIENTED_EDGE('',*,*,#691,.F.); 994 | #980=ORIENTED_EDGE('',*,*,#696,.F.); 995 | #981=ORIENTED_EDGE('',*,*,#697,.T.); 996 | #982=ORIENTED_EDGE('',*,*,#696,.T.); 997 | #983=ORIENTED_EDGE('',*,*,#690,.F.); 998 | #984=ORIENTED_EDGE('',*,*,#698,.F.); 999 | #985=ORIENTED_EDGE('',*,*,#699,.T.); 1000 | #986=ORIENTED_EDGE('',*,*,#698,.T.); 1001 | #987=ORIENTED_EDGE('',*,*,#689,.F.); 1002 | #988=ORIENTED_EDGE('',*,*,#700,.F.); 1003 | #989=ORIENTED_EDGE('',*,*,#701,.T.); 1004 | #990=ORIENTED_EDGE('',*,*,#700,.T.); 1005 | #991=ORIENTED_EDGE('',*,*,#688,.F.); 1006 | #992=ORIENTED_EDGE('',*,*,#702,.F.); 1007 | #993=ORIENTED_EDGE('',*,*,#703,.T.); 1008 | #994=ORIENTED_EDGE('',*,*,#702,.T.); 1009 | #995=ORIENTED_EDGE('',*,*,#687,.F.); 1010 | #996=ORIENTED_EDGE('',*,*,#704,.F.); 1011 | #997=ORIENTED_EDGE('',*,*,#705,.T.); 1012 | #998=ORIENTED_EDGE('',*,*,#704,.T.); 1013 | #999=ORIENTED_EDGE('',*,*,#686,.F.); 1014 | #1000=ORIENTED_EDGE('',*,*,#706,.F.); 1015 | #1001=ORIENTED_EDGE('',*,*,#707,.T.); 1016 | #1002=ORIENTED_EDGE('',*,*,#706,.T.); 1017 | #1003=ORIENTED_EDGE('',*,*,#685,.F.); 1018 | #1004=ORIENTED_EDGE('',*,*,#693,.F.); 1019 | #1005=ORIENTED_EDGE('',*,*,#674,.T.); 1020 | #1006=ORIENTED_EDGE('',*,*,#707,.F.); 1021 | #1007=ORIENTED_EDGE('',*,*,#692,.F.); 1022 | #1008=ORIENTED_EDGE('',*,*,#695,.F.); 1023 | #1009=ORIENTED_EDGE('',*,*,#697,.F.); 1024 | #1010=ORIENTED_EDGE('',*,*,#699,.F.); 1025 | #1011=ORIENTED_EDGE('',*,*,#701,.F.); 1026 | #1012=ORIENTED_EDGE('',*,*,#703,.F.); 1027 | #1013=ORIENTED_EDGE('',*,*,#705,.F.); 1028 | #1014=CONICAL_SURFACE('',#1108,2.05000000000001,0.785398163397451); 1029 | #1015=CONICAL_SURFACE('',#1115,3.25,0.785398163397451); 1030 | #1016=CONICAL_SURFACE('',#1120,2.05,0.785398163397457); 1031 | #1017=CONICAL_SURFACE('',#1127,3.24999999999999,0.785398163397457); 1032 | #1018=CONICAL_SURFACE('',#1132,2.05,0.785398163397457); 1033 | #1019=CONICAL_SURFACE('',#1139,3.24999999999999,0.785398163397457); 1034 | #1020=CONICAL_SURFACE('',#1144,2.05000000000001,0.785398163397451); 1035 | #1021=CONICAL_SURFACE('',#1151,3.25,0.785398163397451); 1036 | #1022=ADVANCED_FACE('',(#90),#1014,.F.); 1037 | #1023=ADVANCED_FACE('',(#91,#52),#63,.T.); 1038 | #1024=ADVANCED_FACE('',(#92),#27,.F.); 1039 | #1025=ADVANCED_FACE('',(#93),#1015,.T.); 1040 | #1026=ADVANCED_FACE('',(#94),#28,.T.); 1041 | #1027=ADVANCED_FACE('',(#95),#1016,.F.); 1042 | #1028=ADVANCED_FACE('',(#96,#53),#64,.T.); 1043 | #1029=ADVANCED_FACE('',(#97),#29,.F.); 1044 | #1030=ADVANCED_FACE('',(#98),#1017,.T.); 1045 | #1031=ADVANCED_FACE('',(#99),#30,.T.); 1046 | #1032=ADVANCED_FACE('',(#100),#1018,.F.); 1047 | #1033=ADVANCED_FACE('',(#101,#54),#65,.T.); 1048 | #1034=ADVANCED_FACE('',(#102),#31,.F.); 1049 | #1035=ADVANCED_FACE('',(#103),#1019,.T.); 1050 | #1036=ADVANCED_FACE('',(#104),#32,.T.); 1051 | #1037=ADVANCED_FACE('',(#105),#1020,.F.); 1052 | #1038=ADVANCED_FACE('',(#106,#55),#66,.T.); 1053 | #1039=ADVANCED_FACE('',(#107),#33,.F.); 1054 | #1040=ADVANCED_FACE('',(#108),#1021,.T.); 1055 | #1041=ADVANCED_FACE('',(#109),#34,.T.); 1056 | #1042=ADVANCED_FACE('',(#110),#15,.F.); 1057 | #1043=ADVANCED_FACE('',(#111,#56),#67,.T.); 1058 | #1044=ADVANCED_FACE('',(#112),#16,.F.); 1059 | #1045=ADVANCED_FACE('',(#113,#57),#68,.T.); 1060 | #1046=ADVANCED_FACE('',(#114),#17,.F.); 1061 | #1047=ADVANCED_FACE('',(#115,#58),#69,.T.); 1062 | #1048=ADVANCED_FACE('',(#116),#18,.F.); 1063 | #1049=ADVANCED_FACE('',(#117,#59),#70,.T.); 1064 | #1050=ADVANCED_FACE('',(#118),#19,.F.); 1065 | #1051=ADVANCED_FACE('',(#119),#71,.T.); 1066 | #1052=ADVANCED_FACE('',(#120),#72,.T.); 1067 | #1053=ADVANCED_FACE('',(#121),#35,.T.); 1068 | #1054=ADVANCED_FACE('',(#122),#20,.F.); 1069 | #1055=ADVANCED_FACE('',(#123),#73,.T.); 1070 | #1056=ADVANCED_FACE('',(#124),#36,.T.); 1071 | #1057=ADVANCED_FACE('',(#125),#21,.F.); 1072 | #1058=ADVANCED_FACE('',(#126),#74,.T.); 1073 | #1059=ADVANCED_FACE('',(#127),#37,.T.); 1074 | #1060=ADVANCED_FACE('',(#128),#22,.F.); 1075 | #1061=ADVANCED_FACE('',(#129),#75,.T.); 1076 | #1062=ADVANCED_FACE('',(#130),#38,.T.); 1077 | #1063=ADVANCED_FACE('',(#131),#39,.F.); 1078 | #1064=ADVANCED_FACE('',(#132),#23,.F.); 1079 | #1065=ADVANCED_FACE('',(#133),#40,.F.); 1080 | #1066=ADVANCED_FACE('',(#134),#24,.F.); 1081 | #1067=ADVANCED_FACE('',(#135),#41,.F.); 1082 | #1068=ADVANCED_FACE('',(#136),#25,.F.); 1083 | #1069=ADVANCED_FACE('',(#137),#42,.F.); 1084 | #1070=ADVANCED_FACE('',(#138),#26,.F.); 1085 | #1071=ADVANCED_FACE('',(#139),#43,.F.); 1086 | #1072=ADVANCED_FACE('',(#140),#76,.T.); 1087 | #1073=ADVANCED_FACE('',(#141),#44,.F.); 1088 | #1074=ADVANCED_FACE('',(#142),#77,.T.); 1089 | #1075=ADVANCED_FACE('',(#143),#78,.T.); 1090 | #1076=ADVANCED_FACE('',(#144),#79,.T.); 1091 | #1077=ADVANCED_FACE('',(#145),#80,.T.); 1092 | #1078=ADVANCED_FACE('',(#146),#81,.T.); 1093 | #1079=ADVANCED_FACE('',(#147),#45,.F.); 1094 | #1080=ADVANCED_FACE('',(#148,#60),#82,.T.); 1095 | #1081=ADVANCED_FACE('',(#149),#46,.F.); 1096 | #1082=ADVANCED_FACE('',(#150),#83,.T.); 1097 | #1083=ADVANCED_FACE('',(#151),#47,.F.); 1098 | #1084=ADVANCED_FACE('',(#152,#61),#84,.T.); 1099 | #1085=ADVANCED_FACE('',(#153),#48,.T.); 1100 | #1086=ADVANCED_FACE('',(#154),#85,.T.); 1101 | #1087=ADVANCED_FACE('',(#155),#49,.T.); 1102 | #1088=ADVANCED_FACE('',(#156),#86,.T.); 1103 | #1089=ADVANCED_FACE('',(#157),#50,.T.); 1104 | #1090=ADVANCED_FACE('',(#158),#87,.T.); 1105 | #1091=ADVANCED_FACE('',(#159),#51,.T.); 1106 | #1092=ADVANCED_FACE('',(#160,#62),#88,.T.); 1107 | #1093=ADVANCED_FACE('',(#161),#89,.F.); 1108 | #1094=CLOSED_SHELL('',(#1022,#1023,#1024,#1025,#1026,#1027,#1028,#1029, 1109 | #1030,#1031,#1032,#1033,#1034,#1035,#1036,#1037,#1038,#1039,#1040,#1041, 1110 | #1042,#1043,#1044,#1045,#1046,#1047,#1048,#1049,#1050,#1051,#1052,#1053, 1111 | #1054,#1055,#1056,#1057,#1058,#1059,#1060,#1061,#1062,#1063,#1064,#1065, 1112 | #1066,#1067,#1068,#1069,#1070,#1071,#1072,#1073,#1074,#1075,#1076,#1077, 1113 | #1078,#1079,#1080,#1081,#1082,#1083,#1084,#1085,#1086,#1087,#1088,#1089, 1114 | #1090,#1091,#1092,#1093)); 1115 | #1095=DERIVED_UNIT_ELEMENT(#1097,1.); 1116 | #1096=DERIVED_UNIT_ELEMENT(#1978,-3.); 1117 | #1097=( 1118 | MASS_UNIT() 1119 | NAMED_UNIT(*) 1120 | SI_UNIT(.KILO.,.GRAM.) 1121 | ); 1122 | #1098=DERIVED_UNIT((#1095,#1096)); 1123 | #1099=MEASURE_REPRESENTATION_ITEM('density measure', 1124 | POSITIVE_RATIO_MEASURE(7850.),#1098); 1125 | #1100=PROPERTY_DEFINITION_REPRESENTATION(#1105,#1102); 1126 | #1101=PROPERTY_DEFINITION_REPRESENTATION(#1106,#1103); 1127 | #1102=REPRESENTATION('material name',(#1104),#1975); 1128 | #1103=REPRESENTATION('density',(#1099),#1975); 1129 | #1104=DESCRIPTIVE_REPRESENTATION_ITEM('Steel','Steel'); 1130 | #1105=PROPERTY_DEFINITION('material property','material name',#1985); 1131 | #1106=PROPERTY_DEFINITION('material property','density of part',#1985); 1132 | #1107=AXIS2_PLACEMENT_3D('',#1655,#1268,#1269); 1133 | #1108=AXIS2_PLACEMENT_3D('',#1656,#1270,#1271); 1134 | #1109=AXIS2_PLACEMENT_3D('',#1658,#1272,#1273); 1135 | #1110=AXIS2_PLACEMENT_3D('',#1661,#1275,#1276); 1136 | #1111=AXIS2_PLACEMENT_3D('',#1662,#1277,#1278); 1137 | #1112=AXIS2_PLACEMENT_3D('',#1664,#1279,#1280); 1138 | #1113=AXIS2_PLACEMENT_3D('',#1665,#1281,#1282); 1139 | #1114=AXIS2_PLACEMENT_3D('',#1668,#1284,#1285); 1140 | #1115=AXIS2_PLACEMENT_3D('',#1669,#1286,#1287); 1141 | #1116=AXIS2_PLACEMENT_3D('',#1672,#1289,#1290); 1142 | #1117=AXIS2_PLACEMENT_3D('',#1673,#1291,#1292); 1143 | #1118=AXIS2_PLACEMENT_3D('',#1677,#1294,#1295); 1144 | #1119=AXIS2_PLACEMENT_3D('',#1678,#1296,#1297); 1145 | #1120=AXIS2_PLACEMENT_3D('',#1679,#1298,#1299); 1146 | #1121=AXIS2_PLACEMENT_3D('',#1681,#1300,#1301); 1147 | #1122=AXIS2_PLACEMENT_3D('',#1684,#1303,#1304); 1148 | #1123=AXIS2_PLACEMENT_3D('',#1685,#1305,#1306); 1149 | #1124=AXIS2_PLACEMENT_3D('',#1687,#1307,#1308); 1150 | #1125=AXIS2_PLACEMENT_3D('',#1688,#1309,#1310); 1151 | #1126=AXIS2_PLACEMENT_3D('',#1691,#1312,#1313); 1152 | #1127=AXIS2_PLACEMENT_3D('',#1692,#1314,#1315); 1153 | #1128=AXIS2_PLACEMENT_3D('',#1695,#1317,#1318); 1154 | #1129=AXIS2_PLACEMENT_3D('',#1696,#1319,#1320); 1155 | #1130=AXIS2_PLACEMENT_3D('',#1700,#1322,#1323); 1156 | #1131=AXIS2_PLACEMENT_3D('',#1701,#1324,#1325); 1157 | #1132=AXIS2_PLACEMENT_3D('',#1702,#1326,#1327); 1158 | #1133=AXIS2_PLACEMENT_3D('',#1704,#1328,#1329); 1159 | #1134=AXIS2_PLACEMENT_3D('',#1707,#1331,#1332); 1160 | #1135=AXIS2_PLACEMENT_3D('',#1708,#1333,#1334); 1161 | #1136=AXIS2_PLACEMENT_3D('',#1710,#1335,#1336); 1162 | #1137=AXIS2_PLACEMENT_3D('',#1711,#1337,#1338); 1163 | #1138=AXIS2_PLACEMENT_3D('',#1714,#1340,#1341); 1164 | #1139=AXIS2_PLACEMENT_3D('',#1715,#1342,#1343); 1165 | #1140=AXIS2_PLACEMENT_3D('',#1718,#1345,#1346); 1166 | #1141=AXIS2_PLACEMENT_3D('',#1719,#1347,#1348); 1167 | #1142=AXIS2_PLACEMENT_3D('',#1723,#1350,#1351); 1168 | #1143=AXIS2_PLACEMENT_3D('',#1724,#1352,#1353); 1169 | #1144=AXIS2_PLACEMENT_3D('',#1725,#1354,#1355); 1170 | #1145=AXIS2_PLACEMENT_3D('',#1727,#1356,#1357); 1171 | #1146=AXIS2_PLACEMENT_3D('',#1730,#1359,#1360); 1172 | #1147=AXIS2_PLACEMENT_3D('',#1731,#1361,#1362); 1173 | #1148=AXIS2_PLACEMENT_3D('',#1733,#1363,#1364); 1174 | #1149=AXIS2_PLACEMENT_3D('',#1734,#1365,#1366); 1175 | #1150=AXIS2_PLACEMENT_3D('',#1737,#1368,#1369); 1176 | #1151=AXIS2_PLACEMENT_3D('',#1738,#1370,#1371); 1177 | #1152=AXIS2_PLACEMENT_3D('',#1741,#1373,#1374); 1178 | #1153=AXIS2_PLACEMENT_3D('',#1742,#1375,#1376); 1179 | #1154=AXIS2_PLACEMENT_3D('',#1746,#1378,#1379); 1180 | #1155=AXIS2_PLACEMENT_3D('',#1747,#1380,#1381); 1181 | #1156=AXIS2_PLACEMENT_3D('',#1748,#1382,#1383); 1182 | #1157=AXIS2_PLACEMENT_3D('',#1750,#1384,#1385); 1183 | #1158=AXIS2_PLACEMENT_3D('',#1751,#1386,#1387); 1184 | #1159=AXIS2_PLACEMENT_3D('',#1752,#1388,#1389); 1185 | #1160=AXIS2_PLACEMENT_3D('',#1754,#1390,#1391); 1186 | #1161=AXIS2_PLACEMENT_3D('',#1755,#1392,#1393); 1187 | #1162=AXIS2_PLACEMENT_3D('',#1757,#1394,#1395); 1188 | #1163=AXIS2_PLACEMENT_3D('',#1758,#1396,#1397); 1189 | #1164=AXIS2_PLACEMENT_3D('',#1759,#1398,#1399); 1190 | #1165=AXIS2_PLACEMENT_3D('',#1761,#1400,#1401); 1191 | #1166=AXIS2_PLACEMENT_3D('',#1762,#1402,#1403); 1192 | #1167=AXIS2_PLACEMENT_3D('',#1764,#1404,#1405); 1193 | #1168=AXIS2_PLACEMENT_3D('',#1765,#1406,#1407); 1194 | #1169=AXIS2_PLACEMENT_3D('',#1766,#1408,#1409); 1195 | #1170=AXIS2_PLACEMENT_3D('',#1768,#1410,#1411); 1196 | #1171=AXIS2_PLACEMENT_3D('',#1769,#1412,#1413); 1197 | #1172=AXIS2_PLACEMENT_3D('',#1771,#1414,#1415); 1198 | #1173=AXIS2_PLACEMENT_3D('',#1772,#1416,#1417); 1199 | #1174=AXIS2_PLACEMENT_3D('',#1773,#1418,#1419); 1200 | #1175=AXIS2_PLACEMENT_3D('',#1775,#1420,#1421); 1201 | #1176=AXIS2_PLACEMENT_3D('',#1776,#1422,#1423); 1202 | #1177=AXIS2_PLACEMENT_3D('',#1778,#1424,#1425); 1203 | #1178=AXIS2_PLACEMENT_3D('',#1780,#1426,#1427); 1204 | #1179=AXIS2_PLACEMENT_3D('',#1782,#1428,#1429); 1205 | #1180=AXIS2_PLACEMENT_3D('',#1783,#1430,#1431); 1206 | #1181=AXIS2_PLACEMENT_3D('',#1784,#1432,#1433); 1207 | #1182=AXIS2_PLACEMENT_3D('',#1788,#1435,#1436); 1208 | #1183=AXIS2_PLACEMENT_3D('',#1790,#1438,#1439); 1209 | #1184=AXIS2_PLACEMENT_3D('',#1794,#1441,#1442); 1210 | #1185=AXIS2_PLACEMENT_3D('',#1798,#1444,#1445); 1211 | #1186=AXIS2_PLACEMENT_3D('',#1800,#1446,#1447); 1212 | #1187=AXIS2_PLACEMENT_3D('',#1804,#1449,#1450); 1213 | #1188=AXIS2_PLACEMENT_3D('',#1806,#1451,#1452); 1214 | #1189=AXIS2_PLACEMENT_3D('',#1808,#1454,#1455); 1215 | #1190=AXIS2_PLACEMENT_3D('',#1810,#1457,#1458); 1216 | #1191=AXIS2_PLACEMENT_3D('',#1812,#1459,#1460); 1217 | #1192=AXIS2_PLACEMENT_3D('',#1813,#1461,#1462); 1218 | #1193=AXIS2_PLACEMENT_3D('',#1814,#1463,#1464); 1219 | #1194=AXIS2_PLACEMENT_3D('',#1815,#1465,#1466); 1220 | #1195=AXIS2_PLACEMENT_3D('',#1819,#1468,#1469); 1221 | #1196=AXIS2_PLACEMENT_3D('',#1821,#1471,#1472); 1222 | #1197=AXIS2_PLACEMENT_3D('',#1823,#1474,#1475); 1223 | #1198=AXIS2_PLACEMENT_3D('',#1825,#1476,#1477); 1224 | #1199=AXIS2_PLACEMENT_3D('',#1826,#1478,#1479); 1225 | #1200=AXIS2_PLACEMENT_3D('',#1827,#1480,#1481); 1226 | #1201=AXIS2_PLACEMENT_3D('',#1828,#1482,#1483); 1227 | #1202=AXIS2_PLACEMENT_3D('',#1832,#1485,#1486); 1228 | #1203=AXIS2_PLACEMENT_3D('',#1834,#1488,#1489); 1229 | #1204=AXIS2_PLACEMENT_3D('',#1836,#1491,#1492); 1230 | #1205=AXIS2_PLACEMENT_3D('',#1838,#1493,#1494); 1231 | #1206=AXIS2_PLACEMENT_3D('',#1839,#1495,#1496); 1232 | #1207=AXIS2_PLACEMENT_3D('',#1840,#1497,#1498); 1233 | #1208=AXIS2_PLACEMENT_3D('',#1841,#1499,#1500); 1234 | #1209=AXIS2_PLACEMENT_3D('',#1845,#1502,#1503); 1235 | #1210=AXIS2_PLACEMENT_3D('',#1847,#1505,#1506); 1236 | #1211=AXIS2_PLACEMENT_3D('',#1849,#1508,#1509); 1237 | #1212=AXIS2_PLACEMENT_3D('',#1851,#1510,#1511); 1238 | #1213=AXIS2_PLACEMENT_3D('',#1854,#1513,#1514); 1239 | #1214=AXIS2_PLACEMENT_3D('',#1855,#1515,#1516); 1240 | #1215=AXIS2_PLACEMENT_3D('',#1857,#1517,#1518); 1241 | #1216=AXIS2_PLACEMENT_3D('',#1858,#1519,#1520); 1242 | #1217=AXIS2_PLACEMENT_3D('',#1859,#1521,#1522); 1243 | #1218=AXIS2_PLACEMENT_3D('',#1861,#1523,#1524); 1244 | #1219=AXIS2_PLACEMENT_3D('',#1863,#1526,#1527); 1245 | #1220=AXIS2_PLACEMENT_3D('',#1865,#1528,#1529); 1246 | #1221=AXIS2_PLACEMENT_3D('',#1866,#1530,#1531); 1247 | #1222=AXIS2_PLACEMENT_3D('',#1867,#1532,#1533); 1248 | #1223=AXIS2_PLACEMENT_3D('',#1869,#1534,#1535); 1249 | #1224=AXIS2_PLACEMENT_3D('',#1871,#1537,#1538); 1250 | #1225=AXIS2_PLACEMENT_3D('',#1873,#1539,#1540); 1251 | #1226=AXIS2_PLACEMENT_3D('',#1874,#1541,#1542); 1252 | #1227=AXIS2_PLACEMENT_3D('',#1875,#1543,#1544); 1253 | #1228=AXIS2_PLACEMENT_3D('',#1877,#1545,#1546); 1254 | #1229=AXIS2_PLACEMENT_3D('',#1879,#1548,#1549); 1255 | #1230=AXIS2_PLACEMENT_3D('',#1880,#1550,#1551); 1256 | #1231=AXIS2_PLACEMENT_3D('',#1881,#1552,#1553); 1257 | #1232=AXIS2_PLACEMENT_3D('',#1885,#1555,#1556); 1258 | #1233=AXIS2_PLACEMENT_3D('',#1887,#1558,#1559); 1259 | #1234=AXIS2_PLACEMENT_3D('',#1891,#1562,#1563); 1260 | #1235=AXIS2_PLACEMENT_3D('',#1894,#1565,#1566); 1261 | #1236=AXIS2_PLACEMENT_3D('',#1895,#1567,#1568); 1262 | #1237=AXIS2_PLACEMENT_3D('',#1899,#1571,#1572); 1263 | #1238=AXIS2_PLACEMENT_3D('',#1900,#1573,#1574); 1264 | #1239=AXIS2_PLACEMENT_3D('',#1901,#1575,#1576); 1265 | #1240=AXIS2_PLACEMENT_3D('',#1902,#1577,#1578); 1266 | #1241=AXIS2_PLACEMENT_3D('',#1903,#1579,#1580); 1267 | #1242=AXIS2_PLACEMENT_3D('',#1905,#1581,#1582); 1268 | #1243=AXIS2_PLACEMENT_3D('',#1908,#1584,#1585); 1269 | #1244=AXIS2_PLACEMENT_3D('',#1909,#1586,#1587); 1270 | #1245=AXIS2_PLACEMENT_3D('',#1915,#1591,#1592); 1271 | #1246=AXIS2_PLACEMENT_3D('',#1916,#1593,#1594); 1272 | #1247=AXIS2_PLACEMENT_3D('',#1917,#1595,#1596); 1273 | #1248=AXIS2_PLACEMENT_3D('',#1921,#1599,#1600); 1274 | #1249=AXIS2_PLACEMENT_3D('',#1922,#1601,#1602); 1275 | #1250=AXIS2_PLACEMENT_3D('',#1923,#1603,#1604); 1276 | #1251=AXIS2_PLACEMENT_3D('',#1926,#1605,#1606); 1277 | #1252=AXIS2_PLACEMENT_3D('',#1930,#1608,#1609); 1278 | #1253=AXIS2_PLACEMENT_3D('',#1934,#1611,#1612); 1279 | #1254=AXIS2_PLACEMENT_3D('',#1938,#1614,#1615); 1280 | #1255=AXIS2_PLACEMENT_3D('',#1940,#1617,#1618); 1281 | #1256=AXIS2_PLACEMENT_3D('',#1943,#1619,#1620); 1282 | #1257=AXIS2_PLACEMENT_3D('',#1946,#1623,#1624); 1283 | #1258=AXIS2_PLACEMENT_3D('',#1950,#1627,#1628); 1284 | #1259=AXIS2_PLACEMENT_3D('',#1952,#1629,#1630); 1285 | #1260=AXIS2_PLACEMENT_3D('',#1954,#1632,#1633); 1286 | #1261=AXIS2_PLACEMENT_3D('',#1958,#1636,#1637); 1287 | #1262=AXIS2_PLACEMENT_3D('',#1960,#1638,#1639); 1288 | #1263=AXIS2_PLACEMENT_3D('',#1962,#1641,#1642); 1289 | #1264=AXIS2_PLACEMENT_3D('',#1966,#1645,#1646); 1290 | #1265=AXIS2_PLACEMENT_3D('',#1968,#1647,#1648); 1291 | #1266=AXIS2_PLACEMENT_3D('',#1970,#1650,#1651); 1292 | #1267=AXIS2_PLACEMENT_3D('',#1972,#1653,#1654); 1293 | #1268=DIRECTION('axis',(0.,0.,1.)); 1294 | #1269=DIRECTION('refdir',(1.,0.,0.)); 1295 | #1270=DIRECTION('center_axis',(0.,0.,1.)); 1296 | #1271=DIRECTION('ref_axis',(-1.,0.,0.)); 1297 | #1272=DIRECTION('center_axis',(0.,0.,1.)); 1298 | #1273=DIRECTION('ref_axis',(-1.,0.,0.)); 1299 | #1274=DIRECTION('',(-0.707106781186549,-8.65956056235495E-17,-0.707106781186546)); 1300 | #1275=DIRECTION('center_axis',(0.,0.,-1.)); 1301 | #1276=DIRECTION('ref_axis',(-1.,0.,0.)); 1302 | #1277=DIRECTION('center_axis',(0.,0.,1.)); 1303 | #1278=DIRECTION('ref_axis',(-1.,0.,0.)); 1304 | #1279=DIRECTION('center_axis',(0.,0.,-1.)); 1305 | #1280=DIRECTION('ref_axis',(-1.,0.,0.)); 1306 | #1281=DIRECTION('center_axis',(0.,0.,1.)); 1307 | #1282=DIRECTION('ref_axis',(-1.,0.,0.)); 1308 | #1283=DIRECTION('',(0.,0.,-1.)); 1309 | #1284=DIRECTION('center_axis',(0.,0.,-1.)); 1310 | #1285=DIRECTION('ref_axis',(-1.,0.,0.)); 1311 | #1286=DIRECTION('center_axis',(0.,0.,-1.)); 1312 | #1287=DIRECTION('ref_axis',(-1.,0.,0.)); 1313 | #1288=DIRECTION('',(0.707106781186549,8.65956056235495E-17,-0.707106781186546)); 1314 | #1289=DIRECTION('center_axis',(0.,0.,1.)); 1315 | #1290=DIRECTION('ref_axis',(-1.,0.,0.)); 1316 | #1291=DIRECTION('center_axis',(0.,0.,1.)); 1317 | #1292=DIRECTION('ref_axis',(-1.,0.,0.)); 1318 | #1293=DIRECTION('',(0.,0.,-1.)); 1319 | #1294=DIRECTION('center_axis',(0.,0.,-1.)); 1320 | #1295=DIRECTION('ref_axis',(-1.,0.,0.)); 1321 | #1296=DIRECTION('center_axis',(0.,0.,-1.)); 1322 | #1297=DIRECTION('ref_axis',(-1.,0.,0.)); 1323 | #1298=DIRECTION('center_axis',(0.,0.,1.)); 1324 | #1299=DIRECTION('ref_axis',(-1.,0.,0.)); 1325 | #1300=DIRECTION('center_axis',(0.,0.,1.)); 1326 | #1301=DIRECTION('ref_axis',(-1.,0.,0.)); 1327 | #1302=DIRECTION('',(-0.707106781186554,-8.65956056235501E-17,-0.707106781186541)); 1328 | #1303=DIRECTION('center_axis',(0.,0.,-1.)); 1329 | #1304=DIRECTION('ref_axis',(-1.,0.,0.)); 1330 | #1305=DIRECTION('center_axis',(0.,0.,1.)); 1331 | #1306=DIRECTION('ref_axis',(-1.,0.,0.)); 1332 | #1307=DIRECTION('center_axis',(0.,0.,-1.)); 1333 | #1308=DIRECTION('ref_axis',(-1.,0.,0.)); 1334 | #1309=DIRECTION('center_axis',(0.,0.,1.)); 1335 | #1310=DIRECTION('ref_axis',(-1.,0.,0.)); 1336 | #1311=DIRECTION('',(0.,0.,-1.)); 1337 | #1312=DIRECTION('center_axis',(0.,0.,-1.)); 1338 | #1313=DIRECTION('ref_axis',(-1.,0.,0.)); 1339 | #1314=DIRECTION('center_axis',(0.,0.,-1.)); 1340 | #1315=DIRECTION('ref_axis',(-1.,0.,0.)); 1341 | #1316=DIRECTION('',(0.707106781186554,8.65956056235501E-17,-0.707106781186541)); 1342 | #1317=DIRECTION('center_axis',(0.,0.,1.)); 1343 | #1318=DIRECTION('ref_axis',(-1.,0.,0.)); 1344 | #1319=DIRECTION('center_axis',(0.,0.,1.)); 1345 | #1320=DIRECTION('ref_axis',(-1.,0.,0.)); 1346 | #1321=DIRECTION('',(0.,0.,-1.)); 1347 | #1322=DIRECTION('center_axis',(0.,0.,-1.)); 1348 | #1323=DIRECTION('ref_axis',(-1.,0.,0.)); 1349 | #1324=DIRECTION('center_axis',(0.,0.,-1.)); 1350 | #1325=DIRECTION('ref_axis',(-1.,0.,0.)); 1351 | #1326=DIRECTION('center_axis',(0.,0.,1.)); 1352 | #1327=DIRECTION('ref_axis',(-1.,0.,0.)); 1353 | #1328=DIRECTION('center_axis',(0.,0.,1.)); 1354 | #1329=DIRECTION('ref_axis',(-1.,0.,0.)); 1355 | #1330=DIRECTION('',(-0.707106781186554,-8.65956056235501E-17,-0.707106781186541)); 1356 | #1331=DIRECTION('center_axis',(0.,0.,-1.)); 1357 | #1332=DIRECTION('ref_axis',(-1.,0.,0.)); 1358 | #1333=DIRECTION('center_axis',(0.,0.,1.)); 1359 | #1334=DIRECTION('ref_axis',(-1.,0.,0.)); 1360 | #1335=DIRECTION('center_axis',(0.,0.,-1.)); 1361 | #1336=DIRECTION('ref_axis',(-1.,0.,0.)); 1362 | #1337=DIRECTION('center_axis',(0.,0.,1.)); 1363 | #1338=DIRECTION('ref_axis',(-1.,0.,0.)); 1364 | #1339=DIRECTION('',(0.,0.,-1.)); 1365 | #1340=DIRECTION('center_axis',(0.,0.,-1.)); 1366 | #1341=DIRECTION('ref_axis',(-1.,0.,0.)); 1367 | #1342=DIRECTION('center_axis',(0.,0.,-1.)); 1368 | #1343=DIRECTION('ref_axis',(-1.,0.,0.)); 1369 | #1344=DIRECTION('',(0.707106781186554,8.65956056235501E-17,-0.707106781186541)); 1370 | #1345=DIRECTION('center_axis',(0.,0.,1.)); 1371 | #1346=DIRECTION('ref_axis',(-1.,0.,0.)); 1372 | #1347=DIRECTION('center_axis',(0.,0.,1.)); 1373 | #1348=DIRECTION('ref_axis',(-1.,0.,0.)); 1374 | #1349=DIRECTION('',(0.,0.,-1.)); 1375 | #1350=DIRECTION('center_axis',(0.,0.,-1.)); 1376 | #1351=DIRECTION('ref_axis',(-1.,0.,0.)); 1377 | #1352=DIRECTION('center_axis',(0.,0.,-1.)); 1378 | #1353=DIRECTION('ref_axis',(-1.,0.,0.)); 1379 | #1354=DIRECTION('center_axis',(0.,0.,1.)); 1380 | #1355=DIRECTION('ref_axis',(-1.,0.,0.)); 1381 | #1356=DIRECTION('center_axis',(0.,0.,1.)); 1382 | #1357=DIRECTION('ref_axis',(-1.,0.,0.)); 1383 | #1358=DIRECTION('',(-0.707106781186549,-8.65956056235495E-17,-0.707106781186546)); 1384 | #1359=DIRECTION('center_axis',(0.,0.,-1.)); 1385 | #1360=DIRECTION('ref_axis',(-1.,0.,0.)); 1386 | #1361=DIRECTION('center_axis',(0.,0.,1.)); 1387 | #1362=DIRECTION('ref_axis',(-1.,0.,0.)); 1388 | #1363=DIRECTION('center_axis',(0.,0.,-1.)); 1389 | #1364=DIRECTION('ref_axis',(-1.,0.,0.)); 1390 | #1365=DIRECTION('center_axis',(0.,0.,1.)); 1391 | #1366=DIRECTION('ref_axis',(-1.,0.,0.)); 1392 | #1367=DIRECTION('',(0.,0.,-1.)); 1393 | #1368=DIRECTION('center_axis',(0.,0.,-1.)); 1394 | #1369=DIRECTION('ref_axis',(-1.,0.,0.)); 1395 | #1370=DIRECTION('center_axis',(0.,0.,-1.)); 1396 | #1371=DIRECTION('ref_axis',(-1.,0.,0.)); 1397 | #1372=DIRECTION('',(0.707106781186549,8.65956056235495E-17,-0.707106781186546)); 1398 | #1373=DIRECTION('center_axis',(0.,0.,1.)); 1399 | #1374=DIRECTION('ref_axis',(-1.,0.,0.)); 1400 | #1375=DIRECTION('center_axis',(0.,0.,1.)); 1401 | #1376=DIRECTION('ref_axis',(-1.,0.,0.)); 1402 | #1377=DIRECTION('',(0.,0.,-1.)); 1403 | #1378=DIRECTION('center_axis',(0.,0.,-1.)); 1404 | #1379=DIRECTION('ref_axis',(-1.,0.,0.)); 1405 | #1380=DIRECTION('center_axis',(0.,0.,-1.)); 1406 | #1381=DIRECTION('ref_axis',(-1.,0.,0.)); 1407 | #1382=DIRECTION('center_axis',(0.,0.,1.)); 1408 | #1383=DIRECTION('ref_axis',(1.,0.,0.)); 1409 | #1384=DIRECTION('center_axis',(0.,0.,1.)); 1410 | #1385=DIRECTION('ref_axis',(-1.,0.,0.)); 1411 | #1386=DIRECTION('center_axis',(0.,-1.,0.)); 1412 | #1387=DIRECTION('ref_axis',(-1.,0.,0.)); 1413 | #1388=DIRECTION('center_axis',(0.,0.,1.)); 1414 | #1389=DIRECTION('ref_axis',(-1.,0.,0.)); 1415 | #1390=DIRECTION('center_axis',(0.,0.,1.)); 1416 | #1391=DIRECTION('ref_axis',(-1.,0.,0.)); 1417 | #1392=DIRECTION('center_axis',(0.,0.,1.)); 1418 | #1393=DIRECTION('ref_axis',(1.,0.,0.)); 1419 | #1394=DIRECTION('center_axis',(0.,0.,1.)); 1420 | #1395=DIRECTION('ref_axis',(-1.,0.,0.)); 1421 | #1396=DIRECTION('center_axis',(0.,-1.,0.)); 1422 | #1397=DIRECTION('ref_axis',(-1.,0.,0.)); 1423 | #1398=DIRECTION('center_axis',(0.,0.,1.)); 1424 | #1399=DIRECTION('ref_axis',(-1.,0.,0.)); 1425 | #1400=DIRECTION('center_axis',(0.,0.,1.)); 1426 | #1401=DIRECTION('ref_axis',(-1.,0.,0.)); 1427 | #1402=DIRECTION('center_axis',(0.,0.,1.)); 1428 | #1403=DIRECTION('ref_axis',(1.,0.,0.)); 1429 | #1404=DIRECTION('center_axis',(0.,0.,1.)); 1430 | #1405=DIRECTION('ref_axis',(-1.,0.,0.)); 1431 | #1406=DIRECTION('center_axis',(0.,-1.,0.)); 1432 | #1407=DIRECTION('ref_axis',(-1.,0.,0.)); 1433 | #1408=DIRECTION('center_axis',(0.,0.,1.)); 1434 | #1409=DIRECTION('ref_axis',(-1.,0.,0.)); 1435 | #1410=DIRECTION('center_axis',(0.,0.,1.)); 1436 | #1411=DIRECTION('ref_axis',(-1.,0.,0.)); 1437 | #1412=DIRECTION('center_axis',(0.,0.,1.)); 1438 | #1413=DIRECTION('ref_axis',(1.,0.,0.)); 1439 | #1414=DIRECTION('center_axis',(0.,0.,1.)); 1440 | #1415=DIRECTION('ref_axis',(-1.,0.,0.)); 1441 | #1416=DIRECTION('center_axis',(0.,-1.,0.)); 1442 | #1417=DIRECTION('ref_axis',(-1.,0.,0.)); 1443 | #1418=DIRECTION('center_axis',(0.,0.,1.)); 1444 | #1419=DIRECTION('ref_axis',(-1.,0.,0.)); 1445 | #1420=DIRECTION('center_axis',(0.,0.,1.)); 1446 | #1421=DIRECTION('ref_axis',(-1.,0.,0.)); 1447 | #1422=DIRECTION('center_axis',(0.,0.,-1.)); 1448 | #1423=DIRECTION('ref_axis',(-1.,0.,0.)); 1449 | #1424=DIRECTION('center_axis',(0.,0.,-1.)); 1450 | #1425=DIRECTION('ref_axis',(-1.,0.,0.)); 1451 | #1426=DIRECTION('center_axis',(-2.22044604925031E-16,-1.,0.)); 1452 | #1427=DIRECTION('ref_axis',(1.,-2.22044604925031E-16,0.)); 1453 | #1428=DIRECTION('center_axis',(0.,0.,1.)); 1454 | #1429=DIRECTION('ref_axis',(-1.,0.,0.)); 1455 | #1430=DIRECTION('center_axis',(0.,0.,1.)); 1456 | #1431=DIRECTION('ref_axis',(-1.,0.,0.)); 1457 | #1432=DIRECTION('center_axis',(0.,0.,1.)); 1458 | #1433=DIRECTION('ref_axis',(1.,0.,0.)); 1459 | #1434=DIRECTION('',(-1.,-3.90923600220125E-18,0.)); 1460 | #1435=DIRECTION('center_axis',(0.,0.,-1.)); 1461 | #1436=DIRECTION('ref_axis',(0.707106781186548,-0.707106781186547,0.)); 1462 | #1437=DIRECTION('',(0.,-1.,0.)); 1463 | #1438=DIRECTION('center_axis',(0.,0.,1.)); 1464 | #1439=DIRECTION('ref_axis',(1.,0.,0.)); 1465 | #1440=DIRECTION('',(0.,-1.,0.)); 1466 | #1441=DIRECTION('center_axis',(0.,0.,1.)); 1467 | #1442=DIRECTION('ref_axis',(-1.,0.,0.)); 1468 | #1443=DIRECTION('',(1.,0.,0.)); 1469 | #1444=DIRECTION('center_axis',(0.,0.,1.)); 1470 | #1445=DIRECTION('ref_axis',(-1.,0.,0.)); 1471 | #1446=DIRECTION('center_axis',(0.,0.,1.)); 1472 | #1447=DIRECTION('ref_axis',(-1.,0.,0.)); 1473 | #1448=DIRECTION('',(-3.90923600220125E-18,1.,0.)); 1474 | #1449=DIRECTION('center_axis',(0.,0.,1.)); 1475 | #1450=DIRECTION('ref_axis',(-1.,0.,0.)); 1476 | #1451=DIRECTION('center_axis',(0.,0.,1.)); 1477 | #1452=DIRECTION('ref_axis',(-1.,0.,0.)); 1478 | #1453=DIRECTION('',(-1.,-3.90923600220125E-18,0.)); 1479 | #1454=DIRECTION('center_axis',(0.,0.,1.)); 1480 | #1455=DIRECTION('ref_axis',(-1.,0.,0.)); 1481 | #1456=DIRECTION('',(0.,0.,-1.)); 1482 | #1457=DIRECTION('center_axis',(0.,0.,-1.)); 1483 | #1458=DIRECTION('ref_axis',(-1.,0.,0.)); 1484 | #1459=DIRECTION('center_axis',(0.,0.,-1.)); 1485 | #1460=DIRECTION('ref_axis',(-1.,0.,0.)); 1486 | #1461=DIRECTION('center_axis',(0.,-1.,0.)); 1487 | #1462=DIRECTION('ref_axis',(1.,0.,0.)); 1488 | #1463=DIRECTION('center_axis',(0.,0.,1.)); 1489 | #1464=DIRECTION('ref_axis',(-1.,0.,0.)); 1490 | #1465=DIRECTION('center_axis',(0.,0.,1.)); 1491 | #1466=DIRECTION('ref_axis',(1.,0.,0.)); 1492 | #1467=DIRECTION('',(0.,-1.,0.)); 1493 | #1468=DIRECTION('center_axis',(0.,0.,-1.)); 1494 | #1469=DIRECTION('ref_axis',(0.707106781186548,0.707106781186548,0.)); 1495 | #1470=DIRECTION('',(1.,0.,0.)); 1496 | #1471=DIRECTION('center_axis',(0.,0.,1.)); 1497 | #1472=DIRECTION('ref_axis',(-1.,0.,0.)); 1498 | #1473=DIRECTION('',(0.,0.,-1.)); 1499 | #1474=DIRECTION('center_axis',(0.,0.,-1.)); 1500 | #1475=DIRECTION('ref_axis',(-1.,0.,0.)); 1501 | #1476=DIRECTION('center_axis',(0.,0.,-1.)); 1502 | #1477=DIRECTION('ref_axis',(-1.,0.,0.)); 1503 | #1478=DIRECTION('center_axis',(0.,-1.,0.)); 1504 | #1479=DIRECTION('ref_axis',(1.,0.,0.)); 1505 | #1480=DIRECTION('center_axis',(0.,0.,1.)); 1506 | #1481=DIRECTION('ref_axis',(-1.,0.,0.)); 1507 | #1482=DIRECTION('center_axis',(0.,0.,1.)); 1508 | #1483=DIRECTION('ref_axis',(1.,0.,0.)); 1509 | #1484=DIRECTION('',(1.,0.,0.)); 1510 | #1485=DIRECTION('center_axis',(0.,0.,-1.)); 1511 | #1486=DIRECTION('ref_axis',(-0.707106781186547,0.707106781186548,0.)); 1512 | #1487=DIRECTION('',(-3.90923600220125E-18,1.,0.)); 1513 | #1488=DIRECTION('center_axis',(0.,0.,1.)); 1514 | #1489=DIRECTION('ref_axis',(-1.,0.,0.)); 1515 | #1490=DIRECTION('',(0.,0.,-1.)); 1516 | #1491=DIRECTION('center_axis',(0.,0.,-1.)); 1517 | #1492=DIRECTION('ref_axis',(-1.,0.,0.)); 1518 | #1493=DIRECTION('center_axis',(0.,0.,-1.)); 1519 | #1494=DIRECTION('ref_axis',(-1.,0.,0.)); 1520 | #1495=DIRECTION('center_axis',(-2.22044604925032E-16,-1.,0.)); 1521 | #1496=DIRECTION('ref_axis',(1.,-2.22044604925032E-16,0.)); 1522 | #1497=DIRECTION('center_axis',(0.,0.,1.)); 1523 | #1498=DIRECTION('ref_axis',(-1.,0.,0.)); 1524 | #1499=DIRECTION('center_axis',(0.,0.,1.)); 1525 | #1500=DIRECTION('ref_axis',(1.,0.,0.)); 1526 | #1501=DIRECTION('',(-3.90923600220125E-18,1.,0.)); 1527 | #1502=DIRECTION('center_axis',(0.,0.,-1.)); 1528 | #1503=DIRECTION('ref_axis',(-0.707106781186548,-0.707106781186548,0.)); 1529 | #1504=DIRECTION('',(-1.,-3.90923600220125E-18,0.)); 1530 | #1505=DIRECTION('center_axis',(0.,0.,1.)); 1531 | #1506=DIRECTION('ref_axis',(-1.,0.,0.)); 1532 | #1507=DIRECTION('',(0.,0.,-1.)); 1533 | #1508=DIRECTION('center_axis',(0.,1.,0.)); 1534 | #1509=DIRECTION('ref_axis',(0.707106781186546,0.,-0.707106781186549)); 1535 | #1510=DIRECTION('center_axis',(0.,-1.,0.)); 1536 | #1511=DIRECTION('ref_axis',(0.,0.,-1.)); 1537 | #1512=DIRECTION('',(0.,1.,0.)); 1538 | #1513=DIRECTION('center_axis',(0.,1.,0.)); 1539 | #1514=DIRECTION('ref_axis',(1.,0.,0.)); 1540 | #1515=DIRECTION('center_axis',(0.,0.,1.)); 1541 | #1516=DIRECTION('ref_axis',(1.,0.,0.)); 1542 | #1517=DIRECTION('center_axis',(-1.,0.,0.)); 1543 | #1518=DIRECTION('ref_axis',(0.,1.,0.)); 1544 | #1519=DIRECTION('center_axis',(0.,0.,1.)); 1545 | #1520=DIRECTION('ref_axis',(0.707106781186548,0.707106781186548,0.)); 1546 | #1521=DIRECTION('center_axis',(-1.,0.,0.)); 1547 | #1522=DIRECTION('ref_axis',(0.,0.707106781186546,-0.707106781186549)); 1548 | #1523=DIRECTION('center_axis',(-1.,0.,0.)); 1549 | #1524=DIRECTION('ref_axis',(0.,1.,0.)); 1550 | #1525=DIRECTION('',(-1.,0.,0.)); 1551 | #1526=DIRECTION('center_axis',(0.,0.,1.)); 1552 | #1527=DIRECTION('ref_axis',(1.,0.,0.)); 1553 | #1528=DIRECTION('center_axis',(0.,-1.,0.)); 1554 | #1529=DIRECTION('ref_axis',(-1.,0.,0.)); 1555 | #1530=DIRECTION('center_axis',(0.,0.,1.)); 1556 | #1531=DIRECTION('ref_axis',(-0.707106781186547,0.707106781186548,0.)); 1557 | #1532=DIRECTION('center_axis',(3.90923600220125E-18,-1.,0.)); 1558 | #1533=DIRECTION('ref_axis',(-0.707106781186548,0.,-0.707106781186548)); 1559 | #1534=DIRECTION('center_axis',(0.,-1.,0.)); 1560 | #1535=DIRECTION('ref_axis',(-1.,0.,0.)); 1561 | #1536=DIRECTION('',(3.90923600220125E-18,-1.,0.)); 1562 | #1537=DIRECTION('center_axis',(0.,0.,1.)); 1563 | #1538=DIRECTION('ref_axis',(1.,0.,0.)); 1564 | #1539=DIRECTION('center_axis',(1.,0.,0.)); 1565 | #1540=DIRECTION('ref_axis',(0.,-1.,0.)); 1566 | #1541=DIRECTION('center_axis',(0.,0.,1.)); 1567 | #1542=DIRECTION('ref_axis',(-0.707106781186548,-0.707106781186548,0.)); 1568 | #1543=DIRECTION('center_axis',(1.,3.90923600220125E-18,0.)); 1569 | #1544=DIRECTION('ref_axis',(0.,-0.707106781186548,-0.707106781186548)); 1570 | #1545=DIRECTION('center_axis',(1.,0.,0.)); 1571 | #1546=DIRECTION('ref_axis',(0.,-1.,0.)); 1572 | #1547=DIRECTION('',(1.,3.90923600220125E-18,0.)); 1573 | #1548=DIRECTION('center_axis',(0.,0.,1.)); 1574 | #1549=DIRECTION('ref_axis',(1.,0.,0.)); 1575 | #1550=DIRECTION('center_axis',(0.,0.,1.)); 1576 | #1551=DIRECTION('ref_axis',(0.707106781186548,-0.707106781186547,0.)); 1577 | #1552=DIRECTION('center_axis',(0.,0.,1.)); 1578 | #1553=DIRECTION('ref_axis',(0.,1.,0.)); 1579 | #1554=DIRECTION('',(0.,0.,1.)); 1580 | #1555=DIRECTION('center_axis',(0.,0.,-1.)); 1581 | #1556=DIRECTION('ref_axis',(0.,1.,0.)); 1582 | #1557=DIRECTION('',(0.,0.,1.)); 1583 | #1558=DIRECTION('center_axis',(0.,-1.,0.)); 1584 | #1559=DIRECTION('ref_axis',(1.,0.,0.)); 1585 | #1560=DIRECTION('',(0.,0.,1.)); 1586 | #1561=DIRECTION('',(1.,0.,0.)); 1587 | #1562=DIRECTION('center_axis',(0.,0.,1.)); 1588 | #1563=DIRECTION('ref_axis',(1.,0.,0.)); 1589 | #1564=DIRECTION('',(0.,0.,1.)); 1590 | #1565=DIRECTION('center_axis',(0.,0.,-1.)); 1591 | #1566=DIRECTION('ref_axis',(1.,0.,0.)); 1592 | #1567=DIRECTION('center_axis',(-1.,0.,0.)); 1593 | #1568=DIRECTION('ref_axis',(0.,-1.,0.)); 1594 | #1569=DIRECTION('',(0.,0.,1.)); 1595 | #1570=DIRECTION('',(0.,-1.,0.)); 1596 | #1571=DIRECTION('center_axis',(0.,0.,1.)); 1597 | #1572=DIRECTION('ref_axis',(-1.,0.,0.)); 1598 | #1573=DIRECTION('center_axis',(0.,0.,1.)); 1599 | #1574=DIRECTION('ref_axis',(-1.,0.,0.)); 1600 | #1575=DIRECTION('center_axis',(0.,0.,1.)); 1601 | #1576=DIRECTION('ref_axis',(-1.,0.,0.)); 1602 | #1577=DIRECTION('center_axis',(0.,0.,1.)); 1603 | #1578=DIRECTION('ref_axis',(-1.,0.,0.)); 1604 | #1579=DIRECTION('center_axis',(0.,1.,0.)); 1605 | #1580=DIRECTION('ref_axis',(1.,0.,0.)); 1606 | #1581=DIRECTION('center_axis',(0.,1.,0.)); 1607 | #1582=DIRECTION('ref_axis',(1.,0.,0.)); 1608 | #1583=DIRECTION('',(0.,1.,0.)); 1609 | #1584=DIRECTION('center_axis',(3.90923600220125E-18,-1.,0.)); 1610 | #1585=DIRECTION('ref_axis',(1.,0.,0.)); 1611 | #1586=DIRECTION('center_axis',(-3.90923600220125E-18,1.,0.)); 1612 | #1587=DIRECTION('ref_axis',(-1.,-3.90923600220125E-18,0.)); 1613 | #1588=DIRECTION('',(0.,0.,1.)); 1614 | #1589=DIRECTION('',(-1.,-3.90923600220125E-18,0.)); 1615 | #1590=DIRECTION('',(0.,0.,1.)); 1616 | #1591=DIRECTION('center_axis',(0.,0.,1.)); 1617 | #1592=DIRECTION('ref_axis',(0.,-1.,0.)); 1618 | #1593=DIRECTION('center_axis',(0.,0.,-1.)); 1619 | #1594=DIRECTION('ref_axis',(0.,-1.,0.)); 1620 | #1595=DIRECTION('center_axis',(1.,3.90923600220125E-18,0.)); 1621 | #1596=DIRECTION('ref_axis',(-3.90923600220125E-18,1.,0.)); 1622 | #1597=DIRECTION('',(-3.90923600220125E-18,1.,0.)); 1623 | #1598=DIRECTION('',(0.,0.,1.)); 1624 | #1599=DIRECTION('center_axis',(0.,0.,1.)); 1625 | #1600=DIRECTION('ref_axis',(-1.,0.,0.)); 1626 | #1601=DIRECTION('center_axis',(0.,0.,-1.)); 1627 | #1602=DIRECTION('ref_axis',(-1.,0.,0.)); 1628 | #1603=DIRECTION('center_axis',(0.,0.,1.)); 1629 | #1604=DIRECTION('ref_axis',(-1.,0.,0.)); 1630 | #1605=DIRECTION('center_axis',(0.,0.,1.)); 1631 | #1606=DIRECTION('ref_axis',(-1.,0.,0.)); 1632 | #1607=DIRECTION('',(1.,0.,0.)); 1633 | #1608=DIRECTION('center_axis',(0.,0.,1.)); 1634 | #1609=DIRECTION('ref_axis',(0.,-1.,0.)); 1635 | #1610=DIRECTION('',(0.,1.,0.)); 1636 | #1611=DIRECTION('center_axis',(0.,0.,1.)); 1637 | #1612=DIRECTION('ref_axis',(1.,0.,0.)); 1638 | #1613=DIRECTION('',(-1.,0.,0.)); 1639 | #1614=DIRECTION('center_axis',(0.,0.,1.)); 1640 | #1615=DIRECTION('ref_axis',(0.,1.,0.)); 1641 | #1616=DIRECTION('',(0.,-1.,0.)); 1642 | #1617=DIRECTION('center_axis',(0.,0.,1.)); 1643 | #1618=DIRECTION('ref_axis',(1.,0.,0.)); 1644 | #1619=DIRECTION('center_axis',(0.,0.,1.)); 1645 | #1620=DIRECTION('ref_axis',(1.,0.,0.)); 1646 | #1621=DIRECTION('',(0.,0.,1.)); 1647 | #1622=DIRECTION('',(0.,0.,1.)); 1648 | #1623=DIRECTION('center_axis',(-1.,0.,0.)); 1649 | #1624=DIRECTION('ref_axis',(0.,-1.,0.)); 1650 | #1625=DIRECTION('',(0.,-1.,0.)); 1651 | #1626=DIRECTION('',(0.,0.,1.)); 1652 | #1627=DIRECTION('center_axis',(0.,0.,1.)); 1653 | #1628=DIRECTION('ref_axis',(1.,0.,0.)); 1654 | #1629=DIRECTION('center_axis',(0.,0.,1.)); 1655 | #1630=DIRECTION('ref_axis',(1.,0.,0.)); 1656 | #1631=DIRECTION('',(0.,0.,1.)); 1657 | #1632=DIRECTION('center_axis',(0.,1.,0.)); 1658 | #1633=DIRECTION('ref_axis',(-1.,0.,0.)); 1659 | #1634=DIRECTION('',(-1.,0.,0.)); 1660 | #1635=DIRECTION('',(0.,0.,1.)); 1661 | #1636=DIRECTION('center_axis',(0.,0.,1.)); 1662 | #1637=DIRECTION('ref_axis',(1.,0.,0.)); 1663 | #1638=DIRECTION('center_axis',(0.,0.,1.)); 1664 | #1639=DIRECTION('ref_axis',(1.,0.,0.)); 1665 | #1640=DIRECTION('',(0.,0.,1.)); 1666 | #1641=DIRECTION('center_axis',(1.,0.,0.)); 1667 | #1642=DIRECTION('ref_axis',(0.,1.,0.)); 1668 | #1643=DIRECTION('',(0.,1.,0.)); 1669 | #1644=DIRECTION('',(0.,0.,1.)); 1670 | #1645=DIRECTION('center_axis',(0.,0.,1.)); 1671 | #1646=DIRECTION('ref_axis',(1.,0.,0.)); 1672 | #1647=DIRECTION('center_axis',(0.,0.,1.)); 1673 | #1648=DIRECTION('ref_axis',(1.,0.,0.)); 1674 | #1649=DIRECTION('',(0.,0.,1.)); 1675 | #1650=DIRECTION('center_axis',(0.,-1.,0.)); 1676 | #1651=DIRECTION('ref_axis',(1.,0.,0.)); 1677 | #1652=DIRECTION('',(1.,0.,0.)); 1678 | #1653=DIRECTION('center_axis',(0.,0.,1.)); 1679 | #1654=DIRECTION('ref_axis',(1.,0.,0.)); 1680 | #1655=CARTESIAN_POINT('',(0.,0.,0.)); 1681 | #1656=CARTESIAN_POINT('Origin',(12.,12.,37.75)); 1682 | #1657=CARTESIAN_POINT('',(14.3,12.,38.)); 1683 | #1658=CARTESIAN_POINT('Origin',(12.,12.,38.)); 1684 | #1659=CARTESIAN_POINT('',(13.8,12.,37.5)); 1685 | #1660=CARTESIAN_POINT('',(14.05,12.,37.75)); 1686 | #1661=CARTESIAN_POINT('Origin',(12.,12.,37.5)); 1687 | #1662=CARTESIAN_POINT('Origin',(12.,12.,38.)); 1688 | #1663=CARTESIAN_POINT('',(15.,12.,38.)); 1689 | #1664=CARTESIAN_POINT('Origin',(12.,12.,38.)); 1690 | #1665=CARTESIAN_POINT('Origin',(12.,12.,2.)); 1691 | #1666=CARTESIAN_POINT('',(13.8,12.,5.)); 1692 | #1667=CARTESIAN_POINT('',(13.8,12.,2.)); 1693 | #1668=CARTESIAN_POINT('Origin',(12.,12.,5.)); 1694 | #1669=CARTESIAN_POINT('Origin',(12.,12.,37.75)); 1695 | #1670=CARTESIAN_POINT('',(15.5,12.,37.5)); 1696 | #1671=CARTESIAN_POINT('',(15.25,12.,37.75)); 1697 | #1672=CARTESIAN_POINT('Origin',(12.,12.,37.5)); 1698 | #1673=CARTESIAN_POINT('Origin',(12.,12.,2.)); 1699 | #1674=CARTESIAN_POINT('',(15.5,12.,6.)); 1700 | #1675=CARTESIAN_POINT('',(15.5,12.,2.)); 1701 | #1676=CARTESIAN_POINT('',(8.50000000000001,12.,6.)); 1702 | #1677=CARTESIAN_POINT('Origin',(12.,12.,6.)); 1703 | #1678=CARTESIAN_POINT('Origin',(12.,12.,6.)); 1704 | #1679=CARTESIAN_POINT('Origin',(150.,12.,37.75)); 1705 | #1680=CARTESIAN_POINT('',(152.3,12.,38.)); 1706 | #1681=CARTESIAN_POINT('Origin',(150.,12.,38.)); 1707 | #1682=CARTESIAN_POINT('',(151.8,12.,37.5)); 1708 | #1683=CARTESIAN_POINT('',(152.05,12.,37.75)); 1709 | #1684=CARTESIAN_POINT('Origin',(150.,12.,37.5)); 1710 | #1685=CARTESIAN_POINT('Origin',(150.,12.,38.)); 1711 | #1686=CARTESIAN_POINT('',(153.,12.,38.)); 1712 | #1687=CARTESIAN_POINT('Origin',(150.,12.,38.)); 1713 | #1688=CARTESIAN_POINT('Origin',(150.,12.,2.)); 1714 | #1689=CARTESIAN_POINT('',(151.8,12.,5.)); 1715 | #1690=CARTESIAN_POINT('',(151.8,12.,2.)); 1716 | #1691=CARTESIAN_POINT('Origin',(150.,12.,5.)); 1717 | #1692=CARTESIAN_POINT('Origin',(150.,12.,37.75)); 1718 | #1693=CARTESIAN_POINT('',(153.5,12.,37.5)); 1719 | #1694=CARTESIAN_POINT('',(153.25,12.,37.75)); 1720 | #1695=CARTESIAN_POINT('Origin',(150.,12.,37.5)); 1721 | #1696=CARTESIAN_POINT('Origin',(150.,12.,2.)); 1722 | #1697=CARTESIAN_POINT('',(153.5,12.,6.)); 1723 | #1698=CARTESIAN_POINT('',(153.5,12.,2.)); 1724 | #1699=CARTESIAN_POINT('',(146.5,12.,6.)); 1725 | #1700=CARTESIAN_POINT('Origin',(150.,12.,6.)); 1726 | #1701=CARTESIAN_POINT('Origin',(150.,12.,6.)); 1727 | #1702=CARTESIAN_POINT('Origin',(150.,150.,37.75)); 1728 | #1703=CARTESIAN_POINT('',(152.3,150.,38.)); 1729 | #1704=CARTESIAN_POINT('Origin',(150.,150.,38.)); 1730 | #1705=CARTESIAN_POINT('',(151.8,150.,37.5)); 1731 | #1706=CARTESIAN_POINT('',(152.05,150.,37.75)); 1732 | #1707=CARTESIAN_POINT('Origin',(150.,150.,37.5)); 1733 | #1708=CARTESIAN_POINT('Origin',(150.,150.,38.)); 1734 | #1709=CARTESIAN_POINT('',(153.,150.,38.)); 1735 | #1710=CARTESIAN_POINT('Origin',(150.,150.,38.)); 1736 | #1711=CARTESIAN_POINT('Origin',(150.,150.,2.)); 1737 | #1712=CARTESIAN_POINT('',(151.8,150.,5.)); 1738 | #1713=CARTESIAN_POINT('',(151.8,150.,2.)); 1739 | #1714=CARTESIAN_POINT('Origin',(150.,150.,5.)); 1740 | #1715=CARTESIAN_POINT('Origin',(150.,150.,37.75)); 1741 | #1716=CARTESIAN_POINT('',(153.5,150.,37.5)); 1742 | #1717=CARTESIAN_POINT('',(153.25,150.,37.75)); 1743 | #1718=CARTESIAN_POINT('Origin',(150.,150.,37.5)); 1744 | #1719=CARTESIAN_POINT('Origin',(150.,150.,2.)); 1745 | #1720=CARTESIAN_POINT('',(153.5,150.,6.)); 1746 | #1721=CARTESIAN_POINT('',(153.5,150.,2.)); 1747 | #1722=CARTESIAN_POINT('',(146.5,150.,6.)); 1748 | #1723=CARTESIAN_POINT('Origin',(150.,150.,6.)); 1749 | #1724=CARTESIAN_POINT('Origin',(150.,150.,6.)); 1750 | #1725=CARTESIAN_POINT('Origin',(12.,150.,37.75)); 1751 | #1726=CARTESIAN_POINT('',(14.3,150.,38.)); 1752 | #1727=CARTESIAN_POINT('Origin',(12.,150.,38.)); 1753 | #1728=CARTESIAN_POINT('',(13.8,150.,37.5)); 1754 | #1729=CARTESIAN_POINT('',(14.05,150.,37.75)); 1755 | #1730=CARTESIAN_POINT('Origin',(12.,150.,37.5)); 1756 | #1731=CARTESIAN_POINT('Origin',(12.,150.,38.)); 1757 | #1732=CARTESIAN_POINT('',(15.,150.,38.)); 1758 | #1733=CARTESIAN_POINT('Origin',(12.,150.,38.)); 1759 | #1734=CARTESIAN_POINT('Origin',(12.,150.,2.)); 1760 | #1735=CARTESIAN_POINT('',(13.8,150.,5.)); 1761 | #1736=CARTESIAN_POINT('',(13.8,150.,2.)); 1762 | #1737=CARTESIAN_POINT('Origin',(12.,150.,5.)); 1763 | #1738=CARTESIAN_POINT('Origin',(12.,150.,37.75)); 1764 | #1739=CARTESIAN_POINT('',(15.5,150.,37.5)); 1765 | #1740=CARTESIAN_POINT('',(15.25,150.,37.75)); 1766 | #1741=CARTESIAN_POINT('Origin',(12.,150.,37.5)); 1767 | #1742=CARTESIAN_POINT('Origin',(12.,150.,2.)); 1768 | #1743=CARTESIAN_POINT('',(15.5,150.,6.)); 1769 | #1744=CARTESIAN_POINT('',(15.5,150.,2.)); 1770 | #1745=CARTESIAN_POINT('',(8.5,150.,6.)); 1771 | #1746=CARTESIAN_POINT('Origin',(12.,150.,6.)); 1772 | #1747=CARTESIAN_POINT('Origin',(12.,150.,6.)); 1773 | #1748=CARTESIAN_POINT('Origin',(12.,150.,6.)); 1774 | #1749=CARTESIAN_POINT('',(7.5,150.,5.)); 1775 | #1750=CARTESIAN_POINT('Origin',(12.,150.,5.)); 1776 | #1751=CARTESIAN_POINT('Origin',(7.5,150.,6.)); 1777 | #1752=CARTESIAN_POINT('Origin',(12.,150.,5.)); 1778 | #1753=CARTESIAN_POINT('',(18.,150.,5.)); 1779 | #1754=CARTESIAN_POINT('Origin',(12.,150.,5.)); 1780 | #1755=CARTESIAN_POINT('Origin',(12.,12.,6.)); 1781 | #1756=CARTESIAN_POINT('',(7.50000000000001,12.,5.)); 1782 | #1757=CARTESIAN_POINT('Origin',(12.,12.,5.)); 1783 | #1758=CARTESIAN_POINT('Origin',(7.50000000000001,12.,6.)); 1784 | #1759=CARTESIAN_POINT('Origin',(12.,12.,5.)); 1785 | #1760=CARTESIAN_POINT('',(18.,12.,5.)); 1786 | #1761=CARTESIAN_POINT('Origin',(12.,12.,5.)); 1787 | #1762=CARTESIAN_POINT('Origin',(150.,12.,6.)); 1788 | #1763=CARTESIAN_POINT('',(145.5,12.,5.)); 1789 | #1764=CARTESIAN_POINT('Origin',(150.,12.,5.)); 1790 | #1765=CARTESIAN_POINT('Origin',(145.5,12.,6.)); 1791 | #1766=CARTESIAN_POINT('Origin',(150.,12.,5.)); 1792 | #1767=CARTESIAN_POINT('',(156.,12.,5.)); 1793 | #1768=CARTESIAN_POINT('Origin',(150.,12.,5.)); 1794 | #1769=CARTESIAN_POINT('Origin',(150.,150.,6.)); 1795 | #1770=CARTESIAN_POINT('',(145.5,150.,5.)); 1796 | #1771=CARTESIAN_POINT('Origin',(150.,150.,5.)); 1797 | #1772=CARTESIAN_POINT('Origin',(145.5,150.,6.)); 1798 | #1773=CARTESIAN_POINT('Origin',(150.,150.,5.)); 1799 | #1774=CARTESIAN_POINT('',(156.,150.,5.)); 1800 | #1775=CARTESIAN_POINT('Origin',(150.,150.,5.)); 1801 | #1776=CARTESIAN_POINT('Origin',(150.,12.,4.)); 1802 | #1777=CARTESIAN_POINT('',(156.,12.,4.)); 1803 | #1778=CARTESIAN_POINT('Origin',(150.,12.,4.)); 1804 | #1779=CARTESIAN_POINT('',(158.,12.,2.)); 1805 | #1780=CARTESIAN_POINT('Origin',(158.,12.,4.)); 1806 | #1781=CARTESIAN_POINT('',(150.,4.,2.)); 1807 | #1782=CARTESIAN_POINT('Origin',(150.,12.,2.)); 1808 | #1783=CARTESIAN_POINT('Origin',(150.,12.,2.)); 1809 | #1784=CARTESIAN_POINT('Origin',(81.,81.,2.)); 1810 | #1785=CARTESIAN_POINT('',(152.,4.,2.)); 1811 | #1786=CARTESIAN_POINT('',(116.5,4.,2.)); 1812 | #1787=CARTESIAN_POINT('',(158.,10.,2.)); 1813 | #1788=CARTESIAN_POINT('Origin',(152.,10.,2.)); 1814 | #1789=CARTESIAN_POINT('',(158.,116.5,2.)); 1815 | #1790=CARTESIAN_POINT('Origin',(81.,81.,2.)); 1816 | #1791=CARTESIAN_POINT('',(158.,150.,2.)); 1817 | #1792=CARTESIAN_POINT('',(158.,116.5,2.)); 1818 | #1793=CARTESIAN_POINT('',(150.,158.,2.)); 1819 | #1794=CARTESIAN_POINT('Origin',(150.,150.,2.)); 1820 | #1795=CARTESIAN_POINT('',(12.,158.,2.)); 1821 | #1796=CARTESIAN_POINT('',(45.5,158.,2.)); 1822 | #1797=CARTESIAN_POINT('',(20.,150.,2.)); 1823 | #1798=CARTESIAN_POINT('Origin',(12.,150.,2.)); 1824 | #1799=CARTESIAN_POINT('',(4.,150.,2.)); 1825 | #1800=CARTESIAN_POINT('Origin',(12.,150.,2.)); 1826 | #1801=CARTESIAN_POINT('',(4.,12.,2.)); 1827 | #1802=CARTESIAN_POINT('',(4.,45.5,2.)); 1828 | #1803=CARTESIAN_POINT('',(20.,12.,2.)); 1829 | #1804=CARTESIAN_POINT('Origin',(12.,12.,2.)); 1830 | #1805=CARTESIAN_POINT('',(12.,4.,2.)); 1831 | #1806=CARTESIAN_POINT('Origin',(12.,12.,2.)); 1832 | #1807=CARTESIAN_POINT('',(116.5,4.,2.)); 1833 | #1808=CARTESIAN_POINT('Origin',(150.,12.,2.)); 1834 | #1809=CARTESIAN_POINT('',(156.,12.,2.)); 1835 | #1810=CARTESIAN_POINT('Origin',(150.,150.,4.)); 1836 | #1811=CARTESIAN_POINT('',(156.,150.,4.)); 1837 | #1812=CARTESIAN_POINT('Origin',(150.,150.,4.)); 1838 | #1813=CARTESIAN_POINT('Origin',(158.,150.,4.)); 1839 | #1814=CARTESIAN_POINT('Origin',(150.,150.,2.)); 1840 | #1815=CARTESIAN_POINT('Origin',(81.,81.,2.)); 1841 | #1816=CARTESIAN_POINT('',(158.,152.,2.)); 1842 | #1817=CARTESIAN_POINT('',(158.,116.5,2.)); 1843 | #1818=CARTESIAN_POINT('',(152.,158.,2.)); 1844 | #1819=CARTESIAN_POINT('Origin',(152.,152.,2.)); 1845 | #1820=CARTESIAN_POINT('',(45.5,158.,2.)); 1846 | #1821=CARTESIAN_POINT('Origin',(150.,150.,2.)); 1847 | #1822=CARTESIAN_POINT('',(156.,150.,2.)); 1848 | #1823=CARTESIAN_POINT('Origin',(12.,150.,4.)); 1849 | #1824=CARTESIAN_POINT('',(18.,150.,4.)); 1850 | #1825=CARTESIAN_POINT('Origin',(12.,150.,4.)); 1851 | #1826=CARTESIAN_POINT('Origin',(20.,150.,4.)); 1852 | #1827=CARTESIAN_POINT('Origin',(12.,150.,2.)); 1853 | #1828=CARTESIAN_POINT('Origin',(81.,81.,2.)); 1854 | #1829=CARTESIAN_POINT('',(10.,158.,2.)); 1855 | #1830=CARTESIAN_POINT('',(45.5,158.,2.)); 1856 | #1831=CARTESIAN_POINT('',(3.99999999999999,152.,2.)); 1857 | #1832=CARTESIAN_POINT('Origin',(10.,152.,2.)); 1858 | #1833=CARTESIAN_POINT('',(4.,45.5,2.)); 1859 | #1834=CARTESIAN_POINT('Origin',(12.,150.,2.)); 1860 | #1835=CARTESIAN_POINT('',(18.,150.,2.)); 1861 | #1836=CARTESIAN_POINT('Origin',(12.,12.,4.)); 1862 | #1837=CARTESIAN_POINT('',(18.,12.,4.)); 1863 | #1838=CARTESIAN_POINT('Origin',(12.,12.,4.)); 1864 | #1839=CARTESIAN_POINT('Origin',(20.,12.,4.)); 1865 | #1840=CARTESIAN_POINT('Origin',(12.,12.,2.)); 1866 | #1841=CARTESIAN_POINT('Origin',(81.,81.,2.)); 1867 | #1842=CARTESIAN_POINT('',(4.,10.,2.)); 1868 | #1843=CARTESIAN_POINT('',(4.,45.5,2.)); 1869 | #1844=CARTESIAN_POINT('',(10.,4.,2.)); 1870 | #1845=CARTESIAN_POINT('Origin',(10.,10.,2.)); 1871 | #1846=CARTESIAN_POINT('',(116.5,4.,2.)); 1872 | #1847=CARTESIAN_POINT('Origin',(12.,12.,2.)); 1873 | #1848=CARTESIAN_POINT('',(18.,12.,2.)); 1874 | #1849=CARTESIAN_POINT('Origin',(158.,116.5,4.)); 1875 | #1850=CARTESIAN_POINT('',(160.,10.,4.)); 1876 | #1851=CARTESIAN_POINT('Origin',(158.,10.,4.)); 1877 | #1852=CARTESIAN_POINT('',(160.,152.,4.)); 1878 | #1853=CARTESIAN_POINT('',(160.,116.5,4.)); 1879 | #1854=CARTESIAN_POINT('Origin',(158.,152.,4.)); 1880 | #1855=CARTESIAN_POINT('Origin',(152.,152.,4.)); 1881 | #1856=CARTESIAN_POINT('',(152.,160.,4.)); 1882 | #1857=CARTESIAN_POINT('Origin',(152.,158.,4.)); 1883 | #1858=CARTESIAN_POINT('Origin',(152.,152.,4.)); 1884 | #1859=CARTESIAN_POINT('Origin',(45.5,158.,4.)); 1885 | #1860=CARTESIAN_POINT('',(10.,160.,4.)); 1886 | #1861=CARTESIAN_POINT('Origin',(10.,158.,4.)); 1887 | #1862=CARTESIAN_POINT('',(45.5,160.,4.)); 1888 | #1863=CARTESIAN_POINT('Origin',(10.,152.,4.)); 1889 | #1864=CARTESIAN_POINT('',(2.,152.,4.)); 1890 | #1865=CARTESIAN_POINT('Origin',(3.99999999999999,152.,4.)); 1891 | #1866=CARTESIAN_POINT('Origin',(10.,152.,4.)); 1892 | #1867=CARTESIAN_POINT('Origin',(4.,45.5,4.)); 1893 | #1868=CARTESIAN_POINT('',(2.,10.,4.)); 1894 | #1869=CARTESIAN_POINT('Origin',(4.,10.,4.)); 1895 | #1870=CARTESIAN_POINT('',(2.,45.5,4.)); 1896 | #1871=CARTESIAN_POINT('Origin',(10.,10.,4.)); 1897 | #1872=CARTESIAN_POINT('',(10.,2.,4.)); 1898 | #1873=CARTESIAN_POINT('Origin',(10.,4.,4.)); 1899 | #1874=CARTESIAN_POINT('Origin',(10.,10.,4.)); 1900 | #1875=CARTESIAN_POINT('Origin',(116.5,4.,4.)); 1901 | #1876=CARTESIAN_POINT('',(152.,2.,4.)); 1902 | #1877=CARTESIAN_POINT('Origin',(152.,4.,4.)); 1903 | #1878=CARTESIAN_POINT('',(116.5,2.,4.)); 1904 | #1879=CARTESIAN_POINT('Origin',(152.,10.,4.)); 1905 | #1880=CARTESIAN_POINT('Origin',(152.,10.,4.)); 1906 | #1881=CARTESIAN_POINT('Origin',(10.,152.,2.)); 1907 | #1882=CARTESIAN_POINT('',(10.,160.,38.)); 1908 | #1883=CARTESIAN_POINT('',(10.,160.,2.)); 1909 | #1884=CARTESIAN_POINT('',(2.,152.,38.)); 1910 | #1885=CARTESIAN_POINT('Origin',(10.,152.,38.)); 1911 | #1886=CARTESIAN_POINT('',(2.,152.,2.)); 1912 | #1887=CARTESIAN_POINT('Origin',(10.,160.,2.)); 1913 | #1888=CARTESIAN_POINT('',(152.,160.,38.)); 1914 | #1889=CARTESIAN_POINT('',(152.,160.,2.)); 1915 | #1890=CARTESIAN_POINT('',(152.,160.,38.)); 1916 | #1891=CARTESIAN_POINT('Origin',(152.,152.,2.)); 1917 | #1892=CARTESIAN_POINT('',(160.,152.,38.)); 1918 | #1893=CARTESIAN_POINT('',(160.,152.,2.)); 1919 | #1894=CARTESIAN_POINT('Origin',(152.,152.,38.)); 1920 | #1895=CARTESIAN_POINT('Origin',(160.,152.,2.)); 1921 | #1896=CARTESIAN_POINT('',(160.,10.,38.)); 1922 | #1897=CARTESIAN_POINT('',(160.,10.,2.)); 1923 | #1898=CARTESIAN_POINT('',(160.,10.,38.)); 1924 | #1899=CARTESIAN_POINT('Origin',(12.,150.,5.)); 1925 | #1900=CARTESIAN_POINT('Origin',(150.,150.,5.)); 1926 | #1901=CARTESIAN_POINT('Origin',(12.,12.,5.)); 1927 | #1902=CARTESIAN_POINT('Origin',(150.,12.,5.)); 1928 | #1903=CARTESIAN_POINT('Origin',(81.,0.,19.)); 1929 | #1904=CARTESIAN_POINT('',(71.,0.,19.)); 1930 | #1905=CARTESIAN_POINT('Origin',(81.,0.,19.)); 1931 | #1906=CARTESIAN_POINT('',(71.,2.,19.)); 1932 | #1907=CARTESIAN_POINT('',(71.,0.,19.)); 1933 | #1908=CARTESIAN_POINT('Origin',(81.,2.,19.)); 1934 | #1909=CARTESIAN_POINT('Origin',(152.,2.,2.)); 1935 | #1910=CARTESIAN_POINT('',(10.,2.,38.)); 1936 | #1911=CARTESIAN_POINT('',(10.,2.,2.)); 1937 | #1912=CARTESIAN_POINT('',(152.,2.,38.)); 1938 | #1913=CARTESIAN_POINT('',(10.,2.,38.)); 1939 | #1914=CARTESIAN_POINT('',(152.,2.,2.)); 1940 | #1915=CARTESIAN_POINT('Origin',(152.,10.,2.)); 1941 | #1916=CARTESIAN_POINT('Origin',(152.,10.,38.)); 1942 | #1917=CARTESIAN_POINT('Origin',(2.,10.,2.)); 1943 | #1918=CARTESIAN_POINT('',(2.,10.,38.)); 1944 | #1919=CARTESIAN_POINT('',(2.,152.,38.)); 1945 | #1920=CARTESIAN_POINT('',(2.,10.,2.)); 1946 | #1921=CARTESIAN_POINT('Origin',(10.,10.,2.)); 1947 | #1922=CARTESIAN_POINT('Origin',(10.,10.,38.)); 1948 | #1923=CARTESIAN_POINT('Origin',(81.,81.,38.)); 1949 | #1924=CARTESIAN_POINT('',(0.,10.,38.)); 1950 | #1925=CARTESIAN_POINT('',(10.,0.,38.)); 1951 | #1926=CARTESIAN_POINT('Origin',(10.,10.,38.)); 1952 | #1927=CARTESIAN_POINT('',(152.,0.,38.)); 1953 | #1928=CARTESIAN_POINT('',(10.,0.,38.)); 1954 | #1929=CARTESIAN_POINT('',(162.,10.,38.)); 1955 | #1930=CARTESIAN_POINT('Origin',(152.,10.,38.)); 1956 | #1931=CARTESIAN_POINT('',(162.,152.,38.)); 1957 | #1932=CARTESIAN_POINT('',(162.,10.,38.)); 1958 | #1933=CARTESIAN_POINT('',(152.,162.,38.)); 1959 | #1934=CARTESIAN_POINT('Origin',(152.,152.,38.)); 1960 | #1935=CARTESIAN_POINT('',(10.,162.,38.)); 1961 | #1936=CARTESIAN_POINT('',(152.,162.,38.)); 1962 | #1937=CARTESIAN_POINT('',(0.,152.,38.)); 1963 | #1938=CARTESIAN_POINT('Origin',(10.,152.,38.)); 1964 | #1939=CARTESIAN_POINT('',(0.,152.,38.)); 1965 | #1940=CARTESIAN_POINT('Origin',(10.,10.,0.)); 1966 | #1941=CARTESIAN_POINT('',(0.,10.,0.)); 1967 | #1942=CARTESIAN_POINT('',(10.,0.,0.)); 1968 | #1943=CARTESIAN_POINT('Origin',(10.,10.,0.)); 1969 | #1944=CARTESIAN_POINT('',(10.,0.,0.)); 1970 | #1945=CARTESIAN_POINT('',(0.,10.,0.)); 1971 | #1946=CARTESIAN_POINT('Origin',(0.,152.,0.)); 1972 | #1947=CARTESIAN_POINT('',(0.,152.,0.)); 1973 | #1948=CARTESIAN_POINT('',(0.,162.,0.)); 1974 | #1949=CARTESIAN_POINT('',(0.,152.,0.)); 1975 | #1950=CARTESIAN_POINT('Origin',(10.,152.,0.)); 1976 | #1951=CARTESIAN_POINT('',(10.,162.,0.)); 1977 | #1952=CARTESIAN_POINT('Origin',(10.,152.,0.)); 1978 | #1953=CARTESIAN_POINT('',(10.,162.,0.)); 1979 | #1954=CARTESIAN_POINT('Origin',(152.,162.,0.)); 1980 | #1955=CARTESIAN_POINT('',(152.,162.,0.)); 1981 | #1956=CARTESIAN_POINT('',(162.,162.,0.)); 1982 | #1957=CARTESIAN_POINT('',(152.,162.,0.)); 1983 | #1958=CARTESIAN_POINT('Origin',(152.,152.,0.)); 1984 | #1959=CARTESIAN_POINT('',(162.,152.,0.)); 1985 | #1960=CARTESIAN_POINT('Origin',(152.,152.,0.)); 1986 | #1961=CARTESIAN_POINT('',(162.,152.,0.)); 1987 | #1962=CARTESIAN_POINT('Origin',(162.,10.,0.)); 1988 | #1963=CARTESIAN_POINT('',(162.,10.,0.)); 1989 | #1964=CARTESIAN_POINT('',(162.,0.,0.)); 1990 | #1965=CARTESIAN_POINT('',(162.,10.,0.)); 1991 | #1966=CARTESIAN_POINT('Origin',(152.,10.,0.)); 1992 | #1967=CARTESIAN_POINT('',(152.,0.,0.)); 1993 | #1968=CARTESIAN_POINT('Origin',(152.,10.,0.)); 1994 | #1969=CARTESIAN_POINT('',(152.,0.,0.)); 1995 | #1970=CARTESIAN_POINT('Origin',(10.,0.,0.)); 1996 | #1971=CARTESIAN_POINT('',(0.,0.,0.)); 1997 | #1972=CARTESIAN_POINT('Origin',(81.,81.,0.)); 1998 | #1973=UNCERTAINTY_MEASURE_WITH_UNIT(LENGTH_MEASURE(0.01),#1977, 1999 | 'DISTANCE_ACCURACY_VALUE', 2000 | 'Maximum model space distance between geometric entities at asserted c 2001 | onnectivities'); 2002 | #1974=UNCERTAINTY_MEASURE_WITH_UNIT(LENGTH_MEASURE(0.01),#1977, 2003 | 'DISTANCE_ACCURACY_VALUE', 2004 | 'Maximum model space distance between geometric entities at asserted c 2005 | onnectivities'); 2006 | #1975=( 2007 | GEOMETRIC_REPRESENTATION_CONTEXT(3) 2008 | GLOBAL_UNCERTAINTY_ASSIGNED_CONTEXT((#1973)) 2009 | GLOBAL_UNIT_ASSIGNED_CONTEXT((#1977,#1979,#1980)) 2010 | REPRESENTATION_CONTEXT('','3D') 2011 | ); 2012 | #1976=( 2013 | GEOMETRIC_REPRESENTATION_CONTEXT(3) 2014 | GLOBAL_UNCERTAINTY_ASSIGNED_CONTEXT((#1974)) 2015 | GLOBAL_UNIT_ASSIGNED_CONTEXT((#1977,#1979,#1980)) 2016 | REPRESENTATION_CONTEXT('','3D') 2017 | ); 2018 | #1977=( 2019 | LENGTH_UNIT() 2020 | NAMED_UNIT(*) 2021 | SI_UNIT(.MILLI.,.METRE.) 2022 | ); 2023 | #1978=( 2024 | LENGTH_UNIT() 2025 | NAMED_UNIT(*) 2026 | SI_UNIT($,.METRE.) 2027 | ); 2028 | #1979=( 2029 | NAMED_UNIT(*) 2030 | PLANE_ANGLE_UNIT() 2031 | SI_UNIT($,.RADIAN.) 2032 | ); 2033 | #1980=( 2034 | NAMED_UNIT(*) 2035 | SI_UNIT($,.STERADIAN.) 2036 | SOLID_ANGLE_UNIT() 2037 | ); 2038 | #1981=SHAPE_DEFINITION_REPRESENTATION(#1982,#1983); 2039 | #1982=PRODUCT_DEFINITION_SHAPE('',$,#1985); 2040 | #1983=SHAPE_REPRESENTATION('',(#1107),#1975); 2041 | #1984=PRODUCT_DEFINITION_CONTEXT('part definition',#1989,'design'); 2042 | #1985=PRODUCT_DEFINITION('container','container',#1986,#1984); 2043 | #1986=PRODUCT_DEFINITION_FORMATION('',$,#1991); 2044 | #1987=PRODUCT_RELATED_PRODUCT_CATEGORY('container','container',(#1991)); 2045 | #1988=APPLICATION_PROTOCOL_DEFINITION('international standard', 2046 | 'automotive_design',2009,#1989); 2047 | #1989=APPLICATION_CONTEXT( 2048 | 'Core Data for Automotive Mechanical Design Process'); 2049 | #1990=PRODUCT_CONTEXT('part definition',#1989,'mechanical'); 2050 | #1991=PRODUCT('container','container',$,(#1990)); 2051 | #1992=PRESENTATION_STYLE_ASSIGNMENT((#1994)); 2052 | #1993=PRESENTATION_STYLE_ASSIGNMENT((#1995)); 2053 | #1994=SURFACE_STYLE_USAGE(.BOTH.,#1996); 2054 | #1995=SURFACE_STYLE_USAGE(.BOTH.,#1997); 2055 | #1996=SURFACE_SIDE_STYLE('',(#1998)); 2056 | #1997=SURFACE_SIDE_STYLE('',(#1999)); 2057 | #1998=SURFACE_STYLE_FILL_AREA(#2000); 2058 | #1999=SURFACE_STYLE_FILL_AREA(#2001); 2059 | #2000=FILL_AREA_STYLE('Steel - Satin',(#2002)); 2060 | #2001=FILL_AREA_STYLE('Plastic - Matte (Black)',(#2003)); 2061 | #2002=FILL_AREA_STYLE_COLOUR('Steel - Satin',#2004); 2062 | #2003=FILL_AREA_STYLE_COLOUR('Plastic - Matte (Black)',#2005); 2063 | #2004=COLOUR_RGB('Steel - Satin',0.627450980392157,0.627450980392157,0.627450980392157); 2064 | #2005=COLOUR_RGB('Plastic - Matte (Black)',0.0980392156862745,0.0980392156862745, 2065 | 0.0980392156862745); 2066 | ENDSEC; 2067 | END-ISO-10303-21; 2068 | -------------------------------------------------------------------------------- /cad/nozzel_adapter.step: -------------------------------------------------------------------------------- 1 | ISO-10303-21; 2 | HEADER; 3 | /* Generated by software containing ST-Developer 4 | * from STEP Tools, Inc. (www.steptools.com) 5 | */ 6 | 7 | FILE_DESCRIPTION( 8 | /* description */ (''), 9 | /* implementation_level */ '2;1'); 10 | 11 | FILE_NAME( 12 | /* name */ 'nozzel_adapter.step', 13 | /* time_stamp */ '2023-09-21T20:36:58+10:00', 14 | /* author */ (''), 15 | /* organization */ (''), 16 | /* preprocessor_version */ 'ST-DEVELOPER v20', 17 | /* originating_system */ 'Autodesk Translation Framework v12.9.0.99', 18 | /* authorisation */ ''); 19 | 20 | FILE_SCHEMA (('AUTOMOTIVE_DESIGN { 1 0 10303 214 3 1 1 }')); 21 | ENDSEC; 22 | 23 | DATA; 24 | #10=MECHANICAL_DESIGN_GEOMETRIC_PRESENTATION_REPRESENTATION('',(#13),#371); 25 | #11=SHAPE_REPRESENTATION_RELATIONSHIP('SRR','None',#378,#12); 26 | #12=ADVANCED_BREP_SHAPE_REPRESENTATION('',(#14),#370); 27 | #13=STYLED_ITEM('',(#388),#14); 28 | #14=MANIFOLD_SOLID_BREP('Body1',#179); 29 | #15=B_SPLINE_CURVE_WITH_KNOTS('',1,(#333,#334),.UNSPECIFIED.,.F.,.F.,(2, 30 | 2),(0.0089568702462805,2.69624390202905),.UNSPECIFIED.); 31 | #16=B_SPLINE_CURVE_WITH_KNOTS('',1,(#366,#367),.UNSPECIFIED.,.F.,.F.,(2, 32 | 2),(-2.53337802131494,-0.00895687024627903),.UNSPECIFIED.); 33 | #17=( 34 | BOUNDED_SURFACE() 35 | B_SPLINE_SURFACE(1,2,((#315,#316,#317,#318,#319,#320,#321,#322,#323),(#324, 36 | #325,#326,#327,#328,#329,#330,#331,#332)),.UNSPECIFIED.,.F.,.T.,.F.) 37 | B_SPLINE_SURFACE_WITH_KNOTS((2,2),(3,2,2,2,3),(-0.239743942062475,2.83654458294664), 38 | (-3.14159265358979,-1.5707963267949,0.,1.5707963267949,3.14159265358979), 39 | .UNSPECIFIED.) 40 | GEOMETRIC_REPRESENTATION_ITEM() 41 | RATIONAL_B_SPLINE_SURFACE(((1.,0.707106781186548,1.,0.707106781186548,1., 42 | 0.707106781186548,1.,0.707106781186548,1.),(1.,0.707106781186548,1.,0.707106781186548, 43 | 1.,0.707106781186548,1.,0.707106781186548,1.))) 44 | REPRESENTATION_ITEM('') 45 | SURFACE() 46 | ); 47 | #18=( 48 | BOUNDED_SURFACE() 49 | B_SPLINE_SURFACE(1,2,((#348,#349,#350,#351,#352,#353,#354,#355,#356),(#357, 50 | #358,#359,#360,#361,#362,#363,#364,#365)),.UNSPECIFIED.,.F.,.T.,.F.) 51 | B_SPLINE_SURFACE_WITH_KNOTS((2,2),(3,2,2,2,3),(-0.239743942062474,2.68029885740192), 52 | (-3.14159265358979,-1.5707963267949,0.,1.5707963267949,3.14159265358979), 53 | .UNSPECIFIED.) 54 | GEOMETRIC_REPRESENTATION_ITEM() 55 | RATIONAL_B_SPLINE_SURFACE(((1.,0.707106781186548,1.,0.707106781186548,1., 56 | 0.707106781186548,1.,0.707106781186548,1.),(1.,0.707106781186548,1.,0.707106781186548, 57 | 1.,0.707106781186548,1.,0.707106781186548,1.))) 58 | REPRESENTATION_ITEM('') 59 | SURFACE() 60 | ); 61 | #19=FACE_BOUND('',#33,.T.); 62 | #20=FACE_BOUND('',#38,.T.); 63 | #21=PLANE('',#199); 64 | #22=PLANE('',#212); 65 | #23=FACE_OUTER_BOUND('',#31,.T.); 66 | #24=FACE_OUTER_BOUND('',#32,.T.); 67 | #25=FACE_OUTER_BOUND('',#34,.T.); 68 | #26=FACE_OUTER_BOUND('',#35,.T.); 69 | #27=FACE_OUTER_BOUND('',#36,.T.); 70 | #28=FACE_OUTER_BOUND('',#37,.T.); 71 | #29=FACE_OUTER_BOUND('',#39,.T.); 72 | #30=FACE_OUTER_BOUND('',#40,.T.); 73 | #31=EDGE_LOOP('',(#115,#116,#117,#118,#119,#120,#121)); 74 | #32=EDGE_LOOP('',(#122)); 75 | #33=EDGE_LOOP('',(#123)); 76 | #34=EDGE_LOOP('',(#124,#125,#126,#127,#128,#129,#130)); 77 | #35=EDGE_LOOP('',(#131,#132,#133,#134,#135,#136,#137)); 78 | #36=EDGE_LOOP('',(#138,#139,#140,#141,#142,#143,#144,#145,#146,#147)); 79 | #37=EDGE_LOOP('',(#148)); 80 | #38=EDGE_LOOP('',(#149)); 81 | #39=EDGE_LOOP('',(#150,#151,#152,#153,#154,#155,#156)); 82 | #40=EDGE_LOOP('',(#157,#158,#159,#160,#161,#162,#163,#164,#165,#166)); 83 | #41=LINE('',#287,#45); 84 | #42=LINE('',#295,#46); 85 | #43=LINE('',#307,#47); 86 | #44=LINE('',#346,#48); 87 | #45=VECTOR('',#229,9.); 88 | #46=VECTOR('',#240,10.); 89 | #47=VECTOR('',#253,16.); 90 | #48=VECTOR('',#274,17.); 91 | #49=CIRCLE('',#194,9.00000000000001); 92 | #50=CIRCLE('',#195,9.00000000000001); 93 | #51=CIRCLE('',#196,9.00000000000001); 94 | #52=CIRCLE('',#197,8.); 95 | #53=CIRCLE('',#198,9.00000000000001); 96 | #54=CIRCLE('',#200,9.); 97 | #55=CIRCLE('',#202,10.); 98 | #56=CIRCLE('',#203,10.); 99 | #57=CIRCLE('',#204,10.); 100 | #58=CIRCLE('',#205,10.); 101 | #59=CIRCLE('',#207,16.); 102 | #60=CIRCLE('',#208,15.5); 103 | #61=CIRCLE('',#209,15.5); 104 | #62=CIRCLE('',#210,15.5); 105 | #63=CIRCLE('',#211,15.5); 106 | #64=CIRCLE('',#213,17.); 107 | #65=CIRCLE('',#215,16.5); 108 | #66=CIRCLE('',#216,16.5); 109 | #67=CIRCLE('',#217,16.5); 110 | #68=CIRCLE('',#218,16.5); 111 | #69=VERTEX_POINT('',#279); 112 | #70=VERTEX_POINT('',#280); 113 | #71=VERTEX_POINT('',#282); 114 | #72=VERTEX_POINT('',#284); 115 | #73=VERTEX_POINT('',#286); 116 | #74=VERTEX_POINT('',#291); 117 | #75=VERTEX_POINT('',#294); 118 | #76=VERTEX_POINT('',#296); 119 | #77=VERTEX_POINT('',#298); 120 | #78=VERTEX_POINT('',#300); 121 | #79=VERTEX_POINT('',#304); 122 | #80=VERTEX_POINT('',#306); 123 | #81=VERTEX_POINT('',#308); 124 | #82=VERTEX_POINT('',#310); 125 | #83=VERTEX_POINT('',#312); 126 | #84=VERTEX_POINT('',#336); 127 | #85=VERTEX_POINT('',#339); 128 | #86=VERTEX_POINT('',#340); 129 | #87=VERTEX_POINT('',#342); 130 | #88=VERTEX_POINT('',#344); 131 | #89=EDGE_CURVE('',#69,#70,#49,.T.); 132 | #90=EDGE_CURVE('',#70,#71,#50,.T.); 133 | #91=EDGE_CURVE('',#71,#72,#51,.T.); 134 | #92=EDGE_CURVE('',#72,#73,#41,.T.); 135 | #93=EDGE_CURVE('',#73,#73,#52,.T.); 136 | #94=EDGE_CURVE('',#72,#69,#53,.T.); 137 | #95=EDGE_CURVE('',#74,#74,#54,.T.); 138 | #96=EDGE_CURVE('',#74,#75,#42,.T.); 139 | #97=EDGE_CURVE('',#76,#75,#55,.T.); 140 | #98=EDGE_CURVE('',#77,#76,#56,.T.); 141 | #99=EDGE_CURVE('',#78,#77,#57,.T.); 142 | #100=EDGE_CURVE('',#75,#78,#58,.T.); 143 | #101=EDGE_CURVE('',#79,#79,#59,.T.); 144 | #102=EDGE_CURVE('',#79,#80,#43,.T.); 145 | #103=EDGE_CURVE('',#80,#81,#60,.T.); 146 | #104=EDGE_CURVE('',#81,#82,#61,.T.); 147 | #105=EDGE_CURVE('',#82,#83,#62,.T.); 148 | #106=EDGE_CURVE('',#83,#80,#63,.T.); 149 | #107=EDGE_CURVE('',#81,#71,#15,.T.); 150 | #108=EDGE_CURVE('',#84,#84,#64,.T.); 151 | #109=EDGE_CURVE('',#85,#86,#65,.T.); 152 | #110=EDGE_CURVE('',#87,#85,#66,.T.); 153 | #111=EDGE_CURVE('',#88,#87,#67,.T.); 154 | #112=EDGE_CURVE('',#88,#84,#44,.T.); 155 | #113=EDGE_CURVE('',#86,#88,#68,.T.); 156 | #114=EDGE_CURVE('',#76,#87,#16,.T.); 157 | #115=ORIENTED_EDGE('',*,*,#89,.T.); 158 | #116=ORIENTED_EDGE('',*,*,#90,.T.); 159 | #117=ORIENTED_EDGE('',*,*,#91,.T.); 160 | #118=ORIENTED_EDGE('',*,*,#92,.T.); 161 | #119=ORIENTED_EDGE('',*,*,#93,.F.); 162 | #120=ORIENTED_EDGE('',*,*,#92,.F.); 163 | #121=ORIENTED_EDGE('',*,*,#94,.T.); 164 | #122=ORIENTED_EDGE('',*,*,#95,.F.); 165 | #123=ORIENTED_EDGE('',*,*,#93,.T.); 166 | #124=ORIENTED_EDGE('',*,*,#95,.T.); 167 | #125=ORIENTED_EDGE('',*,*,#96,.T.); 168 | #126=ORIENTED_EDGE('',*,*,#97,.F.); 169 | #127=ORIENTED_EDGE('',*,*,#98,.F.); 170 | #128=ORIENTED_EDGE('',*,*,#99,.F.); 171 | #129=ORIENTED_EDGE('',*,*,#100,.F.); 172 | #130=ORIENTED_EDGE('',*,*,#96,.F.); 173 | #131=ORIENTED_EDGE('',*,*,#101,.F.); 174 | #132=ORIENTED_EDGE('',*,*,#102,.T.); 175 | #133=ORIENTED_EDGE('',*,*,#103,.T.); 176 | #134=ORIENTED_EDGE('',*,*,#104,.T.); 177 | #135=ORIENTED_EDGE('',*,*,#105,.T.); 178 | #136=ORIENTED_EDGE('',*,*,#106,.T.); 179 | #137=ORIENTED_EDGE('',*,*,#102,.F.); 180 | #138=ORIENTED_EDGE('',*,*,#105,.F.); 181 | #139=ORIENTED_EDGE('',*,*,#104,.F.); 182 | #140=ORIENTED_EDGE('',*,*,#107,.T.); 183 | #141=ORIENTED_EDGE('',*,*,#90,.F.); 184 | #142=ORIENTED_EDGE('',*,*,#89,.F.); 185 | #143=ORIENTED_EDGE('',*,*,#94,.F.); 186 | #144=ORIENTED_EDGE('',*,*,#91,.F.); 187 | #145=ORIENTED_EDGE('',*,*,#107,.F.); 188 | #146=ORIENTED_EDGE('',*,*,#103,.F.); 189 | #147=ORIENTED_EDGE('',*,*,#106,.F.); 190 | #148=ORIENTED_EDGE('',*,*,#108,.F.); 191 | #149=ORIENTED_EDGE('',*,*,#101,.T.); 192 | #150=ORIENTED_EDGE('',*,*,#109,.F.); 193 | #151=ORIENTED_EDGE('',*,*,#110,.F.); 194 | #152=ORIENTED_EDGE('',*,*,#111,.F.); 195 | #153=ORIENTED_EDGE('',*,*,#112,.T.); 196 | #154=ORIENTED_EDGE('',*,*,#108,.T.); 197 | #155=ORIENTED_EDGE('',*,*,#112,.F.); 198 | #156=ORIENTED_EDGE('',*,*,#113,.F.); 199 | #157=ORIENTED_EDGE('',*,*,#99,.T.); 200 | #158=ORIENTED_EDGE('',*,*,#98,.T.); 201 | #159=ORIENTED_EDGE('',*,*,#114,.T.); 202 | #160=ORIENTED_EDGE('',*,*,#110,.T.); 203 | #161=ORIENTED_EDGE('',*,*,#109,.T.); 204 | #162=ORIENTED_EDGE('',*,*,#113,.T.); 205 | #163=ORIENTED_EDGE('',*,*,#111,.T.); 206 | #164=ORIENTED_EDGE('',*,*,#114,.F.); 207 | #165=ORIENTED_EDGE('',*,*,#97,.T.); 208 | #166=ORIENTED_EDGE('',*,*,#100,.T.); 209 | #167=CONICAL_SURFACE('',#193,9.,0.099668652491162); 210 | #168=CONICAL_SURFACE('',#201,10.,0.0996686524911619); 211 | #169=CONICAL_SURFACE('',#206,16.,0.0499583957219428); 212 | #170=CONICAL_SURFACE('',#214,17.,0.0499583957219428); 213 | #171=ADVANCED_FACE('',(#23),#167,.F.); 214 | #172=ADVANCED_FACE('',(#24,#19),#21,.F.); 215 | #173=ADVANCED_FACE('',(#25),#168,.T.); 216 | #174=ADVANCED_FACE('',(#26),#169,.F.); 217 | #175=ADVANCED_FACE('',(#27),#17,.T.); 218 | #176=ADVANCED_FACE('',(#28,#20),#22,.F.); 219 | #177=ADVANCED_FACE('',(#29),#170,.T.); 220 | #178=ADVANCED_FACE('',(#30),#18,.F.); 221 | #179=CLOSED_SHELL('',(#171,#172,#173,#174,#175,#176,#177,#178)); 222 | #180=DERIVED_UNIT_ELEMENT(#182,1.); 223 | #181=DERIVED_UNIT_ELEMENT(#373,-3.); 224 | #182=( 225 | MASS_UNIT() 226 | NAMED_UNIT(*) 227 | SI_UNIT(.KILO.,.GRAM.) 228 | ); 229 | #183=DERIVED_UNIT((#180,#181)); 230 | #184=MEASURE_REPRESENTATION_ITEM('density measure', 231 | POSITIVE_RATIO_MEASURE(7850.),#183); 232 | #185=PROPERTY_DEFINITION_REPRESENTATION(#190,#187); 233 | #186=PROPERTY_DEFINITION_REPRESENTATION(#191,#188); 234 | #187=REPRESENTATION('material name',(#189),#370); 235 | #188=REPRESENTATION('density',(#184),#370); 236 | #189=DESCRIPTIVE_REPRESENTATION_ITEM('Steel','Steel'); 237 | #190=PROPERTY_DEFINITION('material property','material name',#380); 238 | #191=PROPERTY_DEFINITION('material property','density of part',#380); 239 | #192=AXIS2_PLACEMENT_3D('',#277,#219,#220); 240 | #193=AXIS2_PLACEMENT_3D('',#278,#221,#222); 241 | #194=AXIS2_PLACEMENT_3D('',#281,#223,#224); 242 | #195=AXIS2_PLACEMENT_3D('',#283,#225,#226); 243 | #196=AXIS2_PLACEMENT_3D('',#285,#227,#228); 244 | #197=AXIS2_PLACEMENT_3D('',#288,#230,#231); 245 | #198=AXIS2_PLACEMENT_3D('',#289,#232,#233); 246 | #199=AXIS2_PLACEMENT_3D('',#290,#234,#235); 247 | #200=AXIS2_PLACEMENT_3D('',#292,#236,#237); 248 | #201=AXIS2_PLACEMENT_3D('',#293,#238,#239); 249 | #202=AXIS2_PLACEMENT_3D('',#297,#241,#242); 250 | #203=AXIS2_PLACEMENT_3D('',#299,#243,#244); 251 | #204=AXIS2_PLACEMENT_3D('',#301,#245,#246); 252 | #205=AXIS2_PLACEMENT_3D('',#302,#247,#248); 253 | #206=AXIS2_PLACEMENT_3D('',#303,#249,#250); 254 | #207=AXIS2_PLACEMENT_3D('',#305,#251,#252); 255 | #208=AXIS2_PLACEMENT_3D('',#309,#254,#255); 256 | #209=AXIS2_PLACEMENT_3D('',#311,#256,#257); 257 | #210=AXIS2_PLACEMENT_3D('',#313,#258,#259); 258 | #211=AXIS2_PLACEMENT_3D('',#314,#260,#261); 259 | #212=AXIS2_PLACEMENT_3D('',#335,#262,#263); 260 | #213=AXIS2_PLACEMENT_3D('',#337,#264,#265); 261 | #214=AXIS2_PLACEMENT_3D('',#338,#266,#267); 262 | #215=AXIS2_PLACEMENT_3D('',#341,#268,#269); 263 | #216=AXIS2_PLACEMENT_3D('',#343,#270,#271); 264 | #217=AXIS2_PLACEMENT_3D('',#345,#272,#273); 265 | #218=AXIS2_PLACEMENT_3D('',#347,#275,#276); 266 | #219=DIRECTION('axis',(0.,0.,1.)); 267 | #220=DIRECTION('refdir',(1.,0.,0.)); 268 | #221=DIRECTION('center_axis',(0.,1.,0.)); 269 | #222=DIRECTION('ref_axis',(1.,0.,0.)); 270 | #223=DIRECTION('center_axis',(0.,1.,0.)); 271 | #224=DIRECTION('ref_axis',(0.037360152541159,0.,0.999301865805374)); 272 | #225=DIRECTION('center_axis',(0.,1.,0.)); 273 | #226=DIRECTION('ref_axis',(0.037360152541159,0.,0.999301865805374)); 274 | #227=DIRECTION('center_axis',(0.,1.,0.)); 275 | #228=DIRECTION('ref_axis',(0.037360152541159,0.,0.999301865805374)); 276 | #229=DIRECTION('',(0.0995037190209989,-0.995037190209989,1.21856911002324E-17)); 277 | #230=DIRECTION('center_axis',(0.,1.,0.)); 278 | #231=DIRECTION('ref_axis',(1.,0.,0.)); 279 | #232=DIRECTION('center_axis',(0.,1.,0.)); 280 | #233=DIRECTION('ref_axis',(0.037360152541159,0.,0.999301865805374)); 281 | #234=DIRECTION('center_axis',(0.,1.,0.)); 282 | #235=DIRECTION('ref_axis',(0.,0.,1.)); 283 | #236=DIRECTION('center_axis',(0.,1.,0.)); 284 | #237=DIRECTION('ref_axis',(1.,0.,0.)); 285 | #238=DIRECTION('center_axis',(0.,1.,0.)); 286 | #239=DIRECTION('ref_axis',(1.,0.,0.)); 287 | #240=DIRECTION('',(-0.0995037190209988,0.995037190209989,-1.21856911002324E-17)); 288 | #241=DIRECTION('center_axis',(0.,1.,0.)); 289 | #242=DIRECTION('ref_axis',(1.,0.,0.)); 290 | #243=DIRECTION('center_axis',(0.,1.,0.)); 291 | #244=DIRECTION('ref_axis',(1.,0.,0.)); 292 | #245=DIRECTION('center_axis',(0.,1.,0.)); 293 | #246=DIRECTION('ref_axis',(1.,0.,0.)); 294 | #247=DIRECTION('center_axis',(0.,1.,0.)); 295 | #248=DIRECTION('ref_axis',(1.,0.,0.)); 296 | #249=DIRECTION('center_axis',(0.,1.,0.)); 297 | #250=DIRECTION('ref_axis',(1.,0.,0.)); 298 | #251=DIRECTION('center_axis',(0.,-1.,0.)); 299 | #252=DIRECTION('ref_axis',(1.,0.,0.)); 300 | #253=DIRECTION('',(0.0499376169438923,-0.998752338877845,6.11559427473843E-18)); 301 | #254=DIRECTION('center_axis',(0.,-1.,0.)); 302 | #255=DIRECTION('ref_axis',(1.,0.,0.)); 303 | #256=DIRECTION('center_axis',(0.,-1.,0.)); 304 | #257=DIRECTION('ref_axis',(1.,0.,0.)); 305 | #258=DIRECTION('center_axis',(0.,-1.,0.)); 306 | #259=DIRECTION('ref_axis',(1.,0.,0.)); 307 | #260=DIRECTION('center_axis',(0.,-1.,0.)); 308 | #261=DIRECTION('ref_axis',(1.,0.,0.)); 309 | #262=DIRECTION('center_axis',(0.,-1.,0.)); 310 | #263=DIRECTION('ref_axis',(0.,0.,-1.)); 311 | #264=DIRECTION('center_axis',(0.,-1.,0.)); 312 | #265=DIRECTION('ref_axis',(1.,0.,0.)); 313 | #266=DIRECTION('center_axis',(0.,1.,0.)); 314 | #267=DIRECTION('ref_axis',(1.,0.,0.)); 315 | #268=DIRECTION('center_axis',(0.,-1.,0.)); 316 | #269=DIRECTION('ref_axis',(1.,0.,0.)); 317 | #270=DIRECTION('center_axis',(0.,-1.,0.)); 318 | #271=DIRECTION('ref_axis',(1.,0.,0.)); 319 | #272=DIRECTION('center_axis',(0.,-1.,0.)); 320 | #273=DIRECTION('ref_axis',(1.,0.,0.)); 321 | #274=DIRECTION('',(-0.0499376169438923,0.998752338877845,-6.11559427473843E-18)); 322 | #275=DIRECTION('center_axis',(0.,-1.,0.)); 323 | #276=DIRECTION('ref_axis',(1.,0.,0.)); 324 | #277=CARTESIAN_POINT('',(0.,0.,0.)); 325 | #278=CARTESIAN_POINT('Origin',(0.,30.,0.)); 326 | #279=CARTESIAN_POINT('',(2.25,30.,8.7142125289667)); 327 | #280=CARTESIAN_POINT('',(2.25,30.,-8.7142125289667)); 328 | #281=CARTESIAN_POINT('Origin',(5.55111512312578E-15,30.,-1.11022302462516E-15)); 329 | #282=CARTESIAN_POINT('',(0.33624137287073,30.,-8.99371679224836)); 330 | #283=CARTESIAN_POINT('Origin',(5.55111512312578E-15,30.,-1.11022302462516E-15)); 331 | #284=CARTESIAN_POINT('',(-9.,30.,-1.10218211923262E-15)); 332 | #285=CARTESIAN_POINT('Origin',(5.55111512312578E-15,30.,-1.11022302462516E-15)); 333 | #286=CARTESIAN_POINT('',(-8.,20.,-9.79717439317883E-16)); 334 | #287=CARTESIAN_POINT('',(-9.,30.,-1.10218211923262E-15)); 335 | #288=CARTESIAN_POINT('Origin',(0.,20.,0.)); 336 | #289=CARTESIAN_POINT('Origin',(5.55111512312578E-15,30.,-1.11022302462516E-15)); 337 | #290=CARTESIAN_POINT('Origin',(0.,20.,0.)); 338 | #291=CARTESIAN_POINT('',(-9.,20.,-1.10218211923262E-15)); 339 | #292=CARTESIAN_POINT('Origin',(0.,20.,0.)); 340 | #293=CARTESIAN_POINT('Origin',(0.,30.,0.)); 341 | #294=CARTESIAN_POINT('',(-10.,30.,-1.22464679914735E-15)); 342 | #295=CARTESIAN_POINT('',(-10.,30.,-1.22464679914735E-15)); 343 | #296=CARTESIAN_POINT('',(0.373601525411852,30.,-9.99301865805373)); 344 | #297=CARTESIAN_POINT('Origin',(0.,30.,0.)); 345 | #298=CARTESIAN_POINT('',(2.50000000000001,30.,-9.68245836551854)); 346 | #299=CARTESIAN_POINT('Origin',(0.,30.,0.)); 347 | #300=CARTESIAN_POINT('',(2.5,30.,9.68245836551854)); 348 | #301=CARTESIAN_POINT('Origin',(0.,30.,0.)); 349 | #302=CARTESIAN_POINT('Origin',(0.,30.,0.)); 350 | #303=CARTESIAN_POINT('Origin',(-10.,80.,0.)); 351 | #304=CARTESIAN_POINT('',(-26.,80.,-1.95943487863577E-15)); 352 | #305=CARTESIAN_POINT('Origin',(-10.,80.,0.)); 353 | #306=CARTESIAN_POINT('',(-25.5,70.,-1.8982025386784E-15)); 354 | #307=CARTESIAN_POINT('',(-26.,80.,-1.95943487863577E-15)); 355 | #308=CARTESIAN_POINT('',(-9.42091763561152,70.,-15.4891789199833)); 356 | #309=CARTESIAN_POINT('Origin',(-10.,70.,0.)); 357 | #310=CARTESIAN_POINT('',(-3.02500000000001,70.,-13.8419426021061)); 358 | #311=CARTESIAN_POINT('Origin',(-10.,70.,0.)); 359 | #312=CARTESIAN_POINT('',(-3.02500000000001,70.,13.8419426021061)); 360 | #313=CARTESIAN_POINT('Origin',(-10.,70.,0.)); 361 | #314=CARTESIAN_POINT('Origin',(-10.,70.,0.)); 362 | #315=CARTESIAN_POINT('Ctrl Pts',(-10.3239150983073,73.7018868378011,-16.0903155638857)); 363 | #316=CARTESIAN_POINT('Ctrl Pts',(4.85216980338507,77.4037736756021,-16.0903155638855)); 364 | #317=CARTESIAN_POINT('Ctrl Pts',(4.85216980338482,77.4037736756021,2.51144113933323E-13)); 365 | #318=CARTESIAN_POINT('Ctrl Pts',(4.85216980338457,77.403773675602,16.090315563886)); 366 | #319=CARTESIAN_POINT('Ctrl Pts',(-10.3239150983078,73.701886837801,16.0903155638857)); 367 | #320=CARTESIAN_POINT('Ctrl Pts',(-25.5000000000003,69.9999999999999,16.0903155638855)); 368 | #321=CARTESIAN_POINT('Ctrl Pts',(-25.5,70.,-2.46703221834823E-13)); 369 | #322=CARTESIAN_POINT('Ctrl Pts',(-25.4999999999998,70.0000000000001,-16.090315563886)); 370 | #323=CARTESIAN_POINT('Ctrl Pts',(-10.3239150983073,73.7018868378011,-16.0903155638857)); 371 | #324=CARTESIAN_POINT('Ctrl Pts',(0.845653295200106,27.9116383287942,-8.65459493864009)); 372 | #325=CARTESIAN_POINT('Ctrl Pts',(9.00850548147761,29.9027944974003,-8.65459493863996)); 373 | #326=CARTESIAN_POINT('Ctrl Pts',(9.00850548147748,29.9027944974003,1.3397777248267E-13)); 374 | #327=CARTESIAN_POINT('Ctrl Pts',(9.00850548147734,29.9027944974003,8.65459493864022)); 375 | #328=CARTESIAN_POINT('Ctrl Pts',(0.84565329519984,27.9116383287941,8.65459493864009)); 376 | #329=CARTESIAN_POINT('Ctrl Pts',(-7.31719889107766,25.9204821601879,8.65459493863996)); 377 | #330=CARTESIAN_POINT('Ctrl Pts',(-7.31719889107753,25.9204821601879,-1.2953688038417E-13)); 378 | #331=CARTESIAN_POINT('Ctrl Pts',(-7.3171988910774,25.920482160188,-8.65459493864022)); 379 | #332=CARTESIAN_POINT('Ctrl Pts',(0.845653295200106,27.9116383287942,-8.65459493864009)); 380 | #333=CARTESIAN_POINT('Ctrl Pts',(-9.42091763561152,70.,-15.4891789199833)); 381 | #334=CARTESIAN_POINT('Ctrl Pts',(0.336241372870726,30.,-8.99371679224836)); 382 | #335=CARTESIAN_POINT('Origin',(-10.,80.,0.)); 383 | #336=CARTESIAN_POINT('',(-27.,80.,-2.0818995585505E-15)); 384 | #337=CARTESIAN_POINT('Origin',(-10.,80.,0.)); 385 | #338=CARTESIAN_POINT('Origin',(-10.,80.,0.)); 386 | #339=CARTESIAN_POINT('',(-2.575,70.,-14.7349711570807)); 387 | #340=CARTESIAN_POINT('',(-2.575,70.,14.7349711570807)); 388 | #341=CARTESIAN_POINT('Origin',(-10.,70.,0.)); 389 | #342=CARTESIAN_POINT('',(-9.38355748307045,70.,-16.4884807857887)); 390 | #343=CARTESIAN_POINT('Origin',(-10.,70.,0.)); 391 | #344=CARTESIAN_POINT('',(-26.5,70.,-2.02066721859313E-15)); 392 | #345=CARTESIAN_POINT('Origin',(-10.,70.,0.)); 393 | #346=CARTESIAN_POINT('',(-27.,80.,-2.0818995585505E-15)); 394 | #347=CARTESIAN_POINT('Origin',(-10.,70.,0.)); 395 | #348=CARTESIAN_POINT('Ctrl Pts',(-10.3448128465854,73.9407182466915,-17.1284004389751)); 396 | #349=CARTESIAN_POINT('Ctrl Pts',(5.81037430682914,77.8814364933829,-17.128400438975)); 397 | #350=CARTESIAN_POINT('Ctrl Pts',(5.810374306829,77.8814364933828,1.48581032204373E-13)); 398 | #351=CARTESIAN_POINT('Ctrl Pts',(5.81037430682885,77.8814364933828,17.1284004389753)); 399 | #352=CARTESIAN_POINT('Ctrl Pts',(-10.3448128465856,73.9407182466914,17.1284004389751)); 400 | #353=CARTESIAN_POINT('Ctrl Pts',(-26.5000000000001,70.,17.128400438975)); 401 | #354=CARTESIAN_POINT('Ctrl Pts',(-26.5,70.,-1.44140140105872E-13)); 402 | #355=CARTESIAN_POINT('Ctrl Pts',(-26.4999999999999,70.,-17.1284004389753)); 403 | #356=CARTESIAN_POINT('Ctrl Pts',(-10.3448128465854,73.9407182466915,-17.1284004389751)); 404 | #357=CARTESIAN_POINT('Ctrl Pts',(0.941466344145809,27.6720075249761,-9.61498398417449)); 405 | #358=CARTESIAN_POINT('Ctrl Pts',(10.0101395278933,29.8841196812207,-9.6149839841744)); 406 | #359=CARTESIAN_POINT('Ctrl Pts',(10.0101395278932,29.8841196812207,8.59147290840843E-14)); 407 | #360=CARTESIAN_POINT('Ctrl Pts',(10.0101395278931,29.8841196812207,9.61498398417458)); 408 | #361=CARTESIAN_POINT('Ctrl Pts',(0.941466344145641,27.6720075249761,9.6149839841745)); 409 | #362=CARTESIAN_POINT('Ctrl Pts',(-8.12720683960182,25.4598953687315,9.61498398417441)); 410 | #363=CARTESIAN_POINT('Ctrl Pts',(-8.12720683960174,25.4598953687315,-8.14738369855837E-14)); 411 | #364=CARTESIAN_POINT('Ctrl Pts',(-8.12720683960166,25.4598953687315,-9.61498398417458)); 412 | #365=CARTESIAN_POINT('Ctrl Pts',(0.941466344145809,27.6720075249761,-9.61498398417449)); 413 | #366=CARTESIAN_POINT('Ctrl Pts',(0.37360152541185,30.,-9.99301865805373)); 414 | #367=CARTESIAN_POINT('Ctrl Pts',(-9.38355748307045,70.,-16.4884807857887)); 415 | #368=UNCERTAINTY_MEASURE_WITH_UNIT(LENGTH_MEASURE(0.01),#372, 416 | 'DISTANCE_ACCURACY_VALUE', 417 | 'Maximum model space distance between geometric entities at asserted c 418 | onnectivities'); 419 | #369=UNCERTAINTY_MEASURE_WITH_UNIT(LENGTH_MEASURE(0.01),#372, 420 | 'DISTANCE_ACCURACY_VALUE', 421 | 'Maximum model space distance between geometric entities at asserted c 422 | onnectivities'); 423 | #370=( 424 | GEOMETRIC_REPRESENTATION_CONTEXT(3) 425 | GLOBAL_UNCERTAINTY_ASSIGNED_CONTEXT((#368)) 426 | GLOBAL_UNIT_ASSIGNED_CONTEXT((#372,#374,#375)) 427 | REPRESENTATION_CONTEXT('','3D') 428 | ); 429 | #371=( 430 | GEOMETRIC_REPRESENTATION_CONTEXT(3) 431 | GLOBAL_UNCERTAINTY_ASSIGNED_CONTEXT((#369)) 432 | GLOBAL_UNIT_ASSIGNED_CONTEXT((#372,#374,#375)) 433 | REPRESENTATION_CONTEXT('','3D') 434 | ); 435 | #372=( 436 | LENGTH_UNIT() 437 | NAMED_UNIT(*) 438 | SI_UNIT(.MILLI.,.METRE.) 439 | ); 440 | #373=( 441 | LENGTH_UNIT() 442 | NAMED_UNIT(*) 443 | SI_UNIT($,.METRE.) 444 | ); 445 | #374=( 446 | NAMED_UNIT(*) 447 | PLANE_ANGLE_UNIT() 448 | SI_UNIT($,.RADIAN.) 449 | ); 450 | #375=( 451 | NAMED_UNIT(*) 452 | SI_UNIT($,.STERADIAN.) 453 | SOLID_ANGLE_UNIT() 454 | ); 455 | #376=SHAPE_DEFINITION_REPRESENTATION(#377,#378); 456 | #377=PRODUCT_DEFINITION_SHAPE('',$,#380); 457 | #378=SHAPE_REPRESENTATION('',(#192),#370); 458 | #379=PRODUCT_DEFINITION_CONTEXT('part definition',#384,'design'); 459 | #380=PRODUCT_DEFINITION('nozzel_adapter','nozzel_adapter',#381,#379); 460 | #381=PRODUCT_DEFINITION_FORMATION('',$,#386); 461 | #382=PRODUCT_RELATED_PRODUCT_CATEGORY('nozzel_adapter','nozzel_adapter', 462 | (#386)); 463 | #383=APPLICATION_PROTOCOL_DEFINITION('international standard', 464 | 'automotive_design',2009,#384); 465 | #384=APPLICATION_CONTEXT( 466 | 'Core Data for Automotive Mechanical Design Process'); 467 | #385=PRODUCT_CONTEXT('part definition',#384,'mechanical'); 468 | #386=PRODUCT('nozzel_adapter','nozzel_adapter',$,(#385)); 469 | #387=PRESENTATION_STYLE_ASSIGNMENT((#389)); 470 | #388=PRESENTATION_STYLE_ASSIGNMENT((#390)); 471 | #389=SURFACE_STYLE_USAGE(.BOTH.,#391); 472 | #390=SURFACE_STYLE_USAGE(.BOTH.,#392); 473 | #391=SURFACE_SIDE_STYLE('',(#393)); 474 | #392=SURFACE_SIDE_STYLE('',(#394)); 475 | #393=SURFACE_STYLE_FILL_AREA(#395); 476 | #394=SURFACE_STYLE_FILL_AREA(#396); 477 | #395=FILL_AREA_STYLE('Steel - Satin',(#397)); 478 | #396=FILL_AREA_STYLE('Plastic - Matte (Black)',(#398)); 479 | #397=FILL_AREA_STYLE_COLOUR('Steel - Satin',#399); 480 | #398=FILL_AREA_STYLE_COLOUR('Plastic - Matte (Black)',#400); 481 | #399=COLOUR_RGB('Steel - Satin',0.627450980392157,0.627450980392157,0.627450980392157); 482 | #400=COLOUR_RGB('Plastic - Matte (Black)',0.0980392156862745,0.0980392156862745, 483 | 0.0980392156862745); 484 | ENDSEC; 485 | END-ISO-10303-21; 486 | -------------------------------------------------------------------------------- /cad/stencil_fix.f3d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheffield/stencil-fix/a817e2ffae54501feca0889d2a6b33a309623365/cad/stencil_fix.f3d -------------------------------------------------------------------------------- /stl/container.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheffield/stencil-fix/a817e2ffae54501feca0889d2a6b33a309623365/stl/container.3mf -------------------------------------------------------------------------------- /stl/container.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheffield/stencil-fix/a817e2ffae54501feca0889d2a6b33a309623365/stl/container.stl -------------------------------------------------------------------------------- /stl/lid.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheffield/stencil-fix/a817e2ffae54501feca0889d2a6b33a309623365/stl/lid.3mf -------------------------------------------------------------------------------- /stl/lid.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheffield/stencil-fix/a817e2ffae54501feca0889d2a6b33a309623365/stl/lid.stl -------------------------------------------------------------------------------- /stl/lifter.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheffield/stencil-fix/a817e2ffae54501feca0889d2a6b33a309623365/stl/lifter.3mf -------------------------------------------------------------------------------- /stl/lifter.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheffield/stencil-fix/a817e2ffae54501feca0889d2a6b33a309623365/stl/lifter.stl -------------------------------------------------------------------------------- /stl/nozzel_adapter.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheffield/stencil-fix/a817e2ffae54501feca0889d2a6b33a309623365/stl/nozzel_adapter.3mf -------------------------------------------------------------------------------- /stl/nozzel_adapter.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheffield/stencil-fix/a817e2ffae54501feca0889d2a6b33a309623365/stl/nozzel_adapter.stl -------------------------------------------------------------------------------- /stl/pcb_holder.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheffield/stencil-fix/a817e2ffae54501feca0889d2a6b33a309623365/stl/pcb_holder.3mf -------------------------------------------------------------------------------- /stl/pcb_holder.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheffield/stencil-fix/a817e2ffae54501feca0889d2a6b33a309623365/stl/pcb_holder.stl --------------------------------------------------------------------------------