├── .gitattributes ├── .gitignore ├── K-Type ├── LICENSE ├── k-type-assembly.STEP ├── k-type-bar-foot.STEP ├── k-type-bottom-plate.STEP ├── k-type-case-.STEP ├── k-type-diffuser.STEP ├── k-type-metal-disk.STEP └── k-type-pill-rubber-feet.STEP ├── Kira ├── LICENSE └── switch-plate-kira.stp ├── LICENSE ├── README.markdown ├── infinity-ergodox ├── LICENSE ├── full-hand │ ├── ErgoDox, Full Hand, Spacer #1.STEP │ ├── ErgoDox, Full Hand, Spacer #2.STEP │ └── ergodox-full-hand-bottom-plate.STEP ├── rev-a │ ├── Infinity_ErgoDox_Production_REV_A.PDF │ ├── LICENSE │ ├── Plate, Bottom, #1 (with reset hole).dxf │ ├── Plate, Bottom, #1.dxf │ ├── Plate, Spacer, #1.dxf │ ├── Plate, Spacer, #2.dxf │ ├── Plate, Switch, ErgoDox.dxf │ ├── Plate, Top, #1.dxf │ └── Plate, Top, #2.dxf └── rev-b │ ├── Infinity_ErgoDox_Production_REV_B.PDF │ ├── LICENSE │ ├── Plate, Bottom, #1_Rev-B_CON_DXF.dxf │ ├── Plate, Bottom.STEP │ ├── Plate, Bottom.STL │ ├── Plate, Spacer, #1.STEP │ ├── Plate, Spacer, #1.STL │ ├── Plate, Spacer, #2.STEP │ ├── Plate, Spacer, #2.STL │ ├── Plate, Spacer, #2_Rev-B_CON_DXF.dxf │ ├── Plate, Spacer, #3_Rev-B_CON_DXF.dxf │ ├── Plate, Switch, ErgoDox.STEP │ ├── Plate, Switch, ErgoDox.STL │ ├── Plate, Switch, ErgoDox_Rev-B_CON_DXF.dxf │ ├── Plate, Top, #1.STEP │ ├── Plate, Top, #1.STL │ ├── Plate, Top, #1_Rev-B_CON_DXF.dxf │ ├── Plate, Top, #2.STEP │ ├── Plate, Top, #2.STL │ ├── Plate, Top, #2_Rev-B_CON_DXF.dxf │ └── README.markdown ├── infinity-keyboard ├── LICENSE ├── infinity-case-hhkb3-layout.STEP ├── infinity-case-standard-layout.STEP ├── infinity-plate-hhkb3-layout.STEP └── infinity-plate-standard-layout.STEP └── whitefox-keyboard ├── LICENSE ├── rev-a ├── Plate, Switch, Aria.STEP ├── Plate, Switch, ISO.STEP ├── Plate, Switch, Jack of all Trades.STEP ├── Plate, Switch, True Fox.STEP ├── Plate, Switch, Vanilla.STEP ├── Plate, Switch, Winkeyless.STEP ├── case-whitefox-rev-final.STEP └── whitefox-case-truefox.zip └── rev-b-type-c ├── ESD Insert.stp ├── Metal Foot.stp ├── Rubber foot.stp ├── Switch Plate.stp ├── WhiteFox Case.stp └── WhiteFox-Type-C-Assembly.stp /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf 2 | 3 | *.* binary -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | K-Type/~$flat-head-shoulder-screw.SLDPRT 2 | *.zip -------------------------------------------------------------------------------- /K-Type/LICENSE: -------------------------------------------------------------------------------- 1 | CERN Open Hardware Licence v1.2 2 | 3 | Preamble 4 | 5 | Through this CERN Open Hardware Licence ("CERN OHL") version 1.2, CERN 6 | wishes to provide a tool to foster collaboration and sharing among 7 | hardware designers. The CERN OHL is copyright CERN. Anyone is welcome 8 | to use the CERN OHL, in unmodified form only, for the distribution of 9 | their own Open Hardware designs. Any other right is reserved. Release 10 | of hardware designs under the CERN OHL does not constitute an 11 | endorsement of the licensor or its designs nor does it imply any 12 | involvement by CERN in the development of such designs. 13 | 14 | 1. Definitions 15 | 16 | In this Licence, the following terms have the following meanings: 17 | 18 | “Licence” means this CERN OHL. 19 | 20 | “Documentation” means schematic diagrams, designs, circuit or circuit 21 | board layouts, mechanical drawings, flow charts and descriptive text, 22 | and other explanatory material that is explicitly stated as being made 23 | available under the conditions of this Licence. The Documentation may 24 | be in any medium, including but not limited to computer files and 25 | representations on paper, film, or any other media. 26 | 27 | “Documentation Location” means a location where the Licensor has 28 | placed Documentation, and which he believes will be publicly 29 | accessible for at least three years from the first communication to 30 | the public or distribution of Documentation. 31 | 32 | “Product” means either an entire, or any part of a, device built using 33 | the Documentation or the modified Documentation. 34 | 35 | “Licensee” means any natural or legal person exercising rights under 36 | this Licence. 37 | 38 | “Licensor” means any natural or legal person that creates or modifies 39 | Documentation and subsequently communicates to the public and/ or 40 | distributes the resulting Documentation under the terms and conditions 41 | of this Licence. 42 | 43 | A Licensee may at the same time be a Licensor, and vice versa. 44 | 45 | Use of the masculine gender includes the feminine and neuter genders 46 | and is employed solely to facilitate reading. 47 | 48 | 2. Applicability 49 | 50 | 2.1. This Licence governs the use, copying, modification, 51 | communication to the public and distribution of the Documentation, and 52 | the manufacture and distribution of Products. By exercising any right 53 | granted under this Licence, the Licensee irrevocably accepts these 54 | terms and conditions. 55 | 56 | 2.2. This Licence is granted by the Licensor directly to the Licensee, 57 | and shall apply worldwide and without limitation in time. The Licensee 58 | may assign his licence rights or grant sub-licences. 59 | 60 | 2.3. This Licence does not extend to software, firmware, or code 61 | loaded into programmable devices which may be used in conjunction with 62 | the Documentation, the modified Documentation or with Products, unless 63 | such software, firmware, or code is explicitly expressed to be subject 64 | to this Licence. The use of such software, firmware, or code is 65 | otherwise subject to the applicable licence terms and conditions. 66 | 67 | 3. Copying, modification, communication to the public and distribution 68 | of the Documentation 69 | 70 | 3.1. The Licensee shall keep intact all copyright and trademarks 71 | notices, all notices referring to Documentation Location, and all 72 | notices that refer to this Licence and to the disclaimer of warranties 73 | that are included in the Documentation. He shall include a copy 74 | thereof in every copy of the Documentation or, as the case may be, 75 | modified Documentation, that he communicates to the public or 76 | distributes. 77 | 78 | 3.2. The Licensee may copy, communicate to the public and distribute 79 | verbatim copies of the Documentation, in any medium, subject to the 80 | requirements specified in section 3.1. 81 | 82 | 3.3. The Licensee may modify the Documentation or any portion thereof 83 | provided that upon modification of the Documentation, the Licensee 84 | shall make the modified Documentation available from a Documentation 85 | Location such that it can be easily located by an original Licensor 86 | once the Licensee communicates to the public or distributes the 87 | modified Documentation under section 3.4, and, where required by 88 | section 4.1, by a recipient of a Product. However, the Licensor shall 89 | not assert his rights under the foregoing proviso unless or until a 90 | Product is distributed. 91 | 92 | 3.4. The Licensee may communicate to the public and distribute the 93 | modified Documentation (thereby in addition to being a Licensee also 94 | becoming a Licensor), always provided that he shall: 95 | 96 | a) comply with section 3.1; 97 | 98 | b) cause the modified Documentation to carry prominent notices stating 99 | that the Licensee has modified the Documentation, with the date and 100 | description of the modifications; 101 | 102 | c) cause the modified Documentation to carry a new Documentation 103 | Location notice if the original Documentation provided for one; 104 | 105 | d) make available the modified Documentation at the same level of 106 | abstraction as that of the Documentation, in the preferred format for 107 | making modifications to it (e.g. the native format of the CAD tool as 108 | applicable), and in the event that format is proprietary, in a format 109 | viewable with a tool licensed under an OSI-approved license if the 110 | proprietary tool can create it; and 111 | 112 | e) license the modified Documentation under the terms and conditions 113 | of this Licence or, where applicable, a later version of this Licence 114 | as may be issued by CERN. 115 | 116 | 3.5. The Licence includes a non-exclusive licence to those patents or 117 | registered designs that are held by, under the control of, or 118 | sub-licensable by the Licensor, to the extent necessary to make use of 119 | the rights granted under this Licence. The scope of this section 3.5 120 | shall be strictly limited to the parts of the Documentation or 121 | modified Documentation created by the Licensor. 122 | 123 | 4. Manufacture and distribution of Products 124 | 125 | 4.1. The Licensee may manufacture or distribute Products always 126 | provided that, where such manufacture or distribution requires a 127 | licence under this Licence the Licensee provides to each recipient of 128 | such Products an easy means of accessing a copy of the Documentation 129 | or modified Documentation, as applicable, as set out in section 3. 130 | 131 | 4.2. The Licensee is invited to inform any Licensor who has indicated 132 | his wish to receive this information about the type, quantity and 133 | dates of production of Products the Licensee has (had) manufactured 134 | 135 | 5. Warranty and liability 136 | 137 | 5.1. DISCLAIMER – The Documentation and any modified Documentation are 138 | provided "as is" and any express or implied warranties, including, but 139 | not limited to, implied warranties of merchantability, of satisfactory 140 | quality, non-infringement of third party rights, and fitness for a 141 | particular purpose or use are disclaimed in respect of the 142 | Documentation, the modified Documentation or any Product. The Licensor 143 | makes no representation that the Documentation, modified 144 | Documentation, or any Product, does or will not infringe any patent, 145 | copyright, trade secret or other proprietary right. The entire risk as 146 | to the use, quality, and performance of a Product shall be with the 147 | Licensee and not the Licensor. This disclaimer of warranty is an 148 | essential part of this Licence and a condition for the grant of any 149 | rights granted under this Licence. The Licensee warrants that it does 150 | not act in a consumer capacity. 151 | 152 | 5.2. LIMITATION OF LIABILITY – The Licensor shall have no liability 153 | for direct, indirect, special, incidental, consequential, exemplary, 154 | punitive or other damages of any character including, without 155 | limitation, procurement of substitute goods or services, loss of use, 156 | data or profits, or business interruption, however caused and on any 157 | theory of contract, warranty, tort (including negligence), product 158 | liability or otherwise, arising in any way in relation to the 159 | Documentation, modified Documentation and/or the use, manufacture or 160 | distribution of a Product, even if advised of the possibility of such 161 | damages, and the Licensee shall hold the Licensor(s) free and harmless 162 | from any liability, costs, damages, fees and expenses, including 163 | claims by third parties, in relation to such use. 164 | 165 | 6. General 166 | 167 | 6.1. Except for the rights explicitly granted hereunder, this Licence 168 | does not imply or represent any transfer or assignment of intellectual 169 | property rights to the Licensee. 170 | 171 | 6.2. The Licensee shall not use or make reference to any of the names 172 | (including acronyms and abbreviations), images, or logos under which 173 | the Licensor is known, save in so far as required to comply with 174 | section 3. Any such permitted use or reference shall be factual and 175 | shall in no event suggest any kind of endorsement by the Licensor or 176 | its personnel of the modified Documentation or any Product, or any 177 | kind of implication by the Licensor or its personnel in the 178 | preparation of the modified Documentation or Product. 179 | 180 | 6.3. CERN may publish updated versions of this Licence which retain 181 | the same general provisions as this version, but differ in detail so 182 | far this is required and reasonable. New versions will be published 183 | with a unique version number. 184 | 185 | 6.4. This Licence shall terminate with immediate effect, upon written 186 | notice and without involvement of a court if the Licensee fails to 187 | comply with any of its terms and conditions, or if the Licensee 188 | initiates legal action against Licensor in relation to this 189 | Licence. Section 5 shall continue to apply. 190 | -------------------------------------------------------------------------------- /K-Type/k-type-assembly.STEP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiibohd/case/797b7ccd049a0fdaec4530134a6911260776962d/K-Type/k-type-assembly.STEP -------------------------------------------------------------------------------- /K-Type/k-type-metal-disk.STEP: -------------------------------------------------------------------------------- 1 | ISO-10303-21; 2 | HEADER; 3 | FILE_DESCRIPTION (( 'STEP AP203' ), 4 | '1' ); 5 | FILE_NAME ('k-type-metal-disk.STEP', 6 | '2017-11-03T07:57:14', 7 | ( 'Windows User' ), 8 | ( '' ), 9 | 'SwSTEP 2.0', 10 | 'SolidWorks 2015', 11 | '' ); 12 | FILE_SCHEMA (( 'CONFIG_CONTROL_DESIGN' )); 13 | ENDSEC; 14 | 15 | DATA; 16 | #1 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; 17 | #2 = APPROVAL_ROLE ( '' ) ; 18 | #3 = CC_DESIGN_APPROVAL ( #9, ( #13 ) ) ; 19 | #4 = CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT ( #15, #117, ( #13 ) ) ; 20 | #5 = DESIGN_CONTEXT ( 'detailed design', #99, 'design' ) ; 21 | #6 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; 22 | #7 = PERSON_AND_ORGANIZATION ( #116, #128 ) ; 23 | #8 = ORIENTED_EDGE ( 'NONE', *, *, #67, .T. ) ; 24 | #9 = APPROVAL ( #32, 'UNSPECIFIED' ) ; 25 | #10 = APPROVAL_DATE_TIME ( #136, #9 ) ; 26 | #11 = EDGE_CURVE ( 'NONE', #70, #114, #82, .T. ) ; 27 | #12 = CALENDAR_DATE ( 2017, 3, 11 ) ; 28 | #13 = SECURITY_CLASSIFICATION ( '', '', #28 ) ; 29 | #14 = PRODUCT_DEFINITION_SHAPE ( 'NONE', 'NONE', #97 ) ; 30 | #15 = PERSON_AND_ORGANIZATION ( #116, #128 ) ; 31 | #16 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; 32 | #17 = DATE_AND_TIME ( #123, #139 ) ; 33 | #18 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; 34 | #19 =( LENGTH_UNIT ( ) NAMED_UNIT ( * ) SI_UNIT ( .MILLI., .METRE. ) ); 35 | #20 = PERSON_AND_ORGANIZATION ( #116, #128 ) ; 36 | #21 = CYLINDRICAL_SURFACE ( 'NONE', #44, 7.500000000000000000 ) ; 37 | #22 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 8, 0, .BEHIND. ) ; 38 | #23 = EDGE_LOOP ( 'NONE', ( #154, #61, #147, #58 ) ) ; 39 | #24 = EDGE_LOOP ( 'NONE', ( #94, #124, #162, #167 ) ) ; 40 | #25 = AXIS2_PLACEMENT_3D ( 'NONE', #158, #29, #18 ) ; 41 | #26 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, -0.0000000000000000000 ) ) ; 42 | #27 =( GEOMETRIC_REPRESENTATION_CONTEXT ( 3 ) GLOBAL_UNCERTAINTY_ASSIGNED_CONTEXT ( ( #132 ) ) GLOBAL_UNIT_ASSIGNED_CONTEXT ( ( #19, #30, #126 ) ) REPRESENTATION_CONTEXT ( 'NONE', 'WORKASPACE' ) ); 43 | #28 = SECURITY_CLASSIFICATION_LEVEL ( 'unclassified' ) ; 44 | #29 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; 45 | #30 =( NAMED_UNIT ( * ) PLANE_ANGLE_UNIT ( ) SI_UNIT ( $, .RADIAN. ) ); 46 | #31 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 8, 0, .BEHIND. ) ; 47 | #32 = APPROVAL_STATUS ( 'not_yet_approved' ) ; 48 | #33 = AXIS2_PLACEMENT_3D ( 'NONE', #72, #137, #16 ) ; 49 | #34 = VECTOR ( 'NONE', #1, 1000.000000000000000 ) ; 50 | #35 = PLANE ( 'NONE', #49 ) ; 51 | #36 = DATE_TIME_ROLE ( 'classification_date' ) ; 52 | #37 = FACE_OUTER_BOUND ( 'NONE', #24, .T. ) ; 53 | #38 = CALENDAR_DATE ( 2017, 3, 11 ) ; 54 | #39 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; 55 | #40 = CC_DESIGN_DATE_AND_TIME_ASSIGNMENT ( #113, #36, ( #13 ) ) ; 56 | #41 = CALENDAR_DATE ( 2017, 3, 11 ) ; 57 | #42 = CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT ( #7, #68, ( #171 ) ) ; 58 | #43 = CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT ( #63, #93, ( #171 ) ) ; 59 | #44 = AXIS2_PLACEMENT_3D ( 'NONE', #122, #39, #65 ) ; 60 | #45 = DATE_AND_TIME ( #41, #104 ) ; 61 | #46 = ADVANCED_BREP_SHAPE_REPRESENTATION ( 'k-type-metal-disk', ( #131, #112 ), #27 ) ; 62 | #47 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; 63 | #48 = CYLINDRICAL_SURFACE ( 'NONE', #80, 7.500000000000000000 ) ; 64 | #49 = AXIS2_PLACEMENT_3D ( 'NONE', #73, #50, #26 ) ; 65 | #50 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; 66 | #51 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; 67 | #52 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 2.000000000000000000 ) ) ; 68 | #53 = CC_DESIGN_APPROVAL ( #156, ( #97 ) ) ; 69 | #54 = APPROVAL_ROLE ( '' ) ; 70 | #55 = FACE_OUTER_BOUND ( 'NONE', #23, .T. ) ; 71 | #56 = APPROVAL_STATUS ( 'not_yet_approved' ) ; 72 | #57 = CC_DESIGN_DATE_AND_TIME_ASSIGNMENT ( #17, #141, ( #97 ) ) ; 73 | #58 = ORIENTED_EDGE ( 'NONE', *, *, #173, .F. ) ; 74 | #59 = APPROVAL_ROLE ( '' ) ; 75 | #60 = LOCAL_TIME ( 0, 57, 14.00000000000000000, #89 ) ; 76 | #61 = ORIENTED_EDGE ( 'NONE', *, *, #150, .T. ) ; 77 | #62 = AXIS2_PLACEMENT_3D ( 'NONE', #52, #105, #109 ) ; 78 | #63 = PERSON_AND_ORGANIZATION ( #116, #128 ) ; 79 | #64 = ADVANCED_FACE ( 'NONE', ( #55 ), #21, .T. ) ; 80 | #65 = DIRECTION ( 'NONE', ( -1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; 81 | #66 = CIRCLE ( 'NONE', #33, 7.500000000000000000 ) ; 82 | #67 = EDGE_CURVE ( 'NONE', #114, #70, #86, .T. ) ; 83 | #68 = PERSON_AND_ORGANIZATION_ROLE ( 'creator' ) ; 84 | #69 = PERSON_AND_ORGANIZATION ( #116, #128 ) ; 85 | #70 = VERTEX_POINT ( 'NONE', #144 ) ; 86 | #71 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; 87 | #72 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; 88 | #73 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 2.000000000000000000 ) ) ; 89 | #74 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; 90 | #75 = LOCAL_TIME ( 0, 57, 14.00000000000000000, #91 ) ; 91 | #76 = PRODUCT_RELATED_PRODUCT_CATEGORY ( 'detail', '', ( #163 ) ) ; 92 | #77 = CARTESIAN_POINT ( 'NONE', ( -7.500000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; 93 | #78 = APPLICATION_PROTOCOL_DEFINITION ( 'international standard', 'config_control_design', 1994, #99 ) ; 94 | #79 = EDGE_CURVE ( 'NONE', #134, #143, #66, .T. ) ; 95 | #80 = AXIS2_PLACEMENT_3D ( 'NONE', #88, #168, #92 ) ; 96 | #81 = PERSON_AND_ORGANIZATION ( #116, #128 ) ; 97 | #82 = CIRCLE ( 'NONE', #62, 7.500000000000000000 ) ; 98 | #83 = ORIENTED_EDGE ( 'NONE', *, *, #79, .F. ) ; 99 | #84 = APPROVAL_PERSON_ORGANIZATION ( #170, #156, #2 ) ; 100 | #85 = SHAPE_DEFINITION_REPRESENTATION ( #14, #46 ) ; 101 | #86 = CIRCLE ( 'NONE', #25, 7.500000000000000000 ) ; 102 | #87 = EDGE_LOOP ( 'NONE', ( #83, #149 ) ) ; 103 | #88 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 2.000000000000000000 ) ) ; 104 | #89 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 8, 0, .BEHIND. ) ; 105 | #90 = APPLICATION_CONTEXT ( 'configuration controlled 3d designs of mechanical parts and assemblies' ) ; 106 | #91 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 8, 0, .BEHIND. ) ; 107 | #92 = DIRECTION ( 'NONE', ( -1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; 108 | #93 = PERSON_AND_ORGANIZATION_ROLE ( 'design_supplier' ) ; 109 | #94 = ORIENTED_EDGE ( 'NONE', *, *, #150, .F. ) ; 110 | #95 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; 111 | #96 = PLANE ( 'NONE', #174 ) ; 112 | #97 = PRODUCT_DEFINITION ( 'UNKNOWN', '', #171, #5 ) ; 113 | #98 = APPROVAL_DATE_TIME ( #146, #156 ) ; 114 | #99 = APPLICATION_CONTEXT ( 'configuration controlled 3d designs of mechanical parts and assemblies' ) ; 115 | #100 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; 116 | #101 = ORIENTED_EDGE ( 'NONE', *, *, #11, .T. ) ; 117 | #102 = ADVANCED_FACE ( 'NONE', ( #175 ), #96, .F. ) ; 118 | #103 = CARTESIAN_POINT ( 'NONE', ( 7.500000000000000000, 9.184850993605147900E-016, 2.000000000000000000 ) ) ; 119 | #104 = LOCAL_TIME ( 0, 57, 14.00000000000000000, #31 ) ; 120 | #105 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; 121 | #106 = CC_DESIGN_APPROVAL ( #111, ( #171 ) ) ; 122 | #107 = LINE ( 'NONE', #103, #34 ) ; 123 | #108 = CALENDAR_DATE ( 2017, 3, 11 ) ; 124 | #109 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; 125 | #110 = ADVANCED_FACE ( 'NONE', ( #37 ), #48, .T. ) ; 126 | #111 = APPROVAL ( #56, 'UNSPECIFIED' ) ; 127 | #112 = AXIS2_PLACEMENT_3D ( 'NONE', #74, #47, #51 ) ; 128 | #113 = DATE_AND_TIME ( #108, #75 ) ; 129 | #114 = VERTEX_POINT ( 'NONE', #151 ) ; 130 | #115 = CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT ( #20, #157, ( #163 ) ) ; 131 | #116 = PERSON ( 'UNSPECIFIED', 'UNSPECIFIED', 'UNSPECIFIED', ('UNSPECIFIED'), ('UNSPECIFIED'), ('UNSPECIFIED') ) ; 132 | #117 = PERSON_AND_ORGANIZATION_ROLE ( 'classification_officer' ) ; 133 | #118 = EDGE_CURVE ( 'NONE', #143, #134, #120, .T. ) ; 134 | #119 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, -0.0000000000000000000 ) ) ; 135 | #120 = CIRCLE ( 'NONE', #142, 7.500000000000000000 ) ; 136 | #121 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 8, 0, .BEHIND. ) ; 137 | #122 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 2.000000000000000000 ) ) ; 138 | #123 = CALENDAR_DATE ( 2017, 3, 11 ) ; 139 | #124 = ORIENTED_EDGE ( 'NONE', *, *, #11, .F. ) ; 140 | #125 = EDGE_LOOP ( 'NONE', ( #101, #8 ) ) ; 141 | #126 =( NAMED_UNIT ( * ) SI_UNIT ( $, .STERADIAN. ) SOLID_ANGLE_UNIT ( ) ); 142 | #127 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; 143 | #128 = ORGANIZATION ( 'UNSPECIFIED', 'UNSPECIFIED', '' ) ; 144 | #129 = CLOSED_SHELL ( 'NONE', ( #64, #110, #148, #102 ) ) ; 145 | #130 = CARTESIAN_POINT ( 'NONE', ( 7.500000000000000000, 9.184850993605147900E-016, 0.0000000000000000000 ) ) ; 146 | #131 = MANIFOLD_SOLID_BREP ( 'Boss-Extrude1', #129 ) ; 147 | #132 = UNCERTAINTY_MEASURE_WITH_UNIT (LENGTH_MEASURE( 1.000000000000000100E-005 ), #19, 'distance_accuracy_value', 'NONE'); 148 | #133 = FACE_OUTER_BOUND ( 'NONE', #125, .T. ) ; 149 | #134 = VERTEX_POINT ( 'NONE', #77 ) ; 150 | #135 = APPROVAL_PERSON_ORGANIZATION ( #81, #111, #59 ) ; 151 | #136 = DATE_AND_TIME ( #12, #60 ) ; 152 | #137 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; 153 | #138 = PERSON_AND_ORGANIZATION ( #116, #128 ) ; 154 | #139 = LOCAL_TIME ( 0, 57, 14.00000000000000000, #22 ) ; 155 | #140 = CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT ( #69, #161, ( #97 ) ) ; 156 | #141 = DATE_TIME_ROLE ( 'creation_date' ) ; 157 | #142 = AXIS2_PLACEMENT_3D ( 'NONE', #169, #71, #6 ) ; 158 | #143 = VERTEX_POINT ( 'NONE', #130 ) ; 159 | #144 = CARTESIAN_POINT ( 'NONE', ( -7.500000000000000000, 0.0000000000000000000, 2.000000000000000000 ) ) ; 160 | #145 = CC_DESIGN_SECURITY_CLASSIFICATION ( #13, ( #171 ) ) ; 161 | #146 = DATE_AND_TIME ( #38, #172 ) ; 162 | #147 = ORIENTED_EDGE ( 'NONE', *, *, #118, .T. ) ; 163 | #148 = ADVANCED_FACE ( 'NONE', ( #133 ), #35, .T. ) ; 164 | #149 = ORIENTED_EDGE ( 'NONE', *, *, #118, .F. ) ; 165 | #150 = EDGE_CURVE ( 'NONE', #114, #143, #107, .T. ) ; 166 | #151 = CARTESIAN_POINT ( 'NONE', ( 7.500000000000000000, 9.184850993605147900E-016, 2.000000000000000000 ) ) ; 167 | #152 = APPLICATION_PROTOCOL_DEFINITION ( 'international standard', 'config_control_design', 1994, #90 ) ; 168 | #153 = MECHANICAL_CONTEXT ( 'NONE', #90, 'mechanical' ) ; 169 | #154 = ORIENTED_EDGE ( 'NONE', *, *, #67, .F. ) ; 170 | #155 = VECTOR ( 'NONE', #100, 1000.000000000000000 ) ; 171 | #156 = APPROVAL ( #166, 'UNSPECIFIED' ) ; 172 | #157 = PERSON_AND_ORGANIZATION_ROLE ( 'design_owner' ) ; 173 | #158 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 2.000000000000000000 ) ) ; 174 | #159 = APPROVAL_PERSON_ORGANIZATION ( #138, #9, #54 ) ; 175 | #160 = LINE ( 'NONE', #165, #155 ) ; 176 | #161 = PERSON_AND_ORGANIZATION_ROLE ( 'creator' ) ; 177 | #162 = ORIENTED_EDGE ( 'NONE', *, *, #173, .T. ) ; 178 | #163 = PRODUCT ( 'k-type-metal-disk', 'k-type-metal-disk', '', ( #153 ) ) ; 179 | #164 = APPROVAL_DATE_TIME ( #45, #111 ) ; 180 | #165 = CARTESIAN_POINT ( 'NONE', ( -7.500000000000000000, 0.0000000000000000000, 2.000000000000000000 ) ) ; 181 | #166 = APPROVAL_STATUS ( 'not_yet_approved' ) ; 182 | #167 = ORIENTED_EDGE ( 'NONE', *, *, #79, .T. ) ; 183 | #168 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; 184 | #169 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; 185 | #170 = PERSON_AND_ORGANIZATION ( #116, #128 ) ; 186 | #171 = PRODUCT_DEFINITION_FORMATION_WITH_SPECIFIED_SOURCE ( 'ANY', '', #163, .NOT_KNOWN. ) ; 187 | #172 = LOCAL_TIME ( 0, 57, 14.00000000000000000, #121 ) ; 188 | #173 = EDGE_CURVE ( 'NONE', #70, #134, #160, .T. ) ; 189 | #174 = AXIS2_PLACEMENT_3D ( 'NONE', #95, #127, #119 ) ; 190 | #175 = FACE_OUTER_BOUND ( 'NONE', #87, .T. ) ; 191 | ENDSEC; 192 | END-ISO-10303-21; 193 | -------------------------------------------------------------------------------- /K-Type/k-type-pill-rubber-feet.STEP: -------------------------------------------------------------------------------- 1 | ISO-10303-21; 2 | HEADER; 3 | FILE_DESCRIPTION (( 'STEP AP203' ), 4 | '1' ); 5 | FILE_NAME ('k-type-pill-rubber-feet.STEP', 6 | '2017-11-03T07:54:32', 7 | ( 'Windows User' ), 8 | ( '' ), 9 | 'SwSTEP 2.0', 10 | 'SolidWorks 2015', 11 | '' ); 12 | FILE_SCHEMA (( 'CONFIG_CONTROL_DESIGN' )); 13 | ENDSEC; 14 | 15 | DATA; 16 | #1 = VERTEX_POINT ( 'NONE', #13 ) ; 17 | #2 = CARTESIAN_POINT ( 'NONE', ( -4.000000000000000000, 3.000000000000000000, 35.00000000000000000 ) ) ; 18 | #3 = EDGE_CURVE ( 'NONE', #218, #1, #194, .T. ) ; 19 | #4 = APPROVAL_ROLE ( '' ) ; 20 | #5 = ORIENTED_EDGE ( 'NONE', *, *, #250, .T. ) ; 21 | #6 = LOCAL_TIME ( 0, 54, 32.00000000000000000, #167 ) ; 22 | #7 = DIRECTION ( 'NONE', ( -0.0000000000000000000, 1.000000000000000000, -0.0000000000000000000 ) ) ; 23 | #8 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; 24 | #9 = CARTESIAN_POINT ( 'NONE', ( 4.000000000000000000, 0.0000000000000000000, 31.00000000000000400 ) ) ; 25 | #10 = DIRECTION ( 'NONE', ( 1.224646799147353200E-016, 0.0000000000000000000, -1.000000000000000000 ) ) ; 26 | #11 = ADVANCED_FACE ( 'NONE', ( #284 ), #306, .T. ) ; 27 | #12 = CIRCLE ( 'NONE', #124, 0.1270166537925832000 ) ; 28 | #13 = CARTESIAN_POINT ( 'NONE', ( -0.1270166537925832000, 3.000000000000000000, 4.000000000000000000 ) ) ; 29 | #14 = CARTESIAN_POINT ( 'NONE', ( -0.1270166537925834500, -1.000000000000000000, 4.000000000000000000 ) ) ; 30 | #15 = MECHANICAL_CONTEXT ( 'NONE', #42, 'mechanical' ) ; 31 | #16 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 1.224646799147353200E-016 ) ) ; 32 | #17 = PERSON_AND_ORGANIZATION_ROLE ( 'classification_officer' ) ; 33 | #18 = CARTESIAN_POINT ( 'NONE', ( 2.168404344971008900E-016, -1.000000000000000000, 31.00000000000000400 ) ) ; 34 | #19 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; 35 | #20 = TOROIDAL_SURFACE ( 'NONE', #83, 0.1270166537925832000, 4.000000000000000000 ) ; 36 | #21 = EDGE_LOOP ( 'NONE', ( #53, #62, #150, #25 ) ) ; 37 | #22 = PERSON_AND_ORGANIZATION_ROLE ( 'creator' ) ; 38 | #23 = APPROVAL_PERSON_ORGANIZATION ( #317, #80, #4 ) ; 39 | #24 = CIRCLE ( 'NONE', #148, 4.000000000000000000 ) ; 40 | #25 = ORIENTED_EDGE ( 'NONE', *, *, #250, .F. ) ; 41 | #26 = FACE_OUTER_BOUND ( 'NONE', #21, .T. ) ; 42 | #27 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; 43 | #28 = CARTESIAN_POINT ( 'NONE', ( -0.1270166537925832000, 3.000000000000000000, 31.00000000000000400 ) ) ; 44 | #29 = APPROVAL_ROLE ( '' ) ; 45 | #30 = VECTOR ( 'NONE', #19, 1000.000000000000000 ) ; 46 | #31 = ADVANCED_FACE ( 'NONE', ( #26 ), #244, .T. ) ; 47 | #32 = EDGE_LOOP ( 'NONE', ( #107, #135, #87, #262 ) ) ; 48 | #33 = EDGE_LOOP ( 'NONE', ( #200, #116, #156, #243 ) ) ; 49 | #34 = DIRECTION ( 'NONE', ( -0.0000000000000000000, 1.000000000000000000, -0.0000000000000000000 ) ) ; 50 | #35 = DATE_AND_TIME ( #162, #123 ) ; 51 | #36 = EDGE_CURVE ( 'NONE', #131, #213, #145, .T. ) ; 52 | #37 = CC_DESIGN_APPROVAL ( #311, ( #253 ) ) ; 53 | #38 = ORIENTED_EDGE ( 'NONE', *, *, #212, .F. ) ; 54 | #39 = FACE_OUTER_BOUND ( 'NONE', #112, .T. ) ; 55 | #40 = CALENDAR_DATE ( 2017, 3, 11 ) ; 56 | #41 = DIRECTION ( 'NONE', ( -0.0000000000000000000, 1.000000000000000000, -0.0000000000000000000 ) ) ; 57 | #42 = APPLICATION_CONTEXT ( 'configuration controlled 3d designs of mechanical parts and assemblies' ) ; 58 | #43 = ORIENTED_EDGE ( 'NONE', *, *, #163, .T. ) ; 59 | #44 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; 60 | #45 = VECTOR ( 'NONE', #113, 1000.000000000000000 ) ; 61 | #46 = PRODUCT_RELATED_PRODUCT_CATEGORY ( 'detail', '', ( #293 ) ) ; 62 | #47 = PRODUCT_DEFINITION_FORMATION_WITH_SPECIFIED_SOURCE ( 'ANY', '', #293, .NOT_KNOWN. ) ; 63 | #48 = AXIS2_PLACEMENT_3D ( 'NONE', #126, #16, #10 ) ; 64 | #49 = ORIENTED_EDGE ( 'NONE', *, *, #57, .T. ) ; 65 | #50 = PERSON_AND_ORGANIZATION ( #257, #149 ) ; 66 | #51 = CARTESIAN_POINT ( 'NONE', ( 2.527068867547453400E-016, 3.000000000000000000, 3.872983346207417000 ) ) ; 67 | #52 = CIRCLE ( 'NONE', #177, 4.000000000000000000 ) ; 68 | #53 = ORIENTED_EDGE ( 'NONE', *, *, #97, .T. ) ; 69 | #54 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; 70 | #55 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; 71 | #56 = ADVANCED_FACE ( 'NONE', ( #39 ), #201, .F. ) ; 72 | #57 = EDGE_CURVE ( 'NONE', #283, #261, #24, .T. ) ; 73 | #58 = VERTEX_POINT ( 'NONE', #60 ) ; 74 | #59 = LOCAL_TIME ( 0, 54, 32.00000000000000000, #151 ) ; 75 | #60 = CARTESIAN_POINT ( 'NONE', ( 0.1270166537925834200, 3.000000000000000000, 31.00000000000000400 ) ) ; 76 | #61 = DATE_AND_TIME ( #40, #6 ) ; 77 | #62 = ORIENTED_EDGE ( 'NONE', *, *, #163, .F. ) ; 78 | #63 = DIRECTION ( 'NONE', ( -0.0000000000000000000, 1.000000000000000000, -0.0000000000000000000 ) ) ; 79 | #64 = CARTESIAN_POINT ( 'NONE', ( 2.168404344971008900E-016, 0.0000000000000000000, 31.00000000000000400 ) ) ; 80 | #65 = PERSON_AND_ORGANIZATION_ROLE ( 'creator' ) ; 81 | #66 = CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT ( #248, #246, ( #47 ) ) ; 82 | #67 = DIRECTION ( 'NONE', ( -1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; 83 | #68 = APPROVAL_DATE_TIME ( #35, #92 ) ; 84 | #69 = EDGE_CURVE ( 'NONE', #58, #294, #111, .T. ) ; 85 | #70 = EDGE_LOOP ( 'NONE', ( #76, #159, #160, #299 ) ) ; 86 | #71 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; 87 | #72 = CARTESIAN_POINT ( 'NONE', ( 4.898587196589412800E-016, 0.0000000000000000000, -2.168404344971008900E-016 ) ) ; 88 | #73 = ADVANCED_FACE ( 'NONE', ( #93 ), #158, .T. ) ; 89 | #74 = VECTOR ( 'NONE', #235, 1000.000000000000000 ) ; 90 | #75 = EDGE_CURVE ( 'NONE', #261, #294, #128, .T. ) ; 91 | #76 = ORIENTED_EDGE ( 'NONE', *, *, #274, .T. ) ; 92 | #77 = EDGE_CURVE ( 'NONE', #186, #1, #271, .T. ) ; 93 | #78 = AXIS2_PLACEMENT_3D ( 'NONE', #64, #114, #295 ) ; 94 | #79 = EDGE_LOOP ( 'NONE', ( #49, #125, #165, #301 ) ) ; 95 | #80 = APPROVAL ( #216, 'UNSPECIFIED' ) ; 96 | #81 = DIRECTION ( 'NONE', ( -1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; 97 | #82 = ADVANCED_BREP_SHAPE_REPRESENTATION ( 'k-type-pill-rubber-feet', ( #278, #226 ), #279 ) ; 98 | #83 = AXIS2_PLACEMENT_3D ( 'NONE', #217, #223, #129 ) ; 99 | #84 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; 100 | #85 = APPROVAL_ROLE ( '' ) ; 101 | #86 = ADVANCED_FACE ( 'NONE', ( #240 ), #286, .F. ) ; 102 | #87 = ORIENTED_EDGE ( 'NONE', *, *, #77, .T. ) ; 103 | #88 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; 104 | #89 = DIRECTION ( 'NONE', ( -1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; 105 | #90 = DIRECTION ( 'NONE', ( -0.0000000000000000000, 1.000000000000000000, -0.0000000000000000000 ) ) ; 106 | #91 = PERSON_AND_ORGANIZATION ( #257, #149 ) ; 107 | #92 = APPROVAL ( #222, 'UNSPECIFIED' ) ; 108 | #93 = FACE_OUTER_BOUND ( 'NONE', #70, .T. ) ; 109 | #94 = CARTESIAN_POINT ( 'NONE', ( -4.000000000000000000, 0.0000000000000000000, 31.00000000000000400 ) ) ; 110 | #95 = DIRECTION ( 'NONE', ( -0.0000000000000000000, 1.000000000000000000, -0.0000000000000000000 ) ) ; 111 | #96 = CARTESIAN_POINT ( 'NONE', ( -4.000000000000000000, 0.0000000000000000000, 4.000000000000000000 ) ) ; 112 | #97 = EDGE_CURVE ( 'NONE', #283, #131, #130, .T. ) ; 113 | #98 = ORIENTED_EDGE ( 'NONE', *, *, #290, .T. ) ; 114 | #99 = PERSON_AND_ORGANIZATION ( #257, #149 ) ; 115 | #100 = AXIS2_PLACEMENT_3D ( 'NONE', #169, #63, #180 ) ; 116 | #101 = AXIS2_PLACEMENT_3D ( 'NONE', #241, #316, #136 ) ; 117 | #102 = VERTEX_POINT ( 'NONE', #72 ) ; 118 | #103 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; 119 | #104 = DIRECTION ( 'NONE', ( 0.0000000000000000000, -1.000000000000000000, 0.0000000000000000000 ) ) ; 120 | #105 = FACE_OUTER_BOUND ( 'NONE', #79, .T. ) ; 121 | #106 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 1.000000000000000000, -0.0000000000000000000 ) ) ; 122 | #107 = ORIENTED_EDGE ( 'NONE', *, *, #140, .F. ) ; 123 | #108 = CIRCLE ( 'NONE', #193, 4.000000000000000000 ) ; 124 | #109 = DIRECTION ( 'NONE', ( 0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; 125 | #110 = CIRCLE ( 'NONE', #101, 4.000000000000000000 ) ; 126 | #111 = CIRCLE ( 'NONE', #143, 4.000000000000000000 ) ; 127 | #112 = EDGE_LOOP ( 'NONE', ( #305, #5, #178, #275, #255, #247 ) ) ; 128 | #113 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; 129 | #114 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 1.000000000000000000, -0.0000000000000000000 ) ) ; 130 | #115 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; 131 | #116 = ORIENTED_EDGE ( 'NONE', *, *, #134, .T. ) ; 132 | #117 = AXIS2_PLACEMENT_3D ( 'NONE', #256, #118, #27 ) ; 133 | #118 = DIRECTION ( 'NONE', ( -0.0000000000000000000, 1.000000000000000000, -0.0000000000000000000 ) ) ; 134 | #119 = EDGE_CURVE ( 'NONE', #102, #186, #52, .T. ) ; 135 | #120 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; 136 | #121 = DESIGN_CONTEXT ( 'detailed design', #207, 'design' ) ; 137 | #122 = SHAPE_DEFINITION_REPRESENTATION ( #312, #82 ) ; 138 | #123 = LOCAL_TIME ( 0, 54, 32.00000000000000000, #308 ) ; 139 | #124 = AXIS2_PLACEMENT_3D ( 'NONE', #153, #41, #264 ) ; 140 | #125 = ORIENTED_EDGE ( 'NONE', *, *, #300, .T. ) ; 141 | #126 = CARTESIAN_POINT ( 'NONE', ( 1.555505385054945300E-017, -1.000000000000000000, 3.872983346207417000 ) ) ; 142 | #127 = DATE_AND_TIME ( #175, #142 ) ; 143 | #128 = CIRCLE ( 'NONE', #78, 4.000000000000000000 ) ; 144 | #129 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; 145 | #130 = CIRCLE ( 'NONE', #269, 4.000000000000000000 ) ; 146 | #131 = VERTEX_POINT ( 'NONE', #28 ) ; 147 | #132 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; 148 | #133 = APPROVAL_DATE_TIME ( #282, #311 ) ; 149 | #134 = EDGE_CURVE ( 'NONE', #294, #234, #281, .T. ) ; 150 | #135 = ORIENTED_EDGE ( 'NONE', *, *, #119, .T. ) ; 151 | #136 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; 152 | #137 = CIRCLE ( 'NONE', #48, 4.000000000000000000 ) ; 153 | #138 = AXIS2_PLACEMENT_3D ( 'NONE', #182, #7, #44 ) ; 154 | #139 = DATE_TIME_ROLE ( 'classification_date' ) ; 155 | #140 = EDGE_CURVE ( 'NONE', #102, #218, #137, .T. ) ; 156 | #141 = LOCAL_TIME ( 0, 54, 32.00000000000000000, #184 ) ; 157 | #142 = LOCAL_TIME ( 0, 54, 32.00000000000000000, #273 ) ; 158 | #143 = AXIS2_PLACEMENT_3D ( 'NONE', #181, #170, #89 ) ; 159 | #144 = PERSON_AND_ORGANIZATION ( #257, #149 ) ; 160 | #145 = CIRCLE ( 'NONE', #310, 0.1270166537925832000 ) ; 161 | #146 = CARTESIAN_POINT ( 'NONE', ( -0.1270166537925832000, 3.000000000000000000, 35.00000000000000000 ) ) ; 162 | #147 = DATE_AND_TIME ( #210, #59 ) ; 163 | #148 = AXIS2_PLACEMENT_3D ( 'NONE', #220, #314, #103 ) ; 164 | #149 = ORGANIZATION ( 'UNSPECIFIED', 'UNSPECIFIED', '' ) ; 165 | #150 = ORIENTED_EDGE ( 'NONE', *, *, #77, .F. ) ; 166 | #151 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 8, 0, .BEHIND. ) ; 167 | #152 = CIRCLE ( 'NONE', #289, 0.1270166537925832000 ) ; 168 | #153 = CARTESIAN_POINT ( 'NONE', ( 2.168404344971008900E-016, 3.000000000000000000, 31.00000000000000400 ) ) ; 169 | #154 = AXIS2_PLACEMENT_3D ( 'NONE', #14, #54, #67 ) ; 170 | #155 = ORIENTED_EDGE ( 'NONE', *, *, #36, .T. ) ; 171 | #156 = ORIENTED_EDGE ( 'NONE', *, *, #297, .F. ) ; 172 | #157 = PERSON_AND_ORGANIZATION_ROLE ( 'design_owner' ) ; 173 | #158 = TOROIDAL_SURFACE ( 'NONE', #117, 0.1270166537925832000, 4.000000000000000000 ) ; 174 | #159 = ORIENTED_EDGE ( 'NONE', *, *, #140, .T. ) ; 175 | #160 = ORIENTED_EDGE ( 'NONE', *, *, #290, .F. ) ; 176 | #161 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 1.000000000000000000, 0.0000000000000000000 ) ) ; 177 | #162 = CALENDAR_DATE ( 2017, 3, 11 ) ; 178 | #163 = EDGE_CURVE ( 'NONE', #1, #131, #230, .T. ) ; 179 | #164 = APPROVAL_PERSON_ORGANIZATION ( #91, #311, #29 ) ; 180 | #165 = ORIENTED_EDGE ( 'NONE', *, *, #36, .F. ) ; 181 | #166 = DIRECTION ( 'NONE', ( -1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; 182 | #167 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 8, 0, .BEHIND. ) ; 183 | #168 = VERTEX_POINT ( 'NONE', #188 ) ; 184 | #169 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 3.000000000000000000, 4.000000000000000000 ) ) ; 185 | #170 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; 186 | #171 = PERSON_AND_ORGANIZATION ( #257, #149 ) ; 187 | #172 = ORIENTED_EDGE ( 'NONE', *, *, #75, .T. ) ; 188 | #173 = CARTESIAN_POINT ( 'NONE', ( 2.168404344971008900E-016, 0.0000000000000000000, 35.00000000000000000 ) ) ; 189 | #174 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 4.000000000000000000 ) ) ; 190 | #175 = CALENDAR_DATE ( 2017, 3, 11 ) ; 191 | #176 = UNCERTAINTY_MEASURE_WITH_UNIT (LENGTH_MEASURE( 1.000000000000000100E-005 ), #215, 'distance_accuracy_value', 'NONE'); 192 | #177 = AXIS2_PLACEMENT_3D ( 'NONE', #174, #106, #84 ) ; 193 | #178 = ORIENTED_EDGE ( 'NONE', *, *, #119, .F. ) ; 194 | #179 = AXIS2_PLACEMENT_3D ( 'NONE', #214, #245, #285 ) ; 195 | #180 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; 196 | #181 = CARTESIAN_POINT ( 'NONE', ( 0.1270166537925834200, -1.000000000000000000, 31.00000000000000400 ) ) ; 197 | #182 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, -1.000000000000000000, 4.000000000000000000 ) ) ; 198 | #183 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 3.000000000000000000, 4.000000000000000000 ) ) ; 199 | #184 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 8, 0, .BEHIND. ) ; 200 | #185 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; 201 | #186 = VERTEX_POINT ( 'NONE', #96 ) ; 202 | #187 = CARTESIAN_POINT ( 'NONE', ( 0.1270166537925832000, -1.000000000000000000, 4.000000000000000000 ) ) ; 203 | #188 = CARTESIAN_POINT ( 'NONE', ( 0.1270166537925832000, 3.000000000000000000, 4.000000000000000000 ) ) ; 204 | #189 = CLOSED_SHELL ( 'NONE', ( #73, #298, #56, #86, #195, #11, #31, #225 ) ) ; 205 | #190 = ORIENTED_EDGE ( 'NONE', *, *, #300, .F. ) ; 206 | #191 = SECURITY_CLASSIFICATION_LEVEL ( 'unclassified' ) ; 207 | #192 = CARTESIAN_POINT ( 'NONE', ( 2.168404344971008900E-016, 3.000000000000000000, 31.12701665379258700 ) ) ; 208 | #193 = AXIS2_PLACEMENT_3D ( 'NONE', #187, #115, #166 ) ; 209 | #194 = CIRCLE ( 'NONE', #100, 0.1270166537925832000 ) ; 210 | #195 = ADVANCED_FACE ( 'NONE', ( #270 ), #20, .T. ) ; 211 | #196 = LINE ( 'NONE', #229, #45 ) ; 212 | #197 = CALENDAR_DATE ( 2017, 3, 11 ) ; 213 | #198 = AXIS2_PLACEMENT_3D ( 'NONE', #219, #132, #81 ) ; 214 | #199 = ORIENTED_EDGE ( 'NONE', *, *, #238, .T. ) ; 215 | #200 = ORIENTED_EDGE ( 'NONE', *, *, #69, .T. ) ; 216 | #201 = PLANE ( 'NONE', #265 ) ; 217 | #202 =( NAMED_UNIT ( * ) SI_UNIT ( $, .STERADIAN. ) SOLID_ANGLE_UNIT ( ) ); 218 | #203 = CC_DESIGN_APPROVAL ( #92, ( #291 ) ) ; 219 | #204 = CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT ( #171, #22, ( #47 ) ) ; 220 | #205 = AXIS2_PLACEMENT_3D ( 'NONE', #18, #95, #267 ) ; 221 | #206 = CARTESIAN_POINT ( 'NONE', ( 2.168404344971008900E-016, 3.000000000000000000, 31.00000000000000400 ) ) ; 222 | #207 = APPLICATION_CONTEXT ( 'configuration controlled 3d designs of mechanical parts and assemblies' ) ; 223 | #208 = DIRECTION ( 'NONE', ( 0.0000000000000000000, -0.0000000000000000000, 1.000000000000000000 ) ) ; 224 | #209 = CARTESIAN_POINT ( 'NONE', ( -0.1270166537925834500, -1.000000000000000000, 31.00000000000000400 ) ) ; 225 | #210 = CALENDAR_DATE ( 2017, 3, 11 ) ; 226 | #211 = TOROIDAL_SURFACE ( 'NONE', #138, 0.1270166537925832000, 4.000000000000000000 ) ; 227 | #212 = EDGE_CURVE ( 'NONE', #213, #58, #12, .T. ) ; 228 | #213 = VERTEX_POINT ( 'NONE', #192 ) ; 229 | #214 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 4.000000000000000000 ) ) ; 230 | #215 =( LENGTH_UNIT ( ) NAMED_UNIT ( * ) SI_UNIT ( .MILLI., .METRE. ) ); 231 | #216 = APPROVAL_STATUS ( 'not_yet_approved' ) ; 232 | #217 = CARTESIAN_POINT ( 'NONE', ( 2.168404344971008900E-016, -1.000000000000000000, 31.00000000000000400 ) ) ; 233 | #218 = VERTEX_POINT ( 'NONE', #51 ) ; 234 | #219 = CARTESIAN_POINT ( 'NONE', ( 0.1270166537925832000, -1.000000000000000000, 35.00000000000000000 ) ) ; 235 | #220 = CARTESIAN_POINT ( 'NONE', ( 2.168404344971008900E-016, 0.0000000000000000000, 31.00000000000000400 ) ) ; 236 | #221 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; 237 | #222 = APPROVAL_STATUS ( 'not_yet_approved' ) ; 238 | #223 = DIRECTION ( 'NONE', ( -0.0000000000000000000, 1.000000000000000000, -0.0000000000000000000 ) ) ; 239 | #224 = FACE_OUTER_BOUND ( 'NONE', #32, .T. ) ; 240 | #225 = ADVANCED_FACE ( 'NONE', ( #224 ), #211, .T. ) ; 241 | #226 = AXIS2_PLACEMENT_3D ( 'NONE', #185, #120, #55 ) ; 242 | #227 = EDGE_LOOP ( 'NONE', ( #199, #98, #266, #43, #155, #272 ) ) ; 243 | #228 = CARTESIAN_POINT ( 'NONE', ( -0.1270166537925832000, -1.000000000000000000, 35.00000000000000000 ) ) ; 244 | #229 = CARTESIAN_POINT ( 'NONE', ( 0.1270166537925832000, 3.000000000000000000, 35.00000000000000000 ) ) ; 245 | #230 = LINE ( 'NONE', #146, #30 ) ; 246 | #231 = APPROVAL_STATUS ( 'not_yet_approved' ) ; 247 | #232 = CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT ( #99, #65, ( #253 ) ) ; 248 | #233 = CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT ( #144, #17, ( #291 ) ) ; 249 | #234 = VERTEX_POINT ( 'NONE', #315 ) ; 250 | #235 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; 251 | #236 = DIRECTION ( 'NONE', ( -1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; 252 | #237 = PERSON_AND_ORGANIZATION ( #257, #149 ) ; 253 | #238 = EDGE_CURVE ( 'NONE', #58, #168, #196, .T. ) ; 254 | #239 = ORIENTED_EDGE ( 'NONE', *, *, #69, .F. ) ; 255 | #240 = FACE_OUTER_BOUND ( 'NONE', #227, .T. ) ; 256 | #241 = CARTESIAN_POINT ( 'NONE', ( 2.168404344971008900E-016, -1.000000000000000000, 31.12701665379258700 ) ) ; 257 | #242 = AXIS2_PLACEMENT_3D ( 'NONE', #2, #104, #109 ) ; 258 | #243 = ORIENTED_EDGE ( 'NONE', *, *, #238, .F. ) ; 259 | #244 = CYLINDRICAL_SURFACE ( 'NONE', #260, 4.000000000000000000 ) ; 260 | #245 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 1.000000000000000000, -0.0000000000000000000 ) ) ; 261 | #246 = PERSON_AND_ORGANIZATION_ROLE ( 'design_supplier' ) ; 262 | #247 = ORIENTED_EDGE ( 'NONE', *, *, #75, .F. ) ; 263 | #248 = PERSON_AND_ORGANIZATION ( #257, #149 ) ; 264 | #249 = APPROVAL_PERSON_ORGANIZATION ( #50, #92, #85 ) ; 265 | #250 = EDGE_CURVE ( 'NONE', #283, #186, #263, .T. ) ; 266 | #251 = EDGE_LOOP ( 'NONE', ( #190, #172, #239, #38 ) ) ; 267 | #252 = APPLICATION_PROTOCOL_DEFINITION ( 'international standard', 'config_control_design', 1994, #42 ) ; 268 | #253 = PRODUCT_DEFINITION ( 'UNKNOWN', '', #47, #121 ) ; 269 | #254 = CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT ( #237, #157, ( #293 ) ) ; 270 | #255 = ORIENTED_EDGE ( 'NONE', *, *, #134, .F. ) ; 271 | #256 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, -1.000000000000000000, 4.000000000000000000 ) ) ; 272 | #257 = PERSON ( 'UNSPECIFIED', 'UNSPECIFIED', 'UNSPECIFIED', ('UNSPECIFIED'), ('UNSPECIFIED'), ('UNSPECIFIED') ) ; 273 | #258 = CARTESIAN_POINT ( 'NONE', ( 4.000000000000000000, 0.0000000000000000000, 35.00000000000000000 ) ) ; 274 | #259 = TOROIDAL_SURFACE ( 'NONE', #205, 0.1270166537925832000, 4.000000000000000000 ) ; 275 | #260 = AXIS2_PLACEMENT_3D ( 'NONE', #228, #280, #88 ) ; 276 | #261 = VERTEX_POINT ( 'NONE', #173 ) ; 277 | #262 = ORIENTED_EDGE ( 'NONE', *, *, #3, .F. ) ; 278 | #263 = LINE ( 'NONE', #307, #74 ) ; 279 | #264 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; 280 | #265 = AXIS2_PLACEMENT_3D ( 'NONE', #276, #161, #208 ) ; 281 | #266 = ORIENTED_EDGE ( 'NONE', *, *, #3, .T. ) ; 282 | #267 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; 283 | #268 = CC_DESIGN_SECURITY_CLASSIFICATION ( #291, ( #47 ) ) ; 284 | #269 = AXIS2_PLACEMENT_3D ( 'NONE', #209, #8, #236 ) ; 285 | #270 = FACE_OUTER_BOUND ( 'NONE', #251, .T. ) ; 286 | #271 = CIRCLE ( 'NONE', #154, 4.000000000000000000 ) ; 287 | #272 = ORIENTED_EDGE ( 'NONE', *, *, #212, .T. ) ; 288 | #273 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 8, 0, .BEHIND. ) ; 289 | #274 = EDGE_CURVE ( 'NONE', #234, #102, #303, .T. ) ; 290 | #275 = ORIENTED_EDGE ( 'NONE', *, *, #274, .F. ) ; 291 | #276 = CARTESIAN_POINT ( 'NONE', ( -4.000000000000000000, 0.0000000000000000000, 35.00000000000000000 ) ) ; 292 | #277 = APPROVAL_DATE_TIME ( #147, #80 ) ; 293 | #278 = MANIFOLD_SOLID_BREP ( 'Fillet3', #189 ) ; 294 | #279 =( GEOMETRIC_REPRESENTATION_CONTEXT ( 3 ) GLOBAL_UNCERTAINTY_ASSIGNED_CONTEXT ( ( #176 ) ) GLOBAL_UNIT_ASSIGNED_CONTEXT ( ( #215, #302, #202 ) ) REPRESENTATION_CONTEXT ( 'NONE', 'WORKASPACE' ) ); 295 | #280 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; 296 | #281 = LINE ( 'NONE', #258, #292 ) ; 297 | #282 = DATE_AND_TIME ( #197, #141 ) ; 298 | #283 = VERTEX_POINT ( 'NONE', #94 ) ; 299 | #284 = FACE_OUTER_BOUND ( 'NONE', #33, .T. ) ; 300 | #285 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; 301 | #286 = PLANE ( 'NONE', #242 ) ; 302 | #287 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; 303 | #288 = APPLICATION_PROTOCOL_DEFINITION ( 'international standard', 'config_control_design', 1994, #207 ) ; 304 | #289 = AXIS2_PLACEMENT_3D ( 'NONE', #183, #90, #221 ) ; 305 | #290 = EDGE_CURVE ( 'NONE', #168, #218, #152, .T. ) ; 306 | #291 = SECURITY_CLASSIFICATION ( '', '', #191 ) ; 307 | #292 = VECTOR ( 'NONE', #287, 1000.000000000000000 ) ; 308 | #293 = PRODUCT ( 'k-type-pill-rubber-feet', 'k-type-pill-rubber-feet', '', ( #15 ) ) ; 309 | #294 = VERTEX_POINT ( 'NONE', #9 ) ; 310 | #295 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; 311 | #296 = DATE_TIME_ROLE ( 'creation_date' ) ; 312 | #297 = EDGE_CURVE ( 'NONE', #168, #234, #108, .T. ) ; 313 | #298 = ADVANCED_FACE ( 'NONE', ( #105 ), #259, .T. ) ; 314 | #299 = ORIENTED_EDGE ( 'NONE', *, *, #297, .T. ) ; 315 | #300 = EDGE_CURVE ( 'NONE', #261, #213, #110, .T. ) ; 316 | #301 = ORIENTED_EDGE ( 'NONE', *, *, #97, .F. ) ; 317 | #302 =( NAMED_UNIT ( * ) PLANE_ANGLE_UNIT ( ) SI_UNIT ( $, .RADIAN. ) ); 318 | #303 = CIRCLE ( 'NONE', #179, 4.000000000000000000 ) ; 319 | #304 = CC_DESIGN_DATE_AND_TIME_ASSIGNMENT ( #127, #296, ( #253 ) ) ; 320 | #305 = ORIENTED_EDGE ( 'NONE', *, *, #57, .F. ) ; 321 | #306 = CYLINDRICAL_SURFACE ( 'NONE', #198, 4.000000000000000000 ) ; 322 | #307 = CARTESIAN_POINT ( 'NONE', ( -4.000000000000000000, 0.0000000000000000000, 35.00000000000000000 ) ) ; 323 | #308 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 8, 0, .BEHIND. ) ; 324 | #309 = CC_DESIGN_APPROVAL ( #80, ( #47 ) ) ; 325 | #310 = AXIS2_PLACEMENT_3D ( 'NONE', #206, #34, #71 ) ; 326 | #311 = APPROVAL ( #231, 'UNSPECIFIED' ) ; 327 | #312 = PRODUCT_DEFINITION_SHAPE ( 'NONE', 'NONE', #253 ) ; 328 | #313 = CC_DESIGN_DATE_AND_TIME_ASSIGNMENT ( #61, #139, ( #291 ) ) ; 329 | #314 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 1.000000000000000000, -0.0000000000000000000 ) ) ; 330 | #315 = CARTESIAN_POINT ( 'NONE', ( 4.000000000000000000, 0.0000000000000000000, 4.000000000000000000 ) ) ; 331 | #316 = DIRECTION ( 'NONE', ( -1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; 332 | #317 = PERSON_AND_ORGANIZATION ( #257, #149 ) ; 333 | ENDSEC; 334 | END-ISO-10303-21; 335 | -------------------------------------------------------------------------------- /Kira/LICENSE: -------------------------------------------------------------------------------- 1 | CERN Open Hardware Licence v1.2 2 | 3 | Preamble 4 | 5 | Through this CERN Open Hardware Licence ("CERN OHL") version 1.2, CERN 6 | wishes to provide a tool to foster collaboration and sharing among 7 | hardware designers. The CERN OHL is copyright CERN. Anyone is welcome 8 | to use the CERN OHL, in unmodified form only, for the distribution of 9 | their own Open Hardware designs. Any other right is reserved. Release 10 | of hardware designs under the CERN OHL does not constitute an 11 | endorsement of the licensor or its designs nor does it imply any 12 | involvement by CERN in the development of such designs. 13 | 14 | 1. Definitions 15 | 16 | In this Licence, the following terms have the following meanings: 17 | 18 | “Licence” means this CERN OHL. 19 | 20 | “Documentation” means schematic diagrams, designs, circuit or circuit 21 | board layouts, mechanical drawings, flow charts and descriptive text, 22 | and other explanatory material that is explicitly stated as being made 23 | available under the conditions of this Licence. The Documentation may 24 | be in any medium, including but not limited to computer files and 25 | representations on paper, film, or any other media. 26 | 27 | “Documentation Location” means a location where the Licensor has 28 | placed Documentation, and which he believes will be publicly 29 | accessible for at least three years from the first communication to 30 | the public or distribution of Documentation. 31 | 32 | “Product” means either an entire, or any part of a, device built using 33 | the Documentation or the modified Documentation. 34 | 35 | “Licensee” means any natural or legal person exercising rights under 36 | this Licence. 37 | 38 | “Licensor” means any natural or legal person that creates or modifies 39 | Documentation and subsequently communicates to the public and/ or 40 | distributes the resulting Documentation under the terms and conditions 41 | of this Licence. 42 | 43 | A Licensee may at the same time be a Licensor, and vice versa. 44 | 45 | Use of the masculine gender includes the feminine and neuter genders 46 | and is employed solely to facilitate reading. 47 | 48 | 2. Applicability 49 | 50 | 2.1. This Licence governs the use, copying, modification, 51 | communication to the public and distribution of the Documentation, and 52 | the manufacture and distribution of Products. By exercising any right 53 | granted under this Licence, the Licensee irrevocably accepts these 54 | terms and conditions. 55 | 56 | 2.2. This Licence is granted by the Licensor directly to the Licensee, 57 | and shall apply worldwide and without limitation in time. The Licensee 58 | may assign his licence rights or grant sub-licences. 59 | 60 | 2.3. This Licence does not extend to software, firmware, or code 61 | loaded into programmable devices which may be used in conjunction with 62 | the Documentation, the modified Documentation or with Products, unless 63 | such software, firmware, or code is explicitly expressed to be subject 64 | to this Licence. The use of such software, firmware, or code is 65 | otherwise subject to the applicable licence terms and conditions. 66 | 67 | 3. Copying, modification, communication to the public and distribution 68 | of the Documentation 69 | 70 | 3.1. The Licensee shall keep intact all copyright and trademarks 71 | notices, all notices referring to Documentation Location, and all 72 | notices that refer to this Licence and to the disclaimer of warranties 73 | that are included in the Documentation. He shall include a copy 74 | thereof in every copy of the Documentation or, as the case may be, 75 | modified Documentation, that he communicates to the public or 76 | distributes. 77 | 78 | 3.2. The Licensee may copy, communicate to the public and distribute 79 | verbatim copies of the Documentation, in any medium, subject to the 80 | requirements specified in section 3.1. 81 | 82 | 3.3. The Licensee may modify the Documentation or any portion thereof 83 | provided that upon modification of the Documentation, the Licensee 84 | shall make the modified Documentation available from a Documentation 85 | Location such that it can be easily located by an original Licensor 86 | once the Licensee communicates to the public or distributes the 87 | modified Documentation under section 3.4, and, where required by 88 | section 4.1, by a recipient of a Product. However, the Licensor shall 89 | not assert his rights under the foregoing proviso unless or until a 90 | Product is distributed. 91 | 92 | 3.4. The Licensee may communicate to the public and distribute the 93 | modified Documentation (thereby in addition to being a Licensee also 94 | becoming a Licensor), always provided that he shall: 95 | 96 | a) comply with section 3.1; 97 | 98 | b) cause the modified Documentation to carry prominent notices stating 99 | that the Licensee has modified the Documentation, with the date and 100 | description of the modifications; 101 | 102 | c) cause the modified Documentation to carry a new Documentation 103 | Location notice if the original Documentation provided for one; 104 | 105 | d) make available the modified Documentation at the same level of 106 | abstraction as that of the Documentation, in the preferred format for 107 | making modifications to it (e.g. the native format of the CAD tool as 108 | applicable), and in the event that format is proprietary, in a format 109 | viewable with a tool licensed under an OSI-approved license if the 110 | proprietary tool can create it; and 111 | 112 | e) license the modified Documentation under the terms and conditions 113 | of this Licence or, where applicable, a later version of this Licence 114 | as may be issued by CERN. 115 | 116 | 3.5. The Licence includes a non-exclusive licence to those patents or 117 | registered designs that are held by, under the control of, or 118 | sub-licensable by the Licensor, to the extent necessary to make use of 119 | the rights granted under this Licence. The scope of this section 3.5 120 | shall be strictly limited to the parts of the Documentation or 121 | modified Documentation created by the Licensor. 122 | 123 | 4. Manufacture and distribution of Products 124 | 125 | 4.1. The Licensee may manufacture or distribute Products always 126 | provided that, where such manufacture or distribution requires a 127 | licence under this Licence the Licensee provides to each recipient of 128 | such Products an easy means of accessing a copy of the Documentation 129 | or modified Documentation, as applicable, as set out in section 3. 130 | 131 | 4.2. The Licensee is invited to inform any Licensor who has indicated 132 | his wish to receive this information about the type, quantity and 133 | dates of production of Products the Licensee has (had) manufactured 134 | 135 | 5. Warranty and liability 136 | 137 | 5.1. DISCLAIMER – The Documentation and any modified Documentation are 138 | provided "as is" and any express or implied warranties, including, but 139 | not limited to, implied warranties of merchantability, of satisfactory 140 | quality, non-infringement of third party rights, and fitness for a 141 | particular purpose or use are disclaimed in respect of the 142 | Documentation, the modified Documentation or any Product. The Licensor 143 | makes no representation that the Documentation, modified 144 | Documentation, or any Product, does or will not infringe any patent, 145 | copyright, trade secret or other proprietary right. The entire risk as 146 | to the use, quality, and performance of a Product shall be with the 147 | Licensee and not the Licensor. This disclaimer of warranty is an 148 | essential part of this Licence and a condition for the grant of any 149 | rights granted under this Licence. The Licensee warrants that it does 150 | not act in a consumer capacity. 151 | 152 | 5.2. LIMITATION OF LIABILITY – The Licensor shall have no liability 153 | for direct, indirect, special, incidental, consequential, exemplary, 154 | punitive or other damages of any character including, without 155 | limitation, procurement of substitute goods or services, loss of use, 156 | data or profits, or business interruption, however caused and on any 157 | theory of contract, warranty, tort (including negligence), product 158 | liability or otherwise, arising in any way in relation to the 159 | Documentation, modified Documentation and/or the use, manufacture or 160 | distribution of a Product, even if advised of the possibility of such 161 | damages, and the Licensee shall hold the Licensor(s) free and harmless 162 | from any liability, costs, damages, fees and expenses, including 163 | claims by third parties, in relation to such use. 164 | 165 | 6. General 166 | 167 | 6.1. Except for the rights explicitly granted hereunder, this Licence 168 | does not imply or represent any transfer or assignment of intellectual 169 | property rights to the Licensee. 170 | 171 | 6.2. The Licensee shall not use or make reference to any of the names 172 | (including acronyms and abbreviations), images, or logos under which 173 | the Licensor is known, save in so far as required to comply with 174 | section 3. Any such permitted use or reference shall be factual and 175 | shall in no event suggest any kind of endorsement by the Licensor or 176 | its personnel of the modified Documentation or any Product, or any 177 | kind of implication by the Licensor or its personnel in the 178 | preparation of the modified Documentation or Product. 179 | 180 | 6.3. CERN may publish updated versions of this Licence which retain 181 | the same general provisions as this version, but differ in detail so 182 | far this is required and reasonable. New versions will be published 183 | with a unique version number. 184 | 185 | 6.4. This Licence shall terminate with immediate effect, upon written 186 | notice and without involvement of a court if the Licensee fails to 187 | comply with any of its terms and conditions, or if the Licensee 188 | initiates legal action against Licensor in relation to this 189 | Licence. Section 5 shall continue to apply. 190 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | CERN Open Hardware Licence v1.2 2 | 3 | Preamble 4 | 5 | Through this CERN Open Hardware Licence ("CERN OHL") version 1.2, CERN 6 | wishes to provide a tool to foster collaboration and sharing among 7 | hardware designers. The CERN OHL is copyright CERN. Anyone is welcome 8 | to use the CERN OHL, in unmodified form only, for the distribution of 9 | their own Open Hardware designs. Any other right is reserved. Release 10 | of hardware designs under the CERN OHL does not constitute an 11 | endorsement of the licensor or its designs nor does it imply any 12 | involvement by CERN in the development of such designs. 13 | 14 | 1. Definitions 15 | 16 | In this Licence, the following terms have the following meanings: 17 | 18 | “Licence” means this CERN OHL. 19 | 20 | “Documentation” means schematic diagrams, designs, circuit or circuit 21 | board layouts, mechanical drawings, flow charts and descriptive text, 22 | and other explanatory material that is explicitly stated as being made 23 | available under the conditions of this Licence. The Documentation may 24 | be in any medium, including but not limited to computer files and 25 | representations on paper, film, or any other media. 26 | 27 | “Documentation Location” means a location where the Licensor has 28 | placed Documentation, and which he believes will be publicly 29 | accessible for at least three years from the first communication to 30 | the public or distribution of Documentation. 31 | 32 | “Product” means either an entire, or any part of a, device built using 33 | the Documentation or the modified Documentation. 34 | 35 | “Licensee” means any natural or legal person exercising rights under 36 | this Licence. 37 | 38 | “Licensor” means any natural or legal person that creates or modifies 39 | Documentation and subsequently communicates to the public and/ or 40 | distributes the resulting Documentation under the terms and conditions 41 | of this Licence. 42 | 43 | A Licensee may at the same time be a Licensor, and vice versa. 44 | 45 | Use of the masculine gender includes the feminine and neuter genders 46 | and is employed solely to facilitate reading. 47 | 48 | 2. Applicability 49 | 50 | 2.1. This Licence governs the use, copying, modification, 51 | communication to the public and distribution of the Documentation, and 52 | the manufacture and distribution of Products. By exercising any right 53 | granted under this Licence, the Licensee irrevocably accepts these 54 | terms and conditions. 55 | 56 | 2.2. This Licence is granted by the Licensor directly to the Licensee, 57 | and shall apply worldwide and without limitation in time. The Licensee 58 | may assign his licence rights or grant sub-licences. 59 | 60 | 2.3. This Licence does not extend to software, firmware, or code 61 | loaded into programmable devices which may be used in conjunction with 62 | the Documentation, the modified Documentation or with Products, unless 63 | such software, firmware, or code is explicitly expressed to be subject 64 | to this Licence. The use of such software, firmware, or code is 65 | otherwise subject to the applicable licence terms and conditions. 66 | 67 | 3. Copying, modification, communication to the public and distribution 68 | of the Documentation 69 | 70 | 3.1. The Licensee shall keep intact all copyright and trademarks 71 | notices, all notices referring to Documentation Location, and all 72 | notices that refer to this Licence and to the disclaimer of warranties 73 | that are included in the Documentation. He shall include a copy 74 | thereof in every copy of the Documentation or, as the case may be, 75 | modified Documentation, that he communicates to the public or 76 | distributes. 77 | 78 | 3.2. The Licensee may copy, communicate to the public and distribute 79 | verbatim copies of the Documentation, in any medium, subject to the 80 | requirements specified in section 3.1. 81 | 82 | 3.3. The Licensee may modify the Documentation or any portion thereof 83 | provided that upon modification of the Documentation, the Licensee 84 | shall make the modified Documentation available from a Documentation 85 | Location such that it can be easily located by an original Licensor 86 | once the Licensee communicates to the public or distributes the 87 | modified Documentation under section 3.4, and, where required by 88 | section 4.1, by a recipient of a Product. However, the Licensor shall 89 | not assert his rights under the foregoing proviso unless or until a 90 | Product is distributed. 91 | 92 | 3.4. The Licensee may communicate to the public and distribute the 93 | modified Documentation (thereby in addition to being a Licensee also 94 | becoming a Licensor), always provided that he shall: 95 | 96 | a) comply with section 3.1; 97 | 98 | b) cause the modified Documentation to carry prominent notices stating 99 | that the Licensee has modified the Documentation, with the date and 100 | description of the modifications; 101 | 102 | c) cause the modified Documentation to carry a new Documentation 103 | Location notice if the original Documentation provided for one; 104 | 105 | d) make available the modified Documentation at the same level of 106 | abstraction as that of the Documentation, in the preferred format for 107 | making modifications to it (e.g. the native format of the CAD tool as 108 | applicable), and in the event that format is proprietary, in a format 109 | viewable with a tool licensed under an OSI-approved license if the 110 | proprietary tool can create it; and 111 | 112 | e) license the modified Documentation under the terms and conditions 113 | of this Licence or, where applicable, a later version of this Licence 114 | as may be issued by CERN. 115 | 116 | 3.5. The Licence includes a non-exclusive licence to those patents or 117 | registered designs that are held by, under the control of, or 118 | sub-licensable by the Licensor, to the extent necessary to make use of 119 | the rights granted under this Licence. The scope of this section 3.5 120 | shall be strictly limited to the parts of the Documentation or 121 | modified Documentation created by the Licensor. 122 | 123 | 4. Manufacture and distribution of Products 124 | 125 | 4.1. The Licensee may manufacture or distribute Products always 126 | provided that, where such manufacture or distribution requires a 127 | licence under this Licence the Licensee provides to each recipient of 128 | such Products an easy means of accessing a copy of the Documentation 129 | or modified Documentation, as applicable, as set out in section 3. 130 | 131 | 4.2. The Licensee is invited to inform any Licensor who has indicated 132 | his wish to receive this information about the type, quantity and 133 | dates of production of Products the Licensee has (had) manufactured 134 | 135 | 5. Warranty and liability 136 | 137 | 5.1. DISCLAIMER – The Documentation and any modified Documentation are 138 | provided "as is" and any express or implied warranties, including, but 139 | not limited to, implied warranties of merchantability, of satisfactory 140 | quality, non-infringement of third party rights, and fitness for a 141 | particular purpose or use are disclaimed in respect of the 142 | Documentation, the modified Documentation or any Product. The Licensor 143 | makes no representation that the Documentation, modified 144 | Documentation, or any Product, does or will not infringe any patent, 145 | copyright, trade secret or other proprietary right. The entire risk as 146 | to the use, quality, and performance of a Product shall be with the 147 | Licensee and not the Licensor. This disclaimer of warranty is an 148 | essential part of this Licence and a condition for the grant of any 149 | rights granted under this Licence. The Licensee warrants that it does 150 | not act in a consumer capacity. 151 | 152 | 5.2. LIMITATION OF LIABILITY – The Licensor shall have no liability 153 | for direct, indirect, special, incidental, consequential, exemplary, 154 | punitive or other damages of any character including, without 155 | limitation, procurement of substitute goods or services, loss of use, 156 | data or profits, or business interruption, however caused and on any 157 | theory of contract, warranty, tort (including negligence), product 158 | liability or otherwise, arising in any way in relation to the 159 | Documentation, modified Documentation and/or the use, manufacture or 160 | distribution of a Product, even if advised of the possibility of such 161 | damages, and the Licensee shall hold the Licensor(s) free and harmless 162 | from any liability, costs, damages, fees and expenses, including 163 | claims by third parties, in relation to such use. 164 | 165 | 6. General 166 | 167 | 6.1. Except for the rights explicitly granted hereunder, this Licence 168 | does not imply or represent any transfer or assignment of intellectual 169 | property rights to the Licensee. 170 | 171 | 6.2. The Licensee shall not use or make reference to any of the names 172 | (including acronyms and abbreviations), images, or logos under which 173 | the Licensor is known, save in so far as required to comply with 174 | section 3. Any such permitted use or reference shall be factual and 175 | shall in no event suggest any kind of endorsement by the Licensor or 176 | its personnel of the modified Documentation or any Product, or any 177 | kind of implication by the Licensor or its personnel in the 178 | preparation of the modified Documentation or Product. 179 | 180 | 6.3. CERN may publish updated versions of this Licence which retain 181 | the same general provisions as this version, but differ in detail so 182 | far this is required and reasonable. New versions will be published 183 | with a unique version number. 184 | 185 | 6.4. This Licence shall terminate with immediate effect, upon written 186 | notice and without involvement of a court if the Licensee fails to 187 | comply with any of its terms and conditions, or if the Licensee 188 | initiates legal action against Licensor in relation to this 189 | Licence. Section 5 shall continue to apply. 190 | -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- 1 | Cases and Plates 2 | ================ 3 | 4 | [![Visit our IRC channel](https://kiwiirc.com/buttons/irc.freenode.net/input.club.png)](https://kiwiirc.com/client/irc.freenode.net/#input.club) 5 | 6 | [Visit our Discord Channel](https://discord.gg/GACJa4f) 7 | 8 | In general FreeCad (or any CAD program that supports the .STEP format) can be used to view the files. 9 | Other formats can be made available upon request. 10 | 11 | 12 | Projects 13 | -------- 14 | 15 | * infinity-keyboard (Infinity Keyboard 2014/10/15) 16 | * infinity-ergodox (Infinity Ergodox 2015/03/31) 17 | * whitefox-keyboard (WhiteFox) 18 | * K-Type (2017-11-02) 19 | 20 | -------------------------------------------------------------------------------- /infinity-ergodox/LICENSE: -------------------------------------------------------------------------------- 1 | CERN Open Hardware Licence v1.2 2 | 3 | Preamble 4 | 5 | Through this CERN Open Hardware Licence ("CERN OHL") version 1.2, CERN 6 | wishes to provide a tool to foster collaboration and sharing among 7 | hardware designers. The CERN OHL is copyright CERN. Anyone is welcome 8 | to use the CERN OHL, in unmodified form only, for the distribution of 9 | their own Open Hardware designs. Any other right is reserved. Release 10 | of hardware designs under the CERN OHL does not constitute an 11 | endorsement of the licensor or its designs nor does it imply any 12 | involvement by CERN in the development of such designs. 13 | 14 | 1. Definitions 15 | 16 | In this Licence, the following terms have the following meanings: 17 | 18 | “Licence” means this CERN OHL. 19 | 20 | “Documentation” means schematic diagrams, designs, circuit or circuit 21 | board layouts, mechanical drawings, flow charts and descriptive text, 22 | and other explanatory material that is explicitly stated as being made 23 | available under the conditions of this Licence. The Documentation may 24 | be in any medium, including but not limited to computer files and 25 | representations on paper, film, or any other media. 26 | 27 | “Documentation Location” means a location where the Licensor has 28 | placed Documentation, and which he believes will be publicly 29 | accessible for at least three years from the first communication to 30 | the public or distribution of Documentation. 31 | 32 | “Product” means either an entire, or any part of a, device built using 33 | the Documentation or the modified Documentation. 34 | 35 | “Licensee” means any natural or legal person exercising rights under 36 | this Licence. 37 | 38 | “Licensor” means any natural or legal person that creates or modifies 39 | Documentation and subsequently communicates to the public and/ or 40 | distributes the resulting Documentation under the terms and conditions 41 | of this Licence. 42 | 43 | A Licensee may at the same time be a Licensor, and vice versa. 44 | 45 | Use of the masculine gender includes the feminine and neuter genders 46 | and is employed solely to facilitate reading. 47 | 48 | 2. Applicability 49 | 50 | 2.1. This Licence governs the use, copying, modification, 51 | communication to the public and distribution of the Documentation, and 52 | the manufacture and distribution of Products. By exercising any right 53 | granted under this Licence, the Licensee irrevocably accepts these 54 | terms and conditions. 55 | 56 | 2.2. This Licence is granted by the Licensor directly to the Licensee, 57 | and shall apply worldwide and without limitation in time. The Licensee 58 | may assign his licence rights or grant sub-licences. 59 | 60 | 2.3. This Licence does not extend to software, firmware, or code 61 | loaded into programmable devices which may be used in conjunction with 62 | the Documentation, the modified Documentation or with Products, unless 63 | such software, firmware, or code is explicitly expressed to be subject 64 | to this Licence. The use of such software, firmware, or code is 65 | otherwise subject to the applicable licence terms and conditions. 66 | 67 | 3. Copying, modification, communication to the public and distribution 68 | of the Documentation 69 | 70 | 3.1. The Licensee shall keep intact all copyright and trademarks 71 | notices, all notices referring to Documentation Location, and all 72 | notices that refer to this Licence and to the disclaimer of warranties 73 | that are included in the Documentation. He shall include a copy 74 | thereof in every copy of the Documentation or, as the case may be, 75 | modified Documentation, that he communicates to the public or 76 | distributes. 77 | 78 | 3.2. The Licensee may copy, communicate to the public and distribute 79 | verbatim copies of the Documentation, in any medium, subject to the 80 | requirements specified in section 3.1. 81 | 82 | 3.3. The Licensee may modify the Documentation or any portion thereof 83 | provided that upon modification of the Documentation, the Licensee 84 | shall make the modified Documentation available from a Documentation 85 | Location such that it can be easily located by an original Licensor 86 | once the Licensee communicates to the public or distributes the 87 | modified Documentation under section 3.4, and, where required by 88 | section 4.1, by a recipient of a Product. However, the Licensor shall 89 | not assert his rights under the foregoing proviso unless or until a 90 | Product is distributed. 91 | 92 | 3.4. The Licensee may communicate to the public and distribute the 93 | modified Documentation (thereby in addition to being a Licensee also 94 | becoming a Licensor), always provided that he shall: 95 | 96 | a) comply with section 3.1; 97 | 98 | b) cause the modified Documentation to carry prominent notices stating 99 | that the Licensee has modified the Documentation, with the date and 100 | description of the modifications; 101 | 102 | c) cause the modified Documentation to carry a new Documentation 103 | Location notice if the original Documentation provided for one; 104 | 105 | d) make available the modified Documentation at the same level of 106 | abstraction as that of the Documentation, in the preferred format for 107 | making modifications to it (e.g. the native format of the CAD tool as 108 | applicable), and in the event that format is proprietary, in a format 109 | viewable with a tool licensed under an OSI-approved license if the 110 | proprietary tool can create it; and 111 | 112 | e) license the modified Documentation under the terms and conditions 113 | of this Licence or, where applicable, a later version of this Licence 114 | as may be issued by CERN. 115 | 116 | 3.5. The Licence includes a non-exclusive licence to those patents or 117 | registered designs that are held by, under the control of, or 118 | sub-licensable by the Licensor, to the extent necessary to make use of 119 | the rights granted under this Licence. The scope of this section 3.5 120 | shall be strictly limited to the parts of the Documentation or 121 | modified Documentation created by the Licensor. 122 | 123 | 4. Manufacture and distribution of Products 124 | 125 | 4.1. The Licensee may manufacture or distribute Products always 126 | provided that, where such manufacture or distribution requires a 127 | licence under this Licence the Licensee provides to each recipient of 128 | such Products an easy means of accessing a copy of the Documentation 129 | or modified Documentation, as applicable, as set out in section 3. 130 | 131 | 4.2. The Licensee is invited to inform any Licensor who has indicated 132 | his wish to receive this information about the type, quantity and 133 | dates of production of Products the Licensee has (had) manufactured 134 | 135 | 5. Warranty and liability 136 | 137 | 5.1. DISCLAIMER – The Documentation and any modified Documentation are 138 | provided "as is" and any express or implied warranties, including, but 139 | not limited to, implied warranties of merchantability, of satisfactory 140 | quality, non-infringement of third party rights, and fitness for a 141 | particular purpose or use are disclaimed in respect of the 142 | Documentation, the modified Documentation or any Product. The Licensor 143 | makes no representation that the Documentation, modified 144 | Documentation, or any Product, does or will not infringe any patent, 145 | copyright, trade secret or other proprietary right. The entire risk as 146 | to the use, quality, and performance of a Product shall be with the 147 | Licensee and not the Licensor. This disclaimer of warranty is an 148 | essential part of this Licence and a condition for the grant of any 149 | rights granted under this Licence. The Licensee warrants that it does 150 | not act in a consumer capacity. 151 | 152 | 5.2. LIMITATION OF LIABILITY – The Licensor shall have no liability 153 | for direct, indirect, special, incidental, consequential, exemplary, 154 | punitive or other damages of any character including, without 155 | limitation, procurement of substitute goods or services, loss of use, 156 | data or profits, or business interruption, however caused and on any 157 | theory of contract, warranty, tort (including negligence), product 158 | liability or otherwise, arising in any way in relation to the 159 | Documentation, modified Documentation and/or the use, manufacture or 160 | distribution of a Product, even if advised of the possibility of such 161 | damages, and the Licensee shall hold the Licensor(s) free and harmless 162 | from any liability, costs, damages, fees and expenses, including 163 | claims by third parties, in relation to such use. 164 | 165 | 6. General 166 | 167 | 6.1. Except for the rights explicitly granted hereunder, this Licence 168 | does not imply or represent any transfer or assignment of intellectual 169 | property rights to the Licensee. 170 | 171 | 6.2. The Licensee shall not use or make reference to any of the names 172 | (including acronyms and abbreviations), images, or logos under which 173 | the Licensor is known, save in so far as required to comply with 174 | section 3. Any such permitted use or reference shall be factual and 175 | shall in no event suggest any kind of endorsement by the Licensor or 176 | its personnel of the modified Documentation or any Product, or any 177 | kind of implication by the Licensor or its personnel in the 178 | preparation of the modified Documentation or Product. 179 | 180 | 6.3. CERN may publish updated versions of this Licence which retain 181 | the same general provisions as this version, but differ in detail so 182 | far this is required and reasonable. New versions will be published 183 | with a unique version number. 184 | 185 | 6.4. This Licence shall terminate with immediate effect, upon written 186 | notice and without involvement of a court if the Licensee fails to 187 | comply with any of its terms and conditions, or if the Licensee 188 | initiates legal action against Licensor in relation to this 189 | Licence. Section 5 shall continue to apply. 190 | -------------------------------------------------------------------------------- /infinity-ergodox/rev-a/Infinity_ErgoDox_Production_REV_A.PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiibohd/case/797b7ccd049a0fdaec4530134a6911260776962d/infinity-ergodox/rev-a/Infinity_ErgoDox_Production_REV_A.PDF -------------------------------------------------------------------------------- /infinity-ergodox/rev-a/LICENSE: -------------------------------------------------------------------------------- 1 | CERN Open Hardware Licence v1.2 2 | 3 | Preamble 4 | 5 | Through this CERN Open Hardware Licence ("CERN OHL") version 1.2, CERN 6 | wishes to provide a tool to foster collaboration and sharing among 7 | hardware designers. The CERN OHL is copyright CERN. Anyone is welcome 8 | to use the CERN OHL, in unmodified form only, for the distribution of 9 | their own Open Hardware designs. Any other right is reserved. Release 10 | of hardware designs under the CERN OHL does not constitute an 11 | endorsement of the licensor or its designs nor does it imply any 12 | involvement by CERN in the development of such designs. 13 | 14 | 1. Definitions 15 | 16 | In this Licence, the following terms have the following meanings: 17 | 18 | “Licence” means this CERN OHL. 19 | 20 | “Documentation” means schematic diagrams, designs, circuit or circuit 21 | board layouts, mechanical drawings, flow charts and descriptive text, 22 | and other explanatory material that is explicitly stated as being made 23 | available under the conditions of this Licence. The Documentation may 24 | be in any medium, including but not limited to computer files and 25 | representations on paper, film, or any other media. 26 | 27 | “Documentation Location” means a location where the Licensor has 28 | placed Documentation, and which he believes will be publicly 29 | accessible for at least three years from the first communication to 30 | the public or distribution of Documentation. 31 | 32 | “Product” means either an entire, or any part of a, device built using 33 | the Documentation or the modified Documentation. 34 | 35 | “Licensee” means any natural or legal person exercising rights under 36 | this Licence. 37 | 38 | “Licensor” means any natural or legal person that creates or modifies 39 | Documentation and subsequently communicates to the public and/ or 40 | distributes the resulting Documentation under the terms and conditions 41 | of this Licence. 42 | 43 | A Licensee may at the same time be a Licensor, and vice versa. 44 | 45 | Use of the masculine gender includes the feminine and neuter genders 46 | and is employed solely to facilitate reading. 47 | 48 | 2. Applicability 49 | 50 | 2.1. This Licence governs the use, copying, modification, 51 | communication to the public and distribution of the Documentation, and 52 | the manufacture and distribution of Products. By exercising any right 53 | granted under this Licence, the Licensee irrevocably accepts these 54 | terms and conditions. 55 | 56 | 2.2. This Licence is granted by the Licensor directly to the Licensee, 57 | and shall apply worldwide and without limitation in time. The Licensee 58 | may assign his licence rights or grant sub-licences. 59 | 60 | 2.3. This Licence does not extend to software, firmware, or code 61 | loaded into programmable devices which may be used in conjunction with 62 | the Documentation, the modified Documentation or with Products, unless 63 | such software, firmware, or code is explicitly expressed to be subject 64 | to this Licence. The use of such software, firmware, or code is 65 | otherwise subject to the applicable licence terms and conditions. 66 | 67 | 3. Copying, modification, communication to the public and distribution 68 | of the Documentation 69 | 70 | 3.1. The Licensee shall keep intact all copyright and trademarks 71 | notices, all notices referring to Documentation Location, and all 72 | notices that refer to this Licence and to the disclaimer of warranties 73 | that are included in the Documentation. He shall include a copy 74 | thereof in every copy of the Documentation or, as the case may be, 75 | modified Documentation, that he communicates to the public or 76 | distributes. 77 | 78 | 3.2. The Licensee may copy, communicate to the public and distribute 79 | verbatim copies of the Documentation, in any medium, subject to the 80 | requirements specified in section 3.1. 81 | 82 | 3.3. The Licensee may modify the Documentation or any portion thereof 83 | provided that upon modification of the Documentation, the Licensee 84 | shall make the modified Documentation available from a Documentation 85 | Location such that it can be easily located by an original Licensor 86 | once the Licensee communicates to the public or distributes the 87 | modified Documentation under section 3.4, and, where required by 88 | section 4.1, by a recipient of a Product. However, the Licensor shall 89 | not assert his rights under the foregoing proviso unless or until a 90 | Product is distributed. 91 | 92 | 3.4. The Licensee may communicate to the public and distribute the 93 | modified Documentation (thereby in addition to being a Licensee also 94 | becoming a Licensor), always provided that he shall: 95 | 96 | a) comply with section 3.1; 97 | 98 | b) cause the modified Documentation to carry prominent notices stating 99 | that the Licensee has modified the Documentation, with the date and 100 | description of the modifications; 101 | 102 | c) cause the modified Documentation to carry a new Documentation 103 | Location notice if the original Documentation provided for one; 104 | 105 | d) make available the modified Documentation at the same level of 106 | abstraction as that of the Documentation, in the preferred format for 107 | making modifications to it (e.g. the native format of the CAD tool as 108 | applicable), and in the event that format is proprietary, in a format 109 | viewable with a tool licensed under an OSI-approved license if the 110 | proprietary tool can create it; and 111 | 112 | e) license the modified Documentation under the terms and conditions 113 | of this Licence or, where applicable, a later version of this Licence 114 | as may be issued by CERN. 115 | 116 | 3.5. The Licence includes a non-exclusive licence to those patents or 117 | registered designs that are held by, under the control of, or 118 | sub-licensable by the Licensor, to the extent necessary to make use of 119 | the rights granted under this Licence. The scope of this section 3.5 120 | shall be strictly limited to the parts of the Documentation or 121 | modified Documentation created by the Licensor. 122 | 123 | 4. Manufacture and distribution of Products 124 | 125 | 4.1. The Licensee may manufacture or distribute Products always 126 | provided that, where such manufacture or distribution requires a 127 | licence under this Licence the Licensee provides to each recipient of 128 | such Products an easy means of accessing a copy of the Documentation 129 | or modified Documentation, as applicable, as set out in section 3. 130 | 131 | 4.2. The Licensee is invited to inform any Licensor who has indicated 132 | his wish to receive this information about the type, quantity and 133 | dates of production of Products the Licensee has (had) manufactured 134 | 135 | 5. Warranty and liability 136 | 137 | 5.1. DISCLAIMER – The Documentation and any modified Documentation are 138 | provided "as is" and any express or implied warranties, including, but 139 | not limited to, implied warranties of merchantability, of satisfactory 140 | quality, non-infringement of third party rights, and fitness for a 141 | particular purpose or use are disclaimed in respect of the 142 | Documentation, the modified Documentation or any Product. The Licensor 143 | makes no representation that the Documentation, modified 144 | Documentation, or any Product, does or will not infringe any patent, 145 | copyright, trade secret or other proprietary right. The entire risk as 146 | to the use, quality, and performance of a Product shall be with the 147 | Licensee and not the Licensor. This disclaimer of warranty is an 148 | essential part of this Licence and a condition for the grant of any 149 | rights granted under this Licence. The Licensee warrants that it does 150 | not act in a consumer capacity. 151 | 152 | 5.2. LIMITATION OF LIABILITY – The Licensor shall have no liability 153 | for direct, indirect, special, incidental, consequential, exemplary, 154 | punitive or other damages of any character including, without 155 | limitation, procurement of substitute goods or services, loss of use, 156 | data or profits, or business interruption, however caused and on any 157 | theory of contract, warranty, tort (including negligence), product 158 | liability or otherwise, arising in any way in relation to the 159 | Documentation, modified Documentation and/or the use, manufacture or 160 | distribution of a Product, even if advised of the possibility of such 161 | damages, and the Licensee shall hold the Licensor(s) free and harmless 162 | from any liability, costs, damages, fees and expenses, including 163 | claims by third parties, in relation to such use. 164 | 165 | 6. General 166 | 167 | 6.1. Except for the rights explicitly granted hereunder, this Licence 168 | does not imply or represent any transfer or assignment of intellectual 169 | property rights to the Licensee. 170 | 171 | 6.2. The Licensee shall not use or make reference to any of the names 172 | (including acronyms and abbreviations), images, or logos under which 173 | the Licensor is known, save in so far as required to comply with 174 | section 3. Any such permitted use or reference shall be factual and 175 | shall in no event suggest any kind of endorsement by the Licensor or 176 | its personnel of the modified Documentation or any Product, or any 177 | kind of implication by the Licensor or its personnel in the 178 | preparation of the modified Documentation or Product. 179 | 180 | 6.3. CERN may publish updated versions of this Licence which retain 181 | the same general provisions as this version, but differ in detail so 182 | far this is required and reasonable. New versions will be published 183 | with a unique version number. 184 | 185 | 6.4. This Licence shall terminate with immediate effect, upon written 186 | notice and without involvement of a court if the Licensee fails to 187 | comply with any of its terms and conditions, or if the Licensee 188 | initiates legal action against Licensor in relation to this 189 | Licence. Section 5 shall continue to apply. 190 | -------------------------------------------------------------------------------- /infinity-ergodox/rev-a/Plate, Bottom, #1.dxf: -------------------------------------------------------------------------------- 1 | 0 2 | SECTION 3 | 2 4 | HEADER 5 | 9 6 | $ACADVER 7 | 1 8 | AC1012 9 | 9 10 | $DWGCODEPAGE 11 | 3 12 | ansi_1252 13 | 9 14 | $INSBASE 15 | 10 16 | 0.0 17 | 20 18 | 0.0 19 | 30 20 | 0.0 21 | 9 22 | $EXTMIN 23 | 10 24 | 0.0 25 | 20 26 | 0.0 27 | 30 28 | 0.0 29 | 9 30 | $EXTMAX 31 | 10 32 | 17.0 33 | 20 34 | 11.0 35 | 30 36 | 0.0 37 | 9 38 | $LIMMIN 39 | 10 40 | 0.0 41 | 20 42 | 0.0 43 | 9 44 | $LIMMAX 45 | 10 46 | 17.0 47 | 20 48 | 11.0 49 | 9 50 | $ORTHOMODE 51 | 70 52 | 0 53 | 9 54 | $REGENMODE 55 | 70 56 | 1 57 | 9 58 | $FILLMODE 59 | 70 60 | 1 61 | 9 62 | $QTEXTMODE 63 | 70 64 | 0 65 | 9 66 | $MIRRTEXT 67 | 70 68 | 1 69 | 9 70 | $DRAGMODE 71 | 70 72 | 2 73 | 9 74 | $LTSCALE 75 | 40 76 | 1.0 77 | 9 78 | $OSMODE 79 | 70 80 | 37 81 | 9 82 | $ATTMODE 83 | 70 84 | 1 85 | 9 86 | $TEXTSIZE 87 | 40 88 | 0.125 89 | 9 90 | $TRACEWID 91 | 40 92 | 0.05 93 | 9 94 | $TEXTSTYLE 95 | 7 96 | STANDARD 97 | 9 98 | $CLAYER 99 | 8 100 | 0 101 | 9 102 | $CELTYPE 103 | 6 104 | BYLAYER 105 | 9 106 | $CECOLOR 107 | 62 108 | 256 109 | 9 110 | $CELTSCALE 111 | 40 112 | 1.0 113 | 9 114 | $DELOBJ 115 | 70 116 | 1 117 | 9 118 | $DISPSILH 119 | 70 120 | 0 121 | 9 122 | $DIMSCALE 123 | 40 124 | 1.0 125 | 9 126 | $DIMASZ 127 | 40 128 | 0.13 129 | 9 130 | $DIMEXO 131 | 40 132 | 0.05 133 | 9 134 | $DIMDLI 135 | 40 136 | 0.38 137 | 9 138 | $DIMRND 139 | 40 140 | 0.0 141 | 9 142 | $DIMDLE 143 | 40 144 | 0.0 145 | 9 146 | $DIMEXE 147 | 40 148 | 0.125 149 | 9 150 | $DIMTP 151 | 40 152 | 0.0 153 | 9 154 | $DIMTM 155 | 40 156 | 0.0 157 | 9 158 | $DIMTXT 159 | 40 160 | 0.125 161 | 9 162 | $DIMCEN 163 | 40 164 | 0.09 165 | 9 166 | $DIMTSZ 167 | 40 168 | 0.0 169 | 9 170 | $DIMTOL 171 | 70 172 | 0 173 | 9 174 | $DIMLIM 175 | 70 176 | 0 177 | 9 178 | $DIMTIH 179 | 70 180 | 1 181 | 9 182 | $DIMTOH 183 | 70 184 | 1 185 | 9 186 | $DIMSE1 187 | 70 188 | 0 189 | 9 190 | $DIMSE2 191 | 70 192 | 0 193 | 9 194 | $DIMTAD 195 | 70 196 | 0 197 | 9 198 | $DIMZIN 199 | 70 200 | 0 201 | 9 202 | $DIMBLK 203 | 1 204 | 205 | 9 206 | $DIMASO 207 | 70 208 | 1 209 | 9 210 | $DIMSHO 211 | 70 212 | 1 213 | 9 214 | $DIMPOST 215 | 1 216 | 217 | 9 218 | $DIMAPOST 219 | 1 220 | 221 | 9 222 | $DIMALT 223 | 70 224 | 0 225 | 9 226 | $DIMALTD 227 | 70 228 | 2 229 | 9 230 | $DIMALTF 231 | 40 232 | 25.4 233 | 9 234 | $DIMLFAC 235 | 40 236 | 2.0 237 | 9 238 | $DIMTOFL 239 | 70 240 | 0 241 | 9 242 | $DIMTVP 243 | 40 244 | 0.0 245 | 9 246 | $DIMTIX 247 | 70 248 | 0 249 | 9 250 | $DIMSOXD 251 | 70 252 | 0 253 | 9 254 | $DIMSAH 255 | 70 256 | 0 257 | 9 258 | $DIMBLK1 259 | 1 260 | 261 | 9 262 | $DIMBLK2 263 | 1 264 | 265 | 9 266 | $DIMSTYLE 267 | 2 268 | STANDARD 269 | 9 270 | $DIMCLRD 271 | 70 272 | 0 273 | 9 274 | $DIMCLRE 275 | 70 276 | 0 277 | 9 278 | $DIMCLRT 279 | 70 280 | 0 281 | 9 282 | $DIMTFAC 283 | 40 284 | 1.0 285 | 9 286 | $DIMGAP 287 | 40 288 | 0.06 289 | 9 290 | $DIMJUST 291 | 70 292 | 0 293 | 9 294 | $DIMSD1 295 | 70 296 | 0 297 | 9 298 | $DIMSD2 299 | 70 300 | 0 301 | 9 302 | $DIMTOLJ 303 | 70 304 | 1 305 | 9 306 | $DIMTZIN 307 | 70 308 | 0 309 | 9 310 | $DIMALTZ 311 | 70 312 | 0 313 | 9 314 | $DIMALTTZ 315 | 70 316 | 0 317 | 9 318 | $DIMFIT 319 | 70 320 | 3 321 | 9 322 | $DIMUPT 323 | 70 324 | 0 325 | 9 326 | $DIMUNIT 327 | 70 328 | 2 329 | 9 330 | $DIMDEC 331 | 70 332 | 2 333 | 9 334 | $DIMTDEC 335 | 70 336 | 2 337 | 9 338 | $DIMALTU 339 | 70 340 | 2 341 | 9 342 | $DIMALTTD 343 | 70 344 | 2 345 | 9 346 | $DIMTXSTY 347 | 7 348 | STANDARD 349 | 9 350 | $DIMAUNIT 351 | 70 352 | 0 353 | 9 354 | $LUNITS 355 | 70 356 | 2 357 | 9 358 | $LUPREC 359 | 70 360 | 2 361 | 9 362 | $SKETCHINC 363 | 40 364 | 0.1 365 | 9 366 | $FILLETRAD 367 | 40 368 | 0.5 369 | 9 370 | $AUNITS 371 | 70 372 | 0 373 | 9 374 | $AUPREC 375 | 70 376 | 2 377 | 9 378 | $MENU 379 | 1 380 | . 381 | 9 382 | $ELEVATION 383 | 40 384 | 0.0 385 | 9 386 | $PELEVATION 387 | 40 388 | 0.0 389 | 9 390 | $THICKNESS 391 | 40 392 | 0.0 393 | 9 394 | $LIMCHECK 395 | 70 396 | 0 397 | 9 398 | $CHAMFERA 399 | 40 400 | 0.5 401 | 9 402 | $CHAMFERB 403 | 40 404 | 0.5 405 | 9 406 | $CHAMFERC 407 | 40 408 | 1.0 409 | 9 410 | $CHAMFERD 411 | 40 412 | 0.0 413 | 9 414 | $SKPOLY 415 | 70 416 | 0 417 | 9 418 | $TDCREATE 419 | 40 420 | 2457232.193501042 421 | 9 422 | $TDUPDATE 423 | 40 424 | 2457232.193503542 425 | 9 426 | $TDINDWG 427 | 40 428 | 0.0000000116 429 | 9 430 | $TDUSRTIMER 431 | 40 432 | 0.0000000116 433 | 9 434 | $USRTIMER 435 | 70 436 | 1 437 | 9 438 | $ANGBASE 439 | 50 440 | 0.0 441 | 9 442 | $ANGDIR 443 | 70 444 | 0 445 | 9 446 | $PDMODE 447 | 70 448 | 0 449 | 9 450 | $PDSIZE 451 | 40 452 | -1.0 453 | 9 454 | $PLINEWID 455 | 40 456 | 0.0 457 | 9 458 | $COORDS 459 | 70 460 | 1 461 | 9 462 | $SPLFRAME 463 | 70 464 | 0 465 | 9 466 | $SPLINETYPE 467 | 70 468 | 6 469 | 9 470 | $SPLINESEGS 471 | 70 472 | 8 473 | 9 474 | $ATTDIA 475 | 70 476 | 0 477 | 9 478 | $ATTREQ 479 | 70 480 | 1 481 | 9 482 | $HANDLING 483 | 70 484 | 1 485 | 9 486 | $HANDSEED 487 | 5 488 | 62 489 | 9 490 | $SURFTAB1 491 | 70 492 | 6 493 | 9 494 | $SURFTAB2 495 | 70 496 | 6 497 | 9 498 | $SURFTYPE 499 | 70 500 | 6 501 | 9 502 | $SURFU 503 | 70 504 | 6 505 | 9 506 | $SURFV 507 | 70 508 | 6 509 | 9 510 | $UCSNAME 511 | 2 512 | 513 | 9 514 | $UCSORG 515 | 10 516 | 0.0 517 | 20 518 | 0.0 519 | 30 520 | 0.0 521 | 9 522 | $UCSXDIR 523 | 10 524 | 1.0 525 | 20 526 | 0.0 527 | 30 528 | 0.0 529 | 9 530 | $UCSYDIR 531 | 10 532 | 0.0 533 | 20 534 | 1.0 535 | 30 536 | 0.0 537 | 9 538 | $PUCSNAME 539 | 2 540 | 541 | 9 542 | $PUCSORG 543 | 10 544 | 0.0 545 | 20 546 | 0.0 547 | 30 548 | 0.0 549 | 9 550 | $PUCSXDIR 551 | 10 552 | 1.0 553 | 20 554 | 0.0 555 | 30 556 | 0.0 557 | 9 558 | $PUCSYDIR 559 | 10 560 | 0.0 561 | 20 562 | 1.0 563 | 30 564 | 0.0 565 | 9 566 | $USERI1 567 | 70 568 | 0 569 | 9 570 | $USERI2 571 | 70 572 | 0 573 | 9 574 | $USERI3 575 | 70 576 | 0 577 | 9 578 | $USERI4 579 | 70 580 | 0 581 | 9 582 | $USERI5 583 | 70 584 | 0 585 | 9 586 | $USERR1 587 | 40 588 | 0.0 589 | 9 590 | $USERR2 591 | 40 592 | 0.0 593 | 9 594 | $USERR3 595 | 40 596 | 0.0 597 | 9 598 | $USERR4 599 | 40 600 | 0.0 601 | 9 602 | $USERR5 603 | 40 604 | 0.0 605 | 9 606 | $WORLDVIEW 607 | 70 608 | 1 609 | 9 610 | $SHADEDGE 611 | 70 612 | 3 613 | 9 614 | $SHADEDIF 615 | 70 616 | 70 617 | 9 618 | $TILEMODE 619 | 70 620 | 1 621 | 9 622 | $MAXACTVP 623 | 70 624 | 64 625 | 9 626 | $PINSBASE 627 | 10 628 | 0.0 629 | 20 630 | 0.0 631 | 30 632 | 0.0 633 | 9 634 | $PLIMCHECK 635 | 70 636 | 0 637 | 9 638 | $PEXTMIN 639 | 10 640 | 1.0000000000E+20 641 | 20 642 | 1.0000000000E+20 643 | 30 644 | 1.0000000000E+20 645 | 9 646 | $PEXTMAX 647 | 10 648 | -1.0000000000E+20 649 | 20 650 | -1.0000000000E+20 651 | 30 652 | -1.0000000000E+20 653 | 9 654 | $PLIMMIN 655 | 10 656 | 0.0 657 | 20 658 | 0.0 659 | 9 660 | $PLIMMAX 661 | 10 662 | 12.0 663 | 20 664 | 9.0 665 | 9 666 | $UNITMODE 667 | 70 668 | 0 669 | 9 670 | $VISRETAIN 671 | 70 672 | 1 673 | 9 674 | $PLINEGEN 675 | 70 676 | 0 677 | 9 678 | $PSLTSCALE 679 | 70 680 | 1 681 | 9 682 | $TREEDEPTH 683 | 70 684 | 3020 685 | 9 686 | $PICKSTYLE 687 | 70 688 | 1 689 | 9 690 | $CMLSTYLE 691 | 2 692 | STANDARD 693 | 9 694 | $CMLJUST 695 | 70 696 | 0 697 | 9 698 | $CMLSCALE 699 | 40 700 | 1.0 701 | 9 702 | $SAVEIMAGES 703 | 70 704 | 1 705 | 0 706 | ENDSEC 707 | 0 708 | SECTION 709 | 2 710 | CLASSES 711 | 0 712 | CLASS 713 | 1 714 | ACDBDICTIONARYWDFLT 715 | 2 716 | AcDbDictionaryWithDefault 717 | 3 718 | ObjectDBX Classes 719 | 90 720 | 32768 721 | 280 722 | 0 723 | 281 724 | 0 725 | 0 726 | CLASS 727 | 1 728 | VISUALSTYLE 729 | 2 730 | AcDbVisualStyle 731 | 3 732 | ObjectDBX Classes 733 | 90 734 | 4095 735 | 280 736 | 0 737 | 281 738 | 0 739 | 0 740 | CLASS 741 | 1 742 | MATERIAL 743 | 2 744 | AcDbMaterial 745 | 3 746 | ObjectDBX Classes 747 | 90 748 | 1153 749 | 280 750 | 0 751 | 281 752 | 0 753 | 0 754 | CLASS 755 | 1 756 | XRECORD 757 | 2 758 | AcDbXrecord 759 | 3 760 | AutoCAD 2000 761 | 90 762 | 32768 763 | 280 764 | 0 765 | 281 766 | 0 767 | 0 768 | ENDSEC 769 | 0 770 | SECTION 771 | 2 772 | TABLES 773 | 0 774 | TABLE 775 | 2 776 | VPORT 777 | 5 778 | 8 779 | 330 780 | 0 781 | 100 782 | AcDbSymbolTable 783 | 70 784 | 1 785 | 0 786 | VPORT 787 | 5 788 | 29 789 | 330 790 | 8 791 | 100 792 | AcDbSymbolTableRecord 793 | 100 794 | AcDbViewportTableRecord 795 | 2 796 | *ACTIVE 797 | 70 798 | 0 799 | 10 800 | 0.0 801 | 20 802 | 0.0 803 | 11 804 | 1.0 805 | 21 806 | 1.0 807 | 12 808 | 8.5 809 | 22 810 | 5.5 811 | 13 812 | 0.0 813 | 23 814 | 0.0 815 | 14 816 | 0.5 817 | 24 818 | 0.5 819 | 15 820 | 0.5 821 | 25 822 | 0.5 823 | 16 824 | 0.0 825 | 26 826 | 0.0 827 | 36 828 | 1.0 829 | 17 830 | 0.0 831 | 27 832 | 0.0 833 | 37 834 | 0.0 835 | 40 836 | 11.0 837 | 41 838 | 1.5454545455 839 | 42 840 | 50.0 841 | 43 842 | 0.0 843 | 44 844 | 0.0 845 | 50 846 | 0.0 847 | 51 848 | 0.0 849 | 71 850 | 0 851 | 72 852 | 2000 853 | 73 854 | 1 855 | 74 856 | 3 857 | 75 858 | 0 859 | 76 860 | 0 861 | 77 862 | 0 863 | 78 864 | 0 865 | 0 866 | ENDTAB 867 | 0 868 | TABLE 869 | 2 870 | LTYPE 871 | 5 872 | 5 873 | 330 874 | 0 875 | 100 876 | AcDbSymbolTable 877 | 70 878 | 8 879 | 0 880 | LTYPE 881 | 5 882 | 14 883 | 330 884 | 5 885 | 100 886 | AcDbSymbolTableRecord 887 | 100 888 | AcDbLinetypeTableRecord 889 | 2 890 | BYBLOCK 891 | 70 892 | 0 893 | 3 894 | 895 | 72 896 | 65 897 | 73 898 | 0 899 | 40 900 | 0.0 901 | 0 902 | LTYPE 903 | 5 904 | 15 905 | 330 906 | 5 907 | 100 908 | AcDbSymbolTableRecord 909 | 100 910 | AcDbLinetypeTableRecord 911 | 2 912 | BYLAYER 913 | 70 914 | 0 915 | 3 916 | 917 | 72 918 | 65 919 | 73 920 | 0 921 | 40 922 | 0.0 923 | 0 924 | LTYPE 925 | 5 926 | 16 927 | 330 928 | 5 929 | 100 930 | AcDbSymbolTableRecord 931 | 100 932 | AcDbLinetypeTableRecord 933 | 2 934 | CONTINUOUS 935 | 70 936 | 0 937 | 3 938 | Solid line 939 | 72 940 | 65 941 | 73 942 | 0 943 | 40 944 | 0.0 945 | 0 946 | LTYPE 947 | 5 948 | 3F 949 | 330 950 | 5 951 | 100 952 | AcDbSymbolTableRecord 953 | 100 954 | AcDbLinetypeTableRecord 955 | 2 956 | SLD-SOLID 957 | 70 958 | 0 959 | 3 960 | SolidWorks Line Style 961 | 72 962 | 65 963 | 73 964 | 0 965 | 40 966 | 0.0 967 | 0 968 | LTYPE 969 | 5 970 | 40 971 | 330 972 | 5 973 | 100 974 | AcDbSymbolTableRecord 975 | 100 976 | AcDbLinetypeTableRecord 977 | 2 978 | SLD-DASHED 979 | 70 980 | 0 981 | 3 982 | SolidWorks Line Style 983 | 72 984 | 65 985 | 73 986 | 2 987 | 40 988 | 0.075 989 | 49 990 | 0.05 991 | 74 992 | 0 993 | 49 994 | -0.025 995 | 74 996 | 0 997 | 0 998 | LTYPE 999 | 5 1000 | 41 1001 | 330 1002 | 5 1003 | 100 1004 | AcDbSymbolTableRecord 1005 | 100 1006 | AcDbLinetypeTableRecord 1007 | 2 1008 | SLD-PHANTOM 1009 | 70 1010 | 0 1011 | 3 1012 | SolidWorks Line Style 1013 | 72 1014 | 65 1015 | 73 1016 | 6 1017 | 40 1018 | 0.5 1019 | 49 1020 | 0.25 1021 | 74 1022 | 0 1023 | 49 1024 | -0.05 1025 | 74 1026 | 0 1027 | 49 1028 | 0.05 1029 | 74 1030 | 0 1031 | 49 1032 | -0.05 1033 | 74 1034 | 0 1035 | 49 1036 | 0.05 1037 | 74 1038 | 0 1039 | 49 1040 | -0.05 1041 | 74 1042 | 0 1043 | 0 1044 | LTYPE 1045 | 5 1046 | 42 1047 | 330 1048 | 5 1049 | 100 1050 | AcDbSymbolTableRecord 1051 | 100 1052 | AcDbLinetypeTableRecord 1053 | 2 1054 | SLD-CHAIN 1055 | 70 1056 | 0 1057 | 3 1058 | SolidWorks Line Style 1059 | 72 1060 | 65 1061 | 73 1062 | 4 1063 | 40 1064 | 0.4 1065 | 49 1066 | 0.25 1067 | 74 1068 | 0 1069 | 49 1070 | -0.05 1071 | 74 1072 | 0 1073 | 49 1074 | 0.05 1075 | 74 1076 | 0 1077 | 49 1078 | -0.05 1079 | 74 1080 | 0 1081 | 0 1082 | LTYPE 1083 | 5 1084 | 43 1085 | 330 1086 | 5 1087 | 100 1088 | AcDbSymbolTableRecord 1089 | 100 1090 | AcDbLinetypeTableRecord 1091 | 2 1092 | SLD-CENTER 1093 | 70 1094 | 0 1095 | 3 1096 | SolidWorks Line Style 1097 | 72 1098 | 65 1099 | 73 1100 | 4 1101 | 40 1102 | 0.75 1103 | 49 1104 | 0.6 1105 | 74 1106 | 0 1107 | 49 1108 | -0.05 1109 | 74 1110 | 0 1111 | 49 1112 | 0.05 1113 | 74 1114 | 0 1115 | 49 1116 | -0.05 1117 | 74 1118 | 0 1119 | 0 1120 | LTYPE 1121 | 5 1122 | 44 1123 | 330 1124 | 5 1125 | 100 1126 | AcDbSymbolTableRecord 1127 | 100 1128 | AcDbLinetypeTableRecord 1129 | 2 1130 | SLD-STITCH 1131 | 70 1132 | 0 1133 | 3 1134 | SolidWorks Line Style 1135 | 72 1136 | 65 1137 | 73 1138 | 2 1139 | 40 1140 | 0.025 1141 | 49 1142 | 0.0 1143 | 74 1144 | 0 1145 | 49 1146 | -0.025 1147 | 74 1148 | 0 1149 | 0 1150 | LTYPE 1151 | 5 1152 | 45 1153 | 330 1154 | 5 1155 | 100 1156 | AcDbSymbolTableRecord 1157 | 100 1158 | AcDbLinetypeTableRecord 1159 | 2 1160 | SLD-THIN-THICK-CHAIN 1161 | 70 1162 | 0 1163 | 3 1164 | SolidWorks Line Style 1165 | 72 1166 | 65 1167 | 73 1168 | 4 1169 | 40 1170 | 0.4 1171 | 49 1172 | 0.25 1173 | 74 1174 | 0 1175 | 49 1176 | -0.05 1177 | 74 1178 | 0 1179 | 49 1180 | 0.05 1181 | 74 1182 | 0 1183 | 49 1184 | -0.05 1185 | 74 1186 | 0 1187 | 0 1188 | ENDTAB 1189 | 0 1190 | TABLE 1191 | 2 1192 | LAYER 1193 | 5 1194 | 2 1195 | 330 1196 | 0 1197 | 100 1198 | AcDbSymbolTable 1199 | 70 1200 | 2 1201 | 0 1202 | LAYER 1203 | 5 1204 | 10 1205 | 330 1206 | 2 1207 | 100 1208 | AcDbSymbolTableRecord 1209 | 100 1210 | AcDbLayerTableRecord 1211 | 2 1212 | 0 1213 | 70 1214 | 0 1215 | 62 1216 | 7 1217 | 6 1218 | CONTINUOUS 1219 | 0 1220 | LAYER 1221 | 5 1222 | 46 1223 | 330 1224 | 2 1225 | 100 1226 | AcDbSymbolTableRecord 1227 | 100 1228 | AcDbLayerTableRecord 1229 | 2 1230 | FORMAT 1231 | 70 1232 | 0 1233 | 62 1234 | 7 1235 | 6 1236 | SLD-SOLID 1237 | 0 1238 | ENDTAB 1239 | 0 1240 | TABLE 1241 | 2 1242 | STYLE 1243 | 5 1244 | 3 1245 | 330 1246 | 0 1247 | 100 1248 | AcDbSymbolTable 1249 | 70 1250 | 1 1251 | 0 1252 | STYLE 1253 | 5 1254 | 11 1255 | 330 1256 | 3 1257 | 100 1258 | AcDbSymbolTableRecord 1259 | 100 1260 | AcDbTextStyleTableRecord 1261 | 2 1262 | STANDARD 1263 | 70 1264 | 0 1265 | 40 1266 | 0.0 1267 | 41 1268 | 1.0 1269 | 50 1270 | 0.0 1271 | 71 1272 | 0 1273 | 42 1274 | 0.125 1275 | 3 1276 | txt 1277 | 4 1278 | 1279 | 0 1280 | ENDTAB 1281 | 0 1282 | TABLE 1283 | 2 1284 | VIEW 1285 | 5 1286 | 6 1287 | 330 1288 | 0 1289 | 100 1290 | AcDbSymbolTable 1291 | 70 1292 | 0 1293 | 0 1294 | ENDTAB 1295 | 0 1296 | TABLE 1297 | 2 1298 | UCS 1299 | 5 1300 | 7 1301 | 330 1302 | 0 1303 | 100 1304 | AcDbSymbolTable 1305 | 70 1306 | 0 1307 | 0 1308 | ENDTAB 1309 | 0 1310 | TABLE 1311 | 2 1312 | APPID 1313 | 5 1314 | 9 1315 | 330 1316 | 0 1317 | 100 1318 | AcDbSymbolTable 1319 | 70 1320 | 1 1321 | 0 1322 | APPID 1323 | 5 1324 | 12 1325 | 330 1326 | 9 1327 | 100 1328 | AcDbSymbolTableRecord 1329 | 100 1330 | AcDbRegAppTableRecord 1331 | 2 1332 | ACAD 1333 | 70 1334 | 0 1335 | 0 1336 | ENDTAB 1337 | 0 1338 | TABLE 1339 | 2 1340 | DIMSTYLE 1341 | 5 1342 | A 1343 | 330 1344 | 0 1345 | 100 1346 | AcDbSymbolTable 1347 | 70 1348 | 1 1349 | 0 1350 | DIMSTYLE 1351 | 105 1352 | 27 1353 | 330 1354 | A 1355 | 100 1356 | AcDbSymbolTableRecord 1357 | 100 1358 | AcDbDimStyleTableRecord 1359 | 2 1360 | STANDARD 1361 | 70 1362 | 0 1363 | 3 1364 | 1365 | 4 1366 | 1367 | 5 1368 | 1369 | 6 1370 | 1371 | 7 1372 | 1373 | 40 1374 | 1.0 1375 | 41 1376 | 0.18 1377 | 42 1378 | 0.0625 1379 | 43 1380 | 0.38 1381 | 44 1382 | 0.18 1383 | 45 1384 | 0.0 1385 | 46 1386 | 0.0 1387 | 47 1388 | 0.0 1389 | 48 1390 | 0.0 1391 | 140 1392 | 0.18 1393 | 141 1394 | 0.09 1395 | 142 1396 | 0.0 1397 | 143 1398 | 25.4 1399 | 144 1400 | 1.0 1401 | 145 1402 | 0.0 1403 | 146 1404 | 1.0 1405 | 147 1406 | 0.09 1407 | 71 1408 | 0 1409 | 72 1410 | 0 1411 | 73 1412 | 1 1413 | 74 1414 | 1 1415 | 75 1416 | 0 1417 | 76 1418 | 0 1419 | 77 1420 | 0 1421 | 78 1422 | 0 1423 | 170 1424 | 0 1425 | 171 1426 | 2 1427 | 172 1428 | 0 1429 | 173 1430 | 0 1431 | 174 1432 | 0 1433 | 175 1434 | 0 1435 | 176 1436 | 0 1437 | 177 1438 | 0 1439 | 178 1440 | 0 1441 | 270 1442 | 2 1443 | 271 1444 | 4 1445 | 272 1446 | 4 1447 | 273 1448 | 2 1449 | 274 1450 | 2 1451 | 340 1452 | 11 1453 | 275 1454 | 0 1455 | 280 1456 | 0 1457 | 281 1458 | 0 1459 | 282 1460 | 0 1461 | 283 1462 | 1 1463 | 284 1464 | 0 1465 | 285 1466 | 0 1467 | 286 1468 | 0 1469 | 287 1470 | 3 1471 | 288 1472 | 0 1473 | 0 1474 | ENDTAB 1475 | 0 1476 | TABLE 1477 | 2 1478 | BLOCK_RECORD 1479 | 5 1480 | 1 1481 | 330 1482 | 0 1483 | 100 1484 | AcDbSymbolTable 1485 | 70 1486 | 1 1487 | 0 1488 | BLOCK_RECORD 1489 | 5 1490 | 1F 1491 | 330 1492 | 1 1493 | 100 1494 | AcDbSymbolTableRecord 1495 | 100 1496 | AcDbBlockTableRecord 1497 | 2 1498 | *MODEL_SPACE 1499 | 0 1500 | BLOCK_RECORD 1501 | 5 1502 | 1B 1503 | 330 1504 | 1 1505 | 100 1506 | AcDbSymbolTableRecord 1507 | 100 1508 | AcDbBlockTableRecord 1509 | 2 1510 | *PAPER_SPACE 1511 | 0 1512 | BLOCK_RECORD 1513 | 5 1514 | 23 1515 | 330 1516 | 1 1517 | 100 1518 | AcDbSymbolTableRecord 1519 | 100 1520 | AcDbBlockTableRecord 1521 | 2 1522 | *PAPER_SPACE0 1523 | 0 1524 | ENDTAB 1525 | 0 1526 | ENDSEC 1527 | 0 1528 | SECTION 1529 | 2 1530 | BLOCKS 1531 | 0 1532 | BLOCK 1533 | 5 1534 | 20 1535 | 330 1536 | 1F 1537 | 100 1538 | AcDbEntity 1539 | 8 1540 | 0 1541 | 100 1542 | AcDbBlockBegin 1543 | 2 1544 | *MODEL_SPACE 1545 | 70 1546 | 0 1547 | 10 1548 | 0.0 1549 | 20 1550 | 0.0 1551 | 30 1552 | 0.0 1553 | 3 1554 | *MODEL_SPACE 1555 | 1 1556 | 1557 | 0 1558 | ENDBLK 1559 | 5 1560 | 21 1561 | 330 1562 | 1F 1563 | 100 1564 | AcDbEntity 1565 | 8 1566 | 0 1567 | 100 1568 | AcDbBlockEnd 1569 | 0 1570 | BLOCK 1571 | 5 1572 | 1C 1573 | 330 1574 | 1B 1575 | 100 1576 | AcDbEntity 1577 | 67 1578 | 1 1579 | 8 1580 | 0 1581 | 100 1582 | AcDbBlockBegin 1583 | 2 1584 | *PAPER_SPACE 1585 | 70 1586 | 0 1587 | 10 1588 | 0.0 1589 | 20 1590 | 0.0 1591 | 30 1592 | 0.0 1593 | 3 1594 | *PAPER_SPACE 1595 | 1 1596 | 1597 | 0 1598 | ENDBLK 1599 | 5 1600 | 1D 1601 | 330 1602 | 1B 1603 | 100 1604 | AcDbEntity 1605 | 67 1606 | 1 1607 | 8 1608 | 0 1609 | 100 1610 | AcDbBlockEnd 1611 | 0 1612 | BLOCK 1613 | 5 1614 | 24 1615 | 330 1616 | 23 1617 | 100 1618 | AcDbEntity 1619 | 8 1620 | 0 1621 | 100 1622 | AcDbBlockBegin 1623 | 2 1624 | *PAPER_SPACE0 1625 | 70 1626 | 0 1627 | 10 1628 | 0.0 1629 | 20 1630 | 0.0 1631 | 30 1632 | 0.0 1633 | 3 1634 | *PAPER_SPACE0 1635 | 1 1636 | 1637 | 0 1638 | ENDBLK 1639 | 5 1640 | 25 1641 | 330 1642 | 23 1643 | 100 1644 | AcDbEntity 1645 | 8 1646 | 0 1647 | 100 1648 | AcDbBlockEnd 1649 | 0 1650 | ENDSEC 1651 | 0 1652 | SECTION 1653 | 2 1654 | ENTITIES 1655 | 0 1656 | CIRCLE 1657 | 5 1658 | 47 1659 | 330 1660 | 1F 1661 | 100 1662 | AcDbEntity 1663 | 8 1664 | 0 1665 | 6 1666 | SLD-SOLID 1667 | 62 1668 | 7 1669 | 100 1670 | AcDbCircle 1671 | 10 1672 | 6.4141462942 1673 | 20 1674 | 8.4156896262 1675 | 30 1676 | 0.0 1677 | 40 1678 | 0.0884999999999998 1679 | 0 1680 | CIRCLE 1681 | 5 1682 | 48 1683 | 330 1684 | 1F 1685 | 100 1686 | AcDbEntity 1687 | 8 1688 | 0 1689 | 6 1690 | SLD-SOLID 1691 | 62 1692 | 7 1693 | 100 1694 | AcDbCircle 1695 | 10 1696 | 6.2742907381 1697 | 20 1698 | 5.6442679907 1699 | 30 1700 | 0.0 1701 | 40 1702 | 0.0884999999136538 1703 | 0 1704 | CIRCLE 1705 | 5 1706 | 49 1707 | 330 1708 | 1F 1709 | 100 1710 | AcDbEntity 1711 | 8 1712 | 0 1713 | 6 1714 | SLD-SOLID 1715 | 62 1716 | 7 1717 | 100 1718 | AcDbCircle 1719 | 10 1720 | 4.723833308 1721 | 20 1722 | 4.8620681434 1723 | 30 1724 | 0.0 1725 | 40 1726 | 0.0884999999999998 1727 | 0 1728 | CIRCLE 1729 | 5 1730 | 4A 1731 | 330 1732 | 1F 1733 | 100 1734 | AcDbEntity 1735 | 8 1736 | 0 1737 | 6 1738 | SLD-SOLID 1739 | 62 1740 | 7 1741 | 100 1742 | AcDbCircle 1743 | 10 1744 | 5.7914086879 1745 | 20 1746 | 2.5733075007 1747 | 30 1748 | 0.0 1749 | 40 1750 | 0.0885000000000007 1751 | 0 1752 | CIRCLE 1753 | 5 1754 | 4B 1755 | 330 1756 | 1F 1757 | 100 1758 | AcDbEntity 1759 | 8 1760 | 0 1761 | 6 1762 | SLD-SOLID 1763 | 62 1764 | 7 1765 | 100 1766 | AcDbCircle 1767 | 10 1768 | 8.9265480425 1769 | 20 1770 | 4.0356699362 1771 | 30 1772 | 0.0 1773 | 40 1774 | 0.0884999999999998 1775 | 0 1776 | CIRCLE 1777 | 5 1778 | 4C 1779 | 330 1780 | 1F 1781 | 100 1782 | AcDbEntity 1783 | 8 1784 | 0 1785 | 6 1786 | SLD-SOLID 1787 | 62 1788 | 7 1789 | 100 1790 | AcDbCircle 1791 | 10 1792 | 12.113477046 1793 | 20 1794 | 8.8859848968 1795 | 30 1796 | 0.0 1797 | 40 1798 | 0.088499999999998 1799 | 0 1800 | CIRCLE 1801 | 5 1802 | 4D 1803 | 330 1804 | 1F 1805 | 100 1806 | AcDbEntity 1807 | 8 1808 | 0 1809 | 6 1810 | SLD-SOLID 1811 | 62 1812 | 7 1813 | 100 1814 | AcDbCircle 1815 | 10 1816 | 10.0485557861 1817 | 20 1818 | 8.8909848968 1819 | 30 1820 | 0.0 1821 | 40 1822 | 0.088499999999998 1823 | 0 1824 | CIRCLE 1825 | 5 1826 | 4E 1827 | 330 1828 | 1F 1829 | 100 1830 | AcDbEntity 1831 | 8 1832 | 0 1833 | 6 1834 | SLD-SOLID 1835 | 62 1836 | 7 1837 | 100 1838 | AcDbCircle 1839 | 10 1840 | 8.6891462942 1841 | 20 1842 | 8.4531896262 1843 | 30 1844 | 0.0 1845 | 40 1846 | 0.0884999999999998 1847 | 0 1848 | CIRCLE 1849 | 5 1850 | 4F 1851 | 330 1852 | 1F 1853 | 100 1854 | AcDbEntity 1855 | 8 1856 | 0 1857 | 6 1858 | SLD-SOLID 1859 | 62 1860 | 7 1861 | 100 1862 | AcDbCircle 1863 | 10 1864 | 12.0541659849 1865 | 20 1866 | 4.0856699362 1867 | 30 1868 | 0.0 1869 | 40 1870 | 0.0884999999999998 1871 | 0 1872 | LINE 1873 | 5 1874 | 50 1875 | 330 1876 | 1F 1877 | 100 1878 | AcDbEntity 1879 | 8 1880 | 0 1881 | 6 1882 | SLD-SOLID 1883 | 62 1884 | 7 1885 | 100 1886 | AcDbLine 1887 | 10 1888 | 5.9212653667 1889 | 20 1890 | 2.4131912778 1891 | 30 1892 | 0.0 1893 | 11 1894 | 8.974254285 1895 | 21 1896 | 3.8372351571 1897 | 31 1898 | 0.0 1899 | 0 1900 | ARC 1901 | 5 1902 | 51 1903 | 330 1904 | 1F 1905 | 100 1906 | AcDbEntity 1907 | 8 1908 | 0 1909 | 6 1910 | SLD-SOLID 1911 | 62 1912 | 7 1913 | 100 1914 | AcDbCircle 1915 | 10 1916 | 9.0799339651 1917 | 20 1918 | 3.6106699362 1919 | 30 1920 | 0.0 1921 | 40 1922 | 0.2499999999999998 1923 | 100 1924 | AcDbArc 1925 | 50 1926 | 90.0 1927 | 51 1928 | 115.00634861 1929 | 0 1930 | LINE 1931 | 5 1932 | 52 1933 | 330 1934 | 1F 1935 | 100 1936 | AcDbEntity 1937 | 8 1938 | 0 1939 | 6 1940 | SLD-SOLID 1941 | 62 1942 | 7 1943 | 100 1944 | AcDbLine 1945 | 10 1946 | 9.0799340241 1947 | 20 1948 | 3.8606699464 1949 | 30 1950 | 0.0 1951 | 11 1952 | 12.029165981 1953 | 21 1954 | 3.8606699464 1955 | 31 1956 | 0.0 1957 | 0 1958 | ARC 1959 | 5 1960 | 53 1961 | 330 1962 | 1F 1963 | 100 1964 | AcDbEntity 1965 | 8 1966 | 0 1967 | 6 1968 | SLD-SOLID 1969 | 62 1970 | 7 1971 | 100 1972 | AcDbCircle 1973 | 10 1974 | 12.0291659855 1975 | 20 1976 | 4.1106699362 1977 | 30 1978 | 0.0 1979 | 40 1980 | 0.2500000000000018 1981 | 100 1982 | AcDbArc 1983 | 50 1984 | 270.0 1985 | 51 1986 | 0.0 1987 | 0 1988 | LINE 1989 | 5 1990 | 54 1991 | 330 1992 | 1F 1993 | 100 1994 | AcDbEntity 1995 | 8 1996 | 0 1997 | 6 1998 | SLD-SOLID 1999 | 62 2000 | 7 2001 | 100 2002 | AcDbLine 2003 | 10 2004 | 12.2791659963 2005 | 20 2006 | 4.1106699342 2007 | 30 2008 | 0.0 2009 | 11 2010 | 12.2791659963 2011 | 21 2012 | 8.9534850171 2013 | 31 2014 | 0.0 2015 | 0 2016 | ARC 2017 | 5 2018 | 55 2019 | 330 2020 | 1F 2021 | 100 2022 | AcDbEntity 2023 | 8 2024 | 0 2025 | 6 2026 | SLD-SOLID 2027 | 62 2028 | 7 2029 | 100 2030 | AcDbCircle 2031 | 10 2032 | 12.0291659846 2033 | 20 2034 | 8.9534848968 2035 | 30 2036 | 0.0 2037 | 40 2038 | 0.2500000000000018 2039 | 100 2040 | AcDbArc 2041 | 50 2042 | 0.0 2043 | 51 2044 | 90.0 2045 | 0 2046 | LINE 2047 | 5 2048 | 56 2049 | 330 2050 | 1F 2051 | 100 2052 | AcDbEntity 2053 | 8 2054 | 0 2055 | 6 2056 | SLD-SOLID 2057 | 62 2058 | 7 2059 | 100 2060 | AcDbLine 2061 | 10 2062 | 12.029165981 2063 | 20 2064 | 9.203484849 2065 | 30 2066 | 0.0 2067 | 11 2068 | 10.2148268471 2069 | 21 2070 | 9.203484849 2071 | 31 2072 | 0.0 2073 | 0 2074 | ARC 2075 | 5 2076 | 57 2077 | 330 2078 | 1F 2079 | 100 2080 | AcDbEntity 2081 | 8 2082 | 0 2083 | 6 2084 | SLD-SOLID 2085 | 62 2086 | 7 2087 | 100 2088 | AcDbCircle 2089 | 10 2090 | 10.2148267831 2091 | 20 2092 | 8.4534848968 2093 | 30 2094 | 0.0 2095 | 40 2096 | 0.7500000000000018 2097 | 100 2098 | AcDbArc 2099 | 50 2100 | 90.0 2101 | 51 2102 | 115.0 2103 | 0 2104 | LINE 2105 | 5 2106 | 58 2107 | 330 2108 | 1F 2109 | 100 2110 | AcDbEntity 2111 | 8 2112 | 0 2113 | 6 2114 | SLD-SOLID 2115 | 62 2116 | 7 2117 | 100 2118 | AcDbLine 2119 | 10 2120 | 9.8978630153 2121 | 20 2122 | 9.1332156075 2123 | 30 2124 | 0.0 2125 | 11 2126 | 8.9923301561 2127 | 21 2128 | 8.7109586454 2129 | 31 2130 | 0.0 2131 | 0 2132 | ARC 2133 | 5 2134 | 59 2135 | 330 2136 | 1F 2137 | 100 2138 | AcDbEntity 2139 | 8 2140 | 0 2141 | 6 2142 | SLD-SOLID 2143 | 62 2144 | 7 2145 | 100 2146 | AcDbCircle 2147 | 10 2148 | 8.6753664365 2149 | 20 2150 | 9.3906896262 2151 | 30 2152 | 0.0 2153 | 40 2154 | 0.75 2155 | 100 2156 | AcDbArc 2157 | 50 2158 | 270.0 2159 | 51 2160 | 295.0 2161 | 0 2162 | LINE 2163 | 5 2164 | 5A 2165 | 330 2166 | 1F 2167 | 100 2168 | AcDbEntity 2169 | 8 2170 | 0 2171 | 6 2172 | SLD-SOLID 2173 | 62 2174 | 7 2175 | 100 2176 | AcDbLine 2177 | 10 2178 | 8.6753663244 2179 | 20 2180 | 8.6406896972 2181 | 30 2182 | 0.0 2183 | 11 2184 | 6.4391464241 2185 | 21 2186 | 8.6406896972 2187 | 31 2188 | 0.0 2189 | 0 2190 | ARC 2191 | 5 2192 | 5B 2193 | 330 2194 | 1F 2195 | 100 2196 | AcDbEntity 2197 | 8 2198 | 0 2199 | 6 2200 | SLD-SOLID 2201 | 62 2202 | 7 2203 | 100 2204 | AcDbCircle 2205 | 10 2206 | 6.4391462942 2207 | 20 2208 | 8.3906896262 2209 | 30 2210 | 0.0 2211 | 40 2212 | 0.25 2213 | 100 2214 | AcDbArc 2215 | 50 2216 | 90.0 2217 | 51 2218 | 180.0 2219 | 0 2220 | LINE 2221 | 5 2222 | 5C 2223 | 330 2224 | 1F 2225 | 100 2226 | AcDbEntity 2227 | 8 2228 | 0 2229 | 6 2230 | SLD-SOLID 2231 | 62 2232 | 7 2233 | 100 2234 | AcDbLine 2235 | 10 2236 | 6.1891460054 2237 | 20 2238 | 8.3906895719 2239 | 30 2240 | 0.0 2241 | 11 2242 | 6.1891460054 2243 | 21 2244 | 5.9254875167 2245 | 31 2246 | 0.0 2247 | 0 2248 | ARC 2249 | 5 2250 | 5D 2251 | 330 2252 | 1F 2253 | 100 2254 | AcDbEntity 2255 | 8 2256 | 0 2257 | 6 2258 | SLD-SOLID 2259 | 62 2260 | 7 2261 | 100 2262 | AcDbCircle 2263 | 10 2264 | 5.9391462942 2265 | 20 2266 | 5.9254875696 2267 | 30 2268 | 0.0 2269 | 40 2270 | 0.25 2271 | 100 2272 | AcDbArc 2273 | 50 2274 | 295.00634861 2275 | 51 2276 | 0.0 2277 | 0 2278 | LINE 2279 | 5 2280 | 5E 2281 | 330 2282 | 1F 2283 | 100 2284 | AcDbEntity 2285 | 8 2286 | 0 2287 | 6 2288 | SLD-SOLID 2289 | 62 2290 | 7 2291 | 100 2292 | AcDbLine 2293 | 10 2294 | 6.0448259126 2295 | 20 2296 | 5.6989224007 2297 | 30 2298 | 0.0 2299 | 11 2300 | 4.684602746 2301 | 21 2302 | 5.0644562568 2303 | 31 2304 | 0.0 2305 | 0 2306 | ARC 2307 | 5 2308 | 5F 2309 | 330 2310 | 1F 2311 | 100 2312 | AcDbEntity 2313 | 8 2314 | 0 2315 | 6 2316 | SLD-SOLID 2317 | 62 2318 | 7 2319 | 100 2320 | AcDbCircle 2321 | 10 2322 | 4.7902822904 2323 | 20 2324 | 4.8378910299 2325 | 30 2326 | 0.0 2327 | 40 2328 | 0.249999999999999 2329 | 100 2330 | AcDbArc 2331 | 50 2332 | 115.00634861 2333 | 51 2334 | 205.00634861 2335 | 0 2336 | LINE 2337 | 5 2338 | 60 2339 | 330 2340 | 1F 2341 | 100 2342 | AcDbEntity 2343 | 8 2344 | 0 2345 | 6 2346 | SLD-SOLID 2347 | 62 2348 | 7 2349 | 100 2350 | AcDbLine 2351 | 10 2352 | 4.5637167825 2353 | 20 2354 | 4.7322113649 2355 | 30 2356 | 0.0 2357 | 11 2358 | 5.5890205115 2359 | 21 2360 | 2.5340768013 2361 | 31 2362 | 0.0 2363 | 0 2364 | ARC 2365 | 5 2366 | 61 2367 | 330 2368 | 1F 2369 | 100 2370 | AcDbEntity 2371 | 8 2372 | 0 2373 | 6 2374 | SLD-SOLID 2375 | 62 2376 | 7 2377 | 100 2378 | AcDbCircle 2379 | 10 2380 | 5.8155858021 2381 | 20 2382 | 2.6397564825 2383 | 30 2384 | 0.0 2385 | 40 2386 | 0.2499999999999993 2387 | 100 2388 | AcDbArc 2389 | 50 2390 | 205.00634861 2391 | 51 2392 | 295.00634861 2393 | 0 2394 | ENDSEC 2395 | 0 2396 | SECTION 2397 | 2 2398 | OBJECTS 2399 | 0 2400 | DICTIONARY 2401 | 5 2402 | C 2403 | 330 2404 | 0 2405 | 100 2406 | AcDbDictionary 2407 | 3 2408 | ACAD_GROUP 2409 | 350 2410 | D 2411 | 3 2412 | ACAD_MLINESTYLE 2413 | 350 2414 | 17 2415 | 1001 2416 | ACAD 2417 | 1000 2418 | TREAT_AS_HARD 2419 | 1070 2420 | 0 2421 | 0 2422 | DICTIONARY 2423 | 5 2424 | D 2425 | 102 2426 | {ACAD_REACTORS 2427 | 330 2428 | C 2429 | 102 2430 | } 2431 | 330 2432 | C 2433 | 100 2434 | AcDbDictionary 2435 | 1001 2436 | ACAD 2437 | 1000 2438 | TREAT_AS_HARD 2439 | 1070 2440 | 0 2441 | 0 2442 | DICTIONARY 2443 | 5 2444 | 17 2445 | 102 2446 | {ACAD_REACTORS 2447 | 330 2448 | C 2449 | 102 2450 | } 2451 | 330 2452 | C 2453 | 100 2454 | AcDbDictionary 2455 | 3 2456 | STANDARD 2457 | 350 2458 | 18 2459 | 1001 2460 | ACAD 2461 | 1000 2462 | TREAT_AS_HARD 2463 | 1070 2464 | 0 2465 | 0 2466 | MLINESTYLE 2467 | 5 2468 | 18 2469 | 102 2470 | {ACAD_REACTORS 2471 | 330 2472 | 17 2473 | 102 2474 | } 2475 | 330 2476 | 17 2477 | 100 2478 | AcDbMlineStyle 2479 | 2 2480 | Standard 2481 | 70 2482 | 0 2483 | 3 2484 | 2485 | 62 2486 | 256 2487 | 51 2488 | 90.0 2489 | 52 2490 | 90.0 2491 | 71 2492 | 2 2493 | 49 2494 | 0.5 2495 | 62 2496 | 256 2497 | 6 2498 | BYLAYER 2499 | 49 2500 | -0.5 2501 | 62 2502 | 256 2503 | 6 2504 | BYLAYER 2505 | 0 2506 | ENDSEC 2507 | 0 2508 | EOF 2509 | -------------------------------------------------------------------------------- /infinity-ergodox/rev-a/Plate, Spacer, #1.dxf: -------------------------------------------------------------------------------- 1 | 0 2 | SECTION 3 | 2 4 | HEADER 5 | 9 6 | $ACADVER 7 | 1 8 | AC1012 9 | 9 10 | $DWGCODEPAGE 11 | 3 12 | ansi_1252 13 | 9 14 | $INSBASE 15 | 10 16 | 0.0 17 | 20 18 | 0.0 19 | 30 20 | 0.0 21 | 9 22 | $EXTMIN 23 | 10 24 | 0.0 25 | 20 26 | 0.0 27 | 30 28 | 0.0 29 | 9 30 | $EXTMAX 31 | 10 32 | 17.0 33 | 20 34 | 11.0 35 | 30 36 | 0.0 37 | 9 38 | $LIMMIN 39 | 10 40 | 0.0 41 | 20 42 | 0.0 43 | 9 44 | $LIMMAX 45 | 10 46 | 17.0 47 | 20 48 | 11.0 49 | 9 50 | $ORTHOMODE 51 | 70 52 | 0 53 | 9 54 | $REGENMODE 55 | 70 56 | 1 57 | 9 58 | $FILLMODE 59 | 70 60 | 1 61 | 9 62 | $QTEXTMODE 63 | 70 64 | 0 65 | 9 66 | $MIRRTEXT 67 | 70 68 | 1 69 | 9 70 | $DRAGMODE 71 | 70 72 | 2 73 | 9 74 | $LTSCALE 75 | 40 76 | 1.0 77 | 9 78 | $OSMODE 79 | 70 80 | 37 81 | 9 82 | $ATTMODE 83 | 70 84 | 1 85 | 9 86 | $TEXTSIZE 87 | 40 88 | 0.125 89 | 9 90 | $TRACEWID 91 | 40 92 | 0.05 93 | 9 94 | $TEXTSTYLE 95 | 7 96 | STANDARD 97 | 9 98 | $CLAYER 99 | 8 100 | 0 101 | 9 102 | $CELTYPE 103 | 6 104 | BYLAYER 105 | 9 106 | $CECOLOR 107 | 62 108 | 256 109 | 9 110 | $CELTSCALE 111 | 40 112 | 1.0 113 | 9 114 | $DELOBJ 115 | 70 116 | 1 117 | 9 118 | $DISPSILH 119 | 70 120 | 0 121 | 9 122 | $DIMSCALE 123 | 40 124 | 1.0 125 | 9 126 | $DIMASZ 127 | 40 128 | 0.13 129 | 9 130 | $DIMEXO 131 | 40 132 | 0.05 133 | 9 134 | $DIMDLI 135 | 40 136 | 0.38 137 | 9 138 | $DIMRND 139 | 40 140 | 0.0 141 | 9 142 | $DIMDLE 143 | 40 144 | 0.0 145 | 9 146 | $DIMEXE 147 | 40 148 | 0.125 149 | 9 150 | $DIMTP 151 | 40 152 | 0.0 153 | 9 154 | $DIMTM 155 | 40 156 | 0.0 157 | 9 158 | $DIMTXT 159 | 40 160 | 0.125 161 | 9 162 | $DIMCEN 163 | 40 164 | 0.09 165 | 9 166 | $DIMTSZ 167 | 40 168 | 0.0 169 | 9 170 | $DIMTOL 171 | 70 172 | 0 173 | 9 174 | $DIMLIM 175 | 70 176 | 0 177 | 9 178 | $DIMTIH 179 | 70 180 | 1 181 | 9 182 | $DIMTOH 183 | 70 184 | 1 185 | 9 186 | $DIMSE1 187 | 70 188 | 0 189 | 9 190 | $DIMSE2 191 | 70 192 | 0 193 | 9 194 | $DIMTAD 195 | 70 196 | 0 197 | 9 198 | $DIMZIN 199 | 70 200 | 0 201 | 9 202 | $DIMBLK 203 | 1 204 | 205 | 9 206 | $DIMASO 207 | 70 208 | 1 209 | 9 210 | $DIMSHO 211 | 70 212 | 1 213 | 9 214 | $DIMPOST 215 | 1 216 | 217 | 9 218 | $DIMAPOST 219 | 1 220 | 221 | 9 222 | $DIMALT 223 | 70 224 | 0 225 | 9 226 | $DIMALTD 227 | 70 228 | 2 229 | 9 230 | $DIMALTF 231 | 40 232 | 25.4 233 | 9 234 | $DIMLFAC 235 | 40 236 | 2.0 237 | 9 238 | $DIMTOFL 239 | 70 240 | 0 241 | 9 242 | $DIMTVP 243 | 40 244 | 0.0 245 | 9 246 | $DIMTIX 247 | 70 248 | 0 249 | 9 250 | $DIMSOXD 251 | 70 252 | 0 253 | 9 254 | $DIMSAH 255 | 70 256 | 0 257 | 9 258 | $DIMBLK1 259 | 1 260 | 261 | 9 262 | $DIMBLK2 263 | 1 264 | 265 | 9 266 | $DIMSTYLE 267 | 2 268 | STANDARD 269 | 9 270 | $DIMCLRD 271 | 70 272 | 0 273 | 9 274 | $DIMCLRE 275 | 70 276 | 0 277 | 9 278 | $DIMCLRT 279 | 70 280 | 0 281 | 9 282 | $DIMTFAC 283 | 40 284 | 1.0 285 | 9 286 | $DIMGAP 287 | 40 288 | 0.06 289 | 9 290 | $DIMJUST 291 | 70 292 | 0 293 | 9 294 | $DIMSD1 295 | 70 296 | 0 297 | 9 298 | $DIMSD2 299 | 70 300 | 0 301 | 9 302 | $DIMTOLJ 303 | 70 304 | 1 305 | 9 306 | $DIMTZIN 307 | 70 308 | 0 309 | 9 310 | $DIMALTZ 311 | 70 312 | 0 313 | 9 314 | $DIMALTTZ 315 | 70 316 | 0 317 | 9 318 | $DIMFIT 319 | 70 320 | 3 321 | 9 322 | $DIMUPT 323 | 70 324 | 0 325 | 9 326 | $DIMUNIT 327 | 70 328 | 2 329 | 9 330 | $DIMDEC 331 | 70 332 | 2 333 | 9 334 | $DIMTDEC 335 | 70 336 | 2 337 | 9 338 | $DIMALTU 339 | 70 340 | 2 341 | 9 342 | $DIMALTTD 343 | 70 344 | 2 345 | 9 346 | $DIMTXSTY 347 | 7 348 | STANDARD 349 | 9 350 | $DIMAUNIT 351 | 70 352 | 0 353 | 9 354 | $LUNITS 355 | 70 356 | 2 357 | 9 358 | $LUPREC 359 | 70 360 | 2 361 | 9 362 | $SKETCHINC 363 | 40 364 | 0.1 365 | 9 366 | $FILLETRAD 367 | 40 368 | 0.5 369 | 9 370 | $AUNITS 371 | 70 372 | 0 373 | 9 374 | $AUPREC 375 | 70 376 | 2 377 | 9 378 | $MENU 379 | 1 380 | . 381 | 9 382 | $ELEVATION 383 | 40 384 | 0.0 385 | 9 386 | $PELEVATION 387 | 40 388 | 0.0 389 | 9 390 | $THICKNESS 391 | 40 392 | 0.0 393 | 9 394 | $LIMCHECK 395 | 70 396 | 0 397 | 9 398 | $CHAMFERA 399 | 40 400 | 0.5 401 | 9 402 | $CHAMFERB 403 | 40 404 | 0.5 405 | 9 406 | $CHAMFERC 407 | 40 408 | 1.0 409 | 9 410 | $CHAMFERD 411 | 40 412 | 0.0 413 | 9 414 | $SKPOLY 415 | 70 416 | 0 417 | 9 418 | $TDCREATE 419 | 40 420 | 2457232.193557627 421 | 9 422 | $TDUPDATE 423 | 40 424 | 2457232.193557697 425 | 9 426 | $TDINDWG 427 | 40 428 | 0.0000000116 429 | 9 430 | $TDUSRTIMER 431 | 40 432 | 0.0000000116 433 | 9 434 | $USRTIMER 435 | 70 436 | 1 437 | 9 438 | $ANGBASE 439 | 50 440 | 0.0 441 | 9 442 | $ANGDIR 443 | 70 444 | 0 445 | 9 446 | $PDMODE 447 | 70 448 | 0 449 | 9 450 | $PDSIZE 451 | 40 452 | -1.0 453 | 9 454 | $PLINEWID 455 | 40 456 | 0.0 457 | 9 458 | $COORDS 459 | 70 460 | 1 461 | 9 462 | $SPLFRAME 463 | 70 464 | 0 465 | 9 466 | $SPLINETYPE 467 | 70 468 | 6 469 | 9 470 | $SPLINESEGS 471 | 70 472 | 8 473 | 9 474 | $ATTDIA 475 | 70 476 | 0 477 | 9 478 | $ATTREQ 479 | 70 480 | 1 481 | 9 482 | $HANDLING 483 | 70 484 | 1 485 | 9 486 | $HANDSEED 487 | 5 488 | 74 489 | 9 490 | $SURFTAB1 491 | 70 492 | 6 493 | 9 494 | $SURFTAB2 495 | 70 496 | 6 497 | 9 498 | $SURFTYPE 499 | 70 500 | 6 501 | 9 502 | $SURFU 503 | 70 504 | 6 505 | 9 506 | $SURFV 507 | 70 508 | 6 509 | 9 510 | $UCSNAME 511 | 2 512 | 513 | 9 514 | $UCSORG 515 | 10 516 | 0.0 517 | 20 518 | 0.0 519 | 30 520 | 0.0 521 | 9 522 | $UCSXDIR 523 | 10 524 | 1.0 525 | 20 526 | 0.0 527 | 30 528 | 0.0 529 | 9 530 | $UCSYDIR 531 | 10 532 | 0.0 533 | 20 534 | 1.0 535 | 30 536 | 0.0 537 | 9 538 | $PUCSNAME 539 | 2 540 | 541 | 9 542 | $PUCSORG 543 | 10 544 | 0.0 545 | 20 546 | 0.0 547 | 30 548 | 0.0 549 | 9 550 | $PUCSXDIR 551 | 10 552 | 1.0 553 | 20 554 | 0.0 555 | 30 556 | 0.0 557 | 9 558 | $PUCSYDIR 559 | 10 560 | 0.0 561 | 20 562 | 1.0 563 | 30 564 | 0.0 565 | 9 566 | $USERI1 567 | 70 568 | 0 569 | 9 570 | $USERI2 571 | 70 572 | 0 573 | 9 574 | $USERI3 575 | 70 576 | 0 577 | 9 578 | $USERI4 579 | 70 580 | 0 581 | 9 582 | $USERI5 583 | 70 584 | 0 585 | 9 586 | $USERR1 587 | 40 588 | 0.0 589 | 9 590 | $USERR2 591 | 40 592 | 0.0 593 | 9 594 | $USERR3 595 | 40 596 | 0.0 597 | 9 598 | $USERR4 599 | 40 600 | 0.0 601 | 9 602 | $USERR5 603 | 40 604 | 0.0 605 | 9 606 | $WORLDVIEW 607 | 70 608 | 1 609 | 9 610 | $SHADEDGE 611 | 70 612 | 3 613 | 9 614 | $SHADEDIF 615 | 70 616 | 70 617 | 9 618 | $TILEMODE 619 | 70 620 | 1 621 | 9 622 | $MAXACTVP 623 | 70 624 | 64 625 | 9 626 | $PINSBASE 627 | 10 628 | 0.0 629 | 20 630 | 0.0 631 | 30 632 | 0.0 633 | 9 634 | $PLIMCHECK 635 | 70 636 | 0 637 | 9 638 | $PEXTMIN 639 | 10 640 | 1.0000000000E+20 641 | 20 642 | 1.0000000000E+20 643 | 30 644 | 1.0000000000E+20 645 | 9 646 | $PEXTMAX 647 | 10 648 | -1.0000000000E+20 649 | 20 650 | -1.0000000000E+20 651 | 30 652 | -1.0000000000E+20 653 | 9 654 | $PLIMMIN 655 | 10 656 | 0.0 657 | 20 658 | 0.0 659 | 9 660 | $PLIMMAX 661 | 10 662 | 12.0 663 | 20 664 | 9.0 665 | 9 666 | $UNITMODE 667 | 70 668 | 0 669 | 9 670 | $VISRETAIN 671 | 70 672 | 1 673 | 9 674 | $PLINEGEN 675 | 70 676 | 0 677 | 9 678 | $PSLTSCALE 679 | 70 680 | 1 681 | 9 682 | $TREEDEPTH 683 | 70 684 | 3020 685 | 9 686 | $PICKSTYLE 687 | 70 688 | 1 689 | 9 690 | $CMLSTYLE 691 | 2 692 | STANDARD 693 | 9 694 | $CMLJUST 695 | 70 696 | 0 697 | 9 698 | $CMLSCALE 699 | 40 700 | 1.0 701 | 9 702 | $SAVEIMAGES 703 | 70 704 | 1 705 | 0 706 | ENDSEC 707 | 0 708 | SECTION 709 | 2 710 | CLASSES 711 | 0 712 | CLASS 713 | 1 714 | ACDBDICTIONARYWDFLT 715 | 2 716 | AcDbDictionaryWithDefault 717 | 3 718 | ObjectDBX Classes 719 | 90 720 | 32768 721 | 280 722 | 0 723 | 281 724 | 0 725 | 0 726 | CLASS 727 | 1 728 | VISUALSTYLE 729 | 2 730 | AcDbVisualStyle 731 | 3 732 | ObjectDBX Classes 733 | 90 734 | 4095 735 | 280 736 | 0 737 | 281 738 | 0 739 | 0 740 | CLASS 741 | 1 742 | MATERIAL 743 | 2 744 | AcDbMaterial 745 | 3 746 | ObjectDBX Classes 747 | 90 748 | 1153 749 | 280 750 | 0 751 | 281 752 | 0 753 | 0 754 | CLASS 755 | 1 756 | XRECORD 757 | 2 758 | AcDbXrecord 759 | 3 760 | AutoCAD 2000 761 | 90 762 | 32768 763 | 280 764 | 0 765 | 281 766 | 0 767 | 0 768 | ENDSEC 769 | 0 770 | SECTION 771 | 2 772 | TABLES 773 | 0 774 | TABLE 775 | 2 776 | VPORT 777 | 5 778 | 8 779 | 330 780 | 0 781 | 100 782 | AcDbSymbolTable 783 | 70 784 | 1 785 | 0 786 | VPORT 787 | 5 788 | 29 789 | 330 790 | 8 791 | 100 792 | AcDbSymbolTableRecord 793 | 100 794 | AcDbViewportTableRecord 795 | 2 796 | *ACTIVE 797 | 70 798 | 0 799 | 10 800 | 0.0 801 | 20 802 | 0.0 803 | 11 804 | 1.0 805 | 21 806 | 1.0 807 | 12 808 | 8.5 809 | 22 810 | 5.5 811 | 13 812 | 0.0 813 | 23 814 | 0.0 815 | 14 816 | 0.5 817 | 24 818 | 0.5 819 | 15 820 | 0.5 821 | 25 822 | 0.5 823 | 16 824 | 0.0 825 | 26 826 | 0.0 827 | 36 828 | 1.0 829 | 17 830 | 0.0 831 | 27 832 | 0.0 833 | 37 834 | 0.0 835 | 40 836 | 11.0 837 | 41 838 | 1.5454545455 839 | 42 840 | 50.0 841 | 43 842 | 0.0 843 | 44 844 | 0.0 845 | 50 846 | 0.0 847 | 51 848 | 0.0 849 | 71 850 | 0 851 | 72 852 | 2000 853 | 73 854 | 1 855 | 74 856 | 3 857 | 75 858 | 0 859 | 76 860 | 0 861 | 77 862 | 0 863 | 78 864 | 0 865 | 0 866 | ENDTAB 867 | 0 868 | TABLE 869 | 2 870 | LTYPE 871 | 5 872 | 5 873 | 330 874 | 0 875 | 100 876 | AcDbSymbolTable 877 | 70 878 | 8 879 | 0 880 | LTYPE 881 | 5 882 | 14 883 | 330 884 | 5 885 | 100 886 | AcDbSymbolTableRecord 887 | 100 888 | AcDbLinetypeTableRecord 889 | 2 890 | BYBLOCK 891 | 70 892 | 0 893 | 3 894 | 895 | 72 896 | 65 897 | 73 898 | 0 899 | 40 900 | 0.0 901 | 0 902 | LTYPE 903 | 5 904 | 15 905 | 330 906 | 5 907 | 100 908 | AcDbSymbolTableRecord 909 | 100 910 | AcDbLinetypeTableRecord 911 | 2 912 | BYLAYER 913 | 70 914 | 0 915 | 3 916 | 917 | 72 918 | 65 919 | 73 920 | 0 921 | 40 922 | 0.0 923 | 0 924 | LTYPE 925 | 5 926 | 16 927 | 330 928 | 5 929 | 100 930 | AcDbSymbolTableRecord 931 | 100 932 | AcDbLinetypeTableRecord 933 | 2 934 | CONTINUOUS 935 | 70 936 | 0 937 | 3 938 | Solid line 939 | 72 940 | 65 941 | 73 942 | 0 943 | 40 944 | 0.0 945 | 0 946 | LTYPE 947 | 5 948 | 3F 949 | 330 950 | 5 951 | 100 952 | AcDbSymbolTableRecord 953 | 100 954 | AcDbLinetypeTableRecord 955 | 2 956 | SLD-SOLID 957 | 70 958 | 0 959 | 3 960 | SolidWorks Line Style 961 | 72 962 | 65 963 | 73 964 | 0 965 | 40 966 | 0.0 967 | 0 968 | LTYPE 969 | 5 970 | 40 971 | 330 972 | 5 973 | 100 974 | AcDbSymbolTableRecord 975 | 100 976 | AcDbLinetypeTableRecord 977 | 2 978 | SLD-DASHED 979 | 70 980 | 0 981 | 3 982 | SolidWorks Line Style 983 | 72 984 | 65 985 | 73 986 | 2 987 | 40 988 | 0.075 989 | 49 990 | 0.05 991 | 74 992 | 0 993 | 49 994 | -0.025 995 | 74 996 | 0 997 | 0 998 | LTYPE 999 | 5 1000 | 41 1001 | 330 1002 | 5 1003 | 100 1004 | AcDbSymbolTableRecord 1005 | 100 1006 | AcDbLinetypeTableRecord 1007 | 2 1008 | SLD-PHANTOM 1009 | 70 1010 | 0 1011 | 3 1012 | SolidWorks Line Style 1013 | 72 1014 | 65 1015 | 73 1016 | 6 1017 | 40 1018 | 0.5 1019 | 49 1020 | 0.25 1021 | 74 1022 | 0 1023 | 49 1024 | -0.05 1025 | 74 1026 | 0 1027 | 49 1028 | 0.05 1029 | 74 1030 | 0 1031 | 49 1032 | -0.05 1033 | 74 1034 | 0 1035 | 49 1036 | 0.05 1037 | 74 1038 | 0 1039 | 49 1040 | -0.05 1041 | 74 1042 | 0 1043 | 0 1044 | LTYPE 1045 | 5 1046 | 42 1047 | 330 1048 | 5 1049 | 100 1050 | AcDbSymbolTableRecord 1051 | 100 1052 | AcDbLinetypeTableRecord 1053 | 2 1054 | SLD-CHAIN 1055 | 70 1056 | 0 1057 | 3 1058 | SolidWorks Line Style 1059 | 72 1060 | 65 1061 | 73 1062 | 4 1063 | 40 1064 | 0.4 1065 | 49 1066 | 0.25 1067 | 74 1068 | 0 1069 | 49 1070 | -0.05 1071 | 74 1072 | 0 1073 | 49 1074 | 0.05 1075 | 74 1076 | 0 1077 | 49 1078 | -0.05 1079 | 74 1080 | 0 1081 | 0 1082 | LTYPE 1083 | 5 1084 | 43 1085 | 330 1086 | 5 1087 | 100 1088 | AcDbSymbolTableRecord 1089 | 100 1090 | AcDbLinetypeTableRecord 1091 | 2 1092 | SLD-CENTER 1093 | 70 1094 | 0 1095 | 3 1096 | SolidWorks Line Style 1097 | 72 1098 | 65 1099 | 73 1100 | 4 1101 | 40 1102 | 0.75 1103 | 49 1104 | 0.6 1105 | 74 1106 | 0 1107 | 49 1108 | -0.05 1109 | 74 1110 | 0 1111 | 49 1112 | 0.05 1113 | 74 1114 | 0 1115 | 49 1116 | -0.05 1117 | 74 1118 | 0 1119 | 0 1120 | LTYPE 1121 | 5 1122 | 44 1123 | 330 1124 | 5 1125 | 100 1126 | AcDbSymbolTableRecord 1127 | 100 1128 | AcDbLinetypeTableRecord 1129 | 2 1130 | SLD-STITCH 1131 | 70 1132 | 0 1133 | 3 1134 | SolidWorks Line Style 1135 | 72 1136 | 65 1137 | 73 1138 | 2 1139 | 40 1140 | 0.025 1141 | 49 1142 | 0.0 1143 | 74 1144 | 0 1145 | 49 1146 | -0.025 1147 | 74 1148 | 0 1149 | 0 1150 | LTYPE 1151 | 5 1152 | 45 1153 | 330 1154 | 5 1155 | 100 1156 | AcDbSymbolTableRecord 1157 | 100 1158 | AcDbLinetypeTableRecord 1159 | 2 1160 | SLD-THIN-THICK-CHAIN 1161 | 70 1162 | 0 1163 | 3 1164 | SolidWorks Line Style 1165 | 72 1166 | 65 1167 | 73 1168 | 4 1169 | 40 1170 | 0.4 1171 | 49 1172 | 0.25 1173 | 74 1174 | 0 1175 | 49 1176 | -0.05 1177 | 74 1178 | 0 1179 | 49 1180 | 0.05 1181 | 74 1182 | 0 1183 | 49 1184 | -0.05 1185 | 74 1186 | 0 1187 | 0 1188 | ENDTAB 1189 | 0 1190 | TABLE 1191 | 2 1192 | LAYER 1193 | 5 1194 | 2 1195 | 330 1196 | 0 1197 | 100 1198 | AcDbSymbolTable 1199 | 70 1200 | 2 1201 | 0 1202 | LAYER 1203 | 5 1204 | 10 1205 | 330 1206 | 2 1207 | 100 1208 | AcDbSymbolTableRecord 1209 | 100 1210 | AcDbLayerTableRecord 1211 | 2 1212 | 0 1213 | 70 1214 | 0 1215 | 62 1216 | 7 1217 | 6 1218 | CONTINUOUS 1219 | 0 1220 | LAYER 1221 | 5 1222 | 46 1223 | 330 1224 | 2 1225 | 100 1226 | AcDbSymbolTableRecord 1227 | 100 1228 | AcDbLayerTableRecord 1229 | 2 1230 | FORMAT 1231 | 70 1232 | 0 1233 | 62 1234 | 7 1235 | 6 1236 | SLD-SOLID 1237 | 0 1238 | ENDTAB 1239 | 0 1240 | TABLE 1241 | 2 1242 | STYLE 1243 | 5 1244 | 3 1245 | 330 1246 | 0 1247 | 100 1248 | AcDbSymbolTable 1249 | 70 1250 | 1 1251 | 0 1252 | STYLE 1253 | 5 1254 | 11 1255 | 330 1256 | 3 1257 | 100 1258 | AcDbSymbolTableRecord 1259 | 100 1260 | AcDbTextStyleTableRecord 1261 | 2 1262 | STANDARD 1263 | 70 1264 | 0 1265 | 40 1266 | 0.0 1267 | 41 1268 | 1.0 1269 | 50 1270 | 0.0 1271 | 71 1272 | 0 1273 | 42 1274 | 0.125 1275 | 3 1276 | txt 1277 | 4 1278 | 1279 | 0 1280 | ENDTAB 1281 | 0 1282 | TABLE 1283 | 2 1284 | VIEW 1285 | 5 1286 | 6 1287 | 330 1288 | 0 1289 | 100 1290 | AcDbSymbolTable 1291 | 70 1292 | 0 1293 | 0 1294 | ENDTAB 1295 | 0 1296 | TABLE 1297 | 2 1298 | UCS 1299 | 5 1300 | 7 1301 | 330 1302 | 0 1303 | 100 1304 | AcDbSymbolTable 1305 | 70 1306 | 0 1307 | 0 1308 | ENDTAB 1309 | 0 1310 | TABLE 1311 | 2 1312 | APPID 1313 | 5 1314 | 9 1315 | 330 1316 | 0 1317 | 100 1318 | AcDbSymbolTable 1319 | 70 1320 | 1 1321 | 0 1322 | APPID 1323 | 5 1324 | 12 1325 | 330 1326 | 9 1327 | 100 1328 | AcDbSymbolTableRecord 1329 | 100 1330 | AcDbRegAppTableRecord 1331 | 2 1332 | ACAD 1333 | 70 1334 | 0 1335 | 0 1336 | ENDTAB 1337 | 0 1338 | TABLE 1339 | 2 1340 | DIMSTYLE 1341 | 5 1342 | A 1343 | 330 1344 | 0 1345 | 100 1346 | AcDbSymbolTable 1347 | 70 1348 | 1 1349 | 0 1350 | DIMSTYLE 1351 | 105 1352 | 27 1353 | 330 1354 | A 1355 | 100 1356 | AcDbSymbolTableRecord 1357 | 100 1358 | AcDbDimStyleTableRecord 1359 | 2 1360 | STANDARD 1361 | 70 1362 | 0 1363 | 3 1364 | 1365 | 4 1366 | 1367 | 5 1368 | 1369 | 6 1370 | 1371 | 7 1372 | 1373 | 40 1374 | 1.0 1375 | 41 1376 | 0.18 1377 | 42 1378 | 0.0625 1379 | 43 1380 | 0.38 1381 | 44 1382 | 0.18 1383 | 45 1384 | 0.0 1385 | 46 1386 | 0.0 1387 | 47 1388 | 0.0 1389 | 48 1390 | 0.0 1391 | 140 1392 | 0.18 1393 | 141 1394 | 0.09 1395 | 142 1396 | 0.0 1397 | 143 1398 | 25.4 1399 | 144 1400 | 1.0 1401 | 145 1402 | 0.0 1403 | 146 1404 | 1.0 1405 | 147 1406 | 0.09 1407 | 71 1408 | 0 1409 | 72 1410 | 0 1411 | 73 1412 | 1 1413 | 74 1414 | 1 1415 | 75 1416 | 0 1417 | 76 1418 | 0 1419 | 77 1420 | 0 1421 | 78 1422 | 0 1423 | 170 1424 | 0 1425 | 171 1426 | 2 1427 | 172 1428 | 0 1429 | 173 1430 | 0 1431 | 174 1432 | 0 1433 | 175 1434 | 0 1435 | 176 1436 | 0 1437 | 177 1438 | 0 1439 | 178 1440 | 0 1441 | 270 1442 | 2 1443 | 271 1444 | 4 1445 | 272 1446 | 4 1447 | 273 1448 | 2 1449 | 274 1450 | 2 1451 | 340 1452 | 11 1453 | 275 1454 | 0 1455 | 280 1456 | 0 1457 | 281 1458 | 0 1459 | 282 1460 | 0 1461 | 283 1462 | 1 1463 | 284 1464 | 0 1465 | 285 1466 | 0 1467 | 286 1468 | 0 1469 | 287 1470 | 3 1471 | 288 1472 | 0 1473 | 0 1474 | ENDTAB 1475 | 0 1476 | TABLE 1477 | 2 1478 | BLOCK_RECORD 1479 | 5 1480 | 1 1481 | 330 1482 | 0 1483 | 100 1484 | AcDbSymbolTable 1485 | 70 1486 | 1 1487 | 0 1488 | BLOCK_RECORD 1489 | 5 1490 | 1F 1491 | 330 1492 | 1 1493 | 100 1494 | AcDbSymbolTableRecord 1495 | 100 1496 | AcDbBlockTableRecord 1497 | 2 1498 | *MODEL_SPACE 1499 | 0 1500 | BLOCK_RECORD 1501 | 5 1502 | 1B 1503 | 330 1504 | 1 1505 | 100 1506 | AcDbSymbolTableRecord 1507 | 100 1508 | AcDbBlockTableRecord 1509 | 2 1510 | *PAPER_SPACE 1511 | 0 1512 | BLOCK_RECORD 1513 | 5 1514 | 23 1515 | 330 1516 | 1 1517 | 100 1518 | AcDbSymbolTableRecord 1519 | 100 1520 | AcDbBlockTableRecord 1521 | 2 1522 | *PAPER_SPACE0 1523 | 0 1524 | ENDTAB 1525 | 0 1526 | ENDSEC 1527 | 0 1528 | SECTION 1529 | 2 1530 | BLOCKS 1531 | 0 1532 | BLOCK 1533 | 5 1534 | 20 1535 | 330 1536 | 1F 1537 | 100 1538 | AcDbEntity 1539 | 8 1540 | 0 1541 | 100 1542 | AcDbBlockBegin 1543 | 2 1544 | *MODEL_SPACE 1545 | 70 1546 | 0 1547 | 10 1548 | 0.0 1549 | 20 1550 | 0.0 1551 | 30 1552 | 0.0 1553 | 3 1554 | *MODEL_SPACE 1555 | 1 1556 | 1557 | 0 1558 | ENDBLK 1559 | 5 1560 | 21 1561 | 330 1562 | 1F 1563 | 100 1564 | AcDbEntity 1565 | 8 1566 | 0 1567 | 100 1568 | AcDbBlockEnd 1569 | 0 1570 | BLOCK 1571 | 5 1572 | 1C 1573 | 330 1574 | 1B 1575 | 100 1576 | AcDbEntity 1577 | 67 1578 | 1 1579 | 8 1580 | 0 1581 | 100 1582 | AcDbBlockBegin 1583 | 2 1584 | *PAPER_SPACE 1585 | 70 1586 | 0 1587 | 10 1588 | 0.0 1589 | 20 1590 | 0.0 1591 | 30 1592 | 0.0 1593 | 3 1594 | *PAPER_SPACE 1595 | 1 1596 | 1597 | 0 1598 | ENDBLK 1599 | 5 1600 | 1D 1601 | 330 1602 | 1B 1603 | 100 1604 | AcDbEntity 1605 | 67 1606 | 1 1607 | 8 1608 | 0 1609 | 100 1610 | AcDbBlockEnd 1611 | 0 1612 | BLOCK 1613 | 5 1614 | 24 1615 | 330 1616 | 23 1617 | 100 1618 | AcDbEntity 1619 | 8 1620 | 0 1621 | 100 1622 | AcDbBlockBegin 1623 | 2 1624 | *PAPER_SPACE0 1625 | 70 1626 | 0 1627 | 10 1628 | 0.0 1629 | 20 1630 | 0.0 1631 | 30 1632 | 0.0 1633 | 3 1634 | *PAPER_SPACE0 1635 | 1 1636 | 1637 | 0 1638 | ENDBLK 1639 | 5 1640 | 25 1641 | 330 1642 | 23 1643 | 100 1644 | AcDbEntity 1645 | 8 1646 | 0 1647 | 100 1648 | AcDbBlockEnd 1649 | 0 1650 | ENDSEC 1651 | 0 1652 | SECTION 1653 | 2 1654 | ENTITIES 1655 | 0 1656 | LINE 1657 | 5 1658 | 47 1659 | 330 1660 | 1F 1661 | 100 1662 | AcDbEntity 1663 | 8 1664 | 0 1665 | 6 1666 | SLD-SOLID 1667 | 62 1668 | 7 1669 | 100 1670 | AcDbLine 1671 | 10 1672 | 6.7204216342 1673 | 20 1674 | 8.3335517669 1675 | 30 1676 | 0.0 1677 | 11 1678 | 6.6454218606 1679 | 21 1680 | 8.4085518338 1681 | 31 1682 | 0.0 1683 | 0 1684 | LINE 1685 | 5 1686 | 48 1687 | 330 1688 | 1F 1689 | 100 1690 | AcDbEntity 1691 | 8 1692 | 0 1693 | 6 1694 | SLD-SOLID 1695 | 62 1696 | 7 1697 | 100 1698 | AcDbLine 1699 | 10 1700 | 8.3454419551 1701 | 20 1702 | 8.4085518338 1703 | 30 1704 | 0.0 1705 | 11 1706 | 8.2704415949 1707 | 21 1708 | 8.3335517669 1709 | 31 1710 | 0.0 1711 | 0 1712 | LINE 1713 | 5 1714 | 49 1715 | 330 1716 | 1F 1717 | 100 1718 | AcDbEntity 1719 | 8 1720 | 0 1721 | 6 1722 | SLD-SOLID 1723 | 62 1724 | 7 1725 | 100 1726 | AcDbLine 1727 | 10 1728 | 8.3916420081 1729 | 20 1730 | 8.4085518338 1731 | 30 1732 | 0.0 1733 | 11 1734 | 8.3454419551 1735 | 21 1736 | 8.4085518338 1737 | 31 1738 | 0.0 1739 | 0 1740 | CIRCLE 1741 | 5 1742 | 4A 1743 | 330 1744 | 1F 1745 | 100 1746 | AcDbEntity 1747 | 8 1748 | 0 1749 | 6 1750 | SLD-SOLID 1751 | 62 1752 | 7 1753 | 100 1754 | AcDbCircle 1755 | 10 1756 | 8.6428239052 1757 | 20 1758 | 3.8035320051 1759 | 30 1760 | 0.0 1761 | 40 1762 | 0.0884999999999998 1763 | 0 1764 | CIRCLE 1765 | 5 1766 | 4B 1767 | 330 1768 | 1F 1769 | 100 1770 | AcDbEntity 1771 | 8 1772 | 0 1773 | 6 1774 | SLD-SOLID 1775 | 62 1776 | 7 1777 | 100 1778 | AcDbCircle 1779 | 10 1780 | 5.9905666008 1781 | 20 1782 | 5.4121300597 1783 | 30 1784 | 0.0 1785 | 40 1786 | 0.088499999999998 1787 | 0 1788 | CIRCLE 1789 | 5 1790 | 4C 1791 | 330 1792 | 1F 1793 | 100 1794 | AcDbEntity 1795 | 8 1796 | 0 1797 | 6 1798 | SLD-SOLID 1799 | 62 1800 | 7 1801 | 100 1802 | AcDbCircle 1803 | 10 1804 | 4.4401091707 1805 | 20 1806 | 4.6299302124 1807 | 30 1808 | 0.0 1809 | 40 1810 | 0.0884999999999989 1811 | 0 1812 | CIRCLE 1813 | 5 1814 | 4D 1815 | 330 1816 | 1F 1817 | 100 1818 | AcDbEntity 1819 | 8 1820 | 0 1821 | 6 1822 | SLD-SOLID 1823 | 62 1824 | 7 1825 | 100 1826 | AcDbCircle 1827 | 10 1828 | 5.5076845506 1829 | 20 1830 | 2.3411695697 1831 | 30 1832 | 0.0 1833 | 40 1834 | 0.0884999999999989 1835 | 0 1836 | CIRCLE 1837 | 5 1838 | 4E 1839 | 330 1840 | 1F 1841 | 100 1842 | AcDbEntity 1843 | 8 1844 | 0 1845 | 6 1846 | SLD-SOLID 1847 | 62 1848 | 7 1849 | 100 1850 | AcDbCircle 1851 | 10 1852 | 11.7704418476 1853 | 20 1854 | 3.8535320051 1855 | 30 1856 | 0.0 1857 | 40 1858 | 0.0884999999999998 1859 | 0 1860 | CIRCLE 1861 | 5 1862 | 4F 1863 | 330 1864 | 1F 1865 | 100 1866 | AcDbEntity 1867 | 8 1868 | 0 1869 | 6 1870 | SLD-SOLID 1871 | 62 1872 | 7 1873 | 100 1874 | AcDbCircle 1875 | 10 1876 | 11.8297529087 1877 | 20 1878 | 8.6538469658 1879 | 30 1880 | 0.0 1881 | 40 1882 | 0.088499999999998 1883 | 0 1884 | CIRCLE 1885 | 5 1886 | 50 1887 | 330 1888 | 1F 1889 | 100 1890 | AcDbEntity 1891 | 8 1892 | 0 1893 | 6 1894 | SLD-SOLID 1895 | 62 1896 | 7 1897 | 100 1898 | AcDbCircle 1899 | 10 1900 | 9.7648316488 1901 | 20 1902 | 8.6588469658 1903 | 30 1904 | 0.0 1905 | 40 1906 | 0.0885000000000016 1907 | 0 1908 | CIRCLE 1909 | 5 1910 | 51 1911 | 330 1912 | 1F 1913 | 100 1914 | AcDbEntity 1915 | 8 1916 | 0 1917 | 6 1918 | SLD-SOLID 1919 | 62 1920 | 7 1921 | 100 1922 | AcDbCircle 1923 | 10 1924 | 8.4054221569 1925 | 20 1926 | 8.2210516951 1927 | 30 1928 | 0.0 1929 | 40 1930 | 0.0884999999999998 1931 | 0 1932 | CIRCLE 1933 | 5 1934 | 52 1935 | 330 1936 | 1F 1937 | 100 1938 | AcDbEntity 1939 | 8 1940 | 0 1941 | 6 1942 | SLD-SOLID 1943 | 62 1944 | 7 1945 | 100 1946 | AcDbCircle 1947 | 10 1948 | 6.1304221569 1949 | 20 1950 | 8.1835516951 1951 | 30 1952 | 0.0 1953 | 40 1954 | 0.0884999999999989 1955 | 0 1956 | LINE 1957 | 5 1958 | 53 1959 | 330 1960 | 1F 1961 | 100 1962 | AcDbEntity 1963 | 8 1964 | 0 1965 | 6 1966 | SLD-SOLID 1967 | 62 1968 | 7 1969 | 100 1970 | AcDbLine 1971 | 10 1972 | 8.2704415949 1973 | 20 1974 | 8.3335517669 1975 | 30 1976 | 0.0 1977 | 11 1978 | 8.2704415949 1979 | 21 1980 | 8.0735517304 1981 | 31 1982 | 0.0 1983 | 0 1984 | LINE 1985 | 5 1986 | 54 1987 | 330 1988 | 1F 1989 | 100 1990 | AcDbEntity 1991 | 8 1992 | 0 1993 | 6 1994 | SLD-SOLID 1995 | 62 1996 | 7 1997 | 100 1998 | AcDbLine 1999 | 10 2000 | 8.2704415949 2001 | 20 2002 | 8.0735517304 2003 | 30 2004 | 0.0 2005 | 11 2006 | 9.7404417333 2007 | 21 2008 | 8.0735517304 2009 | 31 2010 | 0.0 2011 | 0 2012 | LINE 2013 | 5 2014 | 55 2015 | 330 2016 | 1F 2017 | 100 2018 | AcDbEntity 2019 | 8 2020 | 0 2021 | 6 2022 | SLD-SOLID 2023 | 62 2024 | 7 2025 | 100 2026 | AcDbLine 2027 | 10 2028 | 9.7404417333 2029 | 20 2030 | 8.0735517304 2031 | 30 2032 | 0.0 2033 | 11 2034 | 9.7404417333 2035 | 21 2036 | 8.2735517133 2037 | 31 2038 | 0.0 2039 | 0 2040 | LINE 2041 | 5 2042 | 56 2043 | 330 2044 | 1F 2045 | 100 2046 | AcDbEntity 2047 | 8 2048 | 0 2049 | 6 2050 | SLD-SOLID 2051 | 62 2052 | 7 2053 | 100 2054 | AcDbLine 2055 | 10 2056 | 9.7404417333 2057 | 20 2058 | 8.2735517133 2059 | 30 2060 | 0.0 2061 | 11 2062 | 9.9423319344 2063 | 21 2064 | 8.2735517133 2065 | 31 2066 | 0.0 2067 | 0 2068 | LINE 2069 | 5 2070 | 57 2071 | 330 2072 | 1F 2073 | 100 2074 | AcDbEntity 2075 | 8 2076 | 0 2077 | 6 2078 | SLD-SOLID 2079 | 62 2080 | 7 2081 | 100 2082 | AcDbLine 2083 | 10 2084 | 9.9423319344 2085 | 20 2086 | 8.2735517133 2087 | 30 2088 | 0.0 2089 | 11 2090 | 9.9423319344 2091 | 21 2092 | 8.7938468762 2093 | 31 2094 | 0.0 2095 | 0 2096 | LINE 2097 | 5 2098 | 58 2099 | 330 2100 | 1F 2101 | 100 2102 | AcDbEntity 2103 | 8 2104 | 0 2105 | 6 2106 | SLD-SOLID 2107 | 62 2108 | 7 2109 | 100 2110 | AcDbLine 2111 | 10 2112 | 9.9423319344 2113 | 20 2114 | 8.7938468762 2115 | 30 2116 | 0.0 2117 | 11 2118 | 11.6354417621 2119 | 21 2120 | 8.7938468762 2121 | 31 2122 | 0.0 2123 | 0 2124 | LINE 2125 | 5 2126 | 59 2127 | 330 2128 | 1F 2129 | 100 2130 | AcDbEntity 2131 | 8 2132 | 0 2133 | 6 2134 | SLD-SOLID 2135 | 62 2136 | 7 2137 | 100 2138 | AcDbLine 2139 | 10 2140 | 11.6354417621 2141 | 20 2142 | 3.9885320009 2143 | 30 2144 | 0.0 2145 | 11 2146 | 11.6354417621 2147 | 21 2148 | 8.7938468762 2149 | 31 2150 | 0.0 2151 | 0 2152 | LINE 2153 | 5 2154 | 5A 2155 | 330 2156 | 1F 2157 | 100 2158 | AcDbEntity 2159 | 8 2160 | 0 2161 | 6 2162 | SLD-SOLID 2163 | 62 2164 | 7 2165 | 100 2166 | AcDbLine 2167 | 10 2168 | 8.6017994203 2169 | 20 2170 | 3.9885320009 2171 | 30 2172 | 0.0 2173 | 11 2174 | 11.6354417621 2175 | 21 2176 | 3.9885320009 2177 | 31 2178 | 0.0 2179 | 0 2180 | LINE 2181 | 5 2182 | 5B 2183 | 330 2184 | 1F 2185 | 100 2186 | AcDbEntity 2187 | 8 2188 | 0 2189 | 6 2190 | SLD-SOLID 2191 | 62 2192 | 7 2193 | 100 2194 | AcDbLine 2195 | 10 2196 | 5.5971404237 2197 | 20 2198 | 2.5870307112 2199 | 30 2200 | 0.0 2201 | 11 2202 | 8.6017994203 2203 | 21 2204 | 3.9885320009 2205 | 31 2206 | 0.0 2207 | 0 2208 | LINE 2209 | 5 2210 | 5C 2211 | 330 2212 | 1F 2213 | 100 2214 | AcDbEntity 2215 | 8 2216 | 0 2217 | 6 2218 | SLD-SOLID 2219 | 62 2220 | 7 2221 | 100 2222 | AcDbLine 2223 | 10 2224 | 4.6859707896 2225 | 20 2226 | 4.5404748982 2227 | 30 2228 | 0.0 2229 | 11 2230 | 5.5971404237 2231 | 21 2232 | 2.5870307112 2233 | 31 2234 | 0.0 2235 | 0 2236 | LINE 2237 | 5 2238 | 5D 2239 | 330 2240 | 1F 2241 | 100 2242 | AcDbEntity 2243 | 8 2244 | 0 2245 | 6 2246 | SLD-SOLID 2247 | 62 2248 | 7 2249 | 100 2250 | AcDbLine 2251 | 10 2252 | 6.2654223037 2253 | 20 2254 | 5.2771984275 2255 | 30 2256 | 0.0 2257 | 11 2258 | 4.6859707896 2259 | 21 2260 | 4.5404748982 2261 | 31 2262 | 0.0 2263 | 0 2264 | LINE 2265 | 5 2266 | 5E 2267 | 330 2268 | 1F 2269 | 100 2270 | AcDbEntity 2271 | 8 2272 | 0 2273 | 6 2274 | SLD-SOLID 2275 | 62 2276 | 7 2277 | 100 2278 | AcDbLine 2279 | 10 2280 | 6.2654223037 2281 | 20 2282 | 7.9333002706 2283 | 30 2284 | 0.0 2285 | 11 2286 | 6.2654223037 2287 | 21 2288 | 5.2771984275 2289 | 31 2290 | 0.0 2291 | 0 2292 | LINE 2293 | 5 2294 | 5F 2295 | 330 2296 | 1F 2297 | 100 2298 | AcDbEntity 2299 | 8 2300 | 0 2301 | 6 2302 | SLD-SOLID 2303 | 62 2304 | 7 2305 | 100 2306 | AcDbLine 2307 | 10 2308 | 6.6056733064 2309 | 20 2310 | 8.2735517133 2311 | 30 2312 | 0.0 2313 | 11 2314 | 6.2654223037 2315 | 21 2316 | 7.9333002706 2317 | 31 2318 | 0.0 2319 | 0 2320 | LINE 2321 | 5 2322 | 60 2323 | 330 2324 | 1F 2325 | 100 2326 | AcDbEntity 2327 | 8 2328 | 0 2329 | 6 2330 | SLD-SOLID 2331 | 62 2332 | 7 2333 | 100 2334 | AcDbLine 2335 | 10 2336 | 6.7204216342 2337 | 20 2338 | 8.2735517133 2339 | 30 2340 | 0.0 2341 | 11 2342 | 6.6056733064 2343 | 21 2344 | 8.2735517133 2345 | 31 2346 | 0.0 2347 | 0 2348 | LINE 2349 | 5 2350 | 61 2351 | 330 2352 | 1F 2353 | 100 2354 | AcDbEntity 2355 | 8 2356 | 0 2357 | 6 2358 | SLD-SOLID 2359 | 62 2360 | 7 2361 | 100 2362 | AcDbLine 2363 | 10 2364 | 6.7204216342 2365 | 20 2366 | 8.3335517669 2367 | 30 2368 | 0.0 2369 | 11 2370 | 6.7204216342 2371 | 21 2372 | 8.2735517133 2373 | 31 2374 | 0.0 2375 | 0 2376 | LINE 2377 | 5 2378 | 62 2379 | 330 2380 | 1F 2381 | 100 2382 | AcDbEntity 2383 | 8 2384 | 0 2385 | 6 2386 | SLD-SOLID 2387 | 62 2388 | 7 2389 | 100 2390 | AcDbLine 2391 | 10 2392 | 6.6454218606 2393 | 20 2394 | 8.4085518338 2395 | 30 2396 | 0.0 2397 | 11 2398 | 6.1554224011 2399 | 21 2400 | 8.4085518338 2401 | 31 2402 | 0.0 2403 | 0 2404 | ARC 2405 | 5 2406 | 63 2407 | 330 2408 | 1F 2409 | 100 2410 | AcDbEntity 2411 | 8 2412 | 0 2413 | 6 2414 | SLD-SOLID 2415 | 62 2416 | 7 2417 | 100 2418 | AcDbCircle 2419 | 10 2420 | 6.1554221569 2421 | 20 2422 | 8.1585516951 2423 | 30 2424 | 0.0 2425 | 40 2426 | 0.2500000000000009 2427 | 100 2428 | AcDbArc 2429 | 50 2430 | 90.0 2431 | 51 2432 | 180.0 2433 | 0 2434 | LINE 2435 | 5 2436 | 64 2437 | 330 2438 | 1F 2439 | 100 2440 | AcDbEntity 2441 | 8 2442 | 0 2443 | 6 2444 | SLD-SOLID 2445 | 62 2446 | 7 2447 | 100 2448 | AcDbLine 2449 | 10 2450 | 5.9054219824 2451 | 20 2452 | 8.1585517085 2453 | 30 2454 | 0.0 2455 | 11 2456 | 5.9054219824 2457 | 21 2458 | 5.6933496396 2459 | 31 2460 | 0.0 2461 | 0 2462 | ARC 2463 | 5 2464 | 65 2465 | 330 2466 | 1F 2467 | 100 2468 | AcDbEntity 2469 | 8 2470 | 0 2471 | 6 2472 | SLD-SOLID 2473 | 62 2474 | 7 2475 | 100 2476 | AcDbCircle 2477 | 10 2478 | 5.6554221569 2479 | 20 2480 | 5.6933496389 2481 | 30 2482 | 0.0 2483 | 40 2484 | 0.2500000000000009 2485 | 100 2486 | AcDbArc 2487 | 50 2488 | 295.00634861 2489 | 51 2490 | 0.0 2491 | 0 2492 | LINE 2493 | 5 2494 | 66 2495 | 330 2496 | 1F 2497 | 100 2498 | AcDbEntity 2499 | 8 2500 | 0 2501 | 6 2502 | SLD-SOLID 2503 | 62 2504 | 7 2505 | 100 2506 | AcDbLine 2507 | 10 2508 | 5.761101303 2509 | 20 2510 | 5.466784409 2511 | 30 2512 | 0.0 2513 | 11 2514 | 4.4008787231 2515 | 21 2516 | 4.8323183201 2517 | 31 2518 | 0.0 2519 | 0 2520 | ARC 2521 | 5 2522 | 67 2523 | 330 2524 | 1F 2525 | 100 2526 | AcDbEntity 2527 | 8 2528 | 0 2529 | 6 2530 | SLD-SOLID 2531 | 62 2532 | 7 2533 | 100 2534 | AcDbCircle 2535 | 10 2536 | 4.5065581524 2537 | 20 2538 | 4.6057530988 2539 | 30 2540 | 0.0 2541 | 40 2542 | 0.2500000000000014 2543 | 100 2544 | AcDbArc 2545 | 50 2546 | 115.00634861 2547 | 51 2548 | 205.00634861 2549 | 0 2550 | LINE 2551 | 5 2552 | 68 2553 | 330 2554 | 1F 2555 | 100 2556 | AcDbEntity 2557 | 8 2558 | 0 2559 | 6 2560 | SLD-SOLID 2561 | 62 2562 | 7 2563 | 100 2564 | AcDbLine 2565 | 10 2566 | 4.2799927595 2567 | 20 2568 | 4.5000734649 2569 | 30 2570 | 0.0 2571 | 11 2572 | 5.3052959018 2573 | 21 2574 | 2.3019389379 2575 | 31 2576 | 0.0 2577 | 0 2578 | ARC 2579 | 5 2580 | 69 2581 | 330 2582 | 1F 2583 | 100 2584 | AcDbEntity 2585 | 8 2586 | 0 2587 | 6 2588 | SLD-SOLID 2589 | 62 2590 | 7 2591 | 100 2592 | AcDbCircle 2593 | 10 2594 | 5.5318616642 2595 | 20 2596 | 2.4076185515 2597 | 30 2598 | 0.0 2599 | 40 2600 | 0.249999999999999 2601 | 100 2602 | AcDbArc 2603 | 50 2604 | 205.00634861 2605 | 51 2606 | 295.00634861 2607 | 0 2608 | LINE 2609 | 5 2610 | 6A 2611 | 330 2612 | 1F 2613 | 100 2614 | AcDbEntity 2615 | 8 2616 | 0 2617 | 6 2618 | SLD-SOLID 2619 | 62 2620 | 7 2621 | 100 2622 | AcDbLine 2623 | 10 2624 | 5.6375413437 2625 | 20 2626 | 2.1810532677 2627 | 30 2628 | 0.0 2629 | 11 2630 | 8.6905299686 2631 | 21 2632 | 3.6050972571 2633 | 31 2634 | 0.0 2635 | 0 2636 | ARC 2637 | 5 2638 | 6B 2639 | 330 2640 | 1F 2641 | 100 2642 | AcDbEntity 2643 | 8 2644 | 0 2645 | 6 2646 | SLD-SOLID 2647 | 62 2648 | 7 2649 | 100 2650 | AcDbCircle 2651 | 10 2652 | 8.7962098271 2653 | 20 2654 | 3.3785320051 2655 | 30 2656 | 0.0 2657 | 40 2658 | 0.2500000000000002 2659 | 100 2660 | AcDbArc 2661 | 50 2662 | 90.0 2663 | 51 2664 | 115.00634861 2665 | 0 2666 | LINE 2667 | 5 2668 | 6C 2669 | 330 2670 | 1F 2671 | 100 2672 | AcDbEntity 2673 | 8 2674 | 0 2675 | 6 2676 | SLD-SOLID 2677 | 62 2678 | 7 2679 | 100 2680 | AcDbLine 2681 | 10 2682 | 8.7962097078 2683 | 20 2684 | 3.628531973 2685 | 30 2686 | 0.0 2687 | 11 2688 | 11.7454416647 2689 | 21 2690 | 3.628531973 2691 | 31 2692 | 0.0 2693 | 0 2694 | ARC 2695 | 5 2696 | 6D 2697 | 330 2698 | 1F 2699 | 100 2700 | AcDbEntity 2701 | 8 2702 | 0 2703 | 6 2704 | SLD-SOLID 2705 | 62 2706 | 7 2707 | 100 2708 | AcDbCircle 2709 | 10 2710 | 11.7454418476 2711 | 20 2712 | 3.8785320051 2713 | 30 2714 | 0.0 2715 | 40 2716 | 0.2500000000000018 2717 | 100 2718 | AcDbArc 2719 | 50 2720 | 270.0 2721 | 51 2722 | 0.0 2723 | 0 2724 | LINE 2725 | 5 2726 | 6E 2727 | 330 2728 | 1F 2729 | 100 2730 | AcDbEntity 2731 | 8 2732 | 0 2733 | 6 2734 | SLD-SOLID 2735 | 62 2736 | 7 2737 | 100 2738 | AcDbLine 2739 | 10 2740 | 11.9954420833 2741 | 20 2742 | 3.8785319517 2743 | 30 2744 | 0.0 2745 | 11 2746 | 11.9954420833 2747 | 21 2748 | 8.7213468604 2749 | 31 2750 | 0.0 2751 | 0 2752 | ARC 2753 | 5 2754 | 6F 2755 | 330 2756 | 1F 2757 | 100 2758 | AcDbEntity 2759 | 8 2760 | 0 2761 | 6 2762 | SLD-SOLID 2763 | 62 2764 | 7 2765 | 100 2766 | AcDbCircle 2767 | 10 2768 | 11.7454418473 2769 | 20 2770 | 8.7213469658 2771 | 30 2772 | 0.0 2773 | 40 2774 | 0.25 2775 | 100 2776 | AcDbArc 2777 | 50 2778 | 0.0 2779 | 51 2780 | 90.0 2781 | 0 2782 | LINE 2783 | 5 2784 | 70 2785 | 330 2786 | 1F 2787 | 100 2788 | AcDbEntity 2789 | 8 2790 | 0 2791 | 6 2792 | SLD-SOLID 2793 | 62 2794 | 7 2795 | 100 2796 | AcDbLine 2797 | 10 2798 | 11.7454416647 2799 | 20 2800 | 8.9713469857 2801 | 30 2802 | 0.0 2803 | 11 2804 | 9.9311026774 2805 | 21 2806 | 8.9713469857 2807 | 31 2808 | 0.0 2809 | 0 2810 | ARC 2811 | 5 2812 | 71 2813 | 330 2814 | 1F 2815 | 100 2816 | AcDbEntity 2817 | 8 2818 | 0 2819 | 6 2820 | SLD-SOLID 2821 | 62 2822 | 7 2823 | 100 2824 | AcDbCircle 2825 | 10 2826 | 9.9311026458 2827 | 20 2828 | 8.2213469658 2829 | 30 2830 | 0.0 2831 | 40 2832 | 0.75 2833 | 100 2834 | AcDbArc 2835 | 50 2836 | 90.0 2837 | 51 2838 | 115.0 2839 | 0 2840 | LINE 2841 | 5 2842 | 72 2843 | 330 2844 | 1F 2845 | 100 2846 | AcDbEntity 2847 | 8 2848 | 0 2849 | 6 2850 | SLD-SOLID 2851 | 62 2852 | 7 2853 | 100 2854 | AcDbLine 2855 | 10 2856 | 9.614139139 2857 | 20 2858 | 8.9010777441 2859 | 30 2860 | 0.0 2861 | 11 2862 | 8.7086061332 2863 | 21 2864 | 8.4788207821 2865 | 31 2866 | 0.0 2867 | 0 2868 | ARC 2869 | 5 2870 | 73 2871 | 330 2872 | 1F 2873 | 100 2874 | AcDbEntity 2875 | 8 2876 | 0 2877 | 6 2878 | SLD-SOLID 2879 | 62 2880 | 7 2881 | 100 2882 | AcDbCircle 2883 | 10 2884 | 8.3916422992 2885 | 20 2886 | 9.1585516951 2887 | 30 2888 | 0.0 2889 | 40 2890 | 0.75 2891 | 100 2892 | AcDbArc 2893 | 50 2894 | 270.0 2895 | 51 2896 | 295.0 2897 | 0 2898 | ENDSEC 2899 | 0 2900 | SECTION 2901 | 2 2902 | OBJECTS 2903 | 0 2904 | DICTIONARY 2905 | 5 2906 | C 2907 | 330 2908 | 0 2909 | 100 2910 | AcDbDictionary 2911 | 3 2912 | ACAD_GROUP 2913 | 350 2914 | D 2915 | 3 2916 | ACAD_MLINESTYLE 2917 | 350 2918 | 17 2919 | 1001 2920 | ACAD 2921 | 1000 2922 | TREAT_AS_HARD 2923 | 1070 2924 | 0 2925 | 0 2926 | DICTIONARY 2927 | 5 2928 | D 2929 | 102 2930 | {ACAD_REACTORS 2931 | 330 2932 | C 2933 | 102 2934 | } 2935 | 330 2936 | C 2937 | 100 2938 | AcDbDictionary 2939 | 1001 2940 | ACAD 2941 | 1000 2942 | TREAT_AS_HARD 2943 | 1070 2944 | 0 2945 | 0 2946 | DICTIONARY 2947 | 5 2948 | 17 2949 | 102 2950 | {ACAD_REACTORS 2951 | 330 2952 | C 2953 | 102 2954 | } 2955 | 330 2956 | C 2957 | 100 2958 | AcDbDictionary 2959 | 3 2960 | STANDARD 2961 | 350 2962 | 18 2963 | 1001 2964 | ACAD 2965 | 1000 2966 | TREAT_AS_HARD 2967 | 1070 2968 | 0 2969 | 0 2970 | MLINESTYLE 2971 | 5 2972 | 18 2973 | 102 2974 | {ACAD_REACTORS 2975 | 330 2976 | 17 2977 | 102 2978 | } 2979 | 330 2980 | 17 2981 | 100 2982 | AcDbMlineStyle 2983 | 2 2984 | Standard 2985 | 70 2986 | 0 2987 | 3 2988 | 2989 | 62 2990 | 256 2991 | 51 2992 | 90.0 2993 | 52 2994 | 90.0 2995 | 71 2996 | 2 2997 | 49 2998 | 0.5 2999 | 62 3000 | 256 3001 | 6 3002 | BYLAYER 3003 | 49 3004 | -0.5 3005 | 62 3006 | 256 3007 | 6 3008 | BYLAYER 3009 | 0 3010 | ENDSEC 3011 | 0 3012 | EOF 3013 | -------------------------------------------------------------------------------- /infinity-ergodox/rev-b/Infinity_ErgoDox_Production_REV_B.PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiibohd/case/797b7ccd049a0fdaec4530134a6911260776962d/infinity-ergodox/rev-b/Infinity_ErgoDox_Production_REV_B.PDF -------------------------------------------------------------------------------- /infinity-ergodox/rev-b/LICENSE: -------------------------------------------------------------------------------- 1 | CERN Open Hardware Licence v1.2 2 | 3 | Preamble 4 | 5 | Through this CERN Open Hardware Licence ("CERN OHL") version 1.2, CERN 6 | wishes to provide a tool to foster collaboration and sharing among 7 | hardware designers. The CERN OHL is copyright CERN. Anyone is welcome 8 | to use the CERN OHL, in unmodified form only, for the distribution of 9 | their own Open Hardware designs. Any other right is reserved. Release 10 | of hardware designs under the CERN OHL does not constitute an 11 | endorsement of the licensor or its designs nor does it imply any 12 | involvement by CERN in the development of such designs. 13 | 14 | 1. Definitions 15 | 16 | In this Licence, the following terms have the following meanings: 17 | 18 | “Licence” means this CERN OHL. 19 | 20 | “Documentation” means schematic diagrams, designs, circuit or circuit 21 | board layouts, mechanical drawings, flow charts and descriptive text, 22 | and other explanatory material that is explicitly stated as being made 23 | available under the conditions of this Licence. The Documentation may 24 | be in any medium, including but not limited to computer files and 25 | representations on paper, film, or any other media. 26 | 27 | “Documentation Location” means a location where the Licensor has 28 | placed Documentation, and which he believes will be publicly 29 | accessible for at least three years from the first communication to 30 | the public or distribution of Documentation. 31 | 32 | “Product” means either an entire, or any part of a, device built using 33 | the Documentation or the modified Documentation. 34 | 35 | “Licensee” means any natural or legal person exercising rights under 36 | this Licence. 37 | 38 | “Licensor” means any natural or legal person that creates or modifies 39 | Documentation and subsequently communicates to the public and/ or 40 | distributes the resulting Documentation under the terms and conditions 41 | of this Licence. 42 | 43 | A Licensee may at the same time be a Licensor, and vice versa. 44 | 45 | Use of the masculine gender includes the feminine and neuter genders 46 | and is employed solely to facilitate reading. 47 | 48 | 2. Applicability 49 | 50 | 2.1. This Licence governs the use, copying, modification, 51 | communication to the public and distribution of the Documentation, and 52 | the manufacture and distribution of Products. By exercising any right 53 | granted under this Licence, the Licensee irrevocably accepts these 54 | terms and conditions. 55 | 56 | 2.2. This Licence is granted by the Licensor directly to the Licensee, 57 | and shall apply worldwide and without limitation in time. The Licensee 58 | may assign his licence rights or grant sub-licences. 59 | 60 | 2.3. This Licence does not extend to software, firmware, or code 61 | loaded into programmable devices which may be used in conjunction with 62 | the Documentation, the modified Documentation or with Products, unless 63 | such software, firmware, or code is explicitly expressed to be subject 64 | to this Licence. The use of such software, firmware, or code is 65 | otherwise subject to the applicable licence terms and conditions. 66 | 67 | 3. Copying, modification, communication to the public and distribution 68 | of the Documentation 69 | 70 | 3.1. The Licensee shall keep intact all copyright and trademarks 71 | notices, all notices referring to Documentation Location, and all 72 | notices that refer to this Licence and to the disclaimer of warranties 73 | that are included in the Documentation. He shall include a copy 74 | thereof in every copy of the Documentation or, as the case may be, 75 | modified Documentation, that he communicates to the public or 76 | distributes. 77 | 78 | 3.2. The Licensee may copy, communicate to the public and distribute 79 | verbatim copies of the Documentation, in any medium, subject to the 80 | requirements specified in section 3.1. 81 | 82 | 3.3. The Licensee may modify the Documentation or any portion thereof 83 | provided that upon modification of the Documentation, the Licensee 84 | shall make the modified Documentation available from a Documentation 85 | Location such that it can be easily located by an original Licensor 86 | once the Licensee communicates to the public or distributes the 87 | modified Documentation under section 3.4, and, where required by 88 | section 4.1, by a recipient of a Product. However, the Licensor shall 89 | not assert his rights under the foregoing proviso unless or until a 90 | Product is distributed. 91 | 92 | 3.4. The Licensee may communicate to the public and distribute the 93 | modified Documentation (thereby in addition to being a Licensee also 94 | becoming a Licensor), always provided that he shall: 95 | 96 | a) comply with section 3.1; 97 | 98 | b) cause the modified Documentation to carry prominent notices stating 99 | that the Licensee has modified the Documentation, with the date and 100 | description of the modifications; 101 | 102 | c) cause the modified Documentation to carry a new Documentation 103 | Location notice if the original Documentation provided for one; 104 | 105 | d) make available the modified Documentation at the same level of 106 | abstraction as that of the Documentation, in the preferred format for 107 | making modifications to it (e.g. the native format of the CAD tool as 108 | applicable), and in the event that format is proprietary, in a format 109 | viewable with a tool licensed under an OSI-approved license if the 110 | proprietary tool can create it; and 111 | 112 | e) license the modified Documentation under the terms and conditions 113 | of this Licence or, where applicable, a later version of this Licence 114 | as may be issued by CERN. 115 | 116 | 3.5. The Licence includes a non-exclusive licence to those patents or 117 | registered designs that are held by, under the control of, or 118 | sub-licensable by the Licensor, to the extent necessary to make use of 119 | the rights granted under this Licence. The scope of this section 3.5 120 | shall be strictly limited to the parts of the Documentation or 121 | modified Documentation created by the Licensor. 122 | 123 | 4. Manufacture and distribution of Products 124 | 125 | 4.1. The Licensee may manufacture or distribute Products always 126 | provided that, where such manufacture or distribution requires a 127 | licence under this Licence the Licensee provides to each recipient of 128 | such Products an easy means of accessing a copy of the Documentation 129 | or modified Documentation, as applicable, as set out in section 3. 130 | 131 | 4.2. The Licensee is invited to inform any Licensor who has indicated 132 | his wish to receive this information about the type, quantity and 133 | dates of production of Products the Licensee has (had) manufactured 134 | 135 | 5. Warranty and liability 136 | 137 | 5.1. DISCLAIMER – The Documentation and any modified Documentation are 138 | provided "as is" and any express or implied warranties, including, but 139 | not limited to, implied warranties of merchantability, of satisfactory 140 | quality, non-infringement of third party rights, and fitness for a 141 | particular purpose or use are disclaimed in respect of the 142 | Documentation, the modified Documentation or any Product. The Licensor 143 | makes no representation that the Documentation, modified 144 | Documentation, or any Product, does or will not infringe any patent, 145 | copyright, trade secret or other proprietary right. The entire risk as 146 | to the use, quality, and performance of a Product shall be with the 147 | Licensee and not the Licensor. This disclaimer of warranty is an 148 | essential part of this Licence and a condition for the grant of any 149 | rights granted under this Licence. The Licensee warrants that it does 150 | not act in a consumer capacity. 151 | 152 | 5.2. LIMITATION OF LIABILITY – The Licensor shall have no liability 153 | for direct, indirect, special, incidental, consequential, exemplary, 154 | punitive or other damages of any character including, without 155 | limitation, procurement of substitute goods or services, loss of use, 156 | data or profits, or business interruption, however caused and on any 157 | theory of contract, warranty, tort (including negligence), product 158 | liability or otherwise, arising in any way in relation to the 159 | Documentation, modified Documentation and/or the use, manufacture or 160 | distribution of a Product, even if advised of the possibility of such 161 | damages, and the Licensee shall hold the Licensor(s) free and harmless 162 | from any liability, costs, damages, fees and expenses, including 163 | claims by third parties, in relation to such use. 164 | 165 | 6. General 166 | 167 | 6.1. Except for the rights explicitly granted hereunder, this Licence 168 | does not imply or represent any transfer or assignment of intellectual 169 | property rights to the Licensee. 170 | 171 | 6.2. The Licensee shall not use or make reference to any of the names 172 | (including acronyms and abbreviations), images, or logos under which 173 | the Licensor is known, save in so far as required to comply with 174 | section 3. Any such permitted use or reference shall be factual and 175 | shall in no event suggest any kind of endorsement by the Licensor or 176 | its personnel of the modified Documentation or any Product, or any 177 | kind of implication by the Licensor or its personnel in the 178 | preparation of the modified Documentation or Product. 179 | 180 | 6.3. CERN may publish updated versions of this Licence which retain 181 | the same general provisions as this version, but differ in detail so 182 | far this is required and reasonable. New versions will be published 183 | with a unique version number. 184 | 185 | 6.4. This Licence shall terminate with immediate effect, upon written 186 | notice and without involvement of a court if the Licensee fails to 187 | comply with any of its terms and conditions, or if the Licensee 188 | initiates legal action against Licensor in relation to this 189 | Licence. Section 5 shall continue to apply. 190 | -------------------------------------------------------------------------------- /infinity-ergodox/rev-b/Plate, Bottom.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiibohd/case/797b7ccd049a0fdaec4530134a6911260776962d/infinity-ergodox/rev-b/Plate, Bottom.STL -------------------------------------------------------------------------------- /infinity-ergodox/rev-b/Plate, Spacer, #1.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiibohd/case/797b7ccd049a0fdaec4530134a6911260776962d/infinity-ergodox/rev-b/Plate, Spacer, #1.STL -------------------------------------------------------------------------------- /infinity-ergodox/rev-b/Plate, Spacer, #2.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiibohd/case/797b7ccd049a0fdaec4530134a6911260776962d/infinity-ergodox/rev-b/Plate, Spacer, #2.STL -------------------------------------------------------------------------------- /infinity-ergodox/rev-b/Plate, Switch, ErgoDox.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiibohd/case/797b7ccd049a0fdaec4530134a6911260776962d/infinity-ergodox/rev-b/Plate, Switch, ErgoDox.STL -------------------------------------------------------------------------------- /infinity-ergodox/rev-b/Plate, Top, #1.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiibohd/case/797b7ccd049a0fdaec4530134a6911260776962d/infinity-ergodox/rev-b/Plate, Top, #1.STL -------------------------------------------------------------------------------- /infinity-ergodox/rev-b/Plate, Top, #2.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiibohd/case/797b7ccd049a0fdaec4530134a6911260776962d/infinity-ergodox/rev-b/Plate, Top, #2.STL -------------------------------------------------------------------------------- /infinity-ergodox/rev-b/README.markdown: -------------------------------------------------------------------------------- 1 | Units of all files are inches. 2 | -------------------------------------------------------------------------------- /infinity-keyboard/LICENSE: -------------------------------------------------------------------------------- 1 | CERN Open Hardware Licence v1.2 2 | 3 | Preamble 4 | 5 | Through this CERN Open Hardware Licence ("CERN OHL") version 1.2, CERN 6 | wishes to provide a tool to foster collaboration and sharing among 7 | hardware designers. The CERN OHL is copyright CERN. Anyone is welcome 8 | to use the CERN OHL, in unmodified form only, for the distribution of 9 | their own Open Hardware designs. Any other right is reserved. Release 10 | of hardware designs under the CERN OHL does not constitute an 11 | endorsement of the licensor or its designs nor does it imply any 12 | involvement by CERN in the development of such designs. 13 | 14 | 1. Definitions 15 | 16 | In this Licence, the following terms have the following meanings: 17 | 18 | “Licence” means this CERN OHL. 19 | 20 | “Documentation” means schematic diagrams, designs, circuit or circuit 21 | board layouts, mechanical drawings, flow charts and descriptive text, 22 | and other explanatory material that is explicitly stated as being made 23 | available under the conditions of this Licence. The Documentation may 24 | be in any medium, including but not limited to computer files and 25 | representations on paper, film, or any other media. 26 | 27 | “Documentation Location” means a location where the Licensor has 28 | placed Documentation, and which he believes will be publicly 29 | accessible for at least three years from the first communication to 30 | the public or distribution of Documentation. 31 | 32 | “Product” means either an entire, or any part of a, device built using 33 | the Documentation or the modified Documentation. 34 | 35 | “Licensee” means any natural or legal person exercising rights under 36 | this Licence. 37 | 38 | “Licensor” means any natural or legal person that creates or modifies 39 | Documentation and subsequently communicates to the public and/ or 40 | distributes the resulting Documentation under the terms and conditions 41 | of this Licence. 42 | 43 | A Licensee may at the same time be a Licensor, and vice versa. 44 | 45 | Use of the masculine gender includes the feminine and neuter genders 46 | and is employed solely to facilitate reading. 47 | 48 | 2. Applicability 49 | 50 | 2.1. This Licence governs the use, copying, modification, 51 | communication to the public and distribution of the Documentation, and 52 | the manufacture and distribution of Products. By exercising any right 53 | granted under this Licence, the Licensee irrevocably accepts these 54 | terms and conditions. 55 | 56 | 2.2. This Licence is granted by the Licensor directly to the Licensee, 57 | and shall apply worldwide and without limitation in time. The Licensee 58 | may assign his licence rights or grant sub-licences. 59 | 60 | 2.3. This Licence does not extend to software, firmware, or code 61 | loaded into programmable devices which may be used in conjunction with 62 | the Documentation, the modified Documentation or with Products, unless 63 | such software, firmware, or code is explicitly expressed to be subject 64 | to this Licence. The use of such software, firmware, or code is 65 | otherwise subject to the applicable licence terms and conditions. 66 | 67 | 3. Copying, modification, communication to the public and distribution 68 | of the Documentation 69 | 70 | 3.1. The Licensee shall keep intact all copyright and trademarks 71 | notices, all notices referring to Documentation Location, and all 72 | notices that refer to this Licence and to the disclaimer of warranties 73 | that are included in the Documentation. He shall include a copy 74 | thereof in every copy of the Documentation or, as the case may be, 75 | modified Documentation, that he communicates to the public or 76 | distributes. 77 | 78 | 3.2. The Licensee may copy, communicate to the public and distribute 79 | verbatim copies of the Documentation, in any medium, subject to the 80 | requirements specified in section 3.1. 81 | 82 | 3.3. The Licensee may modify the Documentation or any portion thereof 83 | provided that upon modification of the Documentation, the Licensee 84 | shall make the modified Documentation available from a Documentation 85 | Location such that it can be easily located by an original Licensor 86 | once the Licensee communicates to the public or distributes the 87 | modified Documentation under section 3.4, and, where required by 88 | section 4.1, by a recipient of a Product. However, the Licensor shall 89 | not assert his rights under the foregoing proviso unless or until a 90 | Product is distributed. 91 | 92 | 3.4. The Licensee may communicate to the public and distribute the 93 | modified Documentation (thereby in addition to being a Licensee also 94 | becoming a Licensor), always provided that he shall: 95 | 96 | a) comply with section 3.1; 97 | 98 | b) cause the modified Documentation to carry prominent notices stating 99 | that the Licensee has modified the Documentation, with the date and 100 | description of the modifications; 101 | 102 | c) cause the modified Documentation to carry a new Documentation 103 | Location notice if the original Documentation provided for one; 104 | 105 | d) make available the modified Documentation at the same level of 106 | abstraction as that of the Documentation, in the preferred format for 107 | making modifications to it (e.g. the native format of the CAD tool as 108 | applicable), and in the event that format is proprietary, in a format 109 | viewable with a tool licensed under an OSI-approved license if the 110 | proprietary tool can create it; and 111 | 112 | e) license the modified Documentation under the terms and conditions 113 | of this Licence or, where applicable, a later version of this Licence 114 | as may be issued by CERN. 115 | 116 | 3.5. The Licence includes a non-exclusive licence to those patents or 117 | registered designs that are held by, under the control of, or 118 | sub-licensable by the Licensor, to the extent necessary to make use of 119 | the rights granted under this Licence. The scope of this section 3.5 120 | shall be strictly limited to the parts of the Documentation or 121 | modified Documentation created by the Licensor. 122 | 123 | 4. Manufacture and distribution of Products 124 | 125 | 4.1. The Licensee may manufacture or distribute Products always 126 | provided that, where such manufacture or distribution requires a 127 | licence under this Licence the Licensee provides to each recipient of 128 | such Products an easy means of accessing a copy of the Documentation 129 | or modified Documentation, as applicable, as set out in section 3. 130 | 131 | 4.2. The Licensee is invited to inform any Licensor who has indicated 132 | his wish to receive this information about the type, quantity and 133 | dates of production of Products the Licensee has (had) manufactured 134 | 135 | 5. Warranty and liability 136 | 137 | 5.1. DISCLAIMER – The Documentation and any modified Documentation are 138 | provided "as is" and any express or implied warranties, including, but 139 | not limited to, implied warranties of merchantability, of satisfactory 140 | quality, non-infringement of third party rights, and fitness for a 141 | particular purpose or use are disclaimed in respect of the 142 | Documentation, the modified Documentation or any Product. The Licensor 143 | makes no representation that the Documentation, modified 144 | Documentation, or any Product, does or will not infringe any patent, 145 | copyright, trade secret or other proprietary right. The entire risk as 146 | to the use, quality, and performance of a Product shall be with the 147 | Licensee and not the Licensor. This disclaimer of warranty is an 148 | essential part of this Licence and a condition for the grant of any 149 | rights granted under this Licence. The Licensee warrants that it does 150 | not act in a consumer capacity. 151 | 152 | 5.2. LIMITATION OF LIABILITY – The Licensor shall have no liability 153 | for direct, indirect, special, incidental, consequential, exemplary, 154 | punitive or other damages of any character including, without 155 | limitation, procurement of substitute goods or services, loss of use, 156 | data or profits, or business interruption, however caused and on any 157 | theory of contract, warranty, tort (including negligence), product 158 | liability or otherwise, arising in any way in relation to the 159 | Documentation, modified Documentation and/or the use, manufacture or 160 | distribution of a Product, even if advised of the possibility of such 161 | damages, and the Licensee shall hold the Licensor(s) free and harmless 162 | from any liability, costs, damages, fees and expenses, including 163 | claims by third parties, in relation to such use. 164 | 165 | 6. General 166 | 167 | 6.1. Except for the rights explicitly granted hereunder, this Licence 168 | does not imply or represent any transfer or assignment of intellectual 169 | property rights to the Licensee. 170 | 171 | 6.2. The Licensee shall not use or make reference to any of the names 172 | (including acronyms and abbreviations), images, or logos under which 173 | the Licensor is known, save in so far as required to comply with 174 | section 3. Any such permitted use or reference shall be factual and 175 | shall in no event suggest any kind of endorsement by the Licensor or 176 | its personnel of the modified Documentation or any Product, or any 177 | kind of implication by the Licensor or its personnel in the 178 | preparation of the modified Documentation or Product. 179 | 180 | 6.3. CERN may publish updated versions of this Licence which retain 181 | the same general provisions as this version, but differ in detail so 182 | far this is required and reasonable. New versions will be published 183 | with a unique version number. 184 | 185 | 6.4. This Licence shall terminate with immediate effect, upon written 186 | notice and without involvement of a court if the Licensee fails to 187 | comply with any of its terms and conditions, or if the Licensee 188 | initiates legal action against Licensor in relation to this 189 | Licence. Section 5 shall continue to apply. 190 | -------------------------------------------------------------------------------- /whitefox-keyboard/LICENSE: -------------------------------------------------------------------------------- 1 | CERN Open Hardware Licence v1.2 2 | 3 | Preamble 4 | 5 | Through this CERN Open Hardware Licence ("CERN OHL") version 1.2, CERN 6 | wishes to provide a tool to foster collaboration and sharing among 7 | hardware designers. The CERN OHL is copyright CERN. Anyone is welcome 8 | to use the CERN OHL, in unmodified form only, for the distribution of 9 | their own Open Hardware designs. Any other right is reserved. Release 10 | of hardware designs under the CERN OHL does not constitute an 11 | endorsement of the licensor or its designs nor does it imply any 12 | involvement by CERN in the development of such designs. 13 | 14 | 1. Definitions 15 | 16 | In this Licence, the following terms have the following meanings: 17 | 18 | “Licence” means this CERN OHL. 19 | 20 | “Documentation” means schematic diagrams, designs, circuit or circuit 21 | board layouts, mechanical drawings, flow charts and descriptive text, 22 | and other explanatory material that is explicitly stated as being made 23 | available under the conditions of this Licence. The Documentation may 24 | be in any medium, including but not limited to computer files and 25 | representations on paper, film, or any other media. 26 | 27 | “Documentation Location” means a location where the Licensor has 28 | placed Documentation, and which he believes will be publicly 29 | accessible for at least three years from the first communication to 30 | the public or distribution of Documentation. 31 | 32 | “Product” means either an entire, or any part of a, device built using 33 | the Documentation or the modified Documentation. 34 | 35 | “Licensee” means any natural or legal person exercising rights under 36 | this Licence. 37 | 38 | “Licensor” means any natural or legal person that creates or modifies 39 | Documentation and subsequently communicates to the public and/ or 40 | distributes the resulting Documentation under the terms and conditions 41 | of this Licence. 42 | 43 | A Licensee may at the same time be a Licensor, and vice versa. 44 | 45 | Use of the masculine gender includes the feminine and neuter genders 46 | and is employed solely to facilitate reading. 47 | 48 | 2. Applicability 49 | 50 | 2.1. This Licence governs the use, copying, modification, 51 | communication to the public and distribution of the Documentation, and 52 | the manufacture and distribution of Products. By exercising any right 53 | granted under this Licence, the Licensee irrevocably accepts these 54 | terms and conditions. 55 | 56 | 2.2. This Licence is granted by the Licensor directly to the Licensee, 57 | and shall apply worldwide and without limitation in time. The Licensee 58 | may assign his licence rights or grant sub-licences. 59 | 60 | 2.3. This Licence does not extend to software, firmware, or code 61 | loaded into programmable devices which may be used in conjunction with 62 | the Documentation, the modified Documentation or with Products, unless 63 | such software, firmware, or code is explicitly expressed to be subject 64 | to this Licence. The use of such software, firmware, or code is 65 | otherwise subject to the applicable licence terms and conditions. 66 | 67 | 3. Copying, modification, communication to the public and distribution 68 | of the Documentation 69 | 70 | 3.1. The Licensee shall keep intact all copyright and trademarks 71 | notices, all notices referring to Documentation Location, and all 72 | notices that refer to this Licence and to the disclaimer of warranties 73 | that are included in the Documentation. He shall include a copy 74 | thereof in every copy of the Documentation or, as the case may be, 75 | modified Documentation, that he communicates to the public or 76 | distributes. 77 | 78 | 3.2. The Licensee may copy, communicate to the public and distribute 79 | verbatim copies of the Documentation, in any medium, subject to the 80 | requirements specified in section 3.1. 81 | 82 | 3.3. The Licensee may modify the Documentation or any portion thereof 83 | provided that upon modification of the Documentation, the Licensee 84 | shall make the modified Documentation available from a Documentation 85 | Location such that it can be easily located by an original Licensor 86 | once the Licensee communicates to the public or distributes the 87 | modified Documentation under section 3.4, and, where required by 88 | section 4.1, by a recipient of a Product. However, the Licensor shall 89 | not assert his rights under the foregoing proviso unless or until a 90 | Product is distributed. 91 | 92 | 3.4. The Licensee may communicate to the public and distribute the 93 | modified Documentation (thereby in addition to being a Licensee also 94 | becoming a Licensor), always provided that he shall: 95 | 96 | a) comply with section 3.1; 97 | 98 | b) cause the modified Documentation to carry prominent notices stating 99 | that the Licensee has modified the Documentation, with the date and 100 | description of the modifications; 101 | 102 | c) cause the modified Documentation to carry a new Documentation 103 | Location notice if the original Documentation provided for one; 104 | 105 | d) make available the modified Documentation at the same level of 106 | abstraction as that of the Documentation, in the preferred format for 107 | making modifications to it (e.g. the native format of the CAD tool as 108 | applicable), and in the event that format is proprietary, in a format 109 | viewable with a tool licensed under an OSI-approved license if the 110 | proprietary tool can create it; and 111 | 112 | e) license the modified Documentation under the terms and conditions 113 | of this Licence or, where applicable, a later version of this Licence 114 | as may be issued by CERN. 115 | 116 | 3.5. The Licence includes a non-exclusive licence to those patents or 117 | registered designs that are held by, under the control of, or 118 | sub-licensable by the Licensor, to the extent necessary to make use of 119 | the rights granted under this Licence. The scope of this section 3.5 120 | shall be strictly limited to the parts of the Documentation or 121 | modified Documentation created by the Licensor. 122 | 123 | 4. Manufacture and distribution of Products 124 | 125 | 4.1. The Licensee may manufacture or distribute Products always 126 | provided that, where such manufacture or distribution requires a 127 | licence under this Licence the Licensee provides to each recipient of 128 | such Products an easy means of accessing a copy of the Documentation 129 | or modified Documentation, as applicable, as set out in section 3. 130 | 131 | 4.2. The Licensee is invited to inform any Licensor who has indicated 132 | his wish to receive this information about the type, quantity and 133 | dates of production of Products the Licensee has (had) manufactured 134 | 135 | 5. Warranty and liability 136 | 137 | 5.1. DISCLAIMER – The Documentation and any modified Documentation are 138 | provided "as is" and any express or implied warranties, including, but 139 | not limited to, implied warranties of merchantability, of satisfactory 140 | quality, non-infringement of third party rights, and fitness for a 141 | particular purpose or use are disclaimed in respect of the 142 | Documentation, the modified Documentation or any Product. The Licensor 143 | makes no representation that the Documentation, modified 144 | Documentation, or any Product, does or will not infringe any patent, 145 | copyright, trade secret or other proprietary right. The entire risk as 146 | to the use, quality, and performance of a Product shall be with the 147 | Licensee and not the Licensor. This disclaimer of warranty is an 148 | essential part of this Licence and a condition for the grant of any 149 | rights granted under this Licence. The Licensee warrants that it does 150 | not act in a consumer capacity. 151 | 152 | 5.2. LIMITATION OF LIABILITY – The Licensor shall have no liability 153 | for direct, indirect, special, incidental, consequential, exemplary, 154 | punitive or other damages of any character including, without 155 | limitation, procurement of substitute goods or services, loss of use, 156 | data or profits, or business interruption, however caused and on any 157 | theory of contract, warranty, tort (including negligence), product 158 | liability or otherwise, arising in any way in relation to the 159 | Documentation, modified Documentation and/or the use, manufacture or 160 | distribution of a Product, even if advised of the possibility of such 161 | damages, and the Licensee shall hold the Licensor(s) free and harmless 162 | from any liability, costs, damages, fees and expenses, including 163 | claims by third parties, in relation to such use. 164 | 165 | 6. General 166 | 167 | 6.1. Except for the rights explicitly granted hereunder, this Licence 168 | does not imply or represent any transfer or assignment of intellectual 169 | property rights to the Licensee. 170 | 171 | 6.2. The Licensee shall not use or make reference to any of the names 172 | (including acronyms and abbreviations), images, or logos under which 173 | the Licensor is known, save in so far as required to comply with 174 | section 3. Any such permitted use or reference shall be factual and 175 | shall in no event suggest any kind of endorsement by the Licensor or 176 | its personnel of the modified Documentation or any Product, or any 177 | kind of implication by the Licensor or its personnel in the 178 | preparation of the modified Documentation or Product. 179 | 180 | 6.3. CERN may publish updated versions of this Licence which retain 181 | the same general provisions as this version, but differ in detail so 182 | far this is required and reasonable. New versions will be published 183 | with a unique version number. 184 | 185 | 6.4. This Licence shall terminate with immediate effect, upon written 186 | notice and without involvement of a court if the Licensee fails to 187 | comply with any of its terms and conditions, or if the Licensee 188 | initiates legal action against Licensor in relation to this 189 | Licence. Section 5 shall continue to apply. 190 | -------------------------------------------------------------------------------- /whitefox-keyboard/rev-a/whitefox-case-truefox.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiibohd/case/797b7ccd049a0fdaec4530134a6911260776962d/whitefox-keyboard/rev-a/whitefox-case-truefox.zip -------------------------------------------------------------------------------- /whitefox-keyboard/rev-b-type-c/ESD Insert.stp: -------------------------------------------------------------------------------- 1 | ISO-10303-21; 2 | HEADER; 3 | FILE_DESCRIPTION(('STEP AP214'),'1'); 4 | FILE_NAME('ESD Insert.stp','2018-03-07T03:29:45',(' '),(' '),'Spatial InterOp 3D',' ',' '); 5 | FILE_SCHEMA(('automotive_design')); 6 | ENDSEC; 7 | DATA; 8 | #1=MECHANICAL_DESIGN_GEOMETRIC_PRESENTATION_REPRESENTATION(' ',(#10,#11,#12,#13,#14,#15,#16),#6); 9 | #2=PRODUCT_DEFINITION_CONTEXT('',#17,'design'); 10 | #3=APPLICATION_PROTOCOL_DEFINITION('INTERNATIONAL STANDARD','automotive_design',1994,#17); 11 | #4=PRODUCT_CATEGORY_RELATIONSHIP('NONE','NONE',#18,#19); 12 | #5=SHAPE_DEFINITION_REPRESENTATION(#20,#21); 13 | #6= (GEOMETRIC_REPRESENTATION_CONTEXT(3)GLOBAL_UNCERTAINTY_ASSIGNED_CONTEXT((#24))GLOBAL_UNIT_ASSIGNED_CONTEXT((#26,#27,#28))REPRESENTATION_CONTEXT('NONE','WORKSPACE')); 14 | #10=STYLED_ITEM('',(#30),#31); 15 | #11=STYLED_ITEM('',(#32),#33); 16 | #12=STYLED_ITEM('',(#34),#35); 17 | #13=STYLED_ITEM('',(#36),#37); 18 | #14=STYLED_ITEM('',(#38),#39); 19 | #15=STYLED_ITEM('',(#40),#41); 20 | #16=STYLED_ITEM('',(#42),#43); 21 | #17=APPLICATION_CONTEXT(' '); 22 | #18=PRODUCT_CATEGORY('part','NONE'); 23 | #19=PRODUCT_RELATED_PRODUCT_CATEGORY('detail',' ',(#44)); 24 | #20=PRODUCT_DEFINITION_SHAPE('NONE','NONE',#45); 25 | #21=ADVANCED_BREP_SHAPE_REPRESENTATION('ESD Insert',(#46,#47),#6); 26 | #24=UNCERTAINTY_MEASURE_WITH_UNIT(LENGTH_MEASURE(0.001),#26,'',''); 27 | #26= (CONVERSION_BASED_UNIT('MILLIMETRE',#50)LENGTH_UNIT()NAMED_UNIT(#53)); 28 | #27= (NAMED_UNIT(#55)PLANE_ANGLE_UNIT()SI_UNIT($,.RADIAN.)); 29 | #28= (NAMED_UNIT(#55)SOLID_ANGLE_UNIT()SI_UNIT($,.STERADIAN.)); 30 | #30=PRESENTATION_STYLE_ASSIGNMENT((#61)); 31 | #31=ADVANCED_FACE('',(#62,#63),#64,.F.); 32 | #32=PRESENTATION_STYLE_ASSIGNMENT((#65)); 33 | #33=ADVANCED_FACE('',(#66,#67),#68,.F.); 34 | #34=PRESENTATION_STYLE_ASSIGNMENT((#69)); 35 | #35=ADVANCED_FACE('',(#70),#71,.F.); 36 | #36=PRESENTATION_STYLE_ASSIGNMENT((#72)); 37 | #37=ADVANCED_FACE('',(#73,#74),#75,.T.); 38 | #38=PRESENTATION_STYLE_ASSIGNMENT((#76)); 39 | #39=ADVANCED_FACE('',(#77,#78),#79,.F.); 40 | #40=PRESENTATION_STYLE_ASSIGNMENT((#80)); 41 | #41=ADVANCED_FACE('',(#81,#82),#83,.T.); 42 | #42=PRESENTATION_STYLE_ASSIGNMENT((#84)); 43 | #43=ADVANCED_FACE('',(#85,#86),#87,.F.); 44 | #44=PRODUCT('ESD Insert','ESD Insert','PART-ESD Insert-DESC',(#88)); 45 | #45=PRODUCT_DEFINITION('NONE','NONE',#89,#2); 46 | #46=MANIFOLD_SOLID_BREP('ESD Insert',#90); 47 | #47=AXIS2_PLACEMENT_3D('',#91,#92,#93); 48 | #50=LENGTH_MEASURE_WITH_UNIT(LENGTH_MEASURE(1.0),#94); 49 | #53=DIMENSIONAL_EXPONENTS(1.0,0.0,0.0,0.0,0.0,0.0,0.0); 50 | #55=DIMENSIONAL_EXPONENTS(0.0,0.0,0.0,0.0,0.0,0.0,0.0); 51 | #61=SURFACE_STYLE_USAGE(.BOTH.,#95); 52 | #62=FACE_BOUND('',#96,.T.); 53 | #63=FACE_OUTER_BOUND('',#97,.T.); 54 | #64=CONICAL_SURFACE('',#98,0.8,1.02974425867665); 55 | #65=SURFACE_STYLE_USAGE(.BOTH.,#99); 56 | #66=FACE_OUTER_BOUND('',#100,.T.); 57 | #67=FACE_OUTER_BOUND('',#101,.T.); 58 | #68=CYLINDRICAL_SURFACE('',#102,0.8); 59 | #69=SURFACE_STYLE_USAGE(.BOTH.,#103); 60 | #70=FACE_OUTER_BOUND('',#104,.T.); 61 | #71=PLANE('',#105); 62 | #72=SURFACE_STYLE_USAGE(.BOTH.,#106); 63 | #73=FACE_OUTER_BOUND('',#107,.T.); 64 | #74=FACE_OUTER_BOUND('',#108,.T.); 65 | #75=CYLINDRICAL_SURFACE('',#109,3.0); 66 | #76=SURFACE_STYLE_USAGE(.BOTH.,#110); 67 | #77=FACE_BOUND('',#111,.T.); 68 | #78=FACE_OUTER_BOUND('',#112,.T.); 69 | #79=PLANE('',#113); 70 | #80=SURFACE_STYLE_USAGE(.BOTH.,#114); 71 | #81=FACE_OUTER_BOUND('',#115,.T.); 72 | #82=FACE_OUTER_BOUND('',#116,.T.); 73 | #83=CYLINDRICAL_SURFACE('',#117,2.0); 74 | #84=SURFACE_STYLE_USAGE(.BOTH.,#118); 75 | #85=FACE_BOUND('',#119,.T.); 76 | #86=FACE_OUTER_BOUND('',#120,.T.); 77 | #87=PLANE('',#121); 78 | #88=PRODUCT_CONTEXT('',#17,'mechanical'); 79 | #89=PRODUCT_DEFINITION_FORMATION_WITH_SPECIFIED_SOURCE(' ','NONE',#44,.NOT_KNOWN.); 80 | #90=CLOSED_SHELL('',(#31,#33,#35,#37,#39,#41,#43)); 81 | #91=CARTESIAN_POINT('',(0.0,0.0,0.0)); 82 | #92=DIRECTION('',(0.0,0.0,1.0)); 83 | #93=DIRECTION('',(1.0,0.0,0.0)); 84 | #94= (NAMED_UNIT(#53)LENGTH_UNIT()SI_UNIT(.MILLI.,.METRE.)); 85 | #95=SURFACE_SIDE_STYLE('',(#123)); 86 | #96=VERTEX_LOOP('',#124); 87 | #97=EDGE_LOOP('',(#125)); 88 | #98=AXIS2_PLACEMENT_3D('',#126,#127,#128); 89 | #99=SURFACE_SIDE_STYLE('',(#129)); 90 | #100=EDGE_LOOP('',(#130)); 91 | #101=EDGE_LOOP('',(#131)); 92 | #102=AXIS2_PLACEMENT_3D('',#132,#133,#134); 93 | #103=SURFACE_SIDE_STYLE('',(#135)); 94 | #104=EDGE_LOOP('',(#136)); 95 | #105=AXIS2_PLACEMENT_3D('',#137,#138,#139); 96 | #106=SURFACE_SIDE_STYLE('',(#140)); 97 | #107=EDGE_LOOP('',(#141)); 98 | #108=EDGE_LOOP('',(#142)); 99 | #109=AXIS2_PLACEMENT_3D('',#143,#144,#145); 100 | #110=SURFACE_SIDE_STYLE('',(#146)); 101 | #111=EDGE_LOOP('',(#147)); 102 | #112=EDGE_LOOP('',(#148)); 103 | #113=AXIS2_PLACEMENT_3D('',#149,#150,#151); 104 | #114=SURFACE_SIDE_STYLE('',(#152)); 105 | #115=EDGE_LOOP('',(#153)); 106 | #116=EDGE_LOOP('',(#154)); 107 | #117=AXIS2_PLACEMENT_3D('',#155,#156,#157); 108 | #118=SURFACE_SIDE_STYLE('',(#158)); 109 | #119=EDGE_LOOP('',(#159)); 110 | #120=EDGE_LOOP('',(#160)); 111 | #121=AXIS2_PLACEMENT_3D('',#161,#162,#163); 112 | #123=SURFACE_STYLE_FILL_AREA(#164); 113 | #124=VERTEX_POINT('',#165); 114 | #125=ORIENTED_EDGE('',*,*,#166,.T.); 115 | #126=CARTESIAN_POINT('',(36.477625,-2.0,-54.0)); 116 | #127=DIRECTION('',(-0.0,-1.0,0.0)); 117 | #128=DIRECTION('',(0.0,0.0,1.0)); 118 | #129=SURFACE_STYLE_FILL_AREA(#167); 119 | #130=ORIENTED_EDGE('',*,*,#166,.F.); 120 | #131=ORIENTED_EDGE('',*,*,#168,.T.); 121 | #132=CARTESIAN_POINT('',(36.477625,-5.0,-54.0)); 122 | #133=DIRECTION('',(0.0,-1.0,0.0)); 123 | #134=DIRECTION('',(0.0,0.0,1.0)); 124 | #135=SURFACE_STYLE_FILL_AREA(#169); 125 | #136=ORIENTED_EDGE('',*,*,#170,.F.); 126 | #137=CARTESIAN_POINT('',(36.477625,0.0,-54.0)); 127 | #138=DIRECTION('',(0.0,-1.0,0.0)); 128 | #139=DIRECTION('',(0.0,0.0,1.0)); 129 | #140=SURFACE_STYLE_FILL_AREA(#171); 130 | #141=ORIENTED_EDGE('',*,*,#172,.F.); 131 | #142=ORIENTED_EDGE('',*,*,#170,.T.); 132 | #143=CARTESIAN_POINT('',(36.477625,-22.2105263157909,-54.0)); 133 | #144=DIRECTION('',(0.0,-1.0,0.0)); 134 | #145=DIRECTION('',(0.0,0.0,1.0)); 135 | #146=SURFACE_STYLE_FILL_AREA(#173); 136 | #147=ORIENTED_EDGE('',*,*,#168,.F.); 137 | #148=ORIENTED_EDGE('',*,*,#174,.T.); 138 | #149=CARTESIAN_POINT('',(34.477625,-5.0,-54.0)); 139 | #150=DIRECTION('',(0.0,1.0,0.0)); 140 | #151=DIRECTION('',(0.0,0.0,-1.0)); 141 | #152=SURFACE_STYLE_FILL_AREA(#175); 142 | #153=ORIENTED_EDGE('',*,*,#174,.F.); 143 | #154=ORIENTED_EDGE('',*,*,#176,.T.); 144 | #155=CARTESIAN_POINT('',(36.477625,-22.2105263157909,-54.0)); 145 | #156=DIRECTION('',(0.0,-1.0,0.0)); 146 | #157=DIRECTION('',(0.0,0.0,1.0)); 147 | #158=SURFACE_STYLE_FILL_AREA(#177); 148 | #159=ORIENTED_EDGE('',*,*,#176,.F.); 149 | #160=ORIENTED_EDGE('',*,*,#172,.T.); 150 | #161=CARTESIAN_POINT('',(33.477625,-0.5,-54.0)); 151 | #162=DIRECTION('',(0.0,1.0,0.0)); 152 | #163=DIRECTION('',(0.0,0.0,-1.0)); 153 | #164=FILL_AREA_STYLE('',(#178)); 154 | #165=CARTESIAN_POINT('',(36.477625,-1.51931150477795,-54.0)); 155 | #166=EDGE_CURVE('',#179,#179,#180,.T.); 156 | #167=FILL_AREA_STYLE('',(#181)); 157 | #168=EDGE_CURVE('',#182,#182,#183,.T.); 158 | #169=FILL_AREA_STYLE('',(#184)); 159 | #170=EDGE_CURVE('',#185,#185,#186,.T.); 160 | #171=FILL_AREA_STYLE('',(#187)); 161 | #172=EDGE_CURVE('',#188,#188,#189,.T.); 162 | #173=FILL_AREA_STYLE('',(#190)); 163 | #174=EDGE_CURVE('',#191,#191,#192,.T.); 164 | #175=FILL_AREA_STYLE('',(#193)); 165 | #176=EDGE_CURVE('',#194,#194,#195,.T.); 166 | #177=FILL_AREA_STYLE('',(#196)); 167 | #178=FILL_AREA_STYLE_COLOUR('',#197); 168 | #179=VERTEX_POINT('',#198); 169 | #180=CIRCLE('',#199,0.8); 170 | #181=FILL_AREA_STYLE_COLOUR('',#200); 171 | #182=VERTEX_POINT('',#201); 172 | #183=CIRCLE('',#202,0.8); 173 | #184=FILL_AREA_STYLE_COLOUR('',#203); 174 | #185=VERTEX_POINT('',#204); 175 | #186=CIRCLE('',#205,3.0); 176 | #187=FILL_AREA_STYLE_COLOUR('',#206); 177 | #188=VERTEX_POINT('',#207); 178 | #189=CIRCLE('',#208,3.0); 179 | #190=FILL_AREA_STYLE_COLOUR('',#209); 180 | #191=VERTEX_POINT('',#210); 181 | #192=CIRCLE('',#211,2.0); 182 | #193=FILL_AREA_STYLE_COLOUR('',#212); 183 | #194=VERTEX_POINT('',#213); 184 | #195=CIRCLE('',#214,2.0); 185 | #196=FILL_AREA_STYLE_COLOUR('',#215); 186 | #197=COLOUR_RGB('',0.792156875133514,0.819607853889465,0.933333337306976); 187 | #198=CARTESIAN_POINT('',(36.477625,-2.0,-53.2)); 188 | #199=AXIS2_PLACEMENT_3D('',#216,#217,#218); 189 | #200=COLOUR_RGB('',0.792156875133514,0.819607853889465,0.933333337306976); 190 | #201=CARTESIAN_POINT('',(36.477625,-5.0,-53.2)); 191 | #202=AXIS2_PLACEMENT_3D('',#219,#220,#221); 192 | #203=COLOUR_RGB('',0.792156875133514,0.819607853889465,0.933333337306976); 193 | #204=CARTESIAN_POINT('',(36.477625,0.0,-51.0)); 194 | #205=AXIS2_PLACEMENT_3D('',#222,#223,#224); 195 | #206=COLOUR_RGB('',0.792156875133514,0.819607853889465,0.933333337306976); 196 | #207=CARTESIAN_POINT('',(36.477625,-0.5,-51.0)); 197 | #208=AXIS2_PLACEMENT_3D('',#225,#226,#227); 198 | #209=COLOUR_RGB('',0.792156875133514,0.819607853889465,0.933333337306976); 199 | #210=CARTESIAN_POINT('',(36.477625,-5.0,-52.0)); 200 | #211=AXIS2_PLACEMENT_3D('',#228,#229,#230); 201 | #212=COLOUR_RGB('',0.792156875133514,0.819607853889465,0.933333337306976); 202 | #213=CARTESIAN_POINT('',(36.477625,-0.5,-52.0)); 203 | #214=AXIS2_PLACEMENT_3D('',#231,#232,#233); 204 | #215=COLOUR_RGB('',0.792156875133514,0.819607853889465,0.933333337306976); 205 | #216=CARTESIAN_POINT('',(36.477625,-2.0,-54.0)); 206 | #217=DIRECTION('',(0.0,-1.0,0.0)); 207 | #218=DIRECTION('',(0.0,0.0,1.0)); 208 | #219=CARTESIAN_POINT('',(36.477625,-5.0,-54.0)); 209 | #220=DIRECTION('',(0.0,-1.0,0.0)); 210 | #221=DIRECTION('',(0.0,0.0,1.0)); 211 | #222=CARTESIAN_POINT('',(36.477625,0.0,-54.0)); 212 | #223=DIRECTION('',(0.0,-1.0,0.0)); 213 | #224=DIRECTION('',(0.0,0.0,1.0)); 214 | #225=CARTESIAN_POINT('',(36.477625,-0.5,-54.0)); 215 | #226=DIRECTION('',(0.0,-1.0,0.0)); 216 | #227=DIRECTION('',(0.0,0.0,1.0)); 217 | #228=CARTESIAN_POINT('',(36.477625,-5.0,-54.0)); 218 | #229=DIRECTION('',(0.0,-1.0,0.0)); 219 | #230=DIRECTION('',(0.0,0.0,1.0)); 220 | #231=CARTESIAN_POINT('',(36.477625,-0.5,-54.0)); 221 | #232=DIRECTION('',(0.0,-1.0,0.0)); 222 | #233=DIRECTION('',(0.0,0.0,1.0)); 223 | ENDSEC; 224 | END-ISO-10303-21; 225 | -------------------------------------------------------------------------------- /whitefox-keyboard/rev-b-type-c/Metal Foot.stp: -------------------------------------------------------------------------------- 1 | ISO-10303-21; 2 | HEADER; 3 | FILE_DESCRIPTION(('STEP AP214'),'1'); 4 | FILE_NAME('Metal Foot.stp','2018-03-07T03:29:16',(' '),(' '),'Spatial InterOp 3D',' ',' '); 5 | FILE_SCHEMA(('automotive_design')); 6 | ENDSEC; 7 | DATA; 8 | #1=MECHANICAL_DESIGN_GEOMETRIC_PRESENTATION_REPRESENTATION(' ',(#10,#11,#12,#13,#14,#15,#16,#17),#6); 9 | #2=PRODUCT_DEFINITION_CONTEXT('',#18,'design'); 10 | #3=APPLICATION_PROTOCOL_DEFINITION('INTERNATIONAL STANDARD','automotive_design',1994,#18); 11 | #4=PRODUCT_CATEGORY_RELATIONSHIP('NONE','NONE',#19,#20); 12 | #5=SHAPE_DEFINITION_REPRESENTATION(#21,#22); 13 | #6= (GEOMETRIC_REPRESENTATION_CONTEXT(3)GLOBAL_UNCERTAINTY_ASSIGNED_CONTEXT((#25))GLOBAL_UNIT_ASSIGNED_CONTEXT((#27,#28,#29))REPRESENTATION_CONTEXT('NONE','WORKSPACE')); 14 | #10=STYLED_ITEM('',(#31),#32); 15 | #11=STYLED_ITEM('',(#33),#34); 16 | #12=STYLED_ITEM('',(#35),#36); 17 | #13=STYLED_ITEM('',(#37),#38); 18 | #14=STYLED_ITEM('',(#39),#40); 19 | #15=STYLED_ITEM('',(#41),#42); 20 | #16=STYLED_ITEM('',(#43),#44); 21 | #17=STYLED_ITEM('',(#45),#46); 22 | #18=APPLICATION_CONTEXT(' '); 23 | #19=PRODUCT_CATEGORY('part','NONE'); 24 | #20=PRODUCT_RELATED_PRODUCT_CATEGORY('detail',' ',(#47)); 25 | #21=PRODUCT_DEFINITION_SHAPE('NONE','NONE',#48); 26 | #22=ADVANCED_BREP_SHAPE_REPRESENTATION('Metal Foot',(#49,#50),#6); 27 | #25=UNCERTAINTY_MEASURE_WITH_UNIT(LENGTH_MEASURE(0.001),#27,'',''); 28 | #27= (CONVERSION_BASED_UNIT('MILLIMETRE',#53)LENGTH_UNIT()NAMED_UNIT(#56)); 29 | #28= (NAMED_UNIT(#58)PLANE_ANGLE_UNIT()SI_UNIT($,.RADIAN.)); 30 | #29= (NAMED_UNIT(#58)SOLID_ANGLE_UNIT()SI_UNIT($,.STERADIAN.)); 31 | #31=PRESENTATION_STYLE_ASSIGNMENT((#64)); 32 | #32=ADVANCED_FACE('',(#65,#66),#67,.F.); 33 | #33=PRESENTATION_STYLE_ASSIGNMENT((#68)); 34 | #34=ADVANCED_FACE('',(#69,#70),#71,.F.); 35 | #35=PRESENTATION_STYLE_ASSIGNMENT((#72)); 36 | #36=ADVANCED_FACE('',(#73,#74),#75,.F.); 37 | #37=PRESENTATION_STYLE_ASSIGNMENT((#76)); 38 | #38=ADVANCED_FACE('',(#77,#78),#79,.T.); 39 | #39=PRESENTATION_STYLE_ASSIGNMENT((#80)); 40 | #40=ADVANCED_FACE('',(#81,#82),#83,.F.); 41 | #41=PRESENTATION_STYLE_ASSIGNMENT((#84)); 42 | #42=ADVANCED_FACE('',(#85,#86),#87,.F.); 43 | #43=PRESENTATION_STYLE_ASSIGNMENT((#88)); 44 | #44=ADVANCED_FACE('',(#89,#90),#91,.T.); 45 | #45=PRESENTATION_STYLE_ASSIGNMENT((#92)); 46 | #46=ADVANCED_FACE('',(#93),#94,.T.); 47 | #47=PRODUCT('Metal Foot','Metal Foot','PART-Metal Foot-DESC',(#95)); 48 | #48=PRODUCT_DEFINITION('NONE','NONE',#96,#2); 49 | #49=MANIFOLD_SOLID_BREP('Metal Foot',#97); 50 | #50=AXIS2_PLACEMENT_3D('',#98,#99,#100); 51 | #53=LENGTH_MEASURE_WITH_UNIT(LENGTH_MEASURE(1.0),#101); 52 | #56=DIMENSIONAL_EXPONENTS(1.0,0.0,0.0,0.0,0.0,0.0,0.0); 53 | #58=DIMENSIONAL_EXPONENTS(0.0,0.0,0.0,0.0,0.0,0.0,0.0); 54 | #64=SURFACE_STYLE_USAGE(.BOTH.,#102); 55 | #65=FACE_BOUND('',#103,.T.); 56 | #66=FACE_OUTER_BOUND('',#104,.T.); 57 | #67=CONICAL_SURFACE('',#105,1.65,1.02974425867665); 58 | #68=SURFACE_STYLE_USAGE(.BOTH.,#106); 59 | #69=FACE_OUTER_BOUND('',#107,.T.); 60 | #70=FACE_OUTER_BOUND('',#108,.T.); 61 | #71=CYLINDRICAL_SURFACE('',#109,1.65); 62 | #72=SURFACE_STYLE_USAGE(.BOTH.,#110); 63 | #73=FACE_BOUND('',#111,.T.); 64 | #74=FACE_OUTER_BOUND('',#112,.T.); 65 | #75=PLANE('',#113); 66 | #76=SURFACE_STYLE_USAGE(.BOTH.,#114); 67 | #77=FACE_OUTER_BOUND('',#115,.T.); 68 | #78=FACE_OUTER_BOUND('',#116,.T.); 69 | #79=CYLINDRICAL_SURFACE('',#117,11.0); 70 | #80=SURFACE_STYLE_USAGE(.BOTH.,#118); 71 | #81=FACE_OUTER_BOUND('',#119,.T.); 72 | #82=FACE_OUTER_BOUND('',#120,.T.); 73 | #83=CYLINDRICAL_SURFACE('',#121,4.0); 74 | #84=SURFACE_STYLE_USAGE(.BOTH.,#122); 75 | #85=FACE_BOUND('',#123,.T.); 76 | #86=FACE_OUTER_BOUND('',#124,.T.); 77 | #87=PLANE('',#125); 78 | #88=SURFACE_STYLE_USAGE(.BOTH.,#126); 79 | #89=FACE_OUTER_BOUND('',#127,.T.); 80 | #90=FACE_BOUND('',#128,.T.); 81 | #91=CONICAL_SURFACE('',#129,5.0,0.614662951922165); 82 | #92=SURFACE_STYLE_USAGE(.BOTH.,#130); 83 | #93=FACE_OUTER_BOUND('',#131,.T.); 84 | #94=PLANE('',#132); 85 | #95=PRODUCT_CONTEXT('',#18,'mechanical'); 86 | #96=PRODUCT_DEFINITION_FORMATION_WITH_SPECIFIED_SOURCE(' ','NONE',#47,.NOT_KNOWN.); 87 | #97=CLOSED_SHELL('',(#32,#34,#36,#38,#40,#42,#44,#46)); 88 | #98=CARTESIAN_POINT('',(0.0,0.0,0.0)); 89 | #99=DIRECTION('',(0.0,0.0,1.0)); 90 | #100=DIRECTION('',(1.0,0.0,0.0)); 91 | #101= (NAMED_UNIT(#56)LENGTH_UNIT()SI_UNIT(.MILLI.,.METRE.)); 92 | #102=SURFACE_SIDE_STYLE('',(#134)); 93 | #103=VERTEX_LOOP('',#135); 94 | #104=EDGE_LOOP('',(#136)); 95 | #105=AXIS2_PLACEMENT_3D('',#137,#138,#139); 96 | #106=SURFACE_SIDE_STYLE('',(#140)); 97 | #107=EDGE_LOOP('',(#141)); 98 | #108=EDGE_LOOP('',(#142)); 99 | #109=AXIS2_PLACEMENT_3D('',#143,#144,#145); 100 | #110=SURFACE_SIDE_STYLE('',(#146)); 101 | #111=EDGE_LOOP('',(#147)); 102 | #112=EDGE_LOOP('',(#148)); 103 | #113=AXIS2_PLACEMENT_3D('',#149,#150,#151); 104 | #114=SURFACE_SIDE_STYLE('',(#152)); 105 | #115=EDGE_LOOP('',(#153)); 106 | #116=EDGE_LOOP('',(#154)); 107 | #117=AXIS2_PLACEMENT_3D('',#155,#156,#157); 108 | #118=SURFACE_SIDE_STYLE('',(#158)); 109 | #119=EDGE_LOOP('',(#159)); 110 | #120=EDGE_LOOP('',(#160)); 111 | #121=AXIS2_PLACEMENT_3D('',#161,#162,#163); 112 | #122=SURFACE_SIDE_STYLE('',(#164)); 113 | #123=EDGE_LOOP('',(#165)); 114 | #124=EDGE_LOOP('',(#166)); 115 | #125=AXIS2_PLACEMENT_3D('',#167,#168,#169); 116 | #126=SURFACE_SIDE_STYLE('',(#170)); 117 | #127=EDGE_LOOP('',(#171)); 118 | #128=EDGE_LOOP('',(#172)); 119 | #129=AXIS2_PLACEMENT_3D('',#173,#174,#175); 120 | #130=SURFACE_SIDE_STYLE('',(#176)); 121 | #131=EDGE_LOOP('',(#177)); 122 | #132=AXIS2_PLACEMENT_3D('',#178,#179,#180); 123 | #134=SURFACE_STYLE_FILL_AREA(#181); 124 | #135=VERTEX_POINT('',#182); 125 | #136=ORIENTED_EDGE('',*,*,#183,.T.); 126 | #137=CARTESIAN_POINT('',(301.62734,-19.9695,-91.4236019999999)); 127 | #138=DIRECTION('',(-0.0,1.0,-0.0)); 128 | #139=DIRECTION('',(0.0,0.0,1.0)); 129 | #140=SURFACE_STYLE_FILL_AREA(#184); 130 | #141=ORIENTED_EDGE('',*,*,#183,.F.); 131 | #142=ORIENTED_EDGE('',*,*,#185,.T.); 132 | #143=CARTESIAN_POINT('',(301.62734,-11.9695,-91.4236019999999)); 133 | #144=DIRECTION('',(0.0,1.0,0.0)); 134 | #145=DIRECTION('',(0.0,0.0,1.0)); 135 | #146=SURFACE_STYLE_FILL_AREA(#186); 136 | #147=ORIENTED_EDGE('',*,*,#185,.F.); 137 | #148=ORIENTED_EDGE('',*,*,#187,.T.); 138 | #149=CARTESIAN_POINT('',(301.62734,-11.9695,-91.4236019999999)); 139 | #150=DIRECTION('',(0.0,-1.0,0.0)); 140 | #151=DIRECTION('',(0.0,0.0,-1.0)); 141 | #152=SURFACE_STYLE_FILL_AREA(#188); 142 | #153=ORIENTED_EDGE('',*,*,#187,.F.); 143 | #154=ORIENTED_EDGE('',*,*,#189,.T.); 144 | #155=CARTESIAN_POINT('',(301.62734,37.0542257642595,-91.4236019999999)); 145 | #156=DIRECTION('',(0.0,1.0,0.0)); 146 | #157=DIRECTION('',(0.0,0.0,1.0)); 147 | #158=SURFACE_STYLE_FILL_AREA(#190); 148 | #159=ORIENTED_EDGE('',*,*,#191,.F.); 149 | #160=ORIENTED_EDGE('',*,*,#192,.T.); 150 | #161=CARTESIAN_POINT('',(301.62734,-23.4695,-91.4236019999999)); 151 | #162=DIRECTION('',(0.0,-1.0,0.0)); 152 | #163=DIRECTION('',(0.0,0.0,-1.0)); 153 | #164=SURFACE_STYLE_FILL_AREA(#193); 154 | #165=ORIENTED_EDGE('',*,*,#192,.F.); 155 | #166=ORIENTED_EDGE('',*,*,#194,.F.); 156 | #167=CARTESIAN_POINT('',(306.62734,-25.4695,-91.4236019999999)); 157 | #168=DIRECTION('',(0.0,1.0,0.0)); 158 | #169=DIRECTION('',(0.0,0.0,1.0)); 159 | #170=SURFACE_STYLE_FILL_AREA(#195); 160 | #171=ORIENTED_EDGE('',*,*,#189,.F.); 161 | #172=ORIENTED_EDGE('',*,*,#194,.T.); 162 | #173=CARTESIAN_POINT('',(301.62734,-25.4695,-91.4236019999999)); 163 | #174=DIRECTION('',(-0.0,1.0,-0.0)); 164 | #175=DIRECTION('',(0.0,0.0,1.0)); 165 | #176=SURFACE_STYLE_FILL_AREA(#196); 166 | #177=ORIENTED_EDGE('',*,*,#191,.T.); 167 | #178=CARTESIAN_POINT('',(301.62734,-23.4695,-91.4236019999999)); 168 | #179=DIRECTION('',(0.0,-1.0,0.0)); 169 | #180=DIRECTION('',(0.0,0.0,-1.0)); 170 | #181=FILL_AREA_STYLE('',(#197)); 171 | #182=CARTESIAN_POINT('',(301.62734,-20.9609200213955,-91.4236019999999)); 172 | #183=EDGE_CURVE('',#198,#198,#199,.T.); 173 | #184=FILL_AREA_STYLE('',(#200)); 174 | #185=EDGE_CURVE('',#201,#201,#202,.T.); 175 | #186=FILL_AREA_STYLE('',(#203)); 176 | #187=EDGE_CURVE('',#204,#204,#205,.T.); 177 | #188=FILL_AREA_STYLE('',(#206)); 178 | #189=EDGE_CURVE('',#207,#207,#208,.T.); 179 | #190=FILL_AREA_STYLE('',(#209)); 180 | #191=EDGE_CURVE('',#210,#210,#211,.T.); 181 | #192=EDGE_CURVE('',#212,#212,#213,.T.); 182 | #193=FILL_AREA_STYLE('',(#214)); 183 | #194=EDGE_CURVE('',#215,#215,#216,.T.); 184 | #195=FILL_AREA_STYLE('',(#217)); 185 | #196=FILL_AREA_STYLE('',(#218)); 186 | #197=FILL_AREA_STYLE_COLOUR('',#219); 187 | #198=VERTEX_POINT('',#220); 188 | #199=CIRCLE('',#221,1.65); 189 | #200=FILL_AREA_STYLE_COLOUR('',#222); 190 | #201=VERTEX_POINT('',#223); 191 | #202=CIRCLE('',#224,1.65); 192 | #203=FILL_AREA_STYLE_COLOUR('',#225); 193 | #204=VERTEX_POINT('',#226); 194 | #205=CIRCLE('',#227,11.0); 195 | #206=FILL_AREA_STYLE_COLOUR('',#228); 196 | #207=VERTEX_POINT('',#229); 197 | #208=CIRCLE('',#230,11.0); 198 | #209=FILL_AREA_STYLE_COLOUR('',#231); 199 | #210=VERTEX_POINT('',#232); 200 | #211=CIRCLE('',#233,4.0); 201 | #212=VERTEX_POINT('',#234); 202 | #213=CIRCLE('',#235,4.0); 203 | #214=FILL_AREA_STYLE_COLOUR('',#236); 204 | #215=VERTEX_POINT('',#237); 205 | #216=CIRCLE('',#238,5.0); 206 | #217=FILL_AREA_STYLE_COLOUR('',#239); 207 | #218=FILL_AREA_STYLE_COLOUR('',#240); 208 | #219=COLOUR_RGB('',0.792156875133514,0.819607853889465,0.933333337306976); 209 | #220=CARTESIAN_POINT('',(301.62734,-19.9695,-89.7736019999999)); 210 | #221=AXIS2_PLACEMENT_3D('',#241,#242,#243); 211 | #222=COLOUR_RGB('',0.792156875133514,0.819607853889465,0.933333337306976); 212 | #223=CARTESIAN_POINT('',(301.62734,-11.9695,-89.7736019999999)); 213 | #224=AXIS2_PLACEMENT_3D('',#244,#245,#246); 214 | #225=COLOUR_RGB('',0.792156875133514,0.819607853889465,0.933333337306976); 215 | #226=CARTESIAN_POINT('',(301.62734,-11.9695,-80.4236019999999)); 216 | #227=AXIS2_PLACEMENT_3D('',#247,#248,#249); 217 | #228=COLOUR_RGB('',0.792156875133514,0.819607853889465,0.933333337306976); 218 | #229=CARTESIAN_POINT('',(301.62734,-16.9695,-80.4236019999999)); 219 | #230=AXIS2_PLACEMENT_3D('',#250,#251,#252); 220 | #231=COLOUR_RGB('',0.792156875133514,0.819607853889465,0.933333337306976); 221 | #232=CARTESIAN_POINT('',(301.62734,-23.4695,-95.4236019999999)); 222 | #233=AXIS2_PLACEMENT_3D('',#253,#254,#255); 223 | #234=CARTESIAN_POINT('',(301.62734,-25.4695,-95.4236019999999)); 224 | #235=AXIS2_PLACEMENT_3D('',#256,#257,#258); 225 | #236=COLOUR_RGB('',0.792156875133514,0.819607853889465,0.933333337306976); 226 | #237=CARTESIAN_POINT('',(301.62734,-25.4695,-86.4236019999999)); 227 | #238=AXIS2_PLACEMENT_3D('',#259,#260,#261); 228 | #239=COLOUR_RGB('',0.792156875133514,0.819607853889465,0.933333337306976); 229 | #240=COLOUR_RGB('',0.792156875133514,0.819607853889465,0.933333337306976); 230 | #241=CARTESIAN_POINT('',(301.62734,-19.9695,-91.4236019999999)); 231 | #242=DIRECTION('',(0.0,1.0,0.0)); 232 | #243=DIRECTION('',(0.0,0.0,1.0)); 233 | #244=CARTESIAN_POINT('',(301.62734,-11.9695,-91.4236019999999)); 234 | #245=DIRECTION('',(0.0,1.0,0.0)); 235 | #246=DIRECTION('',(0.0,0.0,1.0)); 236 | #247=CARTESIAN_POINT('',(301.62734,-11.9695,-91.4236019999999)); 237 | #248=DIRECTION('',(0.0,1.0,0.0)); 238 | #249=DIRECTION('',(0.0,0.0,1.0)); 239 | #250=CARTESIAN_POINT('',(301.62734,-16.9695,-91.4236019999999)); 240 | #251=DIRECTION('',(0.0,1.0,0.0)); 241 | #252=DIRECTION('',(0.0,0.0,1.0)); 242 | #253=CARTESIAN_POINT('',(301.62734,-23.4695,-91.4236019999999)); 243 | #254=DIRECTION('',(0.0,-1.0,0.0)); 244 | #255=DIRECTION('',(0.0,0.0,-1.0)); 245 | #256=CARTESIAN_POINT('',(301.62734,-25.4695,-91.4236019999999)); 246 | #257=DIRECTION('',(0.0,-1.0,0.0)); 247 | #258=DIRECTION('',(0.0,0.0,-1.0)); 248 | #259=CARTESIAN_POINT('',(301.62734,-25.4695,-91.4236019999999)); 249 | #260=DIRECTION('',(0.0,1.0,0.0)); 250 | #261=DIRECTION('',(0.0,0.0,1.0)); 251 | ENDSEC; 252 | END-ISO-10303-21; 253 | -------------------------------------------------------------------------------- /whitefox-keyboard/rev-b-type-c/Rubber foot.stp: -------------------------------------------------------------------------------- 1 | ISO-10303-21; 2 | HEADER; 3 | FILE_DESCRIPTION(('STEP AP214'),'1'); 4 | FILE_NAME('Rubber foot.stp','2018-03-07T03:29:27',(' '),(' '),'Spatial InterOp 3D',' ',' '); 5 | FILE_SCHEMA(('automotive_design')); 6 | ENDSEC; 7 | DATA; 8 | #1=MECHANICAL_DESIGN_GEOMETRIC_PRESENTATION_REPRESENTATION(' ',(#10,#11),#6); 9 | #2=PRODUCT_DEFINITION_CONTEXT('',#12,'design'); 10 | #3=APPLICATION_PROTOCOL_DEFINITION('INTERNATIONAL STANDARD','automotive_design',1994,#12); 11 | #4=PRODUCT_CATEGORY_RELATIONSHIP('NONE','NONE',#13,#14); 12 | #5=SHAPE_DEFINITION_REPRESENTATION(#15,#16); 13 | #6= (GEOMETRIC_REPRESENTATION_CONTEXT(3)GLOBAL_UNCERTAINTY_ASSIGNED_CONTEXT((#19))GLOBAL_UNIT_ASSIGNED_CONTEXT((#21,#22,#23))REPRESENTATION_CONTEXT('NONE','WORKSPACE')); 14 | #10=STYLED_ITEM('',(#25),#26); 15 | #11=STYLED_ITEM('',(#27),#28); 16 | #12=APPLICATION_CONTEXT(' '); 17 | #13=PRODUCT_CATEGORY('part','NONE'); 18 | #14=PRODUCT_RELATED_PRODUCT_CATEGORY('detail',' ',(#29)); 19 | #15=PRODUCT_DEFINITION_SHAPE('NONE','NONE',#30); 20 | #16=ADVANCED_BREP_SHAPE_REPRESENTATION('Rubber foot',(#31,#32),#6); 21 | #19=UNCERTAINTY_MEASURE_WITH_UNIT(LENGTH_MEASURE(0.001),#21,'',''); 22 | #21= (CONVERSION_BASED_UNIT('MILLIMETRE',#35)LENGTH_UNIT()NAMED_UNIT(#38)); 23 | #22= (NAMED_UNIT(#40)PLANE_ANGLE_UNIT()SI_UNIT($,.RADIAN.)); 24 | #23= (NAMED_UNIT(#40)SOLID_ANGLE_UNIT()SI_UNIT($,.STERADIAN.)); 25 | #25=PRESENTATION_STYLE_ASSIGNMENT((#46)); 26 | #26=ADVANCED_FACE('',(#47),#48,.T.); 27 | #27=PRESENTATION_STYLE_ASSIGNMENT((#49)); 28 | #28=ADVANCED_FACE('',(#50),#51,.T.); 29 | #29=PRODUCT('Rubber foot','Rubber foot','PART-Rubber foot-DESC',(#52)); 30 | #30=PRODUCT_DEFINITION('NONE','NONE',#53,#2); 31 | #31=MANIFOLD_SOLID_BREP('Rubber foot',#54); 32 | #32=AXIS2_PLACEMENT_3D('',#55,#56,#57); 33 | #35=LENGTH_MEASURE_WITH_UNIT(LENGTH_MEASURE(1.0),#58); 34 | #38=DIMENSIONAL_EXPONENTS(1.0,0.0,0.0,0.0,0.0,0.0,0.0); 35 | #40=DIMENSIONAL_EXPONENTS(0.0,0.0,0.0,0.0,0.0,0.0,0.0); 36 | #46=SURFACE_STYLE_USAGE(.BOTH.,#59); 37 | #47=FACE_OUTER_BOUND('',#60,.T.); 38 | #48=SPHERICAL_SURFACE('',#61,4.0); 39 | #49=SURFACE_STYLE_USAGE(.BOTH.,#62); 40 | #50=FACE_OUTER_BOUND('',#63,.T.); 41 | #51=PLANE('',#64); 42 | #52=PRODUCT_CONTEXT('',#12,'mechanical'); 43 | #53=PRODUCT_DEFINITION_FORMATION_WITH_SPECIFIED_SOURCE(' ','NONE',#29,.NOT_KNOWN.); 44 | #54=CLOSED_SHELL('',(#26,#28)); 45 | #55=CARTESIAN_POINT('',(0.0,0.0,0.0)); 46 | #56=DIRECTION('',(0.0,0.0,1.0)); 47 | #57=DIRECTION('',(1.0,0.0,0.0)); 48 | #58= (NAMED_UNIT(#38)LENGTH_UNIT()SI_UNIT(.MILLI.,.METRE.)); 49 | #59=SURFACE_SIDE_STYLE('',(#66)); 50 | #60=EDGE_LOOP('',(#67)); 51 | #61=AXIS2_PLACEMENT_3D('',#68,#69,#70); 52 | #62=SURFACE_SIDE_STYLE('',(#71)); 53 | #63=EDGE_LOOP('',(#72)); 54 | #64=AXIS2_PLACEMENT_3D('',#73,#74,#75); 55 | #66=SURFACE_STYLE_FILL_AREA(#76); 56 | #67=ORIENTED_EDGE('',*,*,#77,.F.); 57 | #68=CARTESIAN_POINT('',(8.61346,-11.9695,-17.593198)); 58 | #69=DIRECTION('',(0.0,1.0,0.0)); 59 | #70=DIRECTION('',(-1.0,0.0,0.0)); 60 | #71=SURFACE_STYLE_FILL_AREA(#78); 61 | #72=ORIENTED_EDGE('',*,*,#77,.T.); 62 | #73=CARTESIAN_POINT('',(8.61346,-11.9695,-17.593198)); 63 | #74=DIRECTION('',(0.0,1.0,0.0)); 64 | #75=DIRECTION('',(0.0,0.0,-1.0)); 65 | #76=FILL_AREA_STYLE('',(#79)); 66 | #77=EDGE_CURVE('',#80,#80,#81,.T.); 67 | #78=FILL_AREA_STYLE('',(#82)); 68 | #79=FILL_AREA_STYLE_COLOUR('',#83); 69 | #80=VERTEX_POINT('',#84); 70 | #81=CIRCLE('',#85,4.0); 71 | #82=FILL_AREA_STYLE_COLOUR('',#86); 72 | #83=COLOUR_RGB('',0.792156875133514,0.819607853889465,0.933333337306976); 73 | #84=CARTESIAN_POINT('',(8.61346,-11.9695,-21.593198)); 74 | #85=AXIS2_PLACEMENT_3D('',#87,#88,#89); 75 | #86=COLOUR_RGB('',0.792156875133514,0.819607853889465,0.933333337306976); 76 | #87=CARTESIAN_POINT('',(8.61346,-11.9695,-17.593198)); 77 | #88=DIRECTION('',(0.0,1.0,0.0)); 78 | #89=DIRECTION('',(0.0,0.0,-1.0)); 79 | ENDSEC; 80 | END-ISO-10303-21; 81 | --------------------------------------------------------------------------------